@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

.ttpv-editorial-wrap {
  width: 100%;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #151825;
  background: #ffffff;
}

.ttpv-editorial-wrap,
.ttpv-editorial-wrap section,
.ttpv-editorial-wrap div,
.ttpv-editorial-wrap article {
  box-sizing: border-box;
}

.ttpv-editorial-wrap .ttpv-section {
  position: relative;
  width: 100%;
}

.ttpv-editorial-wrap .ttpv-section-white {
  background:
    radial-gradient(circle at 10% 10%, rgba(0, 242, 234, 0.09), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(255, 0, 80, 0.08), transparent 26%),
    #ffffff;
}

.ttpv-editorial-wrap .ttpv-section-soft {
  background:
    linear-gradient(135deg, rgba(0, 242, 234, 0.08), rgba(255, 0, 80, 0.06)),
    #f8fafc;
}

.ttpv-editorial-wrap .ttpv-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.ttpv-editorial-wrap .ttpv-heading {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.ttpv-editorial-wrap .ttpv-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 14px;
  border: 1px solid rgba(0, 242, 234, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #0b7285;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.ttpv-editorial-wrap .ttpv-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00f2ea, #ff0050);
  box-shadow: 0 0 0 5px rgba(0, 242, 234, 0.14);
}

.ttpv-editorial-wrap h2 {
  margin: 0;
  color: #111827;
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: 0;
}

.ttpv-editorial-wrap .ttpv-heading p {
  margin: 16px auto 0;
  max-width: 680px;
  color: #5b6475;
  line-height: 1.7;
  font-weight: 500;
}

.ttpv-editorial-wrap .ttpv-grid {
  display: grid;
  align-items: stretch;
}

.ttpv-editorial-wrap .ttpv-card {
  position: relative;
  min-width: 0;
  height: 100%;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  overflow: hidden;
}

.ttpv-editorial-wrap .ttpv-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #00f2ea, #ff0050);
  opacity: 0;
  transition: opacity 220ms ease;
}

.ttpv-editorial-wrap .ttpv-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 242, 234, 0.46);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

.ttpv-editorial-wrap .ttpv-card:hover::after {
  opacity: 1;
}

.ttpv-editorial-wrap .ttpv-card h3 {
  margin: 18px 0 0;
  color: #141827;
  font-weight: 820;
  line-height: 1.22;
  letter-spacing: 0;
}

.ttpv-editorial-wrap .ttpv-card p {
  margin: 11px 0 0;
  color: #626b7c;
  line-height: 1.68;
  font-weight: 500;
}

.ttpv-editorial-wrap .ttpv-icon {
  position: relative;
  display: inline-flex;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 242, 234, 0.18), rgba(255, 0, 80, 0.16));
  border: 1px solid rgba(0, 242, 234, 0.28);
  box-shadow: 0 12px 24px rgba(0, 242, 234, 0.14);
  transition: transform 220ms ease;
}

.ttpv-editorial-wrap .ttpv-card:hover .ttpv-icon {
  transform: translateY(-2px) rotate(-2deg);
}

.ttpv-editorial-wrap .ttpv-icon::before,
.ttpv-editorial-wrap .ttpv-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.ttpv-editorial-wrap .ttpv-icon-view::before {
  width: 24px;
  height: 15px;
  border: 2px solid #0e7490;
  border-radius: 50%;
}

.ttpv-editorial-wrap .ttpv-icon-view::after {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff0050;
}

.ttpv-editorial-wrap .ttpv-icon-speed::before {
  width: 22px;
  height: 22px;
  border: 2px solid #0e7490;
  border-top-color: transparent;
  border-radius: 50%;
}

.ttpv-editorial-wrap .ttpv-icon-speed::after {
  width: 12px;
  height: 2px;
  background: #ff0050;
  transform: translate(-25%, -50%) rotate(-35deg);
  transform-origin: left center;
}

.ttpv-editorial-wrap .ttpv-icon-preview::before {
  width: 24px;
  height: 18px;
  border: 2px solid #0e7490;
  border-radius: 6px;
}

.ttpv-editorial-wrap .ttpv-icon-preview::after {
  width: 12px;
  height: 3px;
  border-radius: 999px;
  background: #ff0050;
  top: 58%;
}

.ttpv-editorial-wrap .ttpv-icon-steps::before {
  width: 22px;
  height: 18px;
  border-left: 3px solid #0e7490;
  border-bottom: 3px solid #0e7490;
  border-radius: 0 0 0 7px;
}

.ttpv-editorial-wrap .ttpv-icon-steps::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff0050;
  box-shadow: -11px -8px 0 #00a6b4, 10px 8px 0 #ff6b95;
}

.ttpv-editorial-wrap .ttpv-icon-mobile::before {
  width: 16px;
  height: 25px;
  border: 2px solid #0e7490;
  border-radius: 6px;
}

.ttpv-editorial-wrap .ttpv-icon-mobile::after {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ff0050;
  top: 68%;
}

.ttpv-editorial-wrap .ttpv-icon-daily::before {
  width: 23px;
  height: 23px;
  border: 2px solid #0e7490;
  border-radius: 9px;
}

