:root {
  --bg: #050816;
  --bg-soft: #091124;
  --surface: rgba(10, 18, 37, 0.72);
  --surface-strong: rgba(11, 20, 44, 0.92);
  --text: #f4f7ff;
  --muted: #9cacd7;
  --line: rgba(118, 146, 212, 0.18);
  --cyan: #1ddfff;
  --cyan-soft: rgba(29, 223, 255, 0.18);
  --gold: #ffca72;
  --gold-soft: rgba(255, 202, 114, 0.2);
  --success: #33ffba;
  --danger: #ff6a88;
  --shadow: 0 30px 90px rgba(3, 8, 22, 0.58);
  --radius: 28px;
  --container: 1180px;
  --ease: 280ms cubic-bezier(0.22, 1, 0.36, 1);
  --scroll-progress: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(17, 124, 255, 0.16), transparent 38%),
    radial-gradient(circle at 80% 18%, rgba(255, 194, 97, 0.12), transparent 28%),
    linear-gradient(180deg, #030611 0%, #050816 35%, #060a18 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.22;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.88), transparent 92%);
}

::selection {
  background: rgba(29, 223, 255, 0.24);
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.hero-canvas,
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.hero-canvas {
  z-index: -3;
  opacity: 0.72;
}

.ambient {
  z-index: -2;
  filter: blur(80px);
}

.ambient-a {
  top: 10%;
  left: -12%;
  width: 32rem;
  height: 32rem;
  background: rgba(18, 109, 255, 0.16);
  animation: floatAmbient 12s ease-in-out infinite;
}

.ambient-b {
  right: -8%;
  top: 28%;
  width: 26rem;
  height: 26rem;
  background: rgba(255, 201, 106, 0.12);
  animation: floatAmbient 14s ease-in-out infinite reverse;
}

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top, rgba(28, 126, 255, 0.2), transparent 30%),
    rgba(3, 6, 16, 0.96);
  transition:
    opacity 500ms ease,
    visibility 500ms ease;
}

.loading-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-core {
  width: min(90vw, 420px);
  padding: 2rem;
  border-radius: 26px;
  border: 1px solid rgba(135, 165, 255, 0.16);
  background: linear-gradient(180deg, rgba(11, 18, 37, 0.96), rgba(7, 12, 24, 0.9));
  box-shadow: var(--shadow);
  text-align: center;
}

.loading-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.loading-logo__mark,
.brand-mark {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  box-shadow:
    0 0 0 8px rgba(29, 223, 255, 0.08),
    0 0 30px rgba(29, 223, 255, 0.46);
}

.loading-bar {
  height: 10px;
  margin: 1.5rem 0 1rem;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.loading-bar span {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  animation: loadingBar 1.7s ease-in-out infinite;
}

.loading-core p {
  margin: 0;
  color: var(--muted);
}

.site-header,
.section,
.hero,
.site-footer {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(114, 139, 196, 0.12);
  border-radius: 22px;
  background: rgba(4, 9, 23, 0.74);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(2, 6, 20, 0.4);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-copy {
  display: grid;
  gap: 0.18rem;
}

.brand-copy strong {
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
  letter-spacing: 0.1em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: inline-flex;
  gap: 1.25rem;
  color: var(--muted);
}

.site-nav a {
  position: relative;
  font-size: 0.95rem;
  transition: color var(--ease);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.42rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: calc(100svh - 6rem);
  padding-top: clamp(3.2rem, 6vw, 5.4rem);
  padding-bottom: 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 4rem);
  min-height: calc(100svh - 12rem);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-copy {
  padding-top: 1.2rem;
}

.eyebrow,
.section-tag,
.plan-badge,
.proof-chip,
.urgency-card__tag,
.plan-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(108, 139, 216, 0.18);
  background: rgba(7, 14, 28, 0.52);
  color: #d4ddfa;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.4rem 0 1.6rem;
}

.hero-badges span {
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  background: rgba(9, 17, 34, 0.72);
  border: 1px solid rgba(104, 134, 199, 0.16);
  color: #cad6fb;
  font-size: 0.86rem;
}

.hero h1,
.section h2,
.final-cta__panel h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.02;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(2.8rem, 8vw, 5.7rem);
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.hero-subtitle {
  margin: 1.2rem 0 0;
  max-width: 36rem;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: #dce6ff;
  line-height: 1.4;
}

.hero-description,
.section-intro p,
.benefits-copy p,
.final-cta__panel p {
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-description {
  margin: 1.15rem 0 0;
}

.hero-actions,
.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.35rem;
  border-radius: 18px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transform:
    translate(var(--mx, 0px), var(--my, 0px))
    translateY(var(--hover-y, 0px))
    scale(var(--hover-scale, 1));
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    border-color var(--ease),
    background var(--ease),
    color var(--ease);
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 55%);
  opacity: 0;
  transition: opacity var(--ease);
}

