:root {
  --bg: #050607;
  --bg-2: #080b0d;
  --surface: #0b0f11;
  --surface-2: #101517;
  --surface-3: #151b1d;
  --ink: #f3f6f4;
  --ink-2: #b3bdba;
  --ink-3: #85908d;
  --aqua: #72f0dc;
  --aqua-strong: #a5ffef;
  --aqua-soft: rgba(114, 240, 220, 0.11);
  --acid: #c8ff68;
  --gold: #e7bd70;
  --red: #ff6678;
  --green: #72f0b3;
  --line: rgba(230, 241, 236, 0.11);
  --line-strong: rgba(230, 241, 236, 0.2);
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.45);
  --display: "Archivo", sans-serif;
  --sans: "Space Grotesk", sans-serif;
  --mono: "JetBrains Mono", monospace;
  --wrap: 1360px;
}

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

html {
  background: var(--bg);
  scroll-behavior: smooth;
  scrollbar-color: var(--aqua) var(--bg-2);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: transparent;
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button {
  font: inherit;
}

a {
  color: inherit;
}

svg {
  display: block;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(ellipse 72% 48% at 50% -12%, rgba(114, 240, 220, 0.09), transparent 72%),
    linear-gradient(180deg, #07090a 0%, #050607 44%, #07090a 100%);
}

.ambient::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 6, 7, 0.82), transparent 28%, transparent 72%, rgba(5, 6, 7, 0.82));
}

.ambient-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(220, 240, 233, 0.027) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220, 240, 233, 0.027) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 90%);
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
}

.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.13;
}

.ambient-glow-a {
  width: 560px;
  height: 560px;
  top: 12%;
  right: -240px;
  background: var(--aqua);
  animation: glowDrift 18s ease-in-out infinite alternate;
}

.ambient-glow-b {
  width: 420px;
  height: 420px;
  bottom: 8%;
  left: -220px;
  background: var(--gold);
  animation: glowDrift 24s ease-in-out -8s infinite alternate-reverse;
}

.ambient-chart {
  position: absolute;
  inset: auto -4% 7%;
  height: 32vh;
  min-height: 260px;
  opacity: 0.14;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 24%, #000 72%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 24%, #000 72%, transparent);
}

.ambient-chart svg {
  width: 100%;
  height: 100%;
}

.ambient-noise {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.13'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--aqua), var(--acid));
  box-shadow: 0 0 18px rgba(114, 240, 220, 0.6);
}

@keyframes glowDrift {
  to { transform: translate3d(-80px, 70px, 0) scale(1.14); }
}

.wrap {
  width: min(var(--wrap), calc(100% - clamp(36px, 6vw, 96px)));
  margin-inline: auto;
}

.urgency-bar {
  position: sticky;
  top: 0;
  z-index: 80;
  min-height: 44px;
  color: var(--ink-2);
  background: rgba(5, 7, 8, 0.84);
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.055em;
}

.urgency-inner {
  width: min(var(--wrap), calc(100% - 36px));
  min-height: 44px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.urgency-bar b {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.urgency-bar .sep {
  color: var(--ink-3);
}

.pulse {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(255, 102, 120, 0.45);
  animation: pulse 1.8s ease-out infinite;
}

.timer {
  color: var(--aqua-strong);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(255, 102, 120, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 102, 120, 0); }
}

.hero {
  padding-top: clamp(28px, 5vw, 72px);
  padding-bottom: clamp(42px, 5vw, 70px);
}

.hero-shell {
  position: relative;
  min-height: clamp(630px, 66vw, 760px);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: clamp(24px, 3vw, 38px);
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.055), transparent 32%),
    radial-gradient(circle at 76% 42%, rgba(114, 240, 220, 0.1), transparent 32%),
    rgba(10, 13, 14, 0.77);
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.04);
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: radial-gradient(circle at 73% 50%, #000, transparent 66%);
  mask-image: radial-gradient(circle at 73% 50%, #000, transparent 66%);
}

.hero-shell::after {
  content: "";
  position: absolute;
  inset: auto 7% -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--aqua), transparent);
  opacity: 0.55;
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: 75%;
  padding: clamp(34px, 6.1vw, 86px);
  padding-right: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: clamp(26px, 4vw, 46px);
  padding: 9px 15px;
  color: var(--ink-2);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(5, 7, 8, 0.68);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 14px var(--aqua);
}

