/* ? TOKENS ·· */
:root {
  --coral: #F05A5B;
  --coral-dim: rgba(240,90,91,0.12);
  --bg:    #0A0A0F;
  --bg-2:  #0F0F18;
  --bg-card: #13131E;
  --bg-elev: #1A1A28;
  --ink:   #F0F0F8;
  --ink-2: #B4B4CC;
  --ink-3: #7A7A96;
  --ink-4: #32324A;
  --rule:  rgba(255,255,255,0.08);
  --rule-soft: rgba(255,255,255,0.05);
  --glass: rgba(255,255,255,0.075);
  --glass-strong: rgba(255,255,255,0.11);
  --glass-border: rgba(255,255,255,0.14);
  --shadow-soft: 0 18px 60px rgba(0,0,0,0.24);
  --radius-lg: 22px;
  --radius-xl: 30px;
  --sans:  "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:  "DM Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --max:   1280px;
  --gutter: clamp(16px, 4vw, 64px);
  --radius: 8px;
  --ease-out: cubic-bezier(0.16,1,0.3,1);
  --ease-bounce: cubic-bezier(0.34,1.56,0.64,1);
}

/* ? RESET ··? */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

/* Offset anchor scroll so fixed nav doesn't cover section headings */
[id] { scroll-margin-top: 72px; }
body {
  font-family: var(--sans);
  font-size: clamp(0.95rem,1.1vw,1.0625rem);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: 57px;
}
p { text-wrap: pretty; }
img, svg { max-width: 100%; height: auto; }
a { text-decoration-thickness: 0.08em; text-underline-offset: 0.18em; }
:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 2px solid color-mix(in srgb, var(--coral) 85%, white);
  outline-offset: 4px;
  box-shadow: 0 0 0 6px rgba(240,90,91,0.12);
}

/* ? TYPOGRAPHY ··? */
h1,h2,h3,h4 {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
  line-height: 1.1;
}
h1 { font-size: clamp(2.2rem,6vw,5rem);   font-weight: 700; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem,4.5vw,3.5rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem,3vw,2rem);  font-weight: 600; }
h4 { font-size: 1.0625rem; font-weight: 600; }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 400;
}
.lede {
  font-size: clamp(1rem,1.5vw,1.25rem);
  line-height: 1.6;
  color: var(--ink-2);
  font-weight: 400;
}

/* ? LAYOUT ·· */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { position: relative; }

/* ? SECTION HEADER ·· */
.section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: clamp(32px,5vw,60px);
  align-items: flex-start;
  position: relative;
  padding-bottom: clamp(24px,4vw,48px);
}
.section-header::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--coral) 0%, transparent 100%);
  opacity: 0.4;
}
.section-eyebrow {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 500;
  display: inline-block;
  padding: 6px 12px;
  background: rgba(240,90,91,0.08);
  border: 1px solid rgba(240,90,91,0.2);
  border-radius: 20px;
}
.section-header h2 { margin-top: 8px; }
.section-header p  { margin-top: 8px; font-size: clamp(0.9375rem,1.4vw,1.125rem); color: var(--ink-2); max-width: 560px; }

/* ? KEYFRAMES ·· */

/* pulse: logo dot ? use transform+opacity only (GPU-composited) */
@keyframes pulse {
  0%   { transform: scale(1);    opacity: 1; }
  60%  { transform: scale(1.9);  opacity: 0; }
  100% { transform: scale(1);    opacity: 1; }
}
@keyframes float {
  0%,100% { transform:translateY(0) translateX(0); }
  25%      { transform:translateY(-20px) translateX(10px); }
  50%      { transform:translateY(-40px) translateX(-10px); }
  75%      { transform:translateY(-20px) translateX(15px); }
}
@keyframes blink {
  0%,50% { opacity:1; }
  51%,100% { opacity:0; }
}
@keyframes pulse-text {
  0%,100% { opacity:0.5; }
  50%      { opacity:1; }
}
/* glowPulse: replaced box-shadow with opacity (no repaint) */
@keyframes glowPulse {
  0%,100% { opacity: 0.5; }
  50%      { opacity: 1; }
}
/* highlightPulse: replaced box-shadow with scale (GPU-composited) */
@keyframes highlightPulse {
  0%,100% { transform: scale(1);    opacity: 0.6; }
  50%      { transform: scale(1.04); opacity: 1; }
}
@keyframes outcomeGlow {
  0%,100% { opacity:0.5; }
  50%      { opacity:1; }
}
/* ctaPulse: replaced box-shadow animation with subtle scale */
@keyframes ctaPulse {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-2px) scale(1.01); }
}
@keyframes subtlePulse {
  0%,100% { opacity:0.95; }
  50%      { opacity:1; }
}
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes shimmer {
  0%   { transform:translateX(-100%); }
  100% { transform:translateX(200%); }
}
@keyframes progressFill {
  from { width:0; }
  to   { width:100%; }
}
@keyframes progressFillV {
  from { height:0; }
  to   { height:100%; }
}
@keyframes dotPop {
  0%   { transform:scale(0); opacity:0; }
  60%  { transform:scale(1.3); }
  100% { transform:scale(1); opacity:1; }
}
@keyframes strikeDraw {
  from { transform:scaleX(0); }
  to   { transform:scaleX(1); }
}
@keyframes navSlideIn {
  from { opacity:0; transform:translateX(100%); }
  to   { opacity:1; transform:translateX(0); }
}

/* ? REDUCED MOTION ·· */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
/* ? NAV ··? */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--rule);
  background: rgba(10,10,15,0.72);
  transition: background 0.2s ease;
}
.nav.scrolled { background: rgba(10,10,15,0.95); }
.nav-blur {
  position: absolute; inset: 0;
  background: rgba(10,10,15,0.5);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  z-index: -1;
  pointer-events: none;
}
.nav .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-size: 1.125rem; font-weight: 700;
  color: var(--ink); letter-spacing: -0.02em; text-decoration: none;
  transition: opacity 0.2s; z-index: 110; position: relative;
}
.logo:hover { opacity: 0.8; }
.logo-dot {
  width: 8px; height: 8px; background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(240,90,91,0.3);
}

/* Desktop nav links */
.nav-links {
  display: flex; align-items: center; gap: 6px;
  justify-self: center;
}
.nav-links a {
  font-size: 0.875rem; color: var(--ink-2); text-decoration: none;
  font-weight: 400; padding: 8px 14px; border-radius: 6px;
  transition: color .15s, background .15s; min-height: 44px;
  display: inline-flex; align-items: center;
}
.nav-links a:hover { color: var(--ink); background: var(--bg-elev); }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  padding: 8px; z-index: 450; position: relative;
  justify-self: end;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.nav-mobile-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-mobile-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

/* Mobile nav */
@media (max-width: 767px) {
  .nav-burger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(320px, 85vw);
    background: #13131E;
    border-left: 1px solid rgba(255,255,255,0.08);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    justify-self: auto;
    padding: 80px 20px 32px;
    gap: 4px;
    z-index: 300;
    transform: translateX(100%);
    transition: transform 0.3s var(--ease-out);
    overflow-y: auto;
    box-shadow: -8px 0 40px rgba(0,0,0,0.5);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    font-size: 1.0625rem;
    padding: 13px 16px;
    border-radius: 10px;
    min-height: 48px;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    color: var(--ink-2);
  }
  .nav-links a:hover,
  .nav-links a:active { color: var(--ink); background: rgba(255,255,255,0.06); border-color: var(--rule); }
  .nav-links .btn-nav-cta {
    margin-top: 12px;
    justify-content: center;
    font-size: 1rem;
    padding: 15px;
    width: 100%;
  }
  .nav-mobile-overlay {
    display: block;
    z-index: 200;
    pointer-events: none;
  }
}

/* ? BUTTONS ·· */
.nav-cta-desktop {
  display: inline-flex;
}
.nav-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-nav-ghost {
  background: rgba(255, 255, 255, 0.07) !important;
  color: rgba(255, 255, 255, 0.4) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  padding: 0 !important;
  width: 36px !important;
  height: 36px !important;
  justify-content: center;
  align-self: center;
  box-shadow: none !important;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease !important;
}

.btn-nav-ghost::before {
  display: none !important;
}

.btn-nav-ghost:hover {
  background: rgba(255, 255, 255, 0.13) !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  color: rgba(255, 255, 255, 0.75) !important;
  transform: none !important;
  box-shadow: none !important;
}
.nav-cta-mobile,
.nav-links .nav-cta-mobile {
  display: none;
}
@media (max-width: 767px) {
  .nav .container {
    display: flex;
    align-items: center;
    gap: 0;
  }
  .nav-cta-desktop {
    display: none;
  }
  .nav-actions {
    display: inline-flex;
    margin-left: auto;
    margin-right: 8px;
  }
  .nav-actions .nav-cta-desktop {
    display: none;
  }
  .nav-actions #nav-contact-btn {
    display: inline-flex;
    width: 32px;
    height: 32px !important;
    min-height: 0 !important;
    padding: 0 !important;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
  }
  .nav-links .nav-cta-mobile {
    display: inline-flex;
  }
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 0.9375rem; font-weight: 500;
  text-decoration: none; padding: 12px 22px;
  border-radius: var(--radius); cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  letter-spacing: -0.01em; white-space: nowrap;
  position: relative; overflow: hidden;
  min-height: 44px;
}
.btn::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
  opacity: 0; transition: opacity .2s ease; pointer-events: none;
}
.btn:hover::before { opacity: 1; }
.btn-icon { display: inline-flex; align-items: center; justify-content: center; transition: transform .2s ease; }
.btn:hover .btn-icon { transform: translateX(4px); }
.btn-sm  { padding: 8px 16px; font-size: 0.8125rem; }
.btn-lg  { padding: 16px 32px; font-size: 1rem; }
.btn-xl  { padding: 18px 40px; font-size: 1.0625rem; font-weight: 600; }
.btn-full { width: 100%; justify-content: center; position: relative; z-index: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--ink) 0%, rgba(240,240,248,0.95) 100%);
  color: var(--bg); border-color: var(--ink);
  box-shadow: 0 8px 24px rgba(240,90,91,0.15);
}
.btn-primary:hover {
  background: linear-gradient(135deg, white 0%, var(--ink) 100%);
  border-color: white; box-shadow: 0 12px 32px rgba(240,90,91,0.25);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0) scale(0.97); }

.btn-ghost {
  background: transparent; color: var(--ink-2); border-color: var(--rule);
}
.btn-ghost:hover {
  color: var(--ink); border-color: var(--coral);
  background: rgba(240,90,91,0.08); box-shadow: 0 4px 16px rgba(240,90,91,0.1);
}

.btn-nav-cta {
  background: linear-gradient(135deg, var(--coral) 0%, #E84A4B 100%);
  color: white !important; border-color: var(--coral);
  box-shadow: 0 8px 20px rgba(240,90,91,0.3); font-weight: 600;
  overflow: hidden; transition: all 0.2s ease;
}
.btn-nav-cta::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  left: -100%; transition: left 0.6s ease;
}
.btn-nav-cta:hover::before { left: 100%; opacity: 1; }
.btn-nav-cta:hover {
  background: linear-gradient(135deg, #E84A4B 0%, var(--coral) 100%);
  border-color: white; box-shadow: 0 12px 32px rgba(240,90,91,0.5);
  transform: translateY(-2px);
}

.btn-buy {
  background: linear-gradient(135deg, var(--coral) 0%, #E84A4B 100%);
  color: white; border-color: var(--coral);
  box-shadow: 0 12px 32px rgba(240,90,91,0.3); font-weight: 700;
}
.btn-buy::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  left: -100%; transition: left 0.5s ease;
}
.btn-buy:hover::before { left: 100%; opacity: 1; }
.btn-buy:hover {
  background: linear-gradient(135deg, #E84A4B 0%, var(--coral) 100%);
  border-color: white; box-shadow: 0 20px 60px rgba(240,90,91,0.5);
  transform: translateY(-3px) scale(1.02);
}
.btn-buy:active { transform: translateY(-1px) scale(0.98); }

.btn-secondary {
  background: rgba(255,255,255,0.03);
  color: white; border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* ? HERO ··? */
.hero {
  padding: clamp(64px, 10vw, 120px) 0 clamp(48px, 8vw, 84px);
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(240,90,91,0.08), transparent 28rem),
    radial-gradient(circle at 88% 22%, rgba(139,127,217,0.06), transparent 26rem),
    linear-gradient(135deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 12px),
    var(--bg);
}

.hero::before {
  content: ""; position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(240,90,91,0.12) 0%, transparent 70%),
    linear-gradient(to bottom, rgba(10,10,15,0) 0%, var(--bg) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Subtle grid pattern for hero background */
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center center;
  mask-image: radial-gradient(circle at 50% 0%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 0%, black 20%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.hero-bg {
  position: absolute; inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
  animation: float 15s ease-in-out infinite;
  will-change: transform;
}

.orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--coral) 0%, transparent 70%);
  top: -100px; left: -100px;
}

.orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #4F46E5 0%, transparent 70%);
  bottom: 10%; right: -50px;
  animation-delay: -5s;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 60px);
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
  }
}

.hero-content {
  position: relative;
}