.btn:hover,
.btn:focus-visible {
  --hover-y: -3px;
  --hover-scale: 1.01;
}

.btn:hover::before,
.btn:focus-visible::before {
  opacity: 1;
}

.btn-primary,
.btn-plan,
.btn-header,
.btn-large {
  color: #02101d;
  background: linear-gradient(135deg, var(--gold), #ffde8c);
  box-shadow:
    0 16px 40px rgba(255, 195, 72, 0.26),
    inset 0 -10px 18px rgba(255, 255, 255, 0.18);
}

.btn-header {
  padding-inline: 1.15rem;
}

.btn-secondary {
  border-color: rgba(120, 145, 218, 0.2);
  background: rgba(8, 16, 32, 0.64);
  color: #eef4ff;
}

.btn-plan {
  width: 100%;
  margin-top: auto;
}

.btn-large {
  padding-inline: 1.75rem;
  min-height: 3.8rem;
}

.hero-urgency {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  margin-top: 1.8rem;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  border: 1px solid rgba(110, 142, 216, 0.12);
  background: rgba(6, 12, 26, 0.58);
}

.hero-urgency strong,
.inline-counter strong {
  color: #ffffff;
}

.hero-urgency span,
.inline-counter {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  perspective: 1200px;
  padding-top: 2rem;
}

.market-stage {
  position: relative;
  padding: 1.7rem;
  min-height: 41rem;
  border-radius: 34px;
  border: 1px solid rgba(130, 157, 218, 0.16);
  background:
    radial-gradient(circle at top right, rgba(255, 193, 66, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(10, 18, 36, 0.84), rgba(7, 12, 25, 0.92));
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.market-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.76), transparent 100%);
}

.market-stage__shine {
  position: absolute;
  inset: auto auto 18% -10%;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 223, 255, 0.24), transparent 72%);
  filter: blur(16px);
}

