﻿@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=DM+Mono:wght@400;500&display=swap');

/* ── 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);
  --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; }

/* ── 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 ───────────────────────────────────────────── */
@keyframes pulse {
  0%,100% { opacity:1; box-shadow:0 0 0 0 rgba(240,90,91,0.4); }
  50%      { opacity:0.7; box-shadow:0 0 0 4px rgba(240,90,91,0); }
}
@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; }
}
@keyframes glowPulse {
  0%   { box-shadow:0 0 20px rgba(240,90,91,0.25); }
  50%  { box-shadow:0 0 30px rgba(240,90,91,0.6),0 0 60px rgba(240,90,91,0.3); }
  100% { box-shadow:0 0 20px rgba(240,90,91,0.25); }
}
@keyframes highlightPulse {
  0%,100% { box-shadow:0 0 0 0 rgba(240,90,91,0.4); }
  50%      { box-shadow:0 0 0 8px rgba(240,90,91,0); }
}
@keyframes outcomeGlow {
  0%,100% { opacity:0.5; }
  50%      { opacity:1; }
}
@keyframes ctaPulse {
  0%,100% { box-shadow:0 20px 60px rgba(240,90,91,0.5),0 0 30px rgba(240,90,91,0.3); }
  50%      { box-shadow:0 20px 60px rgba(240,90,91,0.7),0 0 40px rgba(240,90,91,0.5); }
}
@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);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  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;
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  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%; animation: pulse 1.6s ease-in-out infinite;
}

/* Desktop nav links */
.nav-links {
  display: flex; align-items: center; gap: 6px;
}
.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: 110; position: relative;
}
.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: 90;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-mobile-overlay.visible { opacity: 1; }

/* 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: var(--bg-card);
    border-left: 1px solid var(--rule);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 80px 24px 32px;
    gap: 4px;
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.3s var(--ease-out);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    font-size: 1.125rem; padding: 14px 16px;
    border-radius: 10px; min-height: 52px;
    border: 1px solid transparent;
  }
  .nav-links a:hover { border-color: var(--rule); }
  .nav-links .btn-nav-cta {
    margin-top: 16px; justify-content: center;
    font-size: 1rem; padding: 16px;
  }
  .nav-mobile-overlay { display: block; }
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.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 {
  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 {
  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-cta-primary { animation: ctaPulse 2s ease-in-out infinite; }

/* ── GRADIENT ORBS ───────────────────────────────────────── */
.gradient-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.6; mix-blend-mode: screen;
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}
.orb-1 { width: clamp(200px,40vw,400px); height: clamp(200px,40vw,400px); background: radial-gradient(circle,rgba(240,90,91,0.4) 0%,transparent 70%); top: -100px; left: -100px; animation-delay: 0s; }
.orb-2 { width: clamp(150px,30vw,300px); height: clamp(150px,30vw,300px); background: radial-gradient(circle,rgba(240,90,91,0.3) 0%,transparent 70%); bottom: -50px; right: -50px; animation-delay: 2s; }
.orb-cta-1 { width: clamp(180px,35vw,350px); height: clamp(180px,35vw,350px); background: radial-gradient(circle,rgba(240,90,91,0.35) 0%,transparent 70%); top: 50%; left: -100px; animation-delay: 1s; }
.orb-cta-2 { width: clamp(140px,28vw,280px); height: clamp(140px,28vw,280px); background: radial-gradient(circle,rgba(240,90,91,0.25) 0%,transparent 70%); bottom: -80px; right: 10%; animation-delay: 3s; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  padding: clamp(40px,6vw,80px) 0 clamp(32px,4vw,56px);
  position: relative; overflow: hidden;
  background: var(--bg);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(240,90,91,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px,5vw,60px);
  align-items: center;
  position: relative;
}
@media (min-width: 1024px) {
  .hero-container { grid-template-columns: 1fr 1fr; }
}
.hero-content { position: relative; }
.hero-chat { position: relative; }
@media (max-width: 1023px) {
  .hero-chat { display: flex; justify-content: center; }
}