.hero-chat {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media (max-width: 1024px) {
  .hero-chat {
    justify-content: center;
  }
}

.hero h1 {
  font-size: clamp(1.6rem, 3.0vw, 3.4rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: 0; max-width: 900px;
  margin-bottom: 18px;
}
.h1-line {
  display: block;
}

#hero-timer {
  display: inline-grid;
  place-items: center;
  width: 2.55ch;
  height: 1.05em;
  line-height: 1;
  margin: 0 0.08em;
  font-variant-numeric: tabular-nums;
  color: rgba(255,255,255,0.98);
  background: linear-gradient(135deg, rgba(240,90,91,0.28) 0%, rgba(240,90,91,0.14) 100%);
  border: 1px solid rgba(240,90,91,0.35);
  border-radius: 0.28em;
  box-shadow:
    0 10px 24px rgba(240,90,91,0.10),
    inset 0 1px 0 rgba(255,255,255,0.10);
  will-change: transform;
}
@media (max-width: 1024px) {
  .hero h1 {
    font-size: clamp(1.6rem, 4.5vw, 2.8rem);
  }
}
@media (max-width: 640px) {
  .hero h1 {
    font-size: clamp(2.2rem, 8.5vw, 3.2rem);
  }

  .btn-lg {
    padding: 12px 20px;
    font-size: 0.9375rem;
  }
}
.hero-timer-pulse {
  animation: heroTimerPulse 260ms ease-out;
}
@keyframes heroTimerPulse {
  0% { transform: scale(1); box-shadow: 0 10px 24px rgba(240,90,91,0.10), inset 0 1px 0 rgba(255,255,255,0.10); }
  40% { transform: scale(1.06); box-shadow: 0 14px 34px rgba(240,90,91,0.18), inset 0 1px 0 rgba(255,255,255,0.14); }
  100% { transform: scale(1); box-shadow: 0 10px 24px rgba(240,90,91,0.10), inset 0 1px 0 rgba(255,255,255,0.10); }
}
.hero .accent { color: var(--coral); font-style: italic; font-weight: 700; }
.hero-sub {
  font-size: 1.125rem;
  line-height: 1.6; color: rgba(255,255,255,0.8);
  max-width: 640px; margin-bottom: 30px;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 34px;
}

.hero-cta-main {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-cta-main .btn {
  min-height: 58px;
}

.hero-cta-note {
  margin-top: 4px; font-size: 0.8125rem; color: var(--ink-3);
  opacity: 0.8;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}

.arc-cta-note,
.cta-sub-note {
  margin: 0; font-size: 0.8125rem; color: var(--ink-3);
  opacity: 0.8; text-align: center;
}

.hero-cta-pricing {
  margin-top: 4px; font-size: 0.8125rem; color: var(--ink-3);
  opacity: 0.8;
}

.hero-social-proof {
  margin-top: 32px; display: flex; align-items: center; gap: 16px;
}
.hero-avatars { display: flex; align-items: center; }
.hero-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: #2D2D39; border: 2px solid #0A0A0F;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.625rem; font-weight: 700; color: white;
  margin-left: -10px;
  position: relative;
}
.hero-avatar:nth-child(1) { background: #3B82F6; z-index: 4; }
.hero-avatar:nth-child(2) { background: #10B981; z-index: 3; }
.hero-avatar:nth-child(3) { background: #F87171; z-index: 2; }
.hero-avatar:nth-child(4) { background: #818CF8; z-index: 1; }
.hero-avatar:first-child { margin-left: 0; }
.hero-social-text { font-size: 0.8125rem; color: rgba(255,255,255,0.45); font-weight: 500; }
.hero-social-text strong { color: white; font-weight: 700; }
.hero-contact-link:hover {
  color: var(--ink);
}
@media (max-width: 479px) {
  .hero-cta { align-items: stretch; }
  .hero-cta-main { flex-direction: column; align-items: stretch; gap: 8px; }
  .hero-cta .btn { justify-content: center; }
  .hero-cta-or { text-align: center; }
  .hero-contact-link { text-align: center; }
}

/* ? CHAT MOCKUP ··? */
.chat-mockup {
  background: linear-gradient(135deg, rgba(13,13,20,0.72) 0%, rgba(17,17,24,0.60) 100%);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.13);
  border-top: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px; overflow: hidden;
  box-shadow:
    0 16px 48px rgba(0,0,0,0.45),
    0 0 28px rgba(240,90,91,0.07),
    inset 0 1px 0 rgba(255,255,255,0.1);
  display: flex; flex-direction: column;
  width: 100%; max-width: 440px;
  height: clamp(440px,52vw,560px);
  position: relative;
}
@media (max-width: 479px) {
  .chat-mockup {
    max-width: 100%;
    height: 480px;
    border-radius: 14px;
  }
  .message-bubble {
    font-size: 0.6875rem;
    padding: 7px 10px;
    min-height: 30px;
  }
  .message-content p { font-size: 0.6875rem; }
  .ai-item { padding: 6px 8px; gap: 6px; }
  .ai-item-num { font-size: 0.6875rem; min-width: 16px; }
  .ai-item-name { font-size: 0.6875rem; }
  .ai-item-detail { font-size: 0.5625rem; }
  .ai-item-tag { font-size: 0.5rem; padding: 2px 5px; }
  .blur-placeholder { height: 12px; }
  .ai-item:nth-child(1) .blur-placeholder { width: 90px; }
  .ai-item:nth-child(2) .blur-placeholder { width: 110px; }
  .ai-item:nth-child(3) .blur-placeholder { width: 100px; }
  .ai-list { gap: 5px; }
  .chat-footer { height: 38px; padding: 8px 10px; }
  .footer-badge { font-size: 0.5rem; padding: 3px 6px; }
  .footer-text { font-size: 0.6875rem; }
}
.chat-header {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  flex-shrink: 0; height: 48px;
}
.chat-dots { display: flex; gap: 6px; }
.chat-dots span { width: 10px; height: 10px; border-radius: 50%; }
.chat-dots span:nth-child(1) { background: #FF5F56; }
.chat-dots span:nth-child(2) { background: #FFBD2E; }
.chat-dots span:nth-child(3) { background: #27C93F; }
.chat-title { flex: 1; font-size: 0.8125rem; font-weight: 600; color: rgba(255,255,255,0.9); text-align: center; }
.chat-bot-name { display: inline-block; transition: opacity 0.5s ease; }
.hero-bot-name { display: inline-block; transition: opacity 0.5s ease; color: var(--coral); }
.chat-time { font-family: var(--mono); font-size: 0.6875rem; color: rgba(255,255,255,0.35); letter-spacing: 0.05em; }
.chat-body {
  flex: 1; padding: 12px; overflow-y: auto; overflow-x: hidden;
  display: flex; flex-direction: column; gap: 10px;
  min-height: 0; position: relative;
  scrollbar-width: none; -ms-overflow-style: none;
}
.chat-body::-webkit-scrollbar { display: none; }
.chat-message {
  display: flex; opacity: 0; transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.chat-message.show { opacity: 1; transform: translateY(0); }
.chat-message.hide { opacity: 0; transform: translateY(-8px); }
.user-message { justify-content: flex-end; }
.message-bubble {
  background: linear-gradient(135deg, var(--coral) 0%, #E84A4B 100%);
  color: white; padding: 10px 16px; border-radius: 16px;
  font-size: 0.8125rem; max-width: 85%; font-weight: 500;
  box-shadow: 0 4px 15px rgba(240,90,91,0.3); line-height: 1.4;
  min-height: 38px; display: flex; align-items: center;
}
.typed-text { display: inline; }
.cursor {
  display: inline-block; margin-left: 2px;
  animation: blink 0.94s step-end infinite; opacity: 0;
}
.cursor.typing { opacity: 1; }
.ai-message { flex-direction: column; gap: 10px; }
.message-thinking {
  font-family: var(--mono); font-size: 0.6875rem;
  color: rgba(255,255,255,0.35); letter-spacing: 0.05em;
  animation: pulse-text 1.5s ease-in-out infinite;
  opacity: 0; transition: opacity 0.3s ease; position: absolute;
}
.message-thinking.show { opacity: 1; position: relative; }
.message-thinking.hide { opacity: 0; position: absolute; pointer-events: none; }
.message-content {
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.message-content.show { opacity: 1; transform: translateY(0); }
.message-content.hide { opacity: 0; transform: translateY(-8px); }
.message-content p {
  font-size: 0.8125rem; color: rgba(255,255,255,0.85);
  line-height: 1.5; margin: 0; font-weight: 500;
  opacity: 0; transition: opacity 0.3s ease;
}
.message-content p.show { opacity: 1; }
.ai-list { display: flex; flex-direction: column; gap: 6px; }
.ai-item {
  display: flex; gap: 8px; padding: 8px 10px; border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, opacity 0.4s ease;
  opacity: 0; transform: translateY(8px); position: relative;
}
.ai-item.show { opacity: 1; transform: translateY(0); }
.ai-item.hide { opacity: 0; transform: translateY(-8px); }
.ai-item:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); transform: translateX(4px); }
.ai-item.highlight {
  background: rgba(240,90,91,0.08); 
  border: 1px solid var(--coral);
  box-shadow: 0 0 20px rgba(240,90,91,0.15);
}
.ai-item.highlight.show { animation: none; }
.ai-item.highlight::before { display: none; }
.ai-item-num { font-family: var(--mono); font-size: 0.8125rem; font-weight: 700; color: rgba(255,255,255,0.4); min-width: 20px; text-align: center; letter-spacing: 0.05em; }
.ai-item.highlight .ai-item-num { color: var(--coral); font-weight: 800; }
.ai-item-text { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.ai-item-header { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.ai-item-name { font-size: 0.8125rem; color: rgba(255,255,255,0.92); font-weight: 600; letter-spacing: -0.01em; display: flex; align-items: center; }
.ai-item.highlight .ai-item-name { color: white; }
.ai-item-detail { font-size: 0.6875rem; color: rgba(255,255,255,0.5); font-weight: 400; }
.ai-item.highlight .ai-item-detail { color: rgba(255,255,255,0.6); }
.ai-item-tag {
  display: inline-block; font-family: var(--mono); font-size: 0.5rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: #FF5F56;
  border: 1px solid rgba(255,95,86,0.3); padding: 2px 6px; border-radius: 4px;
  font-weight: 700; background: rgba(255,95,86,0.1);
}
.ai-item-tag.missing { color: #FF5F56; border-color: rgba(255,95,86,0.3); background: rgba(255,95,86,0.1); }
.blur-placeholder {
  display: inline-block; height: 14px;
  background: linear-gradient(90deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0.15) 100%);
  border-radius: 4px; filter: blur(6px); position: relative; overflow: hidden;
}
.ai-item:nth-child(1) .blur-placeholder { width: 120px; }
.ai-item:nth-child(2) .blur-placeholder { width: 150px; }
.ai-item:nth-child(3) .blur-placeholder { width: 135px; }
.chat-footer {
  display: flex; align-items: center; justify-content: space-between; padding: 12px 16px;
  background: #0F0F18;
  border-top: 1px solid rgba(255,255,255,0.08);
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  flex-shrink: 0; height: 52px;
}
.chat-footer.visible { opacity: 1; transform: translateY(0); }
.footer-left { display: flex; align-items: center; gap: 10px; }
.footer-right { display: flex; align-items: center; gap: 6px; }

.scan-dot {
  width: 5px; height: 5px; background: #4ADE80; border-radius: 50%;
  animation: pulse-text 2s ease-in-out infinite;
}
.scan-label {
  font-family: var(--mono); font-size: 0.625rem;
  color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.05em;
}

.footer-badge {
  font-family: var(--mono); font-size: 0.5625rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: white; background: var(--coral);
  padding: 4px 10px; border-radius: 4px; font-weight: 700; flex-shrink: 0;
  white-space: nowrap; box-shadow: 0 0 15px rgba(240,90,91,0.3);
}
.ai-item-num svg {
  vertical-align: middle;
  opacity: 0.8;
}
.footer-text { font-size: 0.8125rem; color: rgba(255,255,255,0.9); font-weight: 500; }

/* ? PLATFORMS ·· */
.platforms {
  padding: 18px 0;
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  background: var(--bg-2); text-align: center;
}
.platforms .container { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.platforms-label { font-family: var(--mono); font-size: 0.625rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); white-space: nowrap; }
@media (max-width: 360px) {
  .platforms-label {
    max-width: 100%;
    font-size: 0.5625rem;
    letter-spacing: 0.06em;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
  }
}
.platforms-grid {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 8px 16px;
  width: 100%; max-width: 900px;
}
@media (min-width: 480px) { .platforms-grid { gap: 10px 20px; } }
@media (min-width: 768px) { .platforms-grid { justify-content: space-around; gap: 12px 24px; } }
.platform-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 14px; font-size: 0.75rem; font-weight: 500;
  color: #9CA3AF; white-space: nowrap; border: 1px solid transparent;
  border-radius: 20px; cursor: default;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}
@media (min-width: 480px) { .platform-badge { font-size: 0.8125rem; padding: 6px 18px; } }
.platform-badge:hover { opacity: 1 !important; border-color: rgba(156,163,175,0.3); background: rgba(156,163,175,0.08); color: #D1D5DB; transform: scale(1.05); }
.brand-icon { width: 18px; height: 18px; opacity: 0.6; transition: opacity 0.2s ease; flex-shrink: 0; filter: brightness(0) saturate(100%) invert(71%) sepia(6%) saturate(293%) hue-rotate(201deg) brightness(92%) contrast(87%); }
@media (min-width: 480px) { .brand-icon { width: 20px; height: 20px; } }
.platform-badge:hover .brand-icon { opacity: 1; }

/* ? HERO RESULTS SUMMARY ·? */
.hero-results-summary {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 4vw, 40px);
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--rule-soft);
  flex-wrap: wrap;
  width: 100%;
}
.hrs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hrs-val {
  font-family: var(--mono);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: var(--coral);
}
.hrs-lbl {
  font-size: 0.75rem;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media (max-width: 479px) {
  .hero-results-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

/* ? METRICS ·· */
.metrics { padding: clamp(24px,3vw,40px) 0; border-top: 1px solid var(--rule); background: var(--bg); }
.metrics-header { display: flex; flex-direction: column; gap: 8px; padding-bottom: clamp(16px,3vw,28px); margin-bottom: 20px; align-items: flex-start; position: relative; }
.metrics-header::after { content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, var(--coral) 0%, transparent 100%); opacity: 0.4; }
.metrics-header .section-eyebrow { width: fit-content; }
.metrics-header h2 { margin-top: 4px; font-size: clamp(1.75rem, 3.5vw, 2.75rem); line-height: 1.1; }
.metrics-header p { margin-top: 4px; font-size: clamp(0.875rem,1.3vw,1rem); color: var(--ink-2); max-width: 560px; }
.metrics-grid { display: grid; grid-template-columns: 1fr; gap: 16px; align-items: stretch; }
@media (min-width: 640px) { .metrics-grid { grid-template-columns: repeat(3,1fr); gap: 20px; } }
.metric-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 100%);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  padding: clamp(24px,3vw,36px) clamp(20px,2.5vw,32px);
  height: 100%;
  display: flex; flex-direction: column; gap: 6px;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 16px;
  position: relative; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1), inset 0 1px 1px rgba(255,255,255,0.2);
}
.metric-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(240,90,91,0.15) 0%, transparent 70%); opacity: 0; transition: opacity 0.2s ease; pointer-events: none; }
.metric-card::after { content: ""; position: absolute; inset: 0; border: 2px solid transparent; border-radius: 16px; background: linear-gradient(135deg, rgba(240,90,91,0.5) 0%, rgba(240,90,91,0.2) 100%) border-box; -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); mask-composite: exclude; opacity: 0; transition: opacity 0.2s ease; pointer-events: none; }
.metric-card:hover { transition-delay: 0s; background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.06) 100%); border-color: rgba(240,90,91,0.4); box-shadow: 0 16px 48px rgba(240,90,91,0.2), inset 0 1px 1px rgba(255,255,255,0.3); transform: translateY(-6px) scale(1.02); }
.metric-card:hover::before { opacity: 1; }
.metric-card:hover::after { opacity: 1; }
.metric-num { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.metric-val { font-size: clamp(2.5rem,6vw,4.75rem); line-height: 1; font-weight: 700; letter-spacing: -0.04em; font-variant-numeric: tabular-nums; }
.metric-unit { font-size: clamp(1.125rem,2.2vw,1.75rem); line-height: 1; font-weight: 400; color: var(--ink-3); }
.metric-coral .metric-val { color: var(--coral); }
.metric-coral .metric-unit { color: rgba(240,90,91,0.4); }
.metric-label { font-size: 0.9375rem; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
.metric-detail { font-size: 0.875rem; line-height: 1.6; color: var(--ink-2); border-top: 1px solid var(--rule); padding-top: 12px; margin-top: auto; }

/* ? HOW / THREE STEPS ·· */
.how { padding: clamp(32px,4vw,52px) 0; border-top: 1px solid var(--rule); background: var(--bg); }

/* Progress timeline */
.progress-timeline {
  position: relative; display: flex; align-items: center;
  justify-content: space-between; max-width: 900px;
  margin: 0 auto clamp(32px,5vw,60px); padding: 0 16px;
  height: 60px;
}
.timeline-line {
  position: absolute; top: 50%; left: 16px; right: 16px; height: 2px;
  background: rgba(240,90,91,0.25); transform: translateY(-50%); z-index: 0;
  overflow: hidden;
}
.timeline-line::after {
  content: ""; position: absolute; top: 0; left: 0; height: 100%; width: 0;
  background: linear-gradient(90deg, rgba(240,90,91,0.6) 0%, rgba(240,90,91,1) 100%);
}
.progress-timeline.visible .timeline-line::after {
  animation: progressFill 1.2s var(--ease-out) 0.3s forwards;
}
.timeline-point {
  position: relative; display: flex; flex-direction: row;
  align-items: center; gap: 10px; z-index: 1;
  background: var(--bg-2); padding: 0 10px;
}
.point-dot {
  width: 12px; height: 12px; border-radius: 50%; background: var(--coral);
  box-shadow: 0 0 12px rgba(240,90,91,0.6), 0 0 24px rgba(240,90,91,0.3);
  flex-shrink: 0; opacity: 0;
}
.progress-timeline.visible .point-dot { animation: dotPop 0.4s var(--ease-bounce) forwards; }
.progress-timeline.visible .timeline-point:nth-child(2) .point-dot { animation-delay: 0.5s; }
.progress-timeline.visible .timeline-point:nth-child(3) .point-dot { animation-delay: 0.8s; }
.progress-timeline.visible .timeline-point:nth-child(4) .point-dot { animation-delay: 1.1s; }
.progress-timeline.visible .timeline-point:nth-child(5) .point-dot { animation-delay: 1.4s; }
.timeline-point.start .point-dot, .timeline-point.end .point-dot { width: 14px; height: 14px; box-shadow: 0 0 16px rgba(240,90,91,0.8), 0 0 32px rgba(240,90,91,0.4); }
.timeline-point.milestone .point-dot { width: 8px; height: 8px; background: transparent; border: 2px solid var(--coral); box-shadow: 0 0 8px rgba(240,90,91,0.4); }
.point-label { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; }
.point-title { font-family: var(--mono); font-size: 0.6875rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); font-weight: 600; white-space: nowrap; }
.point-desc { font-family: var(--mono); font-size: 0.625rem; letter-spacing: 0.08em; color: rgba(255,255,255,0.7); white-space: nowrap; }

/* Mobile: vertical timeline */
@media (max-width: 1023px) {
  .progress-timeline {
    max-width: 100%;
    padding: 0 8px;
    height: 56px;
    margin-bottom: 28px;
  }
  .timeline-line {
    left: 8px;
    right: 8px;
  }
  .timeline-point {
    padding: 0 6px;
    gap: 6px;
  }
  .point-title { font-size: 0.5625rem; }
  .point-desc  { font-size: 0.5rem; }
}

/* Steps grid */
.steps-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 12px; align-items: stretch;
}
@media (min-width: 640px) { .steps-grid { grid-template-columns: repeat(3,1fr); gap: 20px; } }

/* Mobile step cards ? compact */
@media (max-width: 639px) {
  .step-card {
    padding: 16px;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
  }
  .step-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
  }
  .step-num { margin-bottom: 2px; font-size: 0.6875rem; }
  .step-icon-wrapper { margin-bottom: 0; flex-shrink: 0; margin-top: 2px; }
  .step-icon { width: 28px; height: 28px; }
  .step-time { margin-bottom: 4px; font-size: 0.5625rem; }
  .step-card h3 { font-size: 0.9375rem; margin-bottom: 4px; }
  .step-desc { font-size: 0.8125rem; margin-bottom: 8px; }
  .deliverable-list { gap: 5px; margin-bottom: 8px; }
  .deliverable-list li { font-size: 0.8125rem; }
  .behind-label { font-size: 0.5625rem; margin-bottom: 5px; }
  .behind-list li { font-size: 0.75rem; }
}