.market-stage__topline,
.market-stage__stats,
.proof-panel__top,
.proof-metrics,
.urgency-points {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.market-stage__topline,
.proof-panel__top {
  position: relative;
  z-index: 2;
  align-items: center;
  color: #b9c9f3;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.market-stage__center {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.4rem;
  margin-top: 1.6rem;
}

.market-stage__headline {
  max-width: 20rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.1;
}

.market-chart {
  width: 100%;
  height: auto;
  min-height: 14rem;
}

.chart-area {
  fill: url(#chartArea);
}

.chart-line {
  fill: none;
  stroke: url(#chartStroke);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: url(#chartGlow);
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: chartDraw 2.8s ease forwards 0.7s;
}

.chart-points circle {
  fill: #fff0ca;
  stroke: rgba(29, 223, 255, 0.32);
  stroke-width: 9;
  opacity: 0;
  animation: pointPop 0.6s ease forwards;
}

.chart-points circle:nth-child(1) {
  animation-delay: 1s;
}

.chart-points circle:nth-child(2) {
  animation-delay: 1.25s;
}

.chart-points circle:nth-child(3) {
  animation-delay: 1.55s;
}

.chart-points circle:nth-child(4) {
  animation-delay: 1.8s;
}

.chart-points circle:nth-child(5) {
  animation-delay: 2.1s;
}

.market-stage__stats {
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.35rem;
}

.market-stage__stats div,
.proof-metrics div,
.urgency-points div {
  display: grid;
  gap: 0.4rem;
}

.market-stage__stats span,
.proof-metrics small,
.plan-price small,
.testimonial span,
.panel-note,
.site-footer p,
.urgency-card p,
.difference p,
.faq-answer p,
.text-link,
.proof-bars span {
  color: var(--muted);
}

.market-stage__stats span,
.proof-metrics small {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.market-stage__stats strong,
.proof-metrics strong {
  font-size: 1.05rem;
  line-height: 1.45;
}

.floating-chip {
  display: none;
}

.ticker {
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(7, 12, 26, 0.58);
}

.ticker-track {
  display: flex;
  gap: 2.2rem;
  padding: 1rem 0;
  width: max-content;
  font-family: "Sora", sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d3def8;
  animation: ticker 22s linear infinite;
}

.section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.section-intro,
.benefits-copy,
.final-cta__panel {
  display: grid;
  gap: 1.2rem;
}

.section h2,
.final-cta__panel h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 4vw, 3.8rem);
  letter-spacing: -0.04em;
}

.proof-grid,
.urgency-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1.5rem;
  margin-top: 2.2rem;
}

.proof-panel,
.testimonial,
.benefit-item,
.plan-card,
.urgency-panel,
.difference,
.faq-item,
.final-cta__panel {
  position: relative;
  border: 1px solid rgba(115, 141, 202, 0.14);
  background:
    linear-gradient(180deg, rgba(10, 18, 37, 0.84), rgba(6, 12, 25, 0.76)),
    rgba(8, 16, 32, 0.72);
  box-shadow:
    0 20px 64px rgba(2, 6, 18, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.proof-panel,
.difference,
.faq-item,
.benefit-item,
.testimonial,
.plan-card,
.final-cta__panel {
  border-radius: 28px;
}

.proof-panel {
  padding: 1.6rem;
}

.proof-metrics {
  margin-top: 2rem;
}

.proof-metrics strong {
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
}

.proof-bars {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.proof-bars div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem 1rem;
  align-items: center;
}

.proof-bars i {
  grid-column: 1 / -1;
  position: relative;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.proof-bars i::before {
  content: "";
  position: absolute;
  inset: 0;
  width: var(--fill);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  box-shadow: 0 0 26px rgba(29, 223, 255, 0.3);
}

.panel-note {
  margin-top: 1.6rem;
  font-size: 0.92rem;
  line-height: 1.7;
}

.testimonial-stack,
.faq-list {
  display: grid;
  gap: 1rem;
}

.testimonial {
  padding: 1.45rem;
}

.testimonial__quote {
  font-family: "Sora", sans-serif;
  font-size: 3rem;
  line-height: 1;
  color: rgba(255, 202, 114, 0.72);
}

.testimonial p,
.difference p,
.faq-answer p,
.plan-description,
.benefit-item p {
  line-height: 1.75;
}

.testimonial strong,
.difference h3,
.benefit-item h3,
.plan-card h3 {
  font-family: "Sora", sans-serif;
}

.testimonial strong {
  margin-top: 1.2rem;
}

.benefits-copy h2 {
  max-width: 11ch;
}

.benefits-grid,
.plans-grid,
.differentials-grid {
  display: grid;
  gap: 1.15rem;
  margin-top: 2rem;
}

.section-intro--plans h2 {
  max-width: 8ch;
}

.plans-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.5rem;
}

.plans-overview__item {
  padding: 1rem 1.05rem;
  border-radius: 22px;
  border: 1px solid rgba(104, 132, 196, 0.14);
  background: rgba(8, 15, 31, 0.54);
}

.plans-overview__item strong,
.plan-spec strong,
.plan-name h3,
.plan-price-note {
  display: block;
}

.plans-overview__item strong {
  font-size: 0.96rem;
  color: #eff5ff;
}

.plans-overview__item span {
  display: block;
  margin-top: 0.4rem;
  color: var(--muted);
  line-height: 1.55;
}

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

.benefit-item {
  padding: 1.6rem;
}

.benefit-item span,
.plan-card .plan-label {
  color: #d7e4ff;
}

.benefit-item span {
  font-family: "Sora", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
}

.benefit-item h3 {
  margin: 0.9rem 0 0;
  font-size: 1.25rem;
}

.plans-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 1.35rem;
}

.plan-card {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 1.5rem 1.35rem 1.35rem;
  border-radius: 32px;
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(29, 223, 255, 0.18), transparent 58%);
  opacity: 0.4;
  transition: opacity var(--ease);
}

.plan-card:hover::before,
.plan-card:focus-within::before {
  opacity: 1;
}

.plan-card__header {
  display: grid;
  grid-template-areas:
    "badge"
    "label"
    "name"
    "description";
  grid-template-rows: 2.8rem 4.2rem auto minmax(8.2rem, auto);
  gap: 0.85rem;
  align-content: start;
}

.plan-name {
  grid-area: name;
  display: grid;
  gap: 0.2rem;
  align-content: start;
  min-height: 5rem;
}

.plan-name__eyebrow {
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9fb4ee;
}

.plan-badge {
  grid-area: badge;
  align-self: start;
}

.plan-label {
  grid-area: label;
  align-self: start;
}

.plan-name h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 3.3vw, 2.9rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.plan-price-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem 1rem;
  padding: 1rem 0 0.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  min-height: 6rem;
}