.hero h1 {
  max-width: 1040px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 7.35vw, 108px);
  font-weight: 900;
  line-height: 0.91;
  letter-spacing: -0.067em;
  text-wrap: balance;
}

.hero h1 .accent,
.faq h2 .accent,
.final h2 .accent {
  color: var(--aqua);
  background: linear-gradient(110deg, var(--aqua-strong), var(--acid));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lede {
  max-width: 680px;
  margin: clamp(26px, 3vw, 36px) 0 0;
  color: var(--ink-2);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.72;
}

.market-visual {
  position: absolute;
  z-index: 2;
  top: 7%;
  right: -4%;
  width: min(52vw, 690px);
  height: 78%;
  perspective: 1200px;
}

.market-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(114, 240, 220, 0.25);
  border-radius: 28px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.06), transparent 30%),
    rgba(7, 11, 12, 0.88);
  box-shadow:
    0 60px 100px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(114, 240, 220, 0.08),
    inset 0 1px rgba(255, 255, 255, 0.06);
  transform: rotateY(-8deg) rotateZ(2.5deg);
  transform-origin: 50% 50%;
  transition: transform 700ms cubic-bezier(.2, .8, .2, 1), border-color 400ms ease;
}

.hero-shell:hover .market-frame {
  border-color: rgba(114, 240, 220, 0.42);
  transform: rotateY(-3deg) rotateZ(1deg) translateX(-10px);
}

.frame-bar {
  position: absolute;
  inset: 0 0 auto;
  z-index: 3;
  height: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 10, 11, 0.86);
}

.frame-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink-3);
  opacity: 0.55;
}

.frame-bar i:nth-child(2) { background: var(--gold); }
.frame-bar i:nth-child(3) { background: var(--aqua); }

.frame-bar span {
  width: 28%;
  height: 4px;
  margin-left: auto;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
}

.frame-bar span::after {
  content: "";
  display: block;
  width: 64%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--aqua), var(--acid));
  animation: frameBar 4.4s ease-in-out infinite alternate;
}

@keyframes frameBar {
  to { transform: translateX(55%); }
}

.hero-chart {
  position: absolute;
  inset: 50px 0 0;
  width: 100%;
  height: calc(100% - 50px);
}

.chart-grid path {
  fill: none;
  stroke: rgba(223, 238, 232, 0.08);
  stroke-width: 1;
}

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

.chart-line {
  fill: none;
  stroke: var(--aqua);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  filter: url(#lineGlow);
  animation: drawLine 2.2s 0.45s cubic-bezier(.2, .8, .2, 1) forwards;
}

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

.candles path {
  fill: rgba(114, 240, 220, 0.1);
  stroke: var(--aqua);
  stroke-width: 2;
  opacity: 0.6;
}

.candles path:nth-child(3n + 1) {
  fill: rgba(255, 102, 120, 0.08);
  stroke: var(--red);
}

.crosshair {
  position: absolute;
  z-index: 3;
  width: 13px;
  height: 13px;
  border: 1px solid var(--aqua);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(114, 240, 220, 0.8);
}

.crosshair::before,
.crosshair::after {
  content: "";
  position: absolute;
  background: rgba(114, 240, 220, 0.35);
}

.crosshair::before { top: 5px; left: -90px; width: 190px; height: 1px; }
.crosshair::after { top: -90px; left: 5px; width: 1px; height: 190px; }
.crosshair-a { left: 52%; top: 45%; }
.crosshair-b { left: 81%; top: 31%; transform: scale(0.75); opacity: 0.6; }

.market-scan {
  position: absolute;
  z-index: 2;
  inset: 50px 0 auto;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(114, 240, 220, 0.055), transparent);
  animation: marketScan 6s linear infinite;
}

@keyframes marketScan {
  from { transform: translateY(-80px); }
  to { transform: translateY(540px); }
}