.step-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 100%);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  padding: clamp(20px,2.5vw,26px) clamp(16px,2vw,20px);
  display: flex; flex-direction: column; align-items: flex-start; text-align: left;
  height: 100%;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 16px;
  position: relative; overflow: visible;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1), inset 0 1px 1px rgba(255,255,255,0.2);
}
.step-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(240,90,91,0.15) 0%, transparent 70%); opacity: 0; transition: opacity 0.2s ease; pointer-events: none; }
.step-card:hover { background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.06) 100%); border-color: rgba(240,90,91,0.3); box-shadow: 0 12px 40px rgba(240,90,91,0.15), inset 0 1px 1px rgba(255,255,255,0.3); transform: translateY(-3px); }
.step-card:hover::before { opacity: 1; }
.step-num { font-size: 0.8125rem; font-weight: 600; color: var(--coral); font-family: var(--mono); letter-spacing: 0.06em; margin-bottom: 14px; opacity: 0.7; transition: opacity 0.2s ease; }
.step-card:hover .step-num { opacity: 1; }
.step-icon-wrapper { margin-bottom: 14px; }
.step-icon { color: var(--coral); width: 40px; height: 40px; transition: transform 0.2s ease; }
.step-card:hover .step-icon { transform: scale(1.1); }
.step-time { font-family: var(--mono); font-size: 0.625rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral); margin-bottom: 14px; padding: 3px 9px; border: 1px solid rgba(240,90,91,0.4); border-radius: 12px; display: inline-block; background: rgba(240,90,91,0.08); transition: border-color 0.2s ease; }
.step-card:hover .step-time { opacity: 1; border-color: rgba(255,255,255,0.25); }
.step-card h3 { font-size: clamp(1.125rem,1.8vw,1.375rem); font-weight: 600; margin-bottom: 8px; letter-spacing: -0.02em; transition: color 0.2s ease; }
.step-card:hover h3 { color: var(--coral); }
.step-desc { font-size: 0.875rem; line-height: 1.6; color: var(--ink-2); margin-bottom: 14px; transition: color 0.2s ease; }
.step-card:hover .step-desc { color: var(--ink); }
.step-deliverables { margin-top: auto; width: 100%; }
.step-card-body { display: contents; } /* desktop: no effect, children flow normally */
.deliverable-list { list-style: none; padding: 0; margin: 0 0 14px 0; display: flex; flex-direction: column; gap: 7px; }
.deliverable-list li { font-size: 0.8125rem; color: var(--ink); display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.deliverable-list li::before { content: "✓"; font-size: 0.8125rem; color: var(--coral); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.behind-label { font-family: var(--mono); font-size: 0.625rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 8px; font-weight: 500; }
.behind-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.behind-list li { font-size: 0.75rem; color: rgba(255,255,255,0.6); display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.behind-list li::before { content: "·"; font-size: 0.875rem; color: rgba(255,255,255,0.4); flex-shrink: 0; }

/* Outcome block */
.outcome-block,
.pricing-outcome-block {
  max-width: 900px; margin: 0 auto clamp(16px,2vw,28px);
  padding: clamp(12px,2vw,20px) clamp(16px,3vw,40px);
  background: none;
  border: none; border-radius: 16px;
  text-align: center; position: relative; overflow: hidden;
}
.outcome-block::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 100% at 50% 50%, rgba(240,90,91,0.18) 0%, transparent 65%); pointer-events: none; opacity: 0.7; }
.outcome-block:hover::before { background: radial-gradient(ellipse 70% 100% at 50% 50%, rgba(240,90,91,0.28) 0%, transparent 65%); }
.outcome-pill { display: inline-block; font-family: var(--mono); font-size: 0.625rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral); background: rgba(240,90,91,0.15); border: 1px solid rgba(240,90,91,0.4); padding: 5px 12px; border-radius: 20px; margin-bottom: 16px; font-weight: 600; position: relative; z-index: 1; }
.outcome-title { font-size: clamp(1.375rem,3vw,2.5rem); font-weight: 700; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 12px; line-height: 1.2; max-width: 700px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.outcome-metrics { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; font-family: var(--mono); font-size: 0.6875rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 16px; position: relative; z-index: 1; }
@media (max-width: 479px) { .outcome-metrics { flex-direction: column; gap: 6px; } }
.metric-divider { color: rgba(255,255,255,0.3); font-weight: 300; }
@media (max-width: 479px) { .metric-divider { display: none; } }
.outcome-cta { position: relative; z-index: 1; }

/* How it works — hero block */
.how-hero {
  text-align: center;
  padding: clamp(16px, 2vw, 28px) clamp(16px, 4vw, 48px) clamp(32px, 4vw, 48px);
  position: relative;
}
.how-hero::after {
  display: none;
}
.how-hero .section-eyebrow {
  margin-bottom: 20px;
}
.how-hero-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
  max-width: 780px;
  margin: 0 auto 24px;
}
.how-hero-metrics {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
@media (max-width: 479px) {
  .how-hero-metrics { flex-direction: column; gap: 6px; }
  .how-hero-metrics .metric-divider { display: none; }
  .how-hero-title { font-size: clamp(1.5rem, 6vw, 2rem); }
}

/* ? RESULTS / WHAT YOU GET ·· */
.results { padding: clamp(32px,4vw,52px) 0; background: var(--bg-2); border-top: 1px solid var(--rule); }
.results-grid { display: grid; grid-template-columns: 1fr; gap: 14px; align-items: stretch; }
@media (min-width: 640px) { .results-grid { grid-template-columns: repeat(2,1fr); gap: 16px; } }
@media (min-width: 1024px) { .results-grid { grid-template-columns: repeat(3,1fr); gap: 18px; } }
.result-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 100%);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  padding: clamp(20px,2.5vw,26px) clamp(16px,2vw,24px);
  display: flex; flex-direction: column; align-items: flex-start; text-align: left;
  height: 100%;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 16px;
  position: relative; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1), inset 0 1px 1px rgba(255,255,255,0.2);
}
.result-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(240,90,91,0.15) 0%, transparent 70%); opacity: 0; transition: opacity 0.2s ease; pointer-events: none; }
.result-card:hover { background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.06) 100%); border-color: rgba(240,90,91,0.3); box-shadow: 0 12px 40px rgba(240,90,91,0.15), inset 0 1px 1px rgba(255,255,255,0.3); transform: translateY(-3px); }
.result-card:hover::before { opacity: 1; }
.result-icon-wrapper { margin-bottom: 14px; }
.result-icon { color: var(--coral); width: 30px; height: 30px; transition: filter 0.2s ease, transform 0.2s ease; }
.result-card:hover .result-icon { filter: drop-shadow(0 0 8px rgba(240,90,91,0.6)); transform: scale(1.1); }
.result-card h3 { font-size: clamp(1rem,1.8vw,1.125rem); margin-bottom: 14px; font-weight: 600; transition: color 0.2s ease; letter-spacing: -0.01em; display: flex; align-items: center; gap: 7px; }
.result-card:hover h3 { color: var(--coral); }