.hero h1 {
  font-size: clamp(2.2rem,6vw,5rem);
  font-weight: 700; line-height: 1.04;
  letter-spacing: -0.035em; max-width: 860px;
  margin-bottom: 20px;
}
.hero .accent { color: var(--coral); font-style: italic; font-weight: 700; }
.hero-sub {
  margin: 0 0 32px; max-width: 520px;
  font-size: clamp(1rem,1.4vw,1.1875rem);
  line-height: 1.6; color: var(--ink-2); font-weight: 400;
}
.hero-cta {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px;
}
@media (max-width: 479px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { justify-content: 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: 420px;
  height: clamp(380px,48vw,480px);
  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: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  flex-shrink: 0; height: 52px;
}
.chat-dots { display: flex; gap: 6px; }
.chat-dots span { width: 8px; height: 8px; 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.875rem; font-weight: 600; color: var(--ink); text-align: center; }
.chat-bot-name { display: inline-block; transition: opacity 0.5s ease; }
.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: 8px 12px; border-radius: 14px;
  font-size: 0.75rem; max-width: 85%; font-weight: 500;
  box-shadow: 0 4px 12px rgba(240,90,91,0.3); line-height: 1.4;
  min-height: 34px; 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.75rem; 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: rgba(255,255,255,0.04); 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.15); border: 1.5px solid rgba(240,90,91,0.5);
  box-shadow: 0 0 20px rgba(240,90,91,0.25);
}
.ai-item.highlight.show { animation: glowPulse 0.8s ease-out; }
.ai-item.highlight::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(240,90,91,0.2) 0%, transparent 70%);
  border-radius: 10px; animation: highlightPulse 2s ease-in-out infinite; pointer-events: 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.5625rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral);
  border: 1px solid rgba(240,90,91,0.5); padding: 2px 6px; border-radius: 5px;
  font-weight: 600; background: rgba(240,90,91,0.08);
}
.ai-item-tag.missing { color: #FF6B6B; border-color: rgba(255,107,107,0.5); background: rgba(255,107,107,0.08); }
.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; gap: 10px; padding: 10px 12px;
  background: linear-gradient(135deg, rgba(240,90,91,0.15) 0%, rgba(240,90,91,0.08) 100%);
  border-top: 1px solid rgba(240,90,91,0.3);
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  flex-shrink: 0; height: 42px;
}
.chat-footer.visible { opacity: 1; transform: translateY(0); }
.footer-badge {
  font-family: var(--mono); font-size: 0.5625rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--coral); border: 1.5px solid var(--coral);
  padding: 4px 8px; border-radius: 5px; font-weight: 700; flex-shrink: 0;
  white-space: nowrap; background: rgba(240,90,91,0.1);
}
.footer-text { font-size: 0.8125rem; color: rgba(255,255,255,0.85); 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; }
.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; opacity: 0; font-size: 0.75rem; font-weight: 500;
  color: #9CA3AF; white-space: nowrap; border: 1px solid transparent;
  border-radius: 20px; transform: scale(0.85); cursor: default;
  transition: opacity 0.6s ease, transform 0.6s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
@media (min-width: 480px) { .platform-badge { font-size: 0.8125rem; padding: 6px 18px; } }
.platform-badge:not(.visible):nth-child(1) { transition-delay: 0s; }
.platform-badge:not(.visible):nth-child(2) { transition-delay: 0.08s; }
.platform-badge:not(.visible):nth-child(3) { transition-delay: 0.16s; }
.platform-badge:not(.visible):nth-child(4) { transition-delay: 0.24s; }
.platform-badge:not(.visible):nth-child(5) { transition-delay: 0.32s; }
.platform-badge:not(.visible):nth-child(6) { transition-delay: 0.4s; }
.platform-badge.visible { opacity: 1; transform: scale(1); }
.platform-badge:hover { transition-delay: 0s; 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; }