.marquee {
  position: absolute;
  z-index: 5;
  inset: auto clamp(34px, 6.1vw, 86px) clamp(26px, 4vw, 45px);
  display: flex;
  align-items: center;
  gap: clamp(18px, 3.2vw, 48px);
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.marquee svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: var(--aqua);
  stroke-width: 2.5;
}

.pricing {
  padding-top: clamp(50px, 7vw, 100px);
  padding-bottom: clamp(82px, 9vw, 130px);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(16px, 1.8vw, 26px);
}

.grid-3.single-offer {
  grid-template-columns: minmax(0, 680px);
  justify-content: center;
}

.plan {
  --plan-accent: var(--aqua);
  --plan-accent-rgb: 114, 240, 220;
  position: relative;
  overflow: visible;
  min-height: 660px;
  padding: clamp(26px, 2.5vw, 38px);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.045), transparent 27%),
    radial-gradient(circle at 15% 0%, rgba(var(--plan-accent-rgb), 0.085), transparent 31%),
    rgba(10, 14, 15, 0.9);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28), inset 0 1px rgba(255, 255, 255, 0.035);
  transition: transform 420ms cubic-bezier(.2, .8, .2, 1), border-color 420ms ease, box-shadow 420ms ease;
}

.plan::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 9%;
  width: 82%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--plan-accent-rgb), 0.78), transparent);
}

.plan:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--plan-accent-rgb), 0.3);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.4), 0 0 50px rgba(var(--plan-accent-rgb), 0.055);
}

.plan.featured {
  z-index: 2;
  border-color: rgba(114, 240, 220, 0.32);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.07), transparent 27%),
    radial-gradient(circle at 15% 0%, rgba(114, 240, 220, 0.15), transparent 36%),
    rgba(10, 16, 17, 0.96);
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.43), 0 0 80px rgba(114, 240, 220, 0.07);
  transform: translateY(-24px);
}

.plan.featured:hover {
  transform: translateY(-32px);
}

.single-offer .plan {
  min-height: 0;
}

.single-offer .plan.featured {
  transform: none;
}

.single-offer .plan.featured:hover {
  transform: translateY(-8px);
}

.single-offer .plan-head {
  min-height: 0;
}

.flag {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 7px 17px;
  color: #03100e;
  border: 1px solid var(--aqua-strong);
  border-radius: 999px;
  background: linear-gradient(100deg, var(--aqua), var(--acid));
  box-shadow: 0 10px 30px rgba(114, 240, 220, 0.24);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan-head {
  min-height: 156px;
}

.tier-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 11px;
  color: var(--plan-accent);
  border: 1px solid rgba(var(--plan-accent-rgb), 0.24);
  border-radius: 999px;
  background: rgba(var(--plan-accent-rgb), 0.075);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tier-label::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}