.ttpv-editorial-wrap .ttpv-icon-daily::after {
  width: 13px;
  height: 13px;
  border-top: 3px solid #ff0050;
  border-right: 3px solid #ff0050;
  transform: translate(-50%, -50%) rotate(45deg);
}

.ttpv-editorial-wrap .ttpv-steps {
  display: grid;
  grid-template-columns: 1fr;
}

.ttpv-editorial-wrap .ttpv-step-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-width: 0;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84)),
    radial-gradient(circle at 94% 20%, rgba(255, 0, 80, 0.12), transparent 30%);
  box-shadow: 0 20px 56px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.ttpv-editorial-wrap .ttpv-step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 0, 80, 0.32);
  box-shadow: 0 26px 72px rgba(15, 23, 42, 0.12);
}

.ttpv-editorial-wrap .ttpv-step-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 4px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, #00f2ea, #ff0050);
}

.ttpv-editorial-wrap .ttpv-step-number {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 20px;
  background: #101827;
  color: #ffffff;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 16px 34px rgba(16, 24, 39, 0.18);
}

.ttpv-editorial-wrap .ttpv-step-content h3 {
  margin: 0;
  color: #141827;
  font-weight: 840;
  line-height: 1.2;
  letter-spacing: 0;
}

.ttpv-editorial-wrap .ttpv-step-content p {
  margin: 10px 0 0;
  color: #5f6878;
  line-height: 1.68;
  font-weight: 500;
}

.ttpv-editorial-wrap .ttpv-use-card {
  background:
    radial-gradient(circle at 85% 12%, rgba(0, 242, 234, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.94);
}

.ttpv-editorial-wrap .ttpv-badge {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(0, 242, 234, 0.11);
  border: 1px solid rgba(0, 166, 180, 0.22);
  color: #0e7490;
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
}

.ttpv-editorial-wrap .ttpv-trust-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9)),
    radial-gradient(circle at 20% 0%, rgba(255, 0, 80, 0.1), transparent 34%);
}

.ttpv-editorial-wrap .ttpv-icon-lock::before {
  width: 21px;
  height: 16px;
  border: 2px solid #0e7490;
  border-radius: 5px;
  top: 57%;
}

.ttpv-editorial-wrap .ttpv-icon-lock::after {
  width: 13px;
  height: 12px;
  border: 2px solid #ff0050;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  top: 39%;
}

.ttpv-editorial-wrap .ttpv-icon-clean::before {
  width: 23px;
  height: 18px;
  border: 2px solid #0e7490;
  border-radius: 7px;
}

.ttpv-editorial-wrap .ttpv-icon-clean::after {
  width: 10px;
  height: 10px;
  border-right: 3px solid #ff0050;
  border-bottom: 3px solid #ff0050;
  transform: translate(-45%, -58%) rotate(45deg);
}

.ttpv-editorial-wrap .ttpv-icon-public::before {
  width: 24px;
  height: 24px;
  border: 2px solid #0e7490;
  border-radius: 50%;
}

.ttpv-editorial-wrap .ttpv-icon-public::after {
  width: 24px;
  height: 9px;
  border-top: 2px solid #ff0050;
  border-bottom: 2px solid #ff0050;
  border-radius: 50%;
}

.ttpv-editorial-wrap .ttpv-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.ttpv-editorial-wrap .ttpv-reveal.ttpv-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