/* ── METRICS ─────────────────────────────────────────────── */
.metrics { padding: clamp(32px,4vw,52px) 0; border-top: 1px solid var(--rule); background: var(--bg); }
.metrics-header { display: flex; flex-direction: column; gap: 12px; padding-bottom: clamp(24px,4vw,48px); margin-bottom: 32px; 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: 8px; }
.metrics-header p { margin-top: 8px; font-size: clamp(0.9375rem,1.4vw,1.125rem); color: var(--ink-2); max-width: 560px; }
.metrics-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@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);
  display: flex; flex-direction: column; gap: 6px;
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.8s cubic-bezier(0.16,1,0.3,1);
  opacity: 0; transform: translateY(20px);
  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);
  will-change: opacity, transform;
}
.metric-card.visible { opacity: 1; transform: translateY(0); }
.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:not(.visible):nth-child(1) { transition-delay: 0s; }
.metric-card:not(.visible):nth-child(2) { transition-delay: 0.12s; }
.metric-card:not(.visible):nth-child(3) { transition-delay: 0.24s; }
.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; }
.step-card, .result-card, .metric-card, .chart-item { will-change: opacity, transform; }

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

/* 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;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  height: 60px;
}
.progress-timeline.visible { opacity: 1; transform: translateY(0); }
.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;
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.8s cubic-bezier(0.16,1,0.3,1);
  opacity: 0; transform: translateY(20px);
  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.visible { opacity: 1; transform: translateY(0); }
.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:not(.visible):nth-child(1) { transition-delay: 0s; }
.step-card:not(.visible):nth-child(2) { transition-delay: 0.12s; }
.step-card:not(.visible):nth-child(3) { transition-delay: 0.24s; }
.step-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.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: rgba(255,255,255,0.5); margin-bottom: 10px; padding: 3px 9px; border: 1px solid rgba(255,255,255,0.15); border-radius: 12px; display: inline-block; opacity: 0.8; transition: opacity 0.2s ease, 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 {
  max-width: 900px; margin: clamp(32px,5vw,60px) auto;
  padding: clamp(24px,4vw,40px) clamp(20px,4vw,48px);
  background: linear-gradient(135deg, rgba(240,90,91,0.12) 0%, rgba(240,90,91,0.06) 100%);
  border: 1px solid rgba(240,90,91,0.5); border-radius: 16px;
  text-align: center; position: relative; overflow: hidden;
  box-shadow: 0 0 40px rgba(240,90,91,0.25), inset 0 1px 1px rgba(255,255,255,0.1);
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.2s ease;
}
.outcome-block.visible { opacity: 1; transform: translateY(0); }
.outcome-block::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(240,90,91,0.2) 0%, transparent 70%); pointer-events: none; animation: outcomeGlow 3s ease-in-out infinite; }
.outcome-block:hover { box-shadow: 0 0 60px rgba(240,90,91,0.4), inset 0 1px 1px rgba(255,255,255,0.2); }
.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: 20px; 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: 24px; 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; }

/* ── RESULTS / WHAT YOU GET ──────────────────────────────── */
.results { padding: clamp(32px,4vw,52px) 0; background: var(--bg); border-top: 1px solid var(--rule); }
.results-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@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;
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.8s cubic-bezier(0.16,1,0.3,1);
  opacity: 0; transform: translateY(20px);
  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.visible { opacity: 1; transform: translateY(0); }