/* ? INFO TRIGGER ··? */
.info-trigger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: var(--ink-3);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  position: relative;
}
.info-trigger:hover,
.info-trigger.active {
  border-color: var(--coral);
  color: var(--coral);
  background: rgba(240,90,91,0.1);
}

/* ? INFO POPOVER ··? */
.info-popover {
  position: fixed;
  width: min(360px, calc(100vw - 32px));
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  z-index: 9000;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.info-popover.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
/* arrow */
.info-popover::before {
  content: '';
  position: absolute;
  top: -5px;
  left: var(--arrow-left, 20px);
  width: 10px; height: 10px;
  background: var(--bg-card);
  border-left: 1px solid rgba(255,255,255,0.12);
  border-top: 1px solid rgba(255,255,255,0.12);
  transform: rotate(45deg);
}
.ipop-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.ipop-eyebrow {
  font-family: var(--mono);
  font-size: 0.5625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
}
.ipop-close {
  display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 6px;
  border: 1px solid var(--rule);
  background: transparent;
  color: var(--ink-3);
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}
.ipop-close:hover { color: var(--ink); border-color: rgba(255,255,255,0.2); }
.ipop-chart {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 16px;
}
.ipop-bar-row {
  display: grid;
  grid-template-columns: 90px 1fr 36px;
  align-items: center;
  gap: 10px;
}
.ipop-bar-label {
  font-size: 0.75rem; color: var(--ink-2); font-weight: 500;
  white-space: nowrap;
}
.ipop-bar-track {
  height: 8px; background: rgba(255,255,255,0.06);
  border-radius: 4px; overflow: hidden;
}
.ipop-bar-fill {
  height: 100%; border-radius: 4px;
  background: rgba(255,255,255,0.2);
  width: 0;
  transition: width 0.9s cubic-bezier(0.34,1.56,0.64,1);
}
.info-popover.open .ipop-bar-fill { width: var(--w); }
.ipop-bar-fill.ipop-bar-you {
  background: linear-gradient(90deg, var(--coral), #E84A4B);
  box-shadow: 0 0 8px rgba(240,90,91,0.5);
}
.ipop-bar-fill.ipop-bar-top {
  background: rgba(255,255,255,0.35);
}
.ipop-bar-val {
  font-family: var(--mono); font-size: 0.6875rem;
  color: var(--ink-2); text-align: right;
}
.ipop-note {
  font-size: 0.8125rem; color: var(--ink-2);
  line-height: 1.55; border-top: 1px solid var(--rule-soft);
  padding-top: 14px; margin: 0;
}
.result-desc { font-size: 0.875rem; color: var(--ink-2); line-height: 1.5; margin-bottom: 12px; transition: color 0.2s ease; }
.result-card:hover .result-desc { color: var(--ink); }
.result-checks { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 5px; margin-top: auto; width: 100%; }
.result-checks li { font-size: 0.8125rem; color: var(--ink-2); display: flex; align-items: flex-start; gap: 8px; line-height: 1.4; }
.result-checks li::before { content: "✓"; font-size: 0.8125rem; color: var(--coral); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* Proof hint ? replaced by result-outcome */

/* Outcome block embedded in result card */
.result-outcome {
  margin-top: 14px;
  padding-top: 11px;
  border-top: 1px solid var(--rule-soft);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.ro-numbers {
  display: flex;
  align-items: center;
  gap: 8px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.ro-before {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink-3);
}
.ro-before--text {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.ro-arrow {
  font-size: 0.875rem;
  color: var(--ink-3);
  font-weight: 400;
  flex-shrink: 0;
  letter-spacing: -0.01em;
}
.ro-after {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--coral);
}
.ro-after--dim {
  color: var(--ink-3);
}
.ro-meta {
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  line-height: 1.4;
  margin-top: 1px;
}

/* Result card variants & new elements */
.result-card-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 10px; width: 100%; margin-bottom: 8px;
}

/* Big numeric accent */
.result-big-num {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--coral);
  line-height: 1;
  white-space: nowrap;
  padding: 5px 10px;
  background: rgba(240,90,91,0.1);
  border: 1px solid rgba(240,90,91,0.3);
  border-radius: var(--radius);
  align-self: flex-start;
  margin-top: 3px;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.result-card:hover .result-big-num {
  background: rgba(240,90,91,0.16);
  border-color: rgba(240,90,91,0.55);
  box-shadow: 0 0 12px rgba(240,90,91,0.2);
}
.result-big-num--alert {
  color: #FF7575;
  background: rgba(255,80,80,0.1);
  border-color: rgba(255,80,80,0.3);
}
.result-card:hover .result-big-num--alert {
  background: rgba(255,80,80,0.16);
  border-color: rgba(255,80,80,0.55);
  box-shadow: 0 0 12px rgba(255,80,80,0.2);
}

/* Alert card ? subtle red tint to signal lost revenue / missing signals */
.result-card--alert {
  border-color: rgba(255,80,80,0.18);
  background: linear-gradient(135deg, rgba(255,60,60,0.07) 0%, rgba(255,255,255,0.03) 100%);
}
.result-card--alert:hover {
  border-color: rgba(255,80,80,0.4);
  box-shadow: 0 12px 40px rgba(255,60,60,0.12), inset 0 1px 1px rgba(255,255,255,0.3);
}
.result-card--alert .result-icon { color: #FF8080; }
.result-card--alert:hover h3 { color: #FF8080; }

/* Featured card ? slightly elevated, coral accent border */
.result-card--featured {
  border-color: rgba(240,90,91,0.3);
  background: linear-gradient(135deg, rgba(240,90,91,0.08) 0%, rgba(255,255,255,0.04) 100%);
  box-shadow: 0 8px 32px rgba(240,90,91,0.1), inset 0 1px 1px rgba(255,255,255,0.2);
}
.result-card--featured:hover {
  border-color: rgba(240,90,91,0.55);
  box-shadow: 0 16px 48px rgba(240,90,91,0.22), inset 0 1px 1px rgba(255,255,255,0.3);
}

/* ? WHY US ·· */
.comparison-section {
  padding: clamp(40px,6vw,80px) 0;
  border-top: 1px solid var(--rule);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
/* subtle radial glow in background */
.comparison-section::before {
  content: '';
  position: absolute;
  top: -120px; left: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(240,90,91,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.comparison-header {
  margin-bottom: 0;
  display: flex; flex-direction: column; gap: 12px;
  align-items: flex-start; position: relative;
  padding-bottom: clamp(24px,4vw,40px);
}
.comparison-header::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, var(--coral) 0%, transparent 60%);
  opacity: 0.35;
}
.comparison-header h2 {
  font-size: clamp(2rem,5vw,4rem);
  font-weight: 700; letter-spacing: -0.03em; margin: 0; line-height: 1.05;
}
.comparison-header p { font-size: clamp(0.9375rem,1.4vw,1.125rem); color: var(--ink-2); max-width: 560px; font-weight: 400; margin: 0; }

/* Facts list */
.facts-list { list-style: none; padding: 0; margin: 0; }

.fact-row {
  display: block;
  padding: clamp(22px,3vw,34px) 0;
  border-bottom: 1px solid var(--rule-soft);
  position: relative;
  cursor: default;
  transition: padding-left 0.3s var(--ease-out);
}
/* animated left accent bar */
.fact-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--coral);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s var(--ease-out);
  border-radius: 2px;
}
.fact-row:hover::before { transform: scaleY(1); }
.fact-row:hover { padding-left: 16px; }

.fact-num {
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.06em;
  line-height: 1;
  margin-right: 14px;
  vertical-align: middle;
  opacity: 0.7;
  transition: opacity 0.25s;
}
.fact-row:hover .fact-num { opacity: 1; }

.fact-text {
  font-size: clamp(1.0625rem, 2vw, 1.375rem);
  font-weight: 600;
  color: var(--ink-2);
  line-height: 1.45;
  letter-spacing: -0.02em;
  margin: 0;
  transition: color 0.25s;
  display: inline;
}
.fact-row:hover .fact-text { color: var(--ink); }

.fact-em {
  font-style: normal;
  color: var(--coral);
  position: relative;
}
.fact-em::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: var(--coral);
  opacity: 0.4;
  border-radius: 1px;
}

/* â”€â”€ PRICING â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pricing { padding: clamp(24px,3vw,40px) 0; border-top: 1px solid var(--rule); background: var(--bg-2); overflow: hidden; }

.plan-intent {
  display: block;
  font-family: var(--mono);
  font-size: 0.5625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  opacity: 0.7;
  margin-bottom: 10px;
  line-height: 1;
}

.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 16px; padding-top: 14px; min-width: 0; width: 100%; align-items: stretch; }
@media (min-width: 640px) { .pricing-grid { grid-template-columns: repeat(2,1fr); gap: 16px; align-items: stretch; } }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(4,1fr); gap: 12px; align-items: stretch; } }
.price-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 100%);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  padding: clamp(14px,1.8vw,18px) clamp(14px,1.6vw,18px);
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  border-radius: 16px;
  position: relative; overflow: visible;
  min-width: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1), inset 0 1px 1px rgba(255,255,255,0.2);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.price-card:hover { border-color: rgba(240,90,91,0.4); box-shadow: 0 16px 48px rgba(240,90,91,0.12), inset 0 1px 1px rgba(255,255,255,0.3); z-index: 3; }
.price-card.popular { border-color: var(--coral); box-shadow: 0 20px 56px rgba(240,90,91,0.35), inset 0 1px 1px rgba(255,255,255,0.3); background: linear-gradient(135deg, rgba(240,90,91,0.12) 0%, rgba(240,90,91,0.06) 100%); z-index: 2; }
.price-card.popular:hover { box-shadow: 0 24px 64px rgba(240,90,91,0.45), inset 0 1px 1px rgba(255,255,255,0.3); }
.price-card.featured { border-color: #8B7FD9; box-shadow: 0 8px 32px rgba(139,127,217,0.15), inset 0 1px 1px rgba(255,255,255,0.2); background: linear-gradient(135deg, rgba(139,127,217,0.08) 0%, rgba(139,127,217,0.04) 100%); }
.price-card.featured:hover { border-color: #9D8FE8; box-shadow: 0 12px 40px rgba(139,127,217,0.25), inset 0 1px 1px rgba(255,255,255,0.3); }
.price-card.featured::before { background: radial-gradient(circle at center, rgba(139,127,217,0.12) 0%, transparent 70%); }
.price-card.featured .price-list li::before { color: #8B7FD9; }
.price-card.featured .btn-ghost { border-color: #8B7FD9; color: #8B7FD9; }
.price-card.featured .btn-ghost:hover { border-color: #9D8FE8; background: rgba(139,127,217,0.1); color: #9D8FE8; }
.popular-badge, .featured-badge { position: absolute; top: 0; left: 50%; transform: translate(-50%,-50%); font-family: var(--mono); font-size: 0.5rem; letter-spacing: 0.1em; text-transform: uppercase; color: white; padding: 5px 10px; border-radius: 10px; font-weight: 700; z-index: 10; white-space: nowrap; }
.popular-badge { background: var(--coral); border: 1.5px solid var(--coral); box-shadow: 0 4px 12px rgba(240,90,91,0.4); }
.featured-badge { background: #8B7FD9; border: 1.5px solid #8B7FD9; box-shadow: 0 4px 12px rgba(139,127,217,0.3); }
.price-header { margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.08); padding-top: 6px; position: relative; z-index: 1; }
/* was-badge: inline strikethrough price next to the big number (legacy) */
.price-was-badge { font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.04em; color: var(--ink-2); text-decoration: line-through; text-decoration-color: var(--coral); text-decoration-thickness: 1.5px; font-weight: 500; align-self: flex-end; padding-bottom: 6px; white-space: nowrap; }
/* new price old/discount layout */
.price-old-wrapper { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.price-old { font-size: 1.25rem; font-weight: 500; color: var(--ink-2); opacity: 0.5; text-decoration: line-through; text-decoration-color: var(--coral); text-decoration-thickness: 2px; letter-spacing: -0.02em; }
.price-discount-badge { font-family: var(--mono); font-size: 0.5625rem; letter-spacing: 0.1em; text-transform: uppercase; color: white; background: var(--coral); border: 1.5px solid var(--coral); padding: 3px 7px; border-radius: 8px; font-weight: 700; white-space: nowrap; box-shadow: 0 4px 12px rgba(240,90,91,0.4); }
.plan-name { font-size: clamp(0.9375rem,1.3vw,1rem); font-weight: 700; margin-bottom: 8px; letter-spacing: -0.02em; color: var(--ink); position: relative; z-index: 1; overflow-wrap: break-word; word-break: break-word; }
.price-amount { font-size: clamp(2rem,3.2vw,2.75rem); line-height: 1; color: var(--ink); font-weight: 700; letter-spacing: -0.04em; display: flex; align-items: baseline; gap: 4px; font-variant-numeric: tabular-nums; margin-bottom: 6px; position: relative; z-index: 1; }
.currency { font-size: 0.4em; color: var(--ink-3); font-weight: 400; }
.period { font-size: 0.35em; color: var(--ink-3); font-weight: 400; }
.plan-desc { font-size: 0.8125rem; color: var(--ink-2); line-height: 1.5; }
.plan-microcopy { margin: 8px 0 0; font-size: 0.75rem; color: var(--ink-3); text-align: center; line-height: 1.4; }
.price-list { list-style: none; margin-bottom: 14px; align-self: stretch; position: relative; z-index: 1; }
.price-list li { display: flex; align-items: flex-start; gap: 8px; padding: 5px 0; font-size: 0.8125rem; color: var(--ink); border-bottom: 1px solid rgba(255,255,255,0.05); line-height: 1.4; }
.price-list li:last-child { border-bottom: none; }
.price-list li::before { content: "✓"; font-size: 0.8125rem; color: var(--coral); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* ? CTA ··? */
.cta { padding: clamp(40px,6vw,80px) 0; background: var(--bg); border-top: 1px solid var(--rule); position: relative; overflow: hidden; text-align: center; }
.cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(240,90,91,0.12), transparent 60%); pointer-events: none; }
.cta::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 40% 40% at 30% 30%, rgba(240,90,91,0.08), transparent 50%); pointer-events: none; }
.cta-content { position: relative; z-index: 1; }
.cta h2 { font-size: clamp(2rem,5vw,3.875rem); font-weight: 700; letter-spacing: -0.03em; margin: 16px 0 18px; max-width: 700px; margin-left: auto; margin-right: auto; background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta p { font-size: clamp(1rem,1.5vw,1.0625rem); color: var(--ink-2); max-width: 500px; margin: 0 auto 0; line-height: 1.6; }


/* ? FOOTER ·· */
.footer { padding: clamp(32px,4vw,52px) 0; border-top: 1px solid var(--rule); }
.footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-brand .logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9375rem; font-weight: 600; color: var(--ink);
  text-decoration: none; letter-spacing: -0.01em;
}
.footer-brand .logo:hover { color: var(--coral); }
.footer-tagline {
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  margin: 0;
  padding-left: 16px;
  border-left: 1px solid var(--rule);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
}
.footer-links a { color: var(--ink-3); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--ink); }
.footer-copy {
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
@media (max-width: 640px) {
  .footer-tagline { padding-left: 0; border-left: none; }
  .footer-brand { gap: 8px; }
}

/* Trust / research pages */
.trust-page {
  padding: clamp(112px, 12vw, 152px) 0 clamp(56px, 8vw, 96px);
  background: var(--bg);
}
.trust-page .container { max-width: 920px; }
.trust-kicker {
  display: block;
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
}
.trust-page h1 {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}
.trust-lede {
  max-width: 720px;
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 34px;
}
.trust-note {
  padding: 18px 20px;
  border: 1px solid rgba(240,90,91,0.28);
  border-radius: 12px;
  background: rgba(240,90,91,0.08);
  color: var(--ink);
  line-height: 1.65;
  margin: 26px 0;
}
.trust-section {
  padding: 30px 0;
  border-top: 1px solid var(--rule);
}
.trust-section h2 {
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.trust-section h3 {
  font-size: 1.0625rem;
  line-height: 1.35;
  margin: 22px 0 8px;
}
.trust-section p,
.trust-section li {
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.72;
}
.trust-section p + p { margin-top: 12px; }
.trust-list,
.source-list,
.test-list {
  display: grid;
  gap: 10px;
  list-style: none;
}
.trust-list li {
  position: relative;
  padding-left: 22px;
}
.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
}
.trust-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--rule);
  border-radius: 12px;
  margin-top: 14px;
}
.trust-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.trust-table th,
.trust-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--rule-soft);
  vertical-align: top;
}
.trust-table th {
  color: var(--ink);
  font-weight: 700;
  background: rgba(255,255,255,0.04);
}
.trust-table td { color: var(--ink-2); line-height: 1.55; }
.trust-table tr:last-child td { border-bottom: none; }
.source-list a,
.trust-section a {
  color: var(--ink);
  text-decoration-color: rgba(240,90,91,0.65);
  text-underline-offset: 3px;
}
.test-list a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--rule);
  border-radius: 12px;
  color: var(--ink);
  text-decoration: none;
  background: rgba(255,255,255,0.03);
}
.test-list a:hover {
  border-color: rgba(240,90,91,0.45);
  background: rgba(240,90,91,0.08);
}
.test-status {
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.ai-test-page .trust-lede { max-width: 780px; }
.ai-test-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.ai-result-card {
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: rgba(255,255,255,0.035);
  padding: 18px;
}
.ai-result-card h3 {
  margin: 10px 0 8px;
  font-size: 1.1rem;
  line-height: 1.25;
}
.ai-result-card p {
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.6;
}
.ai-result-tool {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 8px;
  border: 1px solid rgba(240,90,91,0.35);
  border-radius: 999px;
  color: var(--coral);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.source-list li {
  color: var(--ink-2);
  font-size: 0.98rem;
  line-height: 1.55;
}
.ai-test-cta {
  border: 1px solid rgba(240,90,91,0.32);
  border-radius: 16px;
  padding: clamp(24px, 4vw, 34px);
  background: rgba(240,90,91,0.08);
}
.ai-test-cta .btn { margin-top: 18px; }
@media (max-width: 560px) {
  .trust-page {
    padding-top: 96px;
  }
  .trust-page h1 {
    font-size: 2.05rem;
    letter-spacing: 0;
    line-height: 1.08;
    text-wrap: wrap;
    overflow-wrap: anywhere;
  }
  .ai-test-page h1 span {
    display: block;
  }
  .trust-lede,
  .trust-note,
  .trust-section p,
  .trust-section li {
    overflow-wrap: anywhere;
    text-wrap: wrap;
  }
  .test-list a { flex-direction: column; }
  .ai-test-summary { grid-template-columns: 1fr; }
  .ai-result-card { padding: 16px; }
  .trust-table {
    min-width: 0;
  }
  .trust-table,
  .trust-table thead,
  .trust-table tbody,
  .trust-table tr,
  .trust-table th,
  .trust-table td {
    display: block;
    width: 100%;
  }
  .trust-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
  .trust-table tr {
    border-bottom: 1px solid var(--rule-soft);
    padding: 12px;
  }
  .trust-table th,
  .trust-table td {
    padding: 0;
    border-bottom: none;
  }
  .trust-table td + td,
  .trust-table th + td {
    margin-top: 6px;
  }
  .source-list a { overflow-wrap: anywhere; }
}

/* ? SCROLL ANIMATION BASE ·? */
.anim-fade-up,
.anim-scale,
.section-header,
.metrics-header,
.step-card,
.result-card,
.metric-card,
.chart-item,
.comparison-row,
.price-card,
.proof-text,
.progress-timeline,
.outcome-block,
.pricing-outcome-block,
.how-hero,
.stat-rows,
.arc-flow,
.arc-cta,
.voices-card-anim,
.vr-block,
.vq-feature {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.anim-scale     { transform: scale(0.97) translateY(8px); }
.comparison-row { transform: translateX(0); }

.anim-fade-up.visible, .anim-scale.visible, .section-header.visible,
.metrics-header.visible, .step-card.visible, .result-card.visible,
.metric-card.visible, .chart-item.visible, .comparison-row.visible,
.price-card.visible, .progress-timeline.visible,
.outcome-block.visible, .pricing-outcome-block.visible, .how-hero.visible, .stat-rows.visible, .arc-flow.visible,
.arc-cta.visible, .voices-card-anim.visible, .vr-block.visible,
.vq-feature.visible {
  opacity: 1;
  transform: none;
}

/* stagger for grids */
.step-card:nth-child(2)  { transition-delay: 0.08s; }
.step-card:nth-child(3)  { transition-delay: 0.16s; }
.result-card:nth-child(2){ transition-delay: 0.06s; }
.result-card:nth-child(3){ transition-delay: 0.12s; }
.result-card:nth-child(4){ transition-delay: 0.18s; }
.result-card:nth-child(5){ transition-delay: 0.24s; }
.result-card:nth-child(6){ transition-delay: 0.30s; }
.price-card:nth-child(2) { transition-delay: 0.06s; }
.price-card:nth-child(3) { transition-delay: 0.12s; }
.price-card:nth-child(4) { transition-delay: 0.18s; }
.vr-block:nth-child(3)   { transition-delay: 0.08s; }
.vr-block:nth-child(5)   { transition-delay: 0.2s; }
.fact-row:nth-child(2)   { transition-delay: 0.08s; }
.fact-row:nth-child(3)   { transition-delay: 0.16s; }
.fact-row:nth-child(4)   { transition-delay: 0.24s; }

/* ? CURSOR GLOW ··? */
.step-card,
.result-card,
.price-card,
.metric-card,
.vr-block,
.vq-feature {
  --gx: 50%;
  --gy: 50%;
}

/* step/result/metric use ::before for glow (already positioned absolute) */
.step-card::before,
.result-card::before,
.metric-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle 200px at var(--gx) var(--gy), rgba(240,90,91,0.14) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 0;
}
.step-card.glow-active::before,
.result-card.glow-active::before,
.metric-card.glow-active::before {
  opacity: 1;
}

/* price-card uses ::after so it doesn't conflict with existing ::before */
.price-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle 200px at var(--gx) var(--gy), rgba(240,90,91,0.14) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 0;
}
.price-card.glow-active::after { opacity: 1; }

/* featured card gets purple glow */
.price-card.featured::after {
  background: radial-gradient(circle 200px at var(--gx) var(--gy), rgba(139,127,217,0.2) 0%, transparent 70%);
}

/* ? HERO LOAD ANIMATIONS ·? */
.hero h1 { animation: fadeInUp 0.45s var(--ease-out) both; }
.hero-sub { animation: fadeInUp 0.45s var(--ease-out) 0.06s both; }
.hero-cta { animation: none; opacity: 1; transform: none; }
.chat-mockup { animation: fadeInUp 0.45s var(--ease-out) 0.06s both; }
@media (prefers-reduced-motion: reduce) {
  .hero h1, .hero-sub, .hero-cta, .chat-mockup { animation: none; opacity: 1; transform: none; }
}

/* ? CHAT MOBILE OVERRIDES (must be last) ·? */
@media (max-width: 479px) {
  .chat-body {
    padding: 8px !important;
    gap: 6px !important;
    overflow-y: hidden !important;
  }
  .message-bubble {
    font-size: 0.6875rem !important;
    padding: 6px 10px !important;
    min-height: 28px !important;
  }
  .message-content p { font-size: 0.6875rem !important; }
  .ai-list { gap: 4px !important; }
  .ai-item { padding: 5px 7px !important; gap: 6px !important; }
  .ai-item-num { font-size: 0.625rem !important; min-width: 14px !important; }
  .ai-item-name { font-size: 0.625rem !important; }
  .ai-item-detail { font-size: 0.5rem !important; }
  .ai-item-tag { font-size: 0.4375rem !important; padding: 1px 4px !important; letter-spacing: 0.08em !important; }
  .blur-placeholder { height: 10px !important; }
  .ai-item:nth-child(1) .blur-placeholder { width: 80px !important; }
  .ai-item:nth-child(2) .blur-placeholder { width: 100px !important; }
  .ai-item:nth-child(3) .blur-placeholder { width: 90px !important; }
  .chat-footer { height: 36px !important; padding: 7px 10px !important; }
  .footer-badge { font-size: 0.4375rem !important; padding: 2px 5px !important; }
  .footer-text { font-size: 0.625rem !important; }
}

/* ? CHAT MOBILE HEIGHT FIX ·· */
@media (max-width: 479px) {
  .chat-mockup { height: 520px !important; }
  .chat-header { height: 44px !important; padding: 10px 14px !important; }
  .ai-intro { display: none !important; }
}

/* ? CHAT MOBILE FINAL FIX (max-width 639px) · */
@media (max-width: 639px) {
  .chat-mockup { height: 520px !important; border-radius: 14px !important; }
  .chat-header { height: 44px !important; padding: 10px 14px !important; }
  .chat-body { padding: 8px !important; gap: 6px !important; overflow-y: hidden !important; }
  .ai-intro { display: none !important; }
  .message-bubble { font-size: 0.6875rem !important; padding: 6px 10px !important; min-height: 28px !important; }
  .message-content p { font-size: 0.6875rem !important; }
  .ai-list { gap: 4px !important; }
  .ai-item { padding: 5px 7px !important; gap: 6px !important; }
  .ai-item-num { font-size: 0.625rem !important; min-width: 14px !important; }
  .ai-item-name { font-size: 0.625rem !important; }
  .ai-item-detail { font-size: 0.5rem !important; }
  .ai-item-tag { font-size: 0.4375rem !important; padding: 1px 4px !important; }
  .blur-placeholder { height: 10px !important; }
  .ai-item:nth-child(1) .blur-placeholder { width: 80px !important; }
  .ai-item:nth-child(2) .blur-placeholder { width: 100px !important; }
  .ai-item:nth-child(3) .blur-placeholder { width: 90px !important; }
  .chat-footer { height: 36px !important; padding: 7px 10px !important; }
  .footer-badge { font-size: 0.4375rem !important; padding: 2px 5px !important; }
  .footer-text { font-size: 0.625rem !important; }
}

/* ? CHAT MOBILE v3 ·· */
@media (max-width: 639px) {
  .chat-mockup { height: 400px !important; }
  .chat-header { height: 42px !important; padding: 8px 14px !important; }
  .chat-body { padding: 10px !important; gap: 7px !important; overflow-y: hidden !important; }
  .ai-intro { display: none !important; }
  .message-bubble { font-size: 0.75rem !important; padding: 7px 11px !important; min-height: 30px !important; }
  .ai-list { gap: 5px !important; }
  .ai-item { padding: 6px 8px !important; gap: 7px !important; }
  .ai-item-num { font-size: 0.6875rem !important; min-width: 16px !important; }
  .ai-item-name { font-size: 0.6875rem !important; }
  .ai-item-detail { font-size: 0.5625rem !important; }
  .ai-item-tag { font-size: 0.5rem !important; padding: 2px 5px !important; }
  .blur-placeholder { height: 11px !important; }
  .ai-item:nth-child(1) .blur-placeholder { width: 85px !important; }
  .ai-item:nth-child(2) .blur-placeholder { width: 105px !important; }
  .ai-item:nth-child(3) .blur-placeholder { width: 95px !important; }
  .chat-footer { height: 38px !important; padding: 8px 12px !important; }
  .footer-badge { font-size: 0.5rem !important; padding: 3px 6px !important; }
  .footer-text { font-size: 0.6875rem !important; }
}

/* ··?
   THREE STEPS ? MOBILE ONLY (<768px)
   Desktop layout is untouched
   ··? */
@media (max-width: 767px) {

  /* Section header */
  .how .section-header h2 { font-size: clamp(2rem, 8vw, 2.5rem) !important; }
  .how .section-header p  { font-size: 0.9375rem !important; }

  /* Hide horizontal progress bar */
  .progress-timeline { display: none !important; }

  /* Wrapper: vertical timeline left + cards right */
  .steps-grid {
    display: block !important;
    position: relative;
    padding-left: 32px !important;
    gap: 0 !important;
  }

  /* Vertical line ? centered in 32px left column = left: 15px (center of 2px line) */
  .steps-grid::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 22px;
    bottom: 22px;
    width: 2px;
    background: rgba(240, 90, 91, 0.35);
    border-radius: 2px;
  }

  /* Cards */
  .step-card {
    display: block !important;
    flex-direction: unset !important;
    padding: 16px !important;
    margin-bottom: 16px !important;
    border-radius: 16px !important;
    position: relative !important;
  }
  .step-card:last-child { margin-bottom: 0 !important; }

  /* Timeline dot: centered on card vertically, centered on line horizontally.
     Line center = left:15px + 1px = 16px from .steps-grid.
     Card starts at padding-left:32px.
     Dot left from card = 16px - 32px - 6px(half dot) = -22px */
  .step-card::after {
    content: "";
    position: absolute;
    left: -22px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--coral);
    box-shadow: 0 0 8px rgba(240, 90, 91, 0.7), 0 0 16px rgba(240, 90, 91, 0.3);
    z-index: 2;
  }

  /* Card header: icon circle + number + title in one row */
  .step-card-header-mobile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
  }

  /* Icon circle */
  .step-icon-wrapper {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    border-radius: 50% !important;
    border: 1px solid rgba(240, 90, 91, 0.3) !important;
    background: rgba(240, 90, 91, 0.06) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 0 !important;
    flex-shrink: 0;
  }
  .step-icon { width: 22px !important; height: 22px !important; }

  /* Number + title block */
  .step-title-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  /* Hide original step-num and step-time pill */
  .step-num  { display: none !important; }
  .step-time { display: none !important; }

  /* h3 inside card */
  .step-card h3 {
    font-size: 1.125rem !important;
    margin-bottom: 0 !important;
    line-height: 1.2 !important;
  }

  /* Description */
  .step-desc {
    font-size: 0.875rem !important;
    margin-bottom: 12px !important;
    margin-top: 6px !important;
  }

  /* Deliverables divider */
  .step-deliverables {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 10px !important;
    margin-top: 0 !important;
  }

  .deliverable-list {
    gap: 7px !important;
    margin-bottom: 10px !important;
  }
  .deliverable-list li { font-size: 0.875rem !important; }

  /* Behind the scenes divider */
  .behind-label {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 10px !important;
    margin-bottom: 7px !important;
    font-size: 0.625rem !important;
  }
  .behind-list { gap: 5px !important; }
  .behind-list li { font-size: 0.8125rem !important; opacity: 0.65; }

  /* Outcome block */
  .outcome-title {
    font-size: clamp(1.375rem, 6vw, 2rem) !important;
  }
  .outcome-cta .btn { width: 100% !important; justify-content: center !important; }
}

