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

.ttvnw-content {
  width: 100%;
  overflow: hidden;
  color: #152033;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  background: #ffffff;
}

.ttvnw-content,
.ttvnw-content div,
.ttvnw-content section,
.ttvnw-content article,
.ttvnw-content span,
.ttvnw-content h2,
.ttvnw-content h3,
.ttvnw-content p {
  box-sizing: border-box;
}

.ttvnw-content .ttvnw-section {
  position: relative;
  width: 100%;
}

.ttvnw-content .ttvnw-section-white {
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 244, 238, 0.1), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(254, 44, 85, 0.08), transparent 28%),
    #ffffff;
}

.ttvnw-content .ttvnw-section-soft {
  background:
    linear-gradient(135deg, rgba(248, 250, 252, 0.96), rgba(255, 247, 250, 0.96)),
    #f8fafc;
}

.ttvnw-content .ttvnw-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.ttvnw-content .ttvnw-section-head {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.ttvnw-content .ttvnw-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  margin: 0 0 14px;
  padding: 6px 13px;
  border: 1px solid rgba(254, 44, 85, 0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.12), rgba(254, 44, 85, 0.1));
  color: #6d2941;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.ttvnw-content .ttvnw-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25f4ee, #fe2c55);
  box-shadow: 0 0 18px rgba(254, 44, 85, 0.35);
}

.ttvnw-content h2 {
  margin: 0;
  color: #101827;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.ttvnw-content .ttvnw-section-head p {
  margin: 16px auto 0;
  max-width: 700px;
  color: #5d697c;
  font-weight: 450;
}

.ttvnw-content .ttvnw-grid {
  display: grid;
  width: 100%;
  align-items: stretch;
}

.ttvnw-content .ttvnw-card,
.ttvnw-content .ttvnw-trust-card {
  position: relative;
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.ttvnw-content .ttvnw-card::after,
.ttvnw-content .ttvnw-trust-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.34), rgba(254, 44, 85, 0.22), transparent 55%);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.ttvnw-content .ttvnw-card > *,
.ttvnw-content .ttvnw-trust-card > * {
  position: relative;
  z-index: 1;
}

.ttvnw-content .ttvnw-card:hover,
.ttvnw-content .ttvnw-trust-card:hover {
  transform: translateY(-6px);
  border-color: rgba(254, 44, 85, 0.28);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.11);
}

.ttvnw-content .ttvnw-card:hover::after,
.ttvnw-content .ttvnw-trust-card:hover::after {
  opacity: 1;
}

.ttvnw-content .ttvnw-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #101827, #24324a);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

.ttvnw-content .ttvnw-icon::before,
.ttvnw-content .ttvnw-icon::after {
  content: "";
  position: absolute;
}

.ttvnw-content .ttvnw-icon-play {
  position: relative;
}

.ttvnw-content .ttvnw-icon-play::before {
  top: 14px;
  left: 18px;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 13px solid #25f4ee;
}

.ttvnw-content .ttvnw-icon-speed {
  position: relative;
}

.ttvnw-content .ttvnw-icon-speed::before {
  top: 14px;
  left: 13px;
  width: 20px;
  height: 20px;
  border: 3px solid #25f4ee;
  border-top-color: #fe2c55;
  border-radius: 999px;
}

.ttvnw-content .ttvnw-icon-clean {
  position: relative;
}

.ttvnw-content .ttvnw-icon-clean::before {
  top: 13px;
  left: 13px;
  width: 20px;
  height: 20px;
  border-radius: 7px;
  background: linear-gradient(135deg, #25f4ee, #fe2c55);
}

.ttvnw-content .ttvnw-icon-steps {
  position: relative;
}

.ttvnw-content .ttvnw-icon-steps::before {
  top: 13px;
  left: 12px;
  width: 22px;
  height: 4px;
  border-radius: 999px;
  background: #25f4ee;
  box-shadow: 0 8px 0 #ffffff, 0 16px 0 #fe2c55;
}

.ttvnw-content .ttvnw-icon-mobile {
  position: relative;
}

.ttvnw-content .ttvnw-icon-mobile::before {
  top: 10px;
  left: 16px;
  width: 15px;
  height: 26px;
  border: 2px solid #25f4ee;
  border-radius: 6px;
}

.ttvnw-content .ttvnw-icon-daily {
  position: relative;
}

.ttvnw-content .ttvnw-icon-daily::before {
  top: 12px;
  left: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: conic-gradient(from 90deg, #25f4ee, #fe2c55, #25f4ee);
}

.ttvnw-content h3 {
  margin: 0;
  color: #111827;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.ttvnw-content .ttvnw-card p,
.ttvnw-content .ttvnw-trust-card p,
.ttvnw-content .ttvnw-step-card p,
.ttvnw-content .ttvnw-note p {
  margin: 10px 0 0;
  color: #607086;
  font-weight: 450;
}

.ttvnw-content .ttvnw-steps {
  display: grid;
  grid-template-columns: 1fr;
}

.ttvnw-content .ttvnw-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.22);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
    #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.ttvnw-content .ttvnw-step-card::before {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 84px;
  width: 1px;
  background: linear-gradient(180deg, rgba(37, 244, 238, 0.55), rgba(254, 44, 85, 0.55));
}

.ttvnw-content .ttvnw-step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 244, 238, 0.32);
  box-shadow: 0 26px 64px rgba(15, 23, 42, 0.1);
}