.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: 7px; font-weight: 600; transition: color 0.2s ease; letter-spacing: -0.01em; }
.result-card:hover h3 { color: var(--coral); }
.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: rgba(255,255,255,0.8); 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 ───────────────────────────────────────────────── */
.proof { padding: clamp(32px,4vw,52px) 0; border-top: 1px solid var(--rule); background: var(--bg); }
.proof-grid { display: grid; grid-template-columns: 1fr; gap: clamp(24px,4vw,56px); align-items: start; }
@media (min-width: 768px) { .proof-grid { grid-template-columns: 1fr 1fr; } }
.proof-chart { display: flex; flex-direction: column; gap: 16px; }
.chart-item {
  opacity: 0; padding: 16px; border-radius: 12px;
  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);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  position: relative; box-shadow: 0 8px 24px rgba(0,0,0,0.1), inset 0 1px 1px rgba(255,255,255,0.2);
}
.chart-item::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(240,90,91,0.12) 0%, transparent 70%); opacity: 0; transition: opacity 0.2s ease; pointer-events: none; border-radius: 12px; }
.chart-item:nth-child(1) { animation-delay: 0s; }
.chart-item:nth-child(2) { animation-delay: 0.2s; }
.chart-item:nth-child(3) { animation-delay: 0.4s; }
.chart-item:nth-child(1) .bar-fill { transition-delay: 0.6s; }
.chart-item:nth-child(2) .bar-fill { transition-delay: 0.8s; }
.chart-item:nth-child(3) .bar-fill { transition-delay: 1s; }
.chart-item.visible { opacity: 1; }
.chart-item: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.4); box-shadow: 0 12px 32px rgba(240,90,91,0.2), inset 0 1px 1px rgba(255,255,255,0.3); transform: translateX(6px); }
.chart-item:hover::before { opacity: 1; }
.chart-label { font-size: 0.875rem; color: var(--ink); font-weight: 600; margin-bottom: 8px; letter-spacing: -0.01em; }
.chart-bar { height: 20px; background: rgba(0,0,0,0.3); border-radius: 6px; overflow: hidden; margin-bottom: 8px; position: relative; box-shadow: inset 0 2px 4px rgba(0,0,0,0.2); }
.bar-fill { height: 100%; border-radius: 6px; background: rgba(255,255,255,0.15); transition: width 1.8s cubic-bezier(0.34,1.56,0.64,1); width: 0 !important; position: relative; overflow: hidden; }
.bar-fill::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 50%; background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, transparent 100%); border-radius: 6px 6px 0 0; }
.chart-item.visible .bar-fill { width: var(--bar-width) !important; }
.bar-fill.you { background: linear-gradient(90deg, var(--coral) 0%, #E84A4B 100%); box-shadow: 0 0 20px rgba(240,90,91,0.6), inset 0 1px 2px rgba(255,255,255,0.3); }
.bar-fill.top { background: linear-gradient(90deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.3) 100%); }
.chart-value { font-family: var(--mono); font-size: 0.75rem; font-weight: 500; color: var(--ink-2); text-align: right; }
.proof-text { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease; }
.proof-text.visible { opacity: 1; transform: translateY(0); }
.proof-text h3 { font-size: clamp(1.25rem,2vw,1.5rem); margin-bottom: 14px; font-weight: 700; }
.proof-text p { font-size: 0.9375rem; color: var(--ink-2); margin-bottom: 12px; line-height: 1.65; }

/* ── COMPARISON ──────────────────────────────────────────── */
.comparison-section { padding: clamp(32px,4vw,52px) 0; border-top: 1px solid var(--rule); background: var(--bg-2); }
.comparison-header { margin-bottom: clamp(32px,5vw,60px); display: flex; flex-direction: column; gap: 12px; align-items: flex-start; position: relative; padding-bottom: clamp(24px,4vw,48px); }
.comparison-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; }
.comparison-header h2 { font-size: clamp(1.75rem,4.5vw,3.5rem); font-weight: 700; letter-spacing: -0.02em; margin: 0; }
.comparison-header p { font-size: clamp(0.9375rem,1.4vw,1.125rem); color: var(--ink-2); max-width: 560px; font-weight: 400; margin: 0; }
.comparison-table { 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); border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.1), inset 0 1px 1px rgba(255,255,255,0.2); position: relative; }
.comparison-table::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at top right, rgba(240,90,91,0.08) 0%, transparent 50%); pointer-events: none; z-index: 0; }
.comparison-row { display: grid; grid-template-columns: 1.2fr 1fr 1fr; border-bottom: 1px solid rgba(255,255,255,0.06); opacity: 0; transform: translateX(-20px); transition: opacity 0.6s ease, transform 0.2s ease, background 0.2s ease; position: relative; z-index: 1; }
.comparison-row.visible { opacity: 1; transform: translateX(0); }
.comparison-row:not(.visible):nth-child(1) { transition-delay: 0s; }
.comparison-row:not(.visible):nth-child(2) { transition-delay: 0.08s; }
.comparison-row:not(.visible):nth-child(3) { transition-delay: 0.16s; }
.comparison-row:not(.visible):nth-child(4) { transition-delay: 0.24s; }
.comparison-row:not(.visible):nth-child(5) { transition-delay: 0.32s; }
.comparison-row:not(.visible):nth-child(6) { transition-delay: 0.4s; }
.comparison-row:last-child { border-bottom: none; }
.comparison-row.comparison-head { border-bottom: 1px solid rgba(255,255,255,0.15); background: linear-gradient(135deg, rgba(240,90,91,0.12) 0%, rgba(240,90,91,0.06) 100%); position: sticky; top: 0; z-index: 2; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.comparison-row:not(.comparison-head):hover { transition-delay: 0s; background: rgba(255,255,255,0.04); }
.comparison-cell { padding: clamp(14px,2vw,20px) clamp(14px,2vw,22px); font-size: clamp(0.8125rem,1.2vw,0.875rem); line-height: 1.6; display: flex; align-items: center; color: var(--ink-2); font-weight: 400; transition: color 0.2s ease; }
.comparison-row.comparison-head .comparison-cell { font-family: var(--mono); font-size: 0.6875rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; color: var(--ink); }
.comparison-cell.label { font-weight: 600; color: var(--ink); background: linear-gradient(90deg, rgba(255,255,255,0.04) 0%, transparent 100%); }
.comparison-cell.ours { color: var(--ink); font-weight: 600; background: linear-gradient(90deg, rgba(240,90,91,0.12) 0%, rgba(240,90,91,0.06) 100%); border-left: 3px solid var(--coral); padding-left: calc(clamp(14px,2vw,22px) - 3px); position: relative; overflow: hidden; }
.comparison-cell.ours::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; }
.comparison-row:hover .comparison-cell.ours::before { opacity: 1; }
.comparison-row.comparison-head .comparison-cell.ours { color: var(--coral); background: linear-gradient(90deg, rgba(240,90,91,0.15) 0%, rgba(240,90,91,0.08) 100%); border-left: none; }
@media (max-width: 639px) {
  .comparison-row { grid-template-columns: 1.1fr 1fr 1fr; }
  .comparison-row.comparison-head { display: grid; }
  .comparison-cell { padding: 10px 8px; font-size: 0.75rem; }
  .comparison-row.comparison-head .comparison-cell {
    font-size: 0.5625rem; padding: 10px 8px; letter-spacing: 0.06em;
  }
  .comparison-cell.label { font-size: 0.75rem; font-family: var(--sans); text-transform: none; color: var(--ink); background: linear-gradient(90deg, rgba(255,255,255,0.04) 0%, transparent 100%); padding: 10px 8px; }
  .comparison-cell.ours { border-left: 2px solid var(--coral); padding-left: 6px; }
}