/* ? STEP DOTS ? end of file cleanup · */

/* ? CONTACT MICROCOPY ·· */
.hero-microcopy {
  font-size: 0.8125rem;
  color: var(--ink-3);
  margin-top: 14px;
  line-height: 1.5;
}
.hero-microcopy a {
  color: var(--ink-2);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.hero-microcopy a:hover { color: var(--ink); }

.cta-contact {
  font-size: 0.8125rem;
  color: var(--ink-3);
  margin-top: 16px;
  line-height: 1.5;
}
.cta-contact a {
  color: var(--ink-2);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.cta-contact a:hover { color: var(--ink); }

.footer-contact-line {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
  font-size: 0.75rem;
  color: var(--ink-3);
}
.footer-contact-line a {
  color: var(--ink-2);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.footer-contact-line a:hover { color: var(--ink); }

/* ? CONTACT MODAL ··? */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: clamp(24px,4vw,40px);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
  transform: translateY(16px);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
  scrollbar-width: none;
}
.modal-box::-webkit-scrollbar { display: none; }
.modal-overlay.open .modal-box { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--ink-2);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.12); color: var(--ink); }

.modal-header { margin-bottom: 24px; }
.modal-header h2 { font-size: clamp(1.375rem,3vw,1.75rem); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.modal-header p { font-size: 0.9375rem; color: var(--ink-2); line-height: 1.6; }

.modal-form { display: flex; flex-direction: column; gap: 16px; }
.modal-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 479px) { .modal-form-row { grid-template-columns: 1fr 1fr; } }