.ttvnw-content .ttvnw-step-number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 74px;
  height: 74px;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: linear-gradient(135deg, #25f4ee, #fe2c55);
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 16px 35px rgba(254, 44, 85, 0.22);
}

.ttvnw-content .ttvnw-step-copy {
  min-width: 0;
}

.ttvnw-content .ttvnw-use-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.96)),
    #ffffff;
}

.ttvnw-content .ttvnw-badge-dot {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border: 1px solid rgba(254, 44, 85, 0.18);
  border-radius: 999px;
  background: radial-gradient(circle at 40% 40%, #25f4ee 0 22%, transparent 24%), linear-gradient(135deg, rgba(37, 244, 238, 0.12), rgba(254, 44, 85, 0.13));
}

.ttvnw-content .ttvnw-trust-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.92)),
    #ffffff;
}

.ttvnw-content .ttvnw-trust-mark {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.16), rgba(254, 44, 85, 0.15));
  position: relative;
}

.ttvnw-content .ttvnw-trust-mark::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 11px;
  width: 13px;
  height: 18px;
  border-right: 4px solid #fe2c55;
  border-bottom: 4px solid #25bdb8;
  transform: rotate(38deg);
  border-radius: 2px;
}

.ttvnw-content .ttvnw-note {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(37, 244, 238, 0.22);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(37, 244, 238, 0.1), rgba(254, 44, 85, 0.08)),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
  text-align: center;
}

.ttvnw-content .ttvnw-note p {
  margin: 0;
  color: #435166;
}