@media (min-width: 320px) and (max-width: 374px) {
  .ttpv-editorial-wrap .ttpv-section {
    padding: 48px 0;
  }

  .ttpv-editorial-wrap .ttpv-container {
    padding: 0 14px;
  }

  .ttpv-editorial-wrap h2 {
    font-size: 27px;
  }

  .ttpv-editorial-wrap .ttpv-heading p {
    font-size: 14px;
  }

  .ttpv-editorial-wrap .ttpv-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }

  .ttpv-editorial-wrap .ttpv-card {
    padding: 22px;
    border-radius: 18px;
  }

  .ttpv-editorial-wrap .ttpv-card h3 {
    font-size: 18px;
  }

  .ttpv-editorial-wrap .ttpv-card p {
    font-size: 14px;
  }

  .ttpv-editorial-wrap .ttpv-steps {
    gap: 16px;
    margin-top: 28px;
  }

  .ttpv-editorial-wrap .ttpv-step-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
  }

  .ttpv-editorial-wrap .ttpv-step-number {
    width: 54px;
    height: 54px;
    font-size: 17px;
  }

  .ttpv-editorial-wrap .ttpv-step-content h3 {
    font-size: 19px;
  }

  .ttpv-editorial-wrap .ttpv-step-content p {
    font-size: 14px;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .ttpv-editorial-wrap .ttpv-section {
    padding: 54px 0;
  }

  .ttpv-editorial-wrap .ttpv-container {
    padding: 0 18px;
  }

  .ttpv-editorial-wrap h2 {
    font-size: 30px;
  }

  .ttpv-editorial-wrap .ttpv-heading p {
    font-size: 15px;
  }

  .ttpv-editorial-wrap .ttpv-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 30px;
  }

  .ttpv-editorial-wrap .ttpv-card {
    padding: 24px;
    border-radius: 20px;
  }

  .ttpv-editorial-wrap .ttpv-card h3 {
    font-size: 19px;
  }

  .ttpv-editorial-wrap .ttpv-card p {
    font-size: 14.5px;
  }

  .ttpv-editorial-wrap .ttpv-steps {
    gap: 18px;
    margin-top: 30px;
  }

  .ttpv-editorial-wrap .ttpv-step-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
  }

  .ttpv-editorial-wrap .ttpv-step-number {
    width: 58px;
    height: 58px;
    font-size: 18px;
  }

  .ttpv-editorial-wrap .ttpv-step-content h3 {
    font-size: 20px;
  }

  .ttpv-editorial-wrap .ttpv-step-content p {
    font-size: 14.5px;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .ttpv-editorial-wrap .ttpv-section {
    padding: 62px 0;
  }

  .ttpv-editorial-wrap .ttpv-container {
    padding: 0 22px;
  }

  .ttpv-editorial-wrap h2 {
    font-size: 34px;
  }

  .ttpv-editorial-wrap .ttpv-heading p {
    font-size: 15.5px;
  }

  .ttpv-editorial-wrap .ttpv-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 34px;
  }

  .ttpv-editorial-wrap .ttpv-card {
    padding: 26px;
    border-radius: 22px;
  }

  .ttpv-editorial-wrap .ttpv-card h3 {
    font-size: 20px;
  }

  .ttpv-editorial-wrap .ttpv-card p {
    font-size: 15px;
  }

  .ttpv-editorial-wrap .ttpv-steps {
    gap: 20px;
    margin-top: 34px;
  }

  .ttpv-editorial-wrap .ttpv-step-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px;
  }

  .ttpv-editorial-wrap .ttpv-step-number {
    width: 60px;
    height: 60px;
    font-size: 18px;
  }

  .ttpv-editorial-wrap .ttpv-step-content h3 {
    font-size: 21px;
  }

  .ttpv-editorial-wrap .ttpv-step-content p {
    font-size: 15px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .ttpv-editorial-wrap .ttpv-section {
    padding: 76px 0;
  }

  .ttpv-editorial-wrap .ttpv-container {
    padding: 0 30px;
  }

  .ttpv-editorial-wrap h2 {
    font-size: 42px;
  }

  .ttpv-editorial-wrap .ttpv-heading p {
    font-size: 16.5px;
  }

  .ttpv-editorial-wrap .ttpv-grid-six,
  .ttpv-editorial-wrap .ttpv-grid-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 42px;
  }

  .ttpv-editorial-wrap .ttpv-card {
    padding: 28px;
  }

  .ttpv-editorial-wrap .ttpv-card h3 {
    font-size: 21px;
  }

  .ttpv-editorial-wrap .ttpv-card p {
    font-size: 15.5px;
  }

  .ttpv-editorial-wrap .ttpv-steps {
    gap: 20px;
    margin-top: 42px;
  }

  .ttpv-editorial-wrap .ttpv-step-card {
    grid-template-columns: 78px 1fr;
    gap: 24px;
    padding: 30px;
  }

  .ttpv-editorial-wrap .ttpv-step-number {
    width: 66px;
    height: 66px;
    font-size: 19px;
  }

  .ttpv-editorial-wrap .ttpv-step-content h3 {
    font-size: 22px;
  }

  .ttpv-editorial-wrap .ttpv-step-content p {
    font-size: 15.5px;
  }
}

@media (min-width: 1024px) {
  .ttpv-editorial-wrap .ttpv-section {
    padding: 92px 0;
  }

  .ttpv-editorial-wrap .ttpv-container {
    padding: 0 32px;
  }

  .ttpv-editorial-wrap h2 {
    font-size: 48px;
  }

  .ttpv-editorial-wrap .ttpv-heading p {
    font-size: 17px;
  }

  .ttpv-editorial-wrap .ttpv-grid-six,
  .ttpv-editorial-wrap .ttpv-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 48px;
  }

  .ttpv-editorial-wrap .ttpv-card {
    padding: 30px;
  }

  .ttpv-editorial-wrap .ttpv-card h3 {
    font-size: 22px;
  }

  .ttpv-editorial-wrap .ttpv-card p {
    font-size: 16px;
  }

  .ttpv-editorial-wrap .ttpv-steps {
    gap: 22px;
    margin-top: 48px;
  }

  .ttpv-editorial-wrap .ttpv-step-card {
    grid-template-columns: 92px 1fr;
    gap: 28px;
    padding: 34px 38px;
  }

  .ttpv-editorial-wrap .ttpv-step-number {
    width: 72px;
    height: 72px;
    font-size: 20px;
  }

  .ttpv-editorial-wrap .ttpv-step-content h3 {
    font-size: 24px;
  }

  .ttpv-editorial-wrap .ttpv-step-content p {
    font-size: 16px;
  }
}