.modal-field { display: flex; flex-direction: column; gap: 6px; }
.modal-field label { font-size: 0.8125rem; font-weight: 500; color: var(--ink-2); }
.modal-optional { font-size: 0.6875rem; color: var(--ink-3); font-weight: 400; margin-left: 4px; }

.modal-field input,
.modal-field select,
.modal-field textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 11px 14px;
  font-family: var(--sans);
  font-size: 0.9375rem;
  color: var(--ink);
  outline: none;
  width: 100%;
  transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
  appearance: none;
}
.modal-field input::placeholder,
.modal-field textarea::placeholder { color: var(--ink-3); }
.modal-field input:focus,
.modal-field select:focus,
.modal-field textarea:focus {
  border-color: rgba(255,255,255,0.22);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.06);
}
.modal-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A5A78' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: rgba(255,255,255,0.05);
  padding-right: 36px;
}
.modal-field select option { background: var(--bg-card); color: var(--ink); }
.modal-field textarea { resize: vertical; min-height: 100px; line-height: 1.6; }

@media (max-width: 600px) {
  .modal-box {
    padding: 20px 18px !important;
    max-height: 96vh !important;
    border-radius: 16px !important;
  }

  .modal-header {
    margin-bottom: 14px;
    padding-right: 32px;
  }

  .modal-header h2 {
    font-size: 1.25rem;
    margin-bottom: 4px;
  }

  .modal-header p {
    font-size: 0.8125rem;
    line-height: 1.45;
  }

  .modal-form {
    gap: 10px;
  }

  .modal-form-row {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px;
  }

  .modal-field label {
    font-size: 0.75rem;
  }

  .modal-field input,
  .modal-field select,
  .modal-field textarea {
    padding: 8px 11px;
    font-size: 0.875rem;
  }

  .modal-field textarea {
    min-height: 64px;
  }

  .modal-policy-notice {
    padding: 8px 12px;
    margin-top: 2px;
  }

  .modal-policy-notice p {
    font-size: 10.5px;
  }

  .modal-close {
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
  }
}

.modal-policy-notice {
  margin-top: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
}
.modal-policy-notice p {
  font-size: 11.5px;
  color: #8a8694;
  line-height: 1.5;
  margin: 0;
}
.modal-policy-notice a {
  color: var(--coral);
  text-decoration: none;
  transition: opacity 0.2s;
}
.modal-policy-notice a:hover {
  opacity: 0.75;
  text-decoration: underline;
}

.modal-success {
  display: none;
  padding: 14px 16px;
  background: rgba(240,90,91,0.08);
  border: 1px solid rgba(240,90,91,0.3);
  border-radius: 10px;
  font-size: 0.9375rem;
  color: var(--ink);
  line-height: 1.5;
}

/* ? FORM VALIDATION ·· */
.field-invalid {
  border-color: rgba(255,90,78,0.75) !important;
  box-shadow: 0 0 0 3px rgba(255,90,78,0.15) !important;
  animation: none !important;
}
/* Valid state — green glow, animates once */
@keyframes modalValidGlow {
  0%   { box-shadow: 0 0 0 3px rgba(74,222,128,0.35); }
  50%  { box-shadow: 0 0 0 5px rgba(74,222,128,0.18), 0 0 14px rgba(74,222,128,0.20); }
  100% { box-shadow: 0 0 0 3px rgba(74,222,128,0.35); }
}
.field-valid {
  border-color: rgba(74,222,128,0.70) !important;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.35) !important;
  animation: modalValidGlow 1.6s ease-in-out 1;
}
.field-error {
  font-size: 0.75rem;
  color: #ff6b6b;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.field-error::before {
  content: "✕";
  font-size: 0.625rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* General form error banner */
.form-error-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255,90,78,0.08);
  border: 1px solid rgba(255,90,78,0.35);
  border-radius: 8px;
  font-size: 0.8125rem;
  color: #ff6b6b;
  line-height: 1.4;
  animation: bannerShake 0.35s ease;
}
.form-error-banner::before {
  content: "⚠";
  font-size: 1rem;
  flex-shrink: 0;
}
@keyframes bannerShake {
  0%,100% { transform: translateX(0); }
  20%      { transform: translateX(-5px); }
  40%      { transform: translateX(5px); }
  60%      { transform: translateX(-3px); }
  80%      { transform: translateX(3px); }
}

.required-star {
  color: var(--coral);
  font-size: 0.75rem;
  line-height: 1;
  vertical-align: middle;
  margin-left: 2px;
}

/* ? SUBMIT OVERLAY ·· */
.submit-overlay {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: rgba(13, 13, 20, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.submit-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

.submit-overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Spinner */
.submit-spinner {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.submit-spinner.visible {
  opacity: 1;
  transform: scale(1);
}
.spinner-arc {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  transform-origin: center;
  animation: spinnerRotate 1s linear infinite, spinnerDash 1.5s ease-in-out infinite;
}
@keyframes spinnerRotate {
  100% { transform: rotate(360deg); }
}
@keyframes spinnerDash {
  0%   { stroke-dashoffset: 80; }
  50%  { stroke-dashoffset: 20; }
  100% { stroke-dashoffset: 80; }
}

/* Checkmark */
.submit-check {
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.4s cubic-bezier(0.16,1,0.3,1), transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.submit-check.visible {
  opacity: 1;
  transform: scale(1);
}
.check-path {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  transition: stroke-dashoffset 0s;
}
.submit-check.visible .check-path {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.5s cubic-bezier(0.16,1,0.3,1) 0.2s;
}

/* Status text */
.submit-status {
  font-size: 0.9375rem;
  color: var(--ink-2);
  font-weight: 500;
  text-align: center;
  max-width: 240px;
  line-height: 1.5;
  transition: color 0.3s ease;
}
.submit-status.success {
  color: var(--ink);
}

/* ? SUBMIT ICON STACK FIX ·? */
.submit-overlay-inner {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 20px !important;
}
.submit-icon-wrap {
  position: relative;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}
.submit-spinner {
  position: absolute !important;
  top: 0 !important; left: 0 !important;
}
.submit-check {
  position: absolute !important;
  top: 0 !important; left: 0 !important;
}

/* ? VOICES ·· */
.voices {
  padding: clamp(32px, 4vw, 52px) 0 clamp(64px, 8vw, 96px);
  background: var(--bg-2);
}

/* ? TESTIMONIAL SLIDER ·? */
.tslider {
  position: relative;
  overflow: hidden;
}
.tslider-track {
  display: flex;
  will-change: transform;
  align-items: stretch;
}
.tslide {
  flex: 0 0 100%;
  min-width: 0;
  margin: 0;
}

/* Controls */
.tslider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}
.tslider-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  background: transparent;
  color: var(--ink-2);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.tslider-btn:hover {
  border-color: var(--coral);
  color: var(--coral);
  background: rgba(240,90,91,0.08);
}
.tslider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.tslider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: var(--ink-4);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.tslider-dot.active {
  background: var(--coral);
  transform: scale(1.4);
}

.voices-header {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 10px; margin-bottom: clamp(36px, 5vw, 52px);
}
.voices-header .section-eyebrow { align-self: flex-start; }
.voices-header h2 { margin-top: 4px; }

/* Stat bar above slider */
.voices-stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
  margin-top: clamp(20px, 3vw, 32px);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}
.voices-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: clamp(20px, 3vw, 28px) clamp(16px, 2.5vw, 24px);
  text-align: center;
}
.voices-stat-sep {
  width: 1px;
  background: rgba(255,255,255,0.10);
  flex-shrink: 0;
  align-self: stretch;
}
.voices-stat-num {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--coral);
  line-height: 1;
}
.voices-stat-label {
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  color: var(--ink-2);
  line-height: 1.4;
  max-width: 180px;
}

@media (max-width: 640px) {
  .voices-stats {
    flex-direction: column;
    border-radius: 12px;
  }
  .voices-stat-sep {
    width: auto;
    height: 1px;
    align-self: stretch;
  }
  .voices-stat-label {
    max-width: none;
  }
}