.plan h2 {
  margin: 0 0 13px;
  font-family: var(--display);
  font-size: clamp(27px, 2.25vw, 36px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.plan h2 .accent {
  color: var(--plan-accent);
}

.tag {
  margin: 0;
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.6;
}

.price-stack {
  margin-top: 28px;
  padding: 24px 0 23px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-strike {
  min-height: 25px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 6px;
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 10px;
}

.price-strike .old {
  position: relative;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 700;
}

.price-strike .old::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -4%;
  width: 108%;
  height: 1px;
  background: var(--red);
  transform: rotate(-7deg);
}

.save {
  padding: 3px 7px;
  color: var(--green);
  border: 1px solid rgba(114, 240, 179, 0.22);
  border-radius: 999px;
  background: rgba(114, 240, 179, 0.07);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-now {
  display: flex;
  align-items: baseline;
  gap: 7px;
  white-space: nowrap;
}

.currency {
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 17px;
  font-weight: 600;
}

.amount {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(52px, 4.7vw, 70px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.065em;
  font-variant-numeric: tabular-nums;
}

.once {
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.price-note {
  margin-top: 10px;
  color: var(--ink-3);
  font-size: 11px;
}

.price-note b {
  color: var(--ink);
  font-weight: 600;
}

.seats {
  margin: 18px 0 24px;
}

.seats-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.seats-top b {
  color: var(--red);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}

.seats-bar {
  height: 3px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
}

.seats-fill {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), #ffad66);
  box-shadow: 0 0 12px rgba(255, 102, 120, 0.4);
  transition: width 900ms cubic-bezier(.2, .8, .2, 1);
}

.features {
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 17px;
  list-style: none;
}

.features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.check {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--plan-accent);
  border: 1px solid rgba(var(--plan-accent-rgb), 0.24);
  border-radius: 8px;
  background: rgba(var(--plan-accent-rgb), 0.07);
}

.check svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.7;
}

.feature-text {
  flex: 1;
}

.feature-text b {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.feature-text small {
  display: block;
  color: var(--ink-3);
  font-size: 11px;
  line-height: 1.5;
}

.plan-footer {
  margin-top: auto;
}

.cta {
  position: relative;
  width: 100%;
  min-height: 56px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 12px 22px 18px;
  cursor: pointer;
  color: #03100e;
  border: 1px solid var(--aqua-strong);
  border-radius: 14px;
  background: linear-gradient(110deg, var(--aqua), #80f5bd);
  box-shadow: 0 16px 35px rgba(114, 240, 220, 0.15), inset 0 1px rgba(255, 255, 255, 0.45);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease, border-color 220ms ease;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, 0.3) 45%, transparent 65%);
  transform: translateX(-130%);
  transition: transform 650ms cubic-bezier(.2, .8, .2, 1);
}

.cta:hover::before {
  transform: translateX(130%);
}

.cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 22px 46px rgba(114, 240, 220, 0.23), inset 0 1px rgba(255, 255, 255, 0.45);
}

.cta svg {
  position: relative;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  transition: transform 220ms ease;
}

.cta:hover svg {
  transform: translateX(4px);
}

.cta-label,
.cta-price {
  position: relative;
}

.cta:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  filter: saturate(0.35);
  transform: none;
}

.cta:disabled::before {
  display: none;
}

.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.045em;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.trust-row svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.faq {
  padding-top: clamp(48px, 6vw, 84px);
  padding-bottom: clamp(82px, 9vw, 134px);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(520px, 1.5fr);
  gap: clamp(52px, 9vw, 140px);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 100px;
}

.faq h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(44px, 5.3vw, 78px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.058em;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 25px 4px;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(15px, 1.35vw, 19px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.plus {
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--aqua);
  border: 1px solid rgba(114, 240, 220, 0.2);
  border-radius: 50%;
  background: var(--aqua-soft);
  transition: transform 300ms ease, background 300ms ease;
}

.plus svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
}

.faq-item[open] .plus {
  color: #06110f;
  background: var(--aqua);
  transform: rotate(45deg);
}

.faq-body {
  max-width: 720px;
  padding: 0 56px 27px 4px;
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.75;
}

.faq-body b {
  color: var(--ink);
  font-weight: 600;
}

.final {
  padding-bottom: clamp(76px, 8vw, 120px);
}

.final-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(44px, 6vw, 84px) clamp(24px, 6vw, 80px);
  text-align: center;
  border: 1px solid rgba(114, 240, 220, 0.28);
  border-radius: clamp(24px, 3vw, 38px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 31%),
    linear-gradient(120deg, rgba(114, 240, 220, 0.12), rgba(200, 255, 104, 0.03) 52%, rgba(231, 189, 112, 0.08)),
    rgba(9, 14, 14, 0.92);
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.05);
}

.final-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000, transparent 72%);
  mask-image: radial-gradient(circle at 50% 30%, #000, transparent 72%);
}

.final-glow {
  position: absolute;
  z-index: -1;
  top: -240px;
  left: 50%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(114, 240, 220, 0.12);
  filter: blur(90px);
  transform: translateX(-50%);
}