.plan-price {
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.05em;
}

.plan-price-note {
  max-width: 8rem;
  color: #d9e4ff;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: right;
}

.plan-price small {
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  letter-spacing: normal;
}

.plan-description {
  grid-area: description;
  min-height: 6.8rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  max-width: none;
}

.plan-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  align-self: start;
}

.plan-spec {
  padding: 0.9rem 0.95rem;
  border-radius: 20px;
  border: 1px solid rgba(115, 141, 202, 0.14);
  background: rgba(10, 17, 34, 0.54);
}

.plan-spec small {
  display: block;
  margin-bottom: 0.4rem;
  color: #94a9de;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-spec strong {
  color: #f3f7ff;
  font-size: 1rem;
  line-height: 1.25;
}

.plan-features {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
  list-style: none;
  min-height: 8.3rem;
  align-content: start;
}

.plan-features li {
  position: relative;
  padding-left: 1.4rem;
  color: #d5dff9;
  line-height: 1.55;
}

.plan-features li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  box-shadow: 0 0 16px rgba(29, 223, 255, 0.36);
}

.plan-footnote {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
  min-height: 3.4rem;
}

.plan-card--silver {
  background:
    radial-gradient(circle at top left, rgba(120, 154, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(9, 16, 33, 0.94), rgba(5, 11, 24, 0.92));
}

.plan-card--gold .plan-name h3,
.plan-card--featured .plan-price {
  color: #fff3d4;
}

.plan-card--featured {
  transform: translateY(-0.7rem);
  border-color: rgba(255, 202, 114, 0.3);
  background:
    radial-gradient(circle at top, rgba(255, 202, 114, 0.18), transparent 52%),
    linear-gradient(180deg, rgba(14, 22, 40, 0.96), rgba(7, 12, 25, 0.9));
  box-shadow:
    0 26px 90px rgba(255, 193, 66, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.plan-card--diamond {
  border-color: rgba(29, 223, 255, 0.26);
  background:
    radial-gradient(circle at top right, rgba(29, 223, 255, 0.18), transparent 46%),
    linear-gradient(180deg, rgba(13, 22, 44, 0.96), rgba(7, 12, 25, 0.9));
}

.plan-card--diamond .plan-name h3 {
  color: #d8f9ff;
}

.plan-badge {
  background: linear-gradient(135deg, rgba(255, 202, 114, 0.16), rgba(255, 202, 114, 0.08));
  border-color: rgba(255, 202, 114, 0.24);
  color: #ffe3af;
}

.urgency-panel {
  align-items: center;
  padding: 1.5rem;
  border-radius: 34px;
}

.urgency-copy h2 {
  font-size: clamp(2rem, 3vw, 3.4rem);
}

.urgency-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.urgency-points {
  flex-direction: column;
  margin-top: 1.6rem;
}

.urgency-points strong,
.difference h3,
.faq-question,
.benefit-item h3 {
  color: #f7fbff;
}

.urgency-card {
  padding: 1.8rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 202, 114, 0.18);
  background:
    radial-gradient(circle at top, rgba(255, 202, 114, 0.16), transparent 55%),
    rgba(7, 12, 24, 0.86);
  text-align: center;
}

.countdown {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  letter-spacing: -0.06em;
  color: #fff4d8;
}

.differentials-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.difference {
  padding: 1.45rem;
}

.difference h3 {
  margin: 0;
  font-size: 1.12rem;
}

.faq-item {
  padding: 0.25rem 1.2rem;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.2rem 0;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 1.06rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  position: relative;
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.faq-question span::before,
.faq-question span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  transform: translateY(-50%);
  transition: transform var(--ease);
}

.faq-question span::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item.is-open .faq-question span::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--ease);
}

.faq-answer p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding-bottom: 1.25rem;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.final-cta {
  padding-bottom: 6rem;
}

.final-cta__panel {
  padding: clamp(1.8rem, 4vw, 3rem);
  background:
    radial-gradient(circle at top, rgba(255, 202, 114, 0.14), transparent 50%),
    linear-gradient(180deg, rgba(12, 20, 40, 0.92), rgba(6, 12, 24, 0.88));
  text-align: center;
}

.final-cta__panel h2,
.final-cta__panel p {
  max-width: 22ch;
  margin-inline: auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--text);
}

.site-footer {
  padding-bottom: 2rem;
  text-align: center;
}

.site-footer p {
  margin: 0 auto;
  max-width: 62rem;
  font-size: 0.92rem;
  line-height: 1.8;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(73, 255, 176, 0.24);
  background: linear-gradient(135deg, #0dbf63, #18de7b);
  color: #04130b;
  font-weight: 800;
  box-shadow:
    0 18px 52px rgba(10, 191, 99, 0.32),
    0 0 0 0 rgba(24, 222, 123, 0.24);
  animation: pulse 2.6s infinite;
}

.whatsapp-float svg {
  width: 1.25rem;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.interactive-card {
  transform:
    translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0)
    perspective(1000px)
    rotateX(calc(var(--ry, 0) * 1deg))
    rotateY(calc(var(--rx, 0) * 1deg))
    translateY(var(--lift, 0px));
  transition:
    transform var(--ease),
    border-color var(--ease),
    box-shadow var(--ease);
  will-change: transform;
}

.interactive-card:hover,
.interactive-card:focus-within {
  --lift: -6px;
  border-color: rgba(174, 199, 255, 0.24);
  box-shadow:
    0 28px 80px rgba(2, 6, 18, 0.48),
    0 0 40px rgba(29, 223, 255, 0.08);
}

@media (max-width: 1140px) {
  .plans-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plans-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .hero-grid,
  .proof-grid,
  .urgency-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 2rem;
  }

  .market-stage {
    min-height: 34rem;
  }

  .benefits-grid,
  .differentials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plans-overview {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header,
  .section,
  .hero,
  .site-footer {
    width: min(calc(100% - 1.2rem), var(--container));
  }

  .site-header {
    margin-top: 0.6rem;
    padding: 0.8rem 0.9rem;
  }

  .brand-copy small,
  .btn-header {
    display: none;
  }

  .hero-badges,
  .hero-actions,
  .final-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .final-cta__actions .btn {
    width: 100%;
  }

  .floating-chip--left,
  .floating-chip--right {
    inset: auto auto 1rem 1rem;
  }

  .floating-chip {
    display: none;
  }

  .floating-chip--right {
    left: auto;
    right: 1rem;
    bottom: 4.8rem;
  }

  .floating-chip--bottom {
    left: 1rem;
    bottom: 8.4rem;
  }

  .benefits-grid,
  .plans-grid,
  .differentials-grid {
    grid-template-columns: 1fr;
  }

  .plan-price-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .plan-price-note {
    max-width: none;
    text-align: left;
  }

  .plan-specs {
    grid-template-columns: 1fr 1fr;
  }

  .market-stage {
    min-height: auto;
    padding: 1rem;
  }

  .market-stage__center {
    gap: 0.9rem;
    margin-top: 1.25rem;
  }

  .market-stage__headline {
    max-width: 11rem;
    font-size: 1.45rem;
  }

  .market-chart {
    min-height: 10rem;
  }

  .market-stage__stats span {
    font-size: 0.68rem;
  }

  .market-stage__stats strong {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .plan-card--featured {
    transform: none;
  }

  .proof-metrics {
    flex-direction: column;
  }

  .market-stage__topline,
  .proof-panel__top {
    flex-direction: column;
  }

  .urgency-card {
    padding: 1.35rem;
  }

  .whatsapp-float {
    right: 0.7rem;
    bottom: 0.7rem;
    width: 3.35rem;
    height: 3.35rem;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@keyframes loadingBar {
  0% {
    transform: scaleX(0.12);
    opacity: 0.4;
  }

  50% {
    transform: scaleX(0.85);
    opacity: 1;
  }

  100% {
    transform: scaleX(1);
    opacity: 0.6;
  }
}

@keyframes floatAmbient {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(2rem, -1.5rem, 0);
  }
}

@keyframes floatChip {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes chartDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes pointPop {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    box-shadow:
      0 18px 52px rgba(10, 191, 99, 0.32),
      0 0 0 0 rgba(24, 222, 123, 0.28);
  }

  70% {
    box-shadow:
      0 18px 52px rgba(10, 191, 99, 0.32),
      0 0 0 18px rgba(24, 222, 123, 0);
  }

  100% {
    box-shadow:
      0 18px 52px rgba(10, 191, 99, 0.32),
      0 0 0 0 rgba(24, 222, 123, 0);
  }
}