/* ? ENTRY ANIMATIONS ·· */
@keyframes vrSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes vrCountUp {
  from { opacity: 0; transform: translateY(16px) scale(0.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes vrArrowPop {
  0%   { opacity: 0; transform: translateX(-8px) scale(0.7); }
  60%  { transform: translateX(3px) scale(1.15); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes vrGlowPulse {
  0%,100% { opacity: 0.6; }
  50%      { opacity: 1; }
}
@keyframes vrShimmer {
  0%   { transform: translateX(-100%) skewX(-12deg); }
  100% { transform: translateX(300%) skewX(-12deg); }
}
@keyframes vqFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes vqLineGrow {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}
@keyframes vqMarkFade {
  from { opacity: 0; transform: scale(0.7) rotate(-10deg); }
  to   { opacity: 0.12; transform: scale(1) rotate(0deg); }
}


/* ? STAT STRIP ··? */
.vr-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: clamp(16px, 2.5vw, 24px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.35),
              inset 0 1px 0 rgba(255,255,255,0.08);
}

.vr-divider {
  width: 1px;
  background: rgba(255,255,255,0.07);
  align-self: stretch;
}

/* each block has its own accent color */
.vr-block {
  padding: clamp(28px, 4vw, 48px) clamp(24px, 3.5vw, 40px);
  display: flex; flex-direction: column; gap: 8px;
  position: relative; overflow: hidden;
}

/* shimmer on hover */
.vr-block::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
  transform: translateX(-100%) skewX(-12deg);
  pointer-events: none;
}
.vr-block:hover::after {
  animation: vrShimmer 0.7s ease forwards;
}

/* block 1 ? coral (brand) */
.vr-block-1 {
  background: linear-gradient(145deg, rgba(240,90,91,0.10) 0%, rgba(240,90,91,0.03) 100%);
}
.vr-block-1::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--coral), transparent);
}
.vr-block-1 .vr-n-after { color: var(--coral); }
.vr-block-1 .vr-n-arrow { color: var(--coral); }

/* block 2 ? purple/indigo */
.vr-block-2 {
  background: linear-gradient(145deg, rgba(120,90,220,0.10) 0%, rgba(120,90,220,0.03) 100%);
}
.vr-block-2::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #7c6fcd, transparent);
}
.vr-block-2 .vr-n-after { color: #9d93e0; }
.vr-block-2 .vr-n-arrow { color: #7c6fcd; }

/* block 3 ? blue */
.vr-block-3 {
  background: linear-gradient(145deg, rgba(74,158,255,0.10) 0%, rgba(74,158,255,0.03) 100%);
}
.vr-block-3::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #4a9eff, transparent);
}
.vr-block-3 .vr-n-after { color: #6db3ff; }
.vr-block-3 .vr-n-arrow { color: #4a9eff; }

.vr-industry {
  font-family: var(--mono);
  font-size: 0.625rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 400;
  margin-bottom: 4px;
}

.vr-numbers {
  display: flex; align-items: baseline; gap: 10px;
  font-variant-numeric: tabular-nums; line-height: 1;
}
.vr-n-before {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700; letter-spacing: -0.04em;
  color: var(--ink-3);
  /* animated in by JS */
}
.vr-n-arrow {
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 300; padding-bottom: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.vr-block.counted .vr-n-arrow { opacity: 1; }

.vr-n-after {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700; letter-spacing: -0.04em;
}
/* text-only variant */
.vr-numbers-text .vr-n-after {
  font-size: clamp(28px, 4vw, 48px);
}

.vr-metric-name {
  font-size: 0.8125rem; color: var(--ink-2);
  font-weight: 500; line-height: 1.3;
}
.vr-note {
  font-size: 0.6875rem; color: var(--ink-3);
  font-family: var(--mono); letter-spacing: 0.03em; margin: 0;
}

/* ? FEATURED QUOTE ·· */
.vq-feature {
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: clamp(32px, 5vw, 56px);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35),
              inset 0 1px 0 rgba(255,255,255,0.08);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
  box-sizing: border-box;
}
/* coral glow ? static, no animation */
.vq-glow {
  position: absolute;
  top: -80px; left: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(240,90,91,0.10) 0%, transparent 65%);
  pointer-events: none;
  opacity: 0.8;
}
/* top accent line */
.vq-feature::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, var(--coral) 0%, rgba(240,90,91,0.2) 40%, transparent 70%);
}

.vq-quote {
  position: relative; margin: 0;
  padding-left: clamp(20px, 3vw, 32px);
  flex: 1;
  display: flex;
  align-items: center;
}
/* animated border-left */
.vq-quote::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--coral); border-radius: 2px;
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 0.6s var(--ease-out) 0.2s;
}
.vq-feature.visible .vq-quote::before { transform: scaleY(1); }

.vq-mark {
  position: absolute;
  top: -20px; left: 16px;
  font-size: 6rem; line-height: 1;
  color: var(--coral);
  font-family: Georgia, serif;
  pointer-events: none; user-select: none;
  opacity: 0;
  transform: scale(0.7) rotate(-10deg);
  transition: opacity 0.5s ease 0.1s, transform 0.5s var(--ease-bounce) 0.1s;
}
.vq-feature.visible .vq-mark {
  opacity: 0.12;
  transform: scale(1) rotate(0deg);
}

.vq-quote p {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 500; line-height: 1.5;
  color: var(--ink); letter-spacing: -0.015em;
  margin: 0; font-style: normal;
  /* word-by-word fade handled by JS */
}

.vq-caption {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid var(--rule-soft);
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.5s ease 0.5s, transform 0.5s var(--ease-out) 0.5s;
}
.vq-feature.visible .vq-caption { opacity: 1; transform: translateY(0); }

.vq-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(240,90,91,0.22) 0%, rgba(240,90,91,0.06) 100%);
  border: 1px solid rgba(240,90,91,0.25);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.875rem; color: var(--ink);
  font-family: var(--sans); flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(240,90,91,0.08);
}
.vq-person { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.vq-name { font-size: 0.9375rem; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
.vq-role { font-size: 0.8125rem; color: var(--ink-2); }

.blurred-text {
  filter: blur(4px);
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

.vq-badge {
  display: flex; flex-direction: column; align-items: flex-end; gap: 3px;
  margin-left: auto; flex-shrink: 0;
}
.vq-badge-label {
  font-family: var(--mono); font-size: 0.5625rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3);
}
.vq-badge-val {
  font-size: 1.125rem; font-weight: 700;
  color: var(--coral); letter-spacing: -0.02em;
  line-height: 1;
}

/* ? MOBILE ·· */
@media (max-width: 767px) {
  .vr-strip { grid-template-columns: 1fr; }
  .vr-divider { width: auto; height: 1px; }
  .vq-badge { margin-left: 0; align-items: flex-start; }
}
@media (max-width: 480px) {
  .vq-mark { display: none; }

  .vq-feature {
    padding: 24px 20px;
  }

  .vq-quote {
    padding-left: 16px;
  }

  .vq-quote p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .vq-caption {
    padding-top: 16px;
    margin-top: 16px;
    gap: 10px;
    flex-wrap: nowrap;
    align-items: center;
  }

  .vq-avatar {
    width: 36px;
    height: 36px;
    font-size: 0.7rem;
    flex-shrink: 0;
  }

  .vq-person {
    gap: 1px;
    min-width: 0;
  }

  .vq-name {
    font-size: 0.8125rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .vq-role {
    font-size: 0.6875rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .vq-badge {
    margin-left: auto;
    align-items: flex-end;
    flex-shrink: 0;
  }

  .vq-badge-label {
    font-size: 0.5rem;
  }

  .vq-badge-val {
    font-size: 0.9375rem;
  }
}

/* ? CLOSING BLOCK ··? */
.voices-close {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.voices-close-cap {
  font-size: 0.875rem;
  color: var(--ink-2);
  font-weight: 400;
}
.voices-close-slots {
  font-size: 0.875rem;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.voices-close-cta {
  font-size: 0.9375rem;
  color: var(--coral);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-top: 4px;
  transition: opacity 0.2s;
}
.voices-close-cta:hover { opacity: 0.75; }

/* ? MOBILE ·· */
@media (max-width: 767px) {
  .va-body { grid-template-columns: 1fr; }
  .va-quote-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .va-outcome { align-items: center; text-align: center; }
  .va-numbers { justify-content: center; }
  .va-qa-link { align-self: center; }
  .voices-grid { grid-template-columns: 1fr; }
}

/* ···
   ORDER INTAKE MODAL  ?  om-* namespace
   ··· */

/* ? Overlay ·· */
.om-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(8,8,12,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.om-overlay[hidden] { display: none !important; }
.om-overlay.om-open {
  opacity: 1;
  pointer-events: all;
}

/* ? Panel ··? */
.om-panel {
  background: #16161a;
  border: 1px solid rgba(255,255,255,0.06);
  border-right: none;
  border-radius: 24px 0 0 24px;
  box-shadow: -8px 0 40px rgba(0,0,0,0.4);
  width: 100%;
  max-width: 640px;
  height: 100%;
  max-height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 32px;
  position: relative;
  transform: translateX(40px);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.08) transparent;
}
.om-overlay.om-open .om-panel {
  transform: translateX(0);
}

/* Mobile: full-screen sheet slides up from bottom */
@media (max-width: 639px) {
  .om-overlay {
    align-items: flex-end;
    justify-content: center;
  }
  .om-panel {
    border-radius: 20px 20px 0 0;
    border: 1px solid rgba(255,255,255,0.06);
    border-bottom: none;
    max-width: 100%;
    height: auto;
    max-height: 92vh;
    padding: 20px 20px 32px;
    transform: translateY(40px);
  }
  .om-overlay.om-open .om-panel {
    transform: translateY(0);
  }
}

/* ? Close button ··? */
.om-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: #a8a4b8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.om-close:hover { background: rgba(255,255,255,0.12); color: #fff; transform: rotate(90deg); }
.om-close:focus-visible { outline: 2px solid #ff5a4e; outline-offset: 2px; }

/* ? Header ··? */
.om-eyebrow {
  font-family: var(--mono, "DM Mono", monospace);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff5a4e;
  margin: 0 0 10px;
}
.om-heading {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.15;
}
.om-subhead {
  font-size: 15px;
  color: #a8a4b8;
  line-height: 1.55;
  margin: 0 0 20px;
}
.om-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 0 0 24px;
}

/* ? Form layout ··? */
#order-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.om-fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.om-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.om-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 479px) {
  .om-row { grid-template-columns: 1fr; }
}

/* ? Labels ··? */
.om-label {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  display: block;
}
.om-required {
  color: #ff5a4e;
  margin-left: 2px;
}

/* ? Inputs ··? */
.om-input {
  background: #16161a;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.5;
  padding: 10px 14px;
  width: 100%;
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.om-input::placeholder { color: #6e6a7e; }
.om-input:focus {
  border-color: rgba(255,255,255,0.22);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.06);
}
/* Error state — red */
.om-input--error,
.om-input--invalid {
  border-color: rgba(255,90,78,0.75) !important;
  box-shadow: 0 0 0 2px rgba(255,90,78,0.18) !important;
  animation: none !important;
}
/* Valid state — green glow (animates once on entry) */
@keyframes validGlowPulse {
  0%   { box-shadow: 0 0 0 2px rgba(74,222,128,0.40); }
  50%  { box-shadow: 0 0 0 5px rgba(74,222,128,0.20), 0 0 14px rgba(74,222,128,0.22); }
  100% { box-shadow: 0 0 0 2px rgba(74,222,128,0.40); }
}
.om-input--valid {
  border-color: rgba(74,222,128,0.70) !important;
  box-shadow: 0 0 0 2px rgba(74,222,128,0.40) !important;
  animation: validGlowPulse 1.6s ease-in-out 1;
}
.om-textarea {
  resize: vertical;
  min-height: 80px;
}

/* Input with icon */
.om-input-wrap { position: relative; }
.om-input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #6e6a7e;
  pointer-events: none;
}
.om-input--icon { padding-left: 36px; }

/* ? Helper text ··? */
.om-helper {
  font-size: 12px;
  color: #a8a4b8;
  line-height: 1.5;
  margin: 0;
}
.om-helper--top { margin-bottom: 4px; }

/* ? Field error ··? */
.om-field-error {
  font-size: 12px;
  color: #ff6b6b;
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.om-field-error::before {
  content: "✕";
  font-size: 0.6rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Error banner above submit */
.om-error-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255,90,78,0.08);
  border: 1px solid rgba(255,90,78,0.35);
  border-radius: 8px;
  font-size: 0.8125rem;
  color: #ff6b6b;
  line-height: 1.4;
  margin-bottom: 4px;
  animation: bannerShake 0.35s ease;
}
.om-error-banner::before {
  content: "⚠";
  font-size: 1rem;
  flex-shrink: 0;
}

/* ? Plan grid ·· */
.om-plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}
@media (max-width: 479px) {
  .om-plan-grid { grid-template-columns: 1fr; }
}
.om-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 14px 12px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
  background: transparent;
  user-select: none;
}
.om-plan-card:hover {
  border-color: rgba(255,90,78,0.35);
  background: rgba(255,90,78,0.03);
}
.om-plan-card--selected {
  border: 2px solid #ff5a4e !important;
  background: rgba(255,90,78,0.04);
  box-shadow: 0 0 0 0 transparent;
}
.om-plan-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.om-plan-radio:focus-visible + .om-plan-badge,
.om-plan-radio:focus-visible ~ .om-plan-name {
  outline: 2px solid #ff5a4e;
  outline-offset: 2px;
}
.om-plan-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}
.om-plan-price {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.om-plan-desc {
  font-size: 12px;
  color: #a8a4b8;
  line-height: 1.4;
}
.om-plan-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-family: var(--mono, "DM Mono", monospace);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 3px 7px;
  border-radius: 20px;
  white-space: nowrap;
}
.om-plan-badge--coral {
  background: rgba(255,90,78,0.15);
  color: #ff5a4e;
  border: 1px solid rgba(255,90,78,0.3);
}
.om-plan-badge--lavender {
  background: rgba(168,164,184,0.12);
  color: #a8a4b8;
  border: 1px solid rgba(168,164,184,0.25);
}

/* ? Contact section ·· */
.om-contact-fieldset {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.om-contact-primary .om-input-wrap {
  position: relative;
}
.om-contact-extras {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
@media (max-width: 479px) {
  .om-contact-extras { grid-template-columns: 1fr; }
}
/* sr-only label ? visible on focus for a11y, hidden visually */
.om-label--sr {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ? "Tell us more" toggle ·? */
.om-more-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.om-more-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 11px 14px;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  color: #a8a4b8;
  text-align: left;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  width: 100%;
}
.om-more-toggle:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
  color: #fff;
}
.om-more-toggle--open {
  border-radius: 10px 10px 0 0;
  border-bottom-color: transparent;
  background: rgba(255,255,255,0.05);
  color: #fff;
}
.om-more-toggle:focus-visible { outline: 2px solid #ff5a4e; outline-offset: 2px; border-radius: 10px; }
.om-more-chevron {
  flex-shrink: 0;
  color: #6e6a7e;
  transition: transform 0.22s cubic-bezier(0.16,1,0.3,1), color 0.18s;
}
.om-more-toggle--open .om-more-chevron {
  transform: rotate(90deg);
  color: #ff5a4e;
}
.om-more-toggle-text {
  flex: 1;
  line-height: 1.4;
}
.om-more-badge {
  flex-shrink: 0;
  font-family: var(--mono, "DM Mono", monospace);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6e6a7e;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 2px 7px;
  white-space: nowrap;
}
.om-more-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 14px 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-top: none;
  border-radius: 0 0 10px 10px;
  background: rgba(255,255,255,0.02);
}
.om-more-fields[hidden] { display: none; }

/* ? Consent ·· */
.om-field--consent { gap: 0; }
.om-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.om-checkbox-wrap {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
}
.om-checkbox-wrap input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
  z-index: 1;
}
.om-checkbox-custom {
  display: block;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 4px;
  background: transparent;
  transition: background 0.15s, border-color 0.15s;
  position: relative;
}
.om-checkbox-wrap input:checked ~ .om-checkbox-custom {
  background: #ff5a4e;
  border-color: #ff5a4e;
}
.om-checkbox-wrap input:checked ~ .om-checkbox-custom::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.om-checkbox-wrap input:focus-visible ~ .om-checkbox-custom {
  outline: 2px solid #ff5a4e;
  outline-offset: 2px;
}
.om-consent--error .om-checkbox-custom {
  border-color: #ff5a4e;
}
.om-consent-text {
  font-size: 13px;
  color: #a8a4b8;
  line-height: 1.5;
}

/* ? Policy notice ··? */
.om-policy-notice {
  margin-top: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
}
.om-policy-notice p {
  font-size: 11.5px;
  color: #8a8694;
  line-height: 1.5;
  margin: 0;
}
.om-policy-notice a {
  color: #ff5a4e;
  text-decoration: none;
  transition: opacity 0.2s;
}
.om-policy-notice a:hover {
  opacity: 0.75;
  text-decoration: underline;
}

/* ? Error line ·· */
.om-error-line {
  font-size: 13px;
  color: #a8a4b8;
  line-height: 1.5;
  margin: 0;
}
.om-error-line[hidden] { display: none; }
.om-error-link {
  color: #ff5a4e;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ? Submit row ·· */
.om-submit-row {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
@media (max-width: 639px) {
  .om-submit-row { align-items: stretch; }
}
.om-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ff5a4e;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  cursor: pointer;
  min-width: 240px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  white-space: nowrap;
}
@media (max-width: 639px) {
  .om-submit-btn { width: 100%; min-width: 0; }
}
.om-submit-btn:hover:not(:disabled) {
  background: #e84a3e;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255,90,78,0.35);
}
.om-submit-btn:active:not(:disabled) { transform: translateY(0); }
.om-submit-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.om-submit-btn:focus-visible { outline: 2px solid #ff5a4e; outline-offset: 3px; }
.om-submit-note {
  font-size: 12px;
  color: #6e6a7e;
  text-align: right;
  line-height: 1.5;
  max-width: 320px;
  margin: 0;
}
@media (max-width: 639px) {
  .om-submit-note { text-align: center; max-width: 100%; }
}

/* ? Spinner ·· */
.om-spinner {
  animation: om-spin 0.8s linear infinite;
  flex-shrink: 0;
}
.om-spinner[hidden] { display: none; }
@keyframes om-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ? Success state ··? */
#om-success-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 0 8px;
  gap: 16px;
}
#om-success-body[hidden] { display: none; }
.om-success-icon { line-height: 0; }
.om-success-heading {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.2;
}
.om-success-body {
  font-size: 15px;
  color: #a8a4b8;
  line-height: 1.6;
  max-width: 44ch;
  margin: 0;
}
.om-success-link {
  color: #ff5a4e;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.om-success-close {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 13px;
  color: #ff5a4e;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  padding: 4px 0;
  margin-top: 4px;
}
.om-success-close:hover { opacity: 0.8; }
.om-success-close:focus-visible { outline: 2px solid #ff5a4e; outline-offset: 2px; border-radius: 3px; }

/* ··?
   MOBILE RESPONSIVE ? phones (max-width: 639px)
   Covers: order modal, testimonials, footer
   ··? */

/* ? WHY US ADDITIONS ·· */
.comparison-sub {
  font-size: clamp(0.9375rem, 1.4vw, 1.125rem);
  color: var(--ink-2);
  max-width: 560px;
  font-weight: 400;
  margin: 0;
  line-height: 1.6;
}

.why-us-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: clamp(28px, 4vw, 48px);
  padding-top: clamp(20px, 3vw, 32px);
  border-top: 1px solid var(--rule-soft);
}
@media (max-width: 479px) {
  .why-us-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .why-us-cta .btn {
    justify-content: center;
  }
}

/* ? MOBILE HERO BUTTON FULL WIDTH ·? */
@media (max-width: 479px) {
  .hero-btn-primary {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 16px 24px;
  }
  .hero-cta .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ? PRICING GUARANTEE STRIP ·· */
/* Visual guarantee badge below pricing grid */
.pricing-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: clamp(20px, 3vw, 32px);
  padding: 14px 20px;
  background: rgba(74, 222, 128, 0.06);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 10px;
  font-size: 0.875rem;
  color: var(--ink-2);
  font-weight: 500;
}
.pricing-guarantee svg {
  color: #4ade80;
  flex-shrink: 0;
}
.pricing-guarantee strong {
  color: var(--ink);
}

.result-card,
.step-card,
.price-card,
.metric-card,
.pricing-guarantee,
.faq-item,
.modal-box,
.contact-form,
.ai-result-card {
  border-radius: var(--radius-lg);
}
.result-card,
.step-card,
.price-card,
.metric-card,
.pricing-guarantee,
.ai-result-card {
  background: linear-gradient(145deg, var(--glass-strong) 0%, rgba(255,255,255,0.035) 100%);
  border-color: var(--glass-border);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255,255,255,0.16);
}
.btn,
.nav-links a,
.faq-q,
.info-trigger,
.tslider-btn,
.tslider-dot {
  -webkit-tap-highlight-color: transparent;
}
.btn:active,
.nav-links a:active,
.faq-q:active {
  transform: translateY(1px) scale(0.99);
}
@media (min-width: 1024px) {
}
@media (prefers-reduced-motion: reduce) {
  .btn:active,
  .nav-links a:active,
  .faq-q:active {
    transform: none;
  }
}


/* Hero restored: muted social proof palette */
.hero-social-proof {
  gap: 12px;
  margin-top: 4px;
}
.hero-avatar {
  width: 28px;
  height: 28px;
  background: var(--bg-elev);
  border: 2px solid var(--bg);
  font-size: 0.5625rem;
  color: var(--ink-3);
  margin-left: -8px;
}
.hero-avatar:first-child { margin-left: 0; }
.hero-avatar:nth-child(1) { background: #1e2a3a; color: #6ab0f5; }
.hero-avatar:nth-child(2) { background: #1e2e24; color: #6ad4a0; }
.hero-avatar:nth-child(3) { background: #2e1e1e; color: #f5a06a; }
.hero-avatar:nth-child(4) { background: #2a1e2e; color: #c06af5; }
.hero-social-text {
  color: var(--ink-3);
  margin: 0;
  line-height: 1.4;
}
.hero-social-text strong {
  color: var(--ink-2);
  font-weight: 600;
}


/* Hero trust bar: restored green verified styling */
.hero-trust-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 32px;
}
.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8125rem;
  color: var(--ink-3);
  font-weight: 500;
}
.hero-trust-item svg {
  color: #4ade80;
  flex-shrink: 0;
}
.hero-trust-sep {
  color: var(--ink-4);
  font-size: 0.75rem;
}
@media (max-width: 479px) {
  .hero-trust-sep { display: none; }
  .hero-trust-bar { gap: 6px; }
}


/* ─── FAQ — split layout ─────────────────────────────────────────── */
.faq {
  padding: clamp(32px, 4vw, 52px) 0;
  border-top: 1px solid var(--rule);
  background: var(--bg);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  align-items: start;
}

/* ── Left: question buttons ── */
.faq-questions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px 18px;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  position: relative;
  overflow: hidden;
}

.faq-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--coral);
  border-radius: 3px 0 0 3px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.faq-btn:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.04) 100%);
  border-color: rgba(255,255,255,0.15);
  transform: translateX(3px);
}

.faq-btn.active {
  background: linear-gradient(135deg, rgba(240,90,91,0.12) 0%, rgba(240,90,91,0.05) 100%);
  border-color: rgba(240,90,91,0.4);
  box-shadow: 0 4px 20px rgba(240,90,91,0.1);
  transform: translateX(4px);
}

.faq-btn.active::before {
  opacity: 1;
}

.faq-btn-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  font-weight: 600;
  flex-shrink: 0;
  transition: color 0.2s ease;
  min-width: 20px;
}

.faq-btn.active .faq-btn-num {
  color: var(--coral);
}

.faq-btn-text {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  line-height: 1.4;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.faq-btn.active .faq-btn-text {
  color: var(--ink);
  font-weight: 600;
}

.faq-btn-arrow {
  flex-shrink: 0;
  color: var(--ink-4);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.faq-btn:hover .faq-btn-arrow,
.faq-btn.active .faq-btn-arrow {
  opacity: 1;
  transform: translateX(0);
}

.faq-btn.active .faq-btn-arrow {
  color: var(--coral);
}

/* ── Right: answer card ── */
.faq-answer-wrap {
  position: sticky;
  top: 100px;
}

.faq-answer-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15), inset 0 1px 1px rgba(255,255,255,0.2);
  overflow: hidden;
  min-height: 260px;
  display: flex;
  align-items: stretch;
  position: relative;
}

.faq-answer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(240,90,91,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.faq-answer-inner {
  padding: 36px 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* Transition states */
.faq-answer-inner {
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.faq-answer-inner.faq-exit {
  opacity: 0;
  transform: translateY(10px);
}

.faq-answer-inner.faq-enter {
  opacity: 0;
  transform: translateY(-10px);
}

.faq-answer-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 600;
  opacity: 0.8;
}

.faq-answer-q {
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
}

.faq-answer-text {
  font-size: clamp(14px, 1.2vw, 15px);
  line-height: 1.75;
  color: var(--ink-2);
  margin: 0;
  font-weight: 400;
}

.faq-answer-text a {
  color: var(--coral);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}

.faq-answer-text a:hover {
  opacity: 0.75;
}

/* ── Mobile: accordion ── */
@media (max-width: 768px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq-answer-wrap {
    display: none;
  }

  .faq-questions {
    gap: 0;
  }

  .faq-btn {
    transform: none !important;
    border-radius: 12px;
    margin-bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .faq-btn + .faq-inline-answer + .faq-btn,
  .faq-btn + .faq-btn {
    border-top: none;
  }

  .faq-btn-arrow {
    transition: transform 0.25s ease;
  }

  .faq-btn.active .faq-btn-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 479px) {
  .faq-answer-inner {
    padding: 22px 20px 26px;
  }
}

/* ── Inline answer panel (accordion) ── */
.faq-inline-answer {
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: linear-gradient(135deg, rgba(240,90,91,0.06) 0%, rgba(240,90,91,0.02) 100%);
  border: 1px solid rgba(240,90,91,0.2);
  border-top: none;
  border-radius: 0 0 12px 12px;
  margin-bottom: 8px;
}

.faq-inline-answer p {
  margin: 0;
  padding: 16px 20px 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-2);
}

@media (max-width: 768px) {
  .faq-inline-answer {
    display: block;
  }
}


/* ── STICKY CTA BAR ─────────────────────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #0d0d14;
  border-top: 1px solid rgba(255,255,255,0.1);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.sticky-cta-text {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
}

.sticky-cta-headline {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink, #fff);
  white-space: nowrap;
}

.sticky-cta-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}

.sticky-cta-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.sticky-cta-close {
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.45);
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: color 0.2s ease;
  line-height: 1;
}

.sticky-cta-close:hover {
  color: rgba(255,255,255,0.85);
}

@media (max-width: 600px) {
  .sticky-cta-inner {
    padding: 10px 16px;
    gap: 8px;
    flex-wrap: wrap;
  }

  .sticky-cta-text {
    flex-basis: 100%;
    min-width: 0;
  }

  .sticky-cta-sub {
    display: none;
  }

  .sticky-cta-headline {
    font-size: 13px;
    white-space: normal;
  }

  .sticky-cta-btn {
    flex: 1;
  }
}

/* Body padding when sticky bar is visible */
body.sticky-cta-visible {
  padding-bottom: 66px;
}

@media (max-width: 600px) {
  body.sticky-cta-visible {
    padding-bottom: 112px;
  }
}