/* ── PRICING ─────────────────────────────────────────────── */
.pricing { padding: clamp(32px,4vw,52px) 0; border-top: 1px solid var(--rule); background: var(--bg); }
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 20px; padding-top: 16px; }
@media (min-width: 640px) { .pricing-grid { grid-template-columns: repeat(2,1fr); gap: 20px; } }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(4,1fr); gap: 16px; } }
.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(20px,2.5vw,26px) clamp(16px,2vw,22px);
  display: flex; flex-direction: column; 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);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.8s cubic-bezier(0.16,1,0.3,1);
  opacity: 0; transform: translateY(20px);
}
.price-card.visible { opacity: 1; transform: translateY(0); }
.price-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(240,90,91,0.12) 0%, transparent 70%); opacity: 0; transition: opacity 0.2s ease; pointer-events: none; border-radius: 16px; z-index: 0; }
.price-card:not(.visible):nth-child(1) { transition-delay: 0s; }
.price-card:not(.visible):nth-child(2) { transition-delay: 0.12s; }
.price-card:not(.visible):nth-child(3) { transition-delay: 0.24s; }
.price-card:not(.visible):nth-child(4) { transition-delay: 0.36s; }
.price-card:hover { transition-delay: 0s; 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); z-index: 3; }
.price-card:hover::before { opacity: 1; }
.price-card.popular { border-color: var(--coral); box-shadow: 0 16px 48px rgba(240,90,91,0.3), 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%); }
@media (min-width: 1024px) { .price-card.popular { transform: scale(1.04); } }
.price-card.popular:hover { transform: translateY(-6px) scale(1.06); }
.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); animation: subtlePulse 3s ease-in-out infinite; }
.price-header { margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,0.08); padding-top: 8px; position: relative; z-index: 1; }
.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); animation: subtlePulse 3s ease-in-out infinite; }
.plan-name { font-size: clamp(1rem,1.5vw,1.125rem); font-weight: 700; margin-bottom: 12px; letter-spacing: -0.02em; color: var(--ink); position: relative; z-index: 1; }
.price-amount { font-size: clamp(2.5rem,4vw,3.5rem); 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: 8px; 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; }
.price-list { list-style: none; margin-bottom: 20px; flex: 1; position: relative; z-index: 1; }
.price-list li { display: flex; align-items: flex-start; gap: 8px; padding: 8px 0; font-size: 0.8125rem; color: var(--ink); border-bottom: 1px solid rgba(255,255,255,0.05); line-height: 1.5; }
.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 32px; line-height: 1.6; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer { padding: clamp(24px,3vw,36px) 0; border-top: 1px solid var(--rule); }
.footer .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-family: var(--mono); font-size: 0.6875rem; color: var(--ink-3); letter-spacing: 0.06em; }
.footer-links { display: flex; gap: 16px; }
.footer-links a { color: var(--ink-3); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--ink); }

