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

.ttwv-content {
  width: 100%;
  overflow-x: hidden;
  color: #172033;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ttwv-content,
.ttwv-content div,
.ttwv-content section,
.ttwv-content article {
  box-sizing: border-box;
}

.ttwv-content .ttwv-section {
  position: relative;
  overflow: hidden;
}

.ttwv-content .ttwv-section-white {
  background: #ffffff;
}

.ttwv-content .ttwv-section-soft {
  background: #f8fafc;
}

.ttwv-content .ttwv-section-soft::before,
.ttwv-content .ttwv-section-white::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -160px;
  top: -180px;
  background: radial-gradient(circle, rgba(37, 244, 238, 0.18), rgba(254, 44, 85, 0.08) 48%, transparent 70%);
  pointer-events: none;
}

.ttwv-content .ttwv-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

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

.ttwv-content .ttwv-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 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.10));
  color: #b9123e;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
}

.ttwv-content .ttwv-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25f4ee, #fe2c55);
  box-shadow: 0 0 18px rgba(254, 44, 85, 0.38);
}

.ttwv-content h2 {
  margin: 0;
  color: #111827;
  font-weight: 850;
  line-height: 1.1;
  letter-spacing: 0;
}

.ttwv-content .ttwv-section-head p {
  margin: 16px auto 0;
  max-width: 680px;
  color: #5b6575;
  line-height: 1.7;
}

.ttwv-content .ttwv-grid {
  display: grid;
  align-items: stretch;
}

.ttwv-content .ttwv-card,
.ttwv-content .ttwv-trust-card,
.ttwv-content .ttwv-step {
  position: relative;
  border: 1px solid rgba(20, 27, 43, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.ttwv-content .ttwv-card,
.ttwv-content .ttwv-trust-card {
  height: 100%;
  border-radius: 22px;
}

.ttwv-content .ttwv-card::after,
.ttwv-content .ttwv-trust-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.42), rgba(254, 44, 85, 0.30), transparent 54%);
  opacity: 0;
  pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: opacity 260ms ease;
}

.ttwv-content .ttwv-card:hover,
.ttwv-content .ttwv-trust-card:hover,
.ttwv-content .ttwv-step:hover {
  transform: translateY(-5px);
  border-color: rgba(254, 44, 85, 0.18);
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.12);
}

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

.ttwv-content .ttwv-icon {
  display: inline-flex;
  position: relative;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.18), rgba(254, 44, 85, 0.16));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.ttwv-content .ttwv-icon::before,
.ttwv-content .ttwv-icon::after {
  content: "";
  position: absolute;
  transition: transform 260ms ease;
}

.ttwv-content .ttwv-card:hover .ttwv-icon::before,
.ttwv-content .ttwv-card:hover .ttwv-icon::after {
  transform: translateY(-2px);
}

.ttwv-content .ttwv-icon-view::before {
  width: 23px;
  height: 15px;
  left: 11px;
  top: 15px;
  border: 2px solid #111827;
  border-radius: 50%;
}

.ttwv-content .ttwv-icon-view::after {
  width: 7px;
  height: 7px;
  left: 19px;
  top: 19px;
  border-radius: 50%;
  background: #fe2c55;
}

.ttwv-content .ttwv-icon-speed::before {
  width: 22px;
  height: 22px;
  left: 12px;
  top: 12px;
  border: 2px solid #111827;
  border-bottom-color: transparent;
  border-radius: 50%;
}

.ttwv-content .ttwv-icon-speed::after {
  width: 12px;
  height: 2px;
  left: 22px;
  top: 22px;
  background: #fe2c55;
  transform-origin: left center;
  transform: rotate(-32deg);
}

.ttwv-content .ttwv-icon-preview::before {
  width: 22px;
  height: 18px;
  left: 12px;
  top: 14px;
  border: 2px solid #111827;
  border-radius: 6px;
}

.ttwv-content .ttwv-icon-preview::after {
  width: 14px;
  height: 3px;
  left: 16px;
  top: 20px;
  border-radius: 8px;
  background: linear-gradient(90deg, #25f4ee, #fe2c55);
}

.ttwv-content .ttwv-icon-simple::before {
  width: 22px;
  height: 2px;
  left: 12px;
  top: 16px;
  background: #111827;
  box-shadow: 0 7px 0 #111827, 0 14px 0 #111827;
}

.ttwv-content .ttwv-icon-simple::after {
  width: 6px;
  height: 6px;
  left: 29px;
  top: 14px;
  border-radius: 50%;
  background: #fe2c55;
  box-shadow: 0 7px 0 #25f4ee, 0 14px 0 #fe2c55;
}

.ttwv-content .ttwv-icon-mobile::before {
  width: 18px;
  height: 26px;
  left: 14px;
  top: 10px;
  border: 2px solid #111827;
  border-radius: 7px;
}

.ttwv-content .ttwv-icon-mobile::after {
  width: 5px;
  height: 5px;
  left: 21px;
  top: 29px;
  border-radius: 50%;
  background: #25f4ee;
}

.ttwv-content .ttwv-icon-daily::before {
  width: 22px;
  height: 22px;
  left: 12px;
  top: 12px;
  border: 2px solid #111827;
  border-radius: 8px;
}

.ttwv-content .ttwv-icon-daily::after {
  width: 12px;
  height: 12px;
  left: 21px;
  top: 11px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25f4ee, #fe2c55);
}

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

.ttwv-content .ttwv-card p,
.ttwv-content .ttwv-trust-card p,
.ttwv-content .ttwv-step p {
  margin: 12px 0 0;
  color: #5b6575;
  line-height: 1.65;
}

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

.ttwv-content .ttwv-step {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  border-radius: 24px;
  overflow: hidden;
}

.ttwv-content .ttwv-step::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(37, 244, 238, 0.55), rgba(254, 44, 85, 0.45), transparent);
}