.final h2 {
  max-width: 940px;
  margin: 0 auto;
  font-family: var(--display);
  font-size: clamp(35px, 5vw, 68px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.final h2 .accent {
  display: inline-block;
  margin-left: 0.12em;
  font-family: var(--mono);
  font-size: 0.72em;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}

.final-card > p {
  max-width: 620px;
  margin: 22px auto 34px;
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.7;
}

.final-card > p b {
  color: var(--ink);
}

.final-ctas {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 940px;
  margin: 0 auto;
}

.final-ctas.single-offer {
  grid-template-columns: minmax(0, 520px);
  justify-content: center;
  max-width: 520px;
}

.final-ctas .cta {
  min-height: 68px;
  flex-direction: column;
  gap: 2px;
}

.cta-price {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  opacity: 0.72;
}

.final-trust {
  margin-top: 24px;
  gap: 20px;
  font-size: 9px;
}

.wa-section {
  padding-bottom: clamp(72px, 8vw, 116px);
}

.wa-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(20px, 3vw, 38px);
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(110deg, rgba(37, 211, 102, 0.07), transparent 35%),
    rgba(10, 14, 15, 0.82);
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.25), inset 0 1px rgba(255, 255, 255, 0.035);
}

.wa-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: 18px;
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
}

.wa-icon svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.wa-copy h2 {
  margin: 0 0 5px;
  font-family: var(--display);
  font-size: clamp(21px, 2vw, 29px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.wa-copy p {
  margin: 0;
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.6;
}

.wa-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 22px;
  color: #04120a;
  border: 1px solid #52e389;
  border-radius: 13px;
  background: #25d366;
  box-shadow: 0 16px 35px rgba(37, 211, 102, 0.15), inset 0 1px rgba(255, 255, 255, 0.3);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.wa-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 20px 42px rgba(37, 211, 102, 0.23), inset 0 1px rgba(255, 255, 255, 0.3);
}

.wa-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

footer {
  padding: 27px clamp(20px, 4vw, 52px);
  color: var(--ink-3);
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-align: center;
  text-transform: uppercase;
}

.float-wa {
  position: fixed;
  z-index: 70;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35), 0 8px 24px rgba(37, 211, 102, 0.2);
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.float-wa::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(37, 211, 102, 0.45);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms ease;
}

.float-wa:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.4), 0 10px 28px rgba(37, 211, 102, 0.28);
}

.float-wa:hover::after {
  opacity: 1;
  transform: scale(1.08);
}

.float-wa svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.cta:focus-visible,
.wa-btn:focus-visible,
.float-wa:focus-visible,
.faq-item summary:focus-visible {
  outline: 2px solid var(--aqua-strong);
  outline-offset: 4px;
}

.reveal-pending {
  opacity: 0;
  transform: translateY(28px);
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 800ms ease, transform 800ms cubic-bezier(.2, .8, .2, 1);
}

@media (max-width: 1180px) {
  .hero-copy {
    width: 82%;
  }

  .market-visual {
    right: -11%;
    opacity: 0.68;
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 900px;
    margin-inline: auto;
  }

  .plan.featured,
  .plan.featured:hover {
    transform: none;
  }

  .plan-head {
    min-height: 138px;
  }

  .amount {
    font-size: 66px;
  }
}