/* ── SCROLL ANIMATION BASE ───────────────────────────────── */
.anim-fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.anim-fade-up.visible { opacity: 1; transform: translateY(0); }
.anim-scale {
  opacity: 0; transform: scale(0.9);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.anim-scale.visible { opacity: 1; transform: scale(1); }

/* ── HERO LOAD ANIMATIONS ────────────────────────────────── */
.hero h1 { animation: fadeInUp 0.7s var(--ease-out) both; }
.hero-sub { animation: fadeInUp 0.7s var(--ease-out) 0.15s both; }
.hero-cta { animation: fadeInUp 0.7s var(--ease-out) 0.3s both; }
.chat-mockup { animation: fadeInUp 0.8s var(--ease-out) 0.2s 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; } }

.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.2s, box-shadow 0.2s;
  -webkit-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(240,90,91,0.5);
  box-shadow: 0 0 0 3px rgba(240,90,91,0.1);
}
.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; }

.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(240, 90, 91, 0.7) !important;
  box-shadow: 0 0 0 3px rgba(240, 90, 91, 0.15) !important;
}
.field-error {
  font-size: 0.75rem;
  color: var(--coral);
  margin-top: 4px;
  display: block;
}

.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(64px, 8vw, 96px) 0;
  border-top: 1px solid var(--rule);
  background: var(--bg-2);
}

.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; }

/* ── 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); }
}

.voices-card-anim {
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.voices-card-anim.visible { opacity: 1; transform: translateY(0); }

/* ── 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: 32px;
}
/* animated coral glow */
.vq-glow {
  position: absolute;
  top: -80px; left: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(240,90,91,0.14) 0%, transparent 65%);
  pointer-events: none;
  animation: vrGlowPulse 4s ease-in-out infinite;
}
/* 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);
}
/* 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;
  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: 2px;
  margin-left: auto; flex-shrink: 0;
}
.vq-badge-label {
  font-family: var(--mono); font-size: 0.5rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3);
}
.vq-badge-val {
  font-size: 0.8125rem; font-weight: 600;
  color: var(--coral); letter-spacing: -0.01em;
}

/* ── 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; }
}

/* ── 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.18s, box-shadow 0.18s;
  outline: none;
  -webkit-appearance: none;
}
.om-input::placeholder { color: #6e6a7e; }
.om-input:focus {
  border-color: #ff5a4e;
  box-shadow: 0 0 0 2px rgba(255,90,78,0.30);
}
.om-input--error {
  border-color: rgba(255,90,78,0.7) !important;
}
.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: #ff5a4e;
  margin-top: 2px;
}

/* ── 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;
}

/* ── 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; }