.ttvnw-content .ttvnw-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.ttvnw-content .ttvnw-reveal.ttvnw-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 320px) and (max-width: 374px) {
  .ttvnw-content .ttvnw-section {
    padding: 54px 0;
  }

  .ttvnw-content .ttvnw-container {
    padding: 0 14px;
  }

  .ttvnw-content h2 {
    font-size: 28px;
  }

  .ttvnw-content .ttvnw-section-head p {
    font-size: 15px;
  }

  .ttvnw-content .ttvnw-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 30px;
  }

  .ttvnw-content .ttvnw-card,
  .ttvnw-content .ttvnw-trust-card {
    padding: 22px;
  }

  .ttvnw-content h3 {
    font-size: 18px;
  }

  .ttvnw-content .ttvnw-card p,
  .ttvnw-content .ttvnw-trust-card p,
  .ttvnw-content .ttvnw-step-card p,
  .ttvnw-content .ttvnw-note p {
    font-size: 14px;
  }

  .ttvnw-content .ttvnw-steps {
    gap: 16px;
    margin-top: 30px;
  }

  .ttvnw-content .ttvnw-step-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px;
  }

  .ttvnw-content .ttvnw-step-card::before {
    display: none;
  }

  .ttvnw-content .ttvnw-step-number {
    width: 62px;
    height: 62px;
    font-size: 19px;
  }

  .ttvnw-content .ttvnw-note {
    margin-top: 24px;
    padding: 20px;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .ttvnw-content .ttvnw-section {
    padding: 60px 0;
  }

  .ttvnw-content .ttvnw-container {
    padding: 0 18px;
  }

  .ttvnw-content h2 {
    font-size: 30px;
  }

  .ttvnw-content .ttvnw-section-head p {
    font-size: 15.5px;
  }

  .ttvnw-content .ttvnw-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 32px;
  }

  .ttvnw-content .ttvnw-card,
  .ttvnw-content .ttvnw-trust-card {
    padding: 24px;
  }

  .ttvnw-content h3 {
    font-size: 19px;
  }

  .ttvnw-content .ttvnw-card p,
  .ttvnw-content .ttvnw-trust-card p,
  .ttvnw-content .ttvnw-step-card p,
  .ttvnw-content .ttvnw-note p {
    font-size: 15px;
  }

  .ttvnw-content .ttvnw-steps {
    gap: 18px;
    margin-top: 32px;
  }

  .ttvnw-content .ttvnw-step-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }

  .ttvnw-content .ttvnw-step-card::before {
    display: none;
  }

  .ttvnw-content .ttvnw-step-number {
    width: 64px;
    height: 64px;
    font-size: 20px;
  }

  .ttvnw-content .ttvnw-note {
    margin-top: 26px;
    padding: 22px;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .ttvnw-content .ttvnw-section {
    padding: 66px 0;
  }

  .ttvnw-content .ttvnw-container {
    padding: 0 22px;
  }

  .ttvnw-content h2 {
    font-size: 34px;
  }

  .ttvnw-content .ttvnw-section-head p {
    font-size: 16px;
  }

  .ttvnw-content .ttvnw-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 36px;
  }

  .ttvnw-content .ttvnw-card,
  .ttvnw-content .ttvnw-trust-card {
    padding: 26px;
  }

  .ttvnw-content h3 {
    font-size: 20px;
  }

  .ttvnw-content .ttvnw-card p,
  .ttvnw-content .ttvnw-trust-card p,
  .ttvnw-content .ttvnw-step-card p,
  .ttvnw-content .ttvnw-note p {
    font-size: 15.5px;
  }

  .ttvnw-content .ttvnw-steps {
    gap: 20px;
    margin-top: 36px;
  }

  .ttvnw-content .ttvnw-step-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px;
  }

  .ttvnw-content .ttvnw-step-card::before {
    display: none;
  }

  .ttvnw-content .ttvnw-step-number {
    width: 68px;
    height: 68px;
    font-size: 21px;
  }

  .ttvnw-content .ttvnw-note {
    margin-top: 30px;
    padding: 24px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .ttvnw-content .ttvnw-section {
    padding: 78px 0;
  }

  .ttvnw-content .ttvnw-container {
    padding: 0 30px;
  }

  .ttvnw-content h2 {
    font-size: 40px;
  }

  .ttvnw-content .ttvnw-section-head p {
    font-size: 17px;
  }

  .ttvnw-content .ttvnw-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 44px;
  }

  .ttvnw-content .ttvnw-card,
  .ttvnw-content .ttvnw-trust-card {
    padding: 28px;
  }

  .ttvnw-content h3 {
    font-size: 20px;
  }

  .ttvnw-content .ttvnw-card p,
  .ttvnw-content .ttvnw-trust-card p,
  .ttvnw-content .ttvnw-step-card p,
  .ttvnw-content .ttvnw-note p {
    font-size: 15.5px;
  }

  .ttvnw-content .ttvnw-steps {
    gap: 20px;
    margin-top: 44px;
  }

  .ttvnw-content .ttvnw-step-card {
    gap: 30px;
    padding: 30px;
  }

  .ttvnw-content .ttvnw-note {
    margin-top: 34px;
    padding: 28px;
  }
}

@media (min-width: 1024px) {
  .ttvnw-content .ttvnw-section {
    padding: 94px 0;
  }

  .ttvnw-content .ttvnw-container {
    padding: 0 32px;
  }

  .ttvnw-content h2 {
    font-size: 46px;
  }

  .ttvnw-content .ttvnw-section-head p {
    font-size: 17.5px;
  }

  .ttvnw-content .ttvnw-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ttvnw-content .ttvnw-grid {
    gap: 24px;
    margin-top: 48px;
  }

  .ttvnw-content .ttvnw-card,
  .ttvnw-content .ttvnw-trust-card {
    padding: 30px;
  }

  .ttvnw-content h3 {
    font-size: 21px;
  }

  .ttvnw-content .ttvnw-card p,
  .ttvnw-content .ttvnw-trust-card p,
  .ttvnw-content .ttvnw-step-card p,
  .ttvnw-content .ttvnw-note p {
    font-size: 16px;
  }

  .ttvnw-content .ttvnw-steps {
    gap: 22px;
    margin-top: 48px;
  }

  .ttvnw-content .ttvnw-step-card {
    gap: 34px;
    padding: 32px;
  }

  .ttvnw-content .ttvnw-note {
    margin-top: 38px;
    padding: 30px 34px;
  }
}