@media (max-width: 900px) {
  .hero-shell {
    min-height: 800px;
    align-items: flex-start;
  }

  .hero-copy {
    width: 100%;
    padding-right: clamp(34px, 6.1vw, 86px);
  }

  .hero h1 {
    max-width: 760px;
  }

  .lede {
    max-width: 610px;
  }

  .market-visual {
    top: auto;
    right: -5%;
    bottom: 73px;
    width: 68%;
    height: 43%;
    opacity: 0.72;
  }

  .marquee {
    overflow: hidden;
    justify-content: space-between;
    gap: 18px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .faq-heading {
    position: static;
  }

  .faq h2 {
    max-width: 560px;
  }

  .wa-card {
    grid-template-columns: auto 1fr;
  }

  .wa-btn {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 720px) {
  .wrap {
    width: min(100% - 28px, var(--wrap));
  }

  .urgency-inner {
    width: calc(100% - 28px);
    min-height: 52px;
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    gap: 2px 9px;
    justify-content: stretch;
    padding: 7px 0;
    font-size: 9px;
  }

  .urgency-inner .sep {
    display: none;
  }

  .urgency-copy {
    grid-column: 2 / 5;
    font-size: 8px;
    white-space: nowrap;
  }

  .urgency-inner .timer {
    justify-self: end;
    grid-column: 4;
    grid-row: 1;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-shell {
    min-height: 756px;
    border-radius: 24px;
  }

  .hero-copy {
    padding: 28px 24px 0;
  }

  .eyebrow {
    margin-bottom: 27px;
    padding: 7px 11px;
    font-size: 8px;
    letter-spacing: 0.13em;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 66px);
    line-height: 0.92;
    letter-spacing: -0.062em;
  }

  .hero h1 br {
    display: none;
  }

  .lede {
    margin-top: 23px;
    font-size: 13px;
    line-height: 1.65;
  }

  .market-visual {
    right: -10%;
    bottom: 74px;
    width: 92%;
    height: 37%;
  }

  .market-frame {
    border-radius: 20px;
    transform: rotateY(-5deg) rotateZ(1.5deg);
  }

  .marquee {
    inset: auto 24px 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    gap: 9px 14px;
    padding-top: 16px;
    font-size: 8px;
  }

  .marquee span {
    min-width: 0;
    white-space: normal;
  }

  .grid-3 {
    grid-template-columns: 1fr;
    max-width: 540px;
    gap: 18px;
  }

  .plan {
    width: 100%;
    min-height: 0;
    grid-column: auto;
    padding: 27px 23px;
    border-radius: 22px;
  }

  .plan.featured {
    margin-top: 12px;
  }

  .plan-head {
    min-height: 0;
  }

  .tag {
    min-height: 0;
  }

  .price-stack {
    margin-top: 24px;
  }

  .amount {
    font-size: clamp(52px, 16vw, 68px);
  }

  .features {
    margin-bottom: 28px;
  }

  .faq {
    padding-top: 30px;
  }

  .faq-layout {
    gap: 30px;
  }

  .faq h2 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .faq-item summary {
    padding: 21px 2px;
    font-size: 15px;
  }

  .faq-body {
    padding: 0 6px 23px 2px;
    font-size: 12px;
  }

  .final-card {
    padding-inline: 20px;
  }

  .final h2 .accent {
    display: block;
    margin: 10px 0 0;
    font-size: 0.74em;
  }

  .final-ctas {
    grid-template-columns: 1fr;
  }

  .wa-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .wa-icon {
    margin-inline: auto;
  }

  .wa-copy p {
    font-size: 12px;
  }

  .float-wa {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 390px) {
  .urgency-inner {
    width: calc(100% - 22px);
    gap: 2px 7px;
  }

  .urgency-copy {
    letter-spacing: 0.01em;
  }

  .hero-shell {
    min-height: 782px;
  }

  .hero-copy {
    padding-inline: 20px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .market-visual {
    width: 104%;
  }

  .marquee {
    inset-inline: 20px;
  }

  .price-now {
    gap: 5px;
  }

  .amount {
    font-size: 50px;
  }

  .once {
    font-size: 7px;
  }
}

/* ===== Checkout modal (Whop embedded) ===== */
.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.32s ease, visibility 0s linear 0.32s;
}

.checkout-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.32s ease;
}

/* Niente backdrop-filter: un blur a tutto schermo durante la transizione
   di apertura droppa frame sui telefoni; con alpha .92 è indistinguibile. */
.checkout-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 8, 0.92);
  cursor: pointer;
}

.checkout-panel {
  position: relative;
  width: min(520px, 100%);
  max-height: min(92vh, 860px);
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translateY(16px) scale(0.985);
  transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.checkout-modal.open .checkout-panel {
  transform: none;
}

.checkout-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px 13px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
}

.checkout-title {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.checkout-title b {
  color: var(--aqua);
  font-weight: 700;
}

.checkout-title svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--aqua);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.checkout-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  color: var(--ink-2);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.checkout-close:hover {
  color: var(--aqua-strong);
  border-color: var(--line-strong);
  background: var(--aqua-soft);
}

.checkout-close svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.checkout-body {
  flex: 1;
  min-height: 430px;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--bg-2);
}

.checkout-body iframe {
  display: block;
  width: 100%;
}

html.checkout-lock,
html.checkout-lock body {
  overflow: hidden;
}

@media (max-width: 560px) {
  .checkout-modal {
    padding: 0;
    align-items: stretch;
  }

  .checkout-panel {
    width: 100%;
    max-height: none;
    border-radius: 0;
    border: none;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal-pending,
  .reveal-visible {
    opacity: 1;
    transform: none;
  }
}