.ttwv-content .ttwv-step-number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 850;
  line-height: 1;
  border-radius: 18px;
  background: linear-gradient(135deg, #111827, #fe2c55);
  box-shadow: 0 16px 34px rgba(254, 44, 85, 0.22);
}

.ttwv-content .ttwv-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(37, 244, 238, 0.12);
  color: #0b6f72;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
}

.ttwv-content .ttwv-trust-card {
  overflow: hidden;
}

.ttwv-content .ttwv-trust-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #25f4ee, #fe2c55);
}

.ttwv-content .ttwv-trust-dot {
  display: inline-flex;
  width: 14px;
  height: 14px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25f4ee, #fe2c55);
  box-shadow: 0 0 0 8px rgba(254, 44, 85, 0.08), 0 0 26px rgba(37, 244, 238, 0.38);
}

.ttwv-content .ttwv-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.ttwv-content .ttwv-reveal.ttwv-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

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

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

  .ttwv-content h2 {
    font-size: 27px;
  }

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

  .ttwv-content .ttwv-grid,
  .ttwv-content .ttwv-steps {
    gap: 16px;
    margin-top: 30px;
  }

  .ttwv-content .ttwv-grid-six,
  .ttwv-content .ttwv-grid-three {
    grid-template-columns: 1fr;
  }

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

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

  .ttwv-content .ttwv-step::before {
    display: none;
  }

  .ttwv-content .ttwv-step-number {
    width: 52px;
    height: 52px;
    font-size: 16px;
  }

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

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

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

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

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

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

  .ttwv-content .ttwv-grid,
  .ttwv-content .ttwv-steps {
    gap: 18px;
    margin-top: 34px;
  }

  .ttwv-content .ttwv-grid-six,
  .ttwv-content .ttwv-grid-three {
    grid-template-columns: 1fr;
  }

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

  .ttwv-content .ttwv-step {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
  }

  .ttwv-content .ttwv-step::before {
    display: none;
  }

  .ttwv-content .ttwv-step-number {
    width: 56px;
    height: 56px;
    font-size: 17px;
  }

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

  .ttwv-content .ttwv-card p,
  .ttwv-content .ttwv-trust-card p,
  .ttwv-content .ttwv-step p {
    font-size: 14.5px;
  }
}

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

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

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

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

  .ttwv-content .ttwv-grid,
  .ttwv-content .ttwv-steps {
    gap: 20px;
    margin-top: 38px;
  }

  .ttwv-content .ttwv-grid-six,
  .ttwv-content .ttwv-grid-three {
    grid-template-columns: 1fr;
  }

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

  .ttwv-content .ttwv-step {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px;
  }

  .ttwv-content .ttwv-step::before {
    display: none;
  }

  .ttwv-content .ttwv-step-number {
    width: 58px;
    height: 58px;
    font-size: 18px;
  }

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

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

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

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

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

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

  .ttwv-content .ttwv-grid,
  .ttwv-content .ttwv-steps {
    gap: 22px;
    margin-top: 44px;
  }

  .ttwv-content .ttwv-grid-six,
  .ttwv-content .ttwv-grid-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .ttwv-content .ttwv-step {
    grid-template-columns: auto 1fr;
    gap: 22px;
    padding: 30px;
  }

  .ttwv-content .ttwv-step-number {
    width: 64px;
    height: 64px;
    font-size: 18px;
  }

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

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

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

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

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

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

  .ttwv-content .ttwv-grid,
  .ttwv-content .ttwv-steps {
    gap: 24px;
    margin-top: 50px;
  }

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

  .ttwv-content .ttwv-card,
  .ttwv-content .ttwv-trust-card {
    padding: 32px;
  }

  .ttwv-content .ttwv-step {
    grid-template-columns: auto 1fr;
    gap: 26px;
    padding: 34px;
  }

  .ttwv-content .ttwv-step-number {
    width: 68px;
    height: 68px;
    font-size: 19px;
  }

  .ttwv-content h3 {
    font-size: 22px;
  }

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