/* ═══════════════════════════════════════════════════════════════
   PageShift — 2026 Refresh
   Dark Editorial × Graphite & Chartreuse
   Syne (display) · Instrument Serif (italic editorial) · Outfit (body)
   ═══════════════════════════════════════════════════════════════ */

/* ── Design tokens ───────────────────────────────────────────── */
:root {
  --bg: #0a0a0f;
  --bg-2: #0d0f16;
  --surface: #12141e;
  --surface-2: #191c2a;
  --cream: #f5f0e8;
  --cream-2: #eee7db;
  --cream-ink: #1a1a1f;
  --cream-muted: #5a5a54;
  --cream-border: rgba(26, 26, 31, .12);
  --border: #1e2230;
  --border-lit: #2a2e40;
  --accent: #c8ff00;
  --accent-dim: #a5d400;
  --accent-deep: #8db500;
  --accent-glow: rgba(200, 255, 0, .18);
  --accent-soft: rgba(200, 255, 0, .06);
  --text: #f0ede6;
  --text-muted: #a9a69e;
  --text-dim: #6a6a66;

  --font-display: 'Syne', ui-sans-serif, system-ui, sans-serif;
  --font-italic: 'Instrument Serif', ui-serif, Georgia, serif;
  --font-body: 'Outfit', ui-sans-serif, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --text-xs: clamp(.72rem, .68rem + .15vw, .78rem);
  --text-sm: clamp(.82rem, .77rem + .2vw, .92rem);
  --text-base: clamp(.95rem, .9rem + .25vw, 1.05rem);
  --text-lg: clamp(1.08rem, 1rem + .4vw, 1.22rem);
  --text-xl: clamp(1.3rem, 1.15rem + .8vw, 1.55rem);
  --text-2xl: clamp(1.65rem, 1.35rem + 1.3vw, 2.25rem);
  --text-3xl: clamp(2.1rem, 1.55rem + 2.4vw, 3.4rem);
  --text-4xl: clamp(2.8rem, 1.9rem + 3.8vw, 5rem);
  --text-5xl: clamp(3.6rem, 2.2rem + 5.6vw, 6.8rem);

  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 32px;
  --r-full: 999px;
  --r-phone: 42px;

  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-smooth: cubic-bezier(.4, 0, .2, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --d-fast: .18s;
  --d-base: .3s;
  --d-slow: .6s;
}

/* ── Reset & base ────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}
img, picture, svg { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; color: inherit; cursor: pointer; }
input, select, textarea, button { font-family: inherit; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }
::selection { background: var(--accent); color: var(--cream-ink); }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; top: -100px; left: var(--s-5); z-index: 1001; background: var(--accent); color: var(--cream-ink); padding: 10px 16px; border-radius: 8px; font-weight: 600; font-size: var(--text-sm); transition: top var(--d-base); }
.skip-link:focus { top: var(--s-5); }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 var(--s-5); }
@media (min-width: 1100px) { .container { padding: 0 var(--s-6); } }

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 300;
  opacity: .025;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

/* ── Scroll progress ─────────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  z-index: 200;
  pointer-events: none;
  transition: width .08s linear;
}

/* ── Section primitives ──────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-3);
  font-family: var(--font-mono); font-size: var(--text-xs);
  text-transform: uppercase; letter-spacing: .18em;
  color: var(--accent);
  margin-bottom: var(--s-5);
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: currentColor; }
.section-title { font-family: var(--font-display); font-weight: 700; font-size: var(--text-3xl); line-height: 1.05; letter-spacing: -.03em; margin-bottom: var(--s-5); max-width: 22ch; }
.section-title em { font-family: var(--font-italic); font-style: italic; font-weight: 400; color: var(--accent); letter-spacing: 0; }
.section-desc { font-size: var(--text-lg); color: var(--text-muted); max-width: 58ch; line-height: 1.6; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s var(--ease-out), transform .75s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: .12s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: .19s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: .26s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: .33s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: .4s; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: .47s; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: .54s; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--s-2);
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-sm);
  letter-spacing: .005em;
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--d-fast), box-shadow var(--d-fast), background var(--d-fast), border-color var(--d-fast), color var(--d-fast);
  will-change: transform;
}
.btn-primary { background: var(--accent); color: var(--cream-ink); font-weight: 600; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px var(--accent-glow); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border-lit); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--text-muted); padding: 10px 14px; }
.btn-ghost:hover { color: var(--accent); }
.btn .arrow { transition: transform var(--d-fast); display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }

/* ── Nav ─────────────────────────────────────────────────────── */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(10, 10, 15, .72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: padding var(--d-base) var(--ease-smooth), background var(--d-base), border-color var(--d-base);
}
nav.site-nav.scrolled { padding: 10px 0; background: rgba(10, 10, 15, .93); border-bottom-color: var(--border); }
nav.site-nav .container { display: flex; justify-content: space-between; align-items: center; gap: var(--s-5); }
.nav-logo { display: inline-flex; align-items: center; }
.nav-logo img { height: 38px; width: auto; transition: height var(--d-base); }
nav.site-nav.scrolled .nav-logo img { height: 32px; }
.nav-links { display: flex; gap: var(--s-6); align-items: center; }
.nav-links a:not(.nav-cta) {
  color: var(--text-muted);
  font-size: var(--text-sm);
  font-weight: 400;
  padding: 6px 0;
  position: relative;
  transition: color var(--d-fast);
}
.nav-links a:not(.nav-cta)::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--accent); transition: width var(--d-base) var(--ease-out); }
.nav-links a:not(.nav-cta):hover { color: var(--text); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent) !important;
  color: var(--cream-ink) !important;
  padding: 9px 18px;
  border-radius: var(--r-full);
  font-size: var(--text-sm); font-weight: 600;
  transition: transform var(--d-fast), box-shadow var(--d-fast);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px var(--accent-glow); }
.nav-toggle { display: none; position: relative; width: 44px; height: 44px; padding: 0; }
.nav-toggle span { position: absolute; left: 10px; right: 10px; height: 2px; background: var(--text); border-radius: 2px; transition: top var(--d-fast), bottom var(--d-fast), transform var(--d-fast), opacity var(--d-fast); }
.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 13px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: min(340px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: var(--bg-2);
    flex-direction: column;
    padding: 100px var(--s-6) var(--s-6);
    gap: var(--s-5);
    align-items: flex-start;
    transform: translateX(100%);
    transition: transform var(--d-base) var(--ease-out);
    border-left: 1px solid var(--border);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: var(--text-lg) !important; padding: 6px 0 !important; }
}

/* ── Phone frame ─────────────────────────────────────────────── */
.phone {
  position: relative;
  width: 100%;
  aspect-ratio: 390 / 844;
  border-radius: var(--r-phone);
  background: linear-gradient(162deg, #2a2c34 0%, #14151a 100%);
  padding: 9px;
  box-shadow:
    inset 0 0 0 1.5px #393b42,
    0 30px 70px -12px rgba(0, 0, 0, .85),
    0 12px 30px -6px rgba(0, 0, 0, .6);
  transition: transform var(--d-slow) var(--ease-out);
}
.phone::before {
  content: '';
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 88px; height: 24px;
  background: #000;
  border-radius: 20px;
  z-index: 2;
}
.phone::after {
  content: '';
  position: absolute;
  top: 90px;
  right: -2px;
  width: 3px;
  height: 60px;
  background: linear-gradient(90deg, #23252c, #393b42);
  border-radius: 0 2px 2px 0;
}
.phone .screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: calc(var(--r-phone) - 9px);
  overflow: hidden;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .035);
}
.phone .screen img,
.phone .screen picture { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 160px 0 var(--s-10);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: 20%; left: 60%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  filter: blur(40px);
  opacity: .7;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(200, 255, 0, .04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(200, 255, 0, .04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 20%, transparent 70%);
  opacity: .8;
}

.hero .container { position: relative; z-index: 1; }
.hero-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: var(--s-8);
  align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  background: var(--accent-soft);
  border: 1px solid rgba(200, 255, 0, .2);
  border-radius: var(--r-full);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-bottom: var(--s-6);
}
.hero-tag .dot { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; position: relative; }
.hero-tag .dot::before { content: ''; position: absolute; inset: -3px; border-radius: 50%; background: var(--accent); opacity: .5; animation: pulse 2.2s cubic-bezier(.4, 0, .6, 1) infinite; }
@keyframes pulse { 0% { transform: scale(.5); opacity: .7; } 100% { transform: scale(1.8); opacity: 0; } }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-4xl);
  line-height: 1.02;
  letter-spacing: -.035em;
  margin-bottom: var(--s-6);
  max-width: 14ch;
}
.hero h1 em { font-family: var(--font-italic); font-style: italic; font-weight: 400; color: var(--accent); letter-spacing: -.015em; }
.hero h1 .word { display: inline-block; overflow: hidden; vertical-align: top; }
.hero h1 .word-inner { display: inline-block; transform: translateY(105%); opacity: 0; transition: transform .9s var(--ease-out), opacity .7s ease; }
.hero.loaded h1 .word-inner { transform: translateY(0); opacity: 1; }
.hero.loaded h1 .word:nth-child(1) .word-inner { transition-delay: .05s; }
.hero.loaded h1 .word:nth-child(2) .word-inner { transition-delay: .12s; }
.hero.loaded h1 .word:nth-child(3) .word-inner { transition-delay: .19s; }
.hero.loaded h1 .word:nth-child(4) .word-inner { transition-delay: .26s; }
.hero.loaded h1 .word:nth-child(5) .word-inner { transition-delay: .33s; }
.hero.loaded h1 .word:nth-child(6) .word-inner { transition-delay: .4s; }
.hero.loaded h1 .word:nth-child(7) .word-inner { transition-delay: .47s; }
.hero.loaded h1 .word:nth-child(8) .word-inner { transition-delay: .54s; }
.hero.loaded h1 .word:nth-child(9) .word-inner { transition-delay: .61s; }
.hero.loaded h1 .word:nth-child(10) .word-inner { transition-delay: .68s; }

.hero-sub {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 48ch;
  margin-bottom: var(--s-7);
  line-height: 1.6;
  opacity: 0; transform: translateY(14px);
  transition: opacity .8s .75s var(--ease-out), transform .8s .75s var(--ease-out);
}
.hero.loaded .hero-sub { opacity: 1; transform: translateY(0); }
.hero-actions { display: flex; gap: var(--s-4); flex-wrap: wrap; }
.hero .hero-actions {
  opacity: 0; transform: translateY(14px);
  transition: opacity .8s .9s var(--ease-out), transform .8s .9s var(--ease-out);
}
.hero.loaded .hero-actions { opacity: 1; transform: translateY(0); }
.hero-stats {
  display: flex; gap: var(--s-8);
  margin-top: var(--s-8);
  padding-top: var(--s-6);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  opacity: 0; transform: translateY(14px);
  transition: opacity .8s 1.05s var(--ease-out), transform .8s 1.05s var(--ease-out);
}
.hero.loaded .hero-stats { opacity: 1; transform: translateY(0); }
.hero-stat-value { display: block; font-family: var(--font-display); font-size: var(--text-2xl); color: var(--accent); font-weight: 700; letter-spacing: -.02em; }
.hero-stat p { font-size: var(--text-xs); color: var(--text-muted); margin-top: 4px; font-family: var(--font-mono); letter-spacing: .08em; text-transform: uppercase; }

.hero-phone-wrap { display: flex; justify-content: center; position: relative; }
.hero-phone-wrap::before {
  content: '';
  position: absolute;
  inset: 10% 5%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  filter: blur(40px);
  opacity: .8;
  z-index: 0;
}
.hero-phone { width: 280px; position: relative; z-index: 1; opacity: 0; transform: translateY(30px) scale(.94); transition: opacity 1.1s 1.2s var(--ease-out), transform 1.1s 1.2s var(--ease-out); }
.hero.loaded .hero-phone { opacity: 1; transform: translateY(0) scale(1); }

@media (max-width: 900px) {
  .hero-layout { grid-template-columns: 1fr; gap: var(--s-7); }
  .hero-phone-wrap { order: -1; }
  .hero-phone { width: 230px; }
  .hero h1 { max-width: none; }
  .hero-stats { gap: var(--s-5); }
}

/* ── Showcase ────────────────────────────────────────────────── */
.showcase { padding: var(--s-10) 0; position: relative; }
.showcase-head { display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--s-7); align-items: end; margin-bottom: var(--s-8); }
.showcase-head .section-title { max-width: 24ch; margin-bottom: 0; }
@media (max-width: 800px) { .showcase-head { grid-template-columns: 1fr; } }

.showcase-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--s-7) var(--s-5);
}
.showcase-track .phone-card:nth-child(4n+1) { transform: translateY(0); }
.showcase-track .phone-card:nth-child(4n+2) { transform: translateY(36px); }
.showcase-track .phone-card:nth-child(4n+3) { transform: translateY(-16px); }
.showcase-track .phone-card:nth-child(4n+4) { transform: translateY(52px); }
.phone-card { display: flex; flex-direction: column; align-items: center; gap: var(--s-4); }
.phone-card .phone { max-width: 230px; transition: transform var(--d-slow) var(--ease-out); }
/* Subtle lift on hover even without a link — the whole card reacts visually */
.showcase-track .phone-card:hover .phone { transform: translateY(-8px); }
.phone-meta { text-align: center; max-width: 220px; }
.phone-industry { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .2em; color: var(--text-dim); display: block; margin-bottom: 3px; }
.phone-name { font-family: var(--font-display); font-size: var(--text-base); font-weight: 600; color: var(--text); letter-spacing: -.01em; }
.phone-swatch { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 6px; vertical-align: middle; box-shadow: 0 0 0 1px rgba(255, 255, 255, .1); }

@media (max-width: 1100px) {
  .showcase-track { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s-8) var(--s-6); }
  .showcase-track .phone-card { transform: none !important; }
  .showcase-track .phone-card:nth-child(even) { transform: translateY(30px) !important; }
}
@media (max-width: 540px) {
  .showcase-track { grid-template-columns: 1fr; }
  .showcase-track .phone-card { transform: none !important; }
}

.showcase-cta { display: flex; justify-content: center; margin-top: var(--s-9); }

/* ── Proof bar ───────────────────────────────────────────────── */
.proof {
  padding: var(--s-7) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.proof::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent) 50%, transparent);
  opacity: .35;
}
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-6); text-align: center; }
.proof-num { display: block; font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 700; color: var(--accent); letter-spacing: -.025em; line-height: 1; }
.proof-num em { font-family: var(--font-italic); font-style: italic; font-weight: 400; font-size: .9em; }
.proof-label { display: block; font-family: var(--font-mono); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: .14em; color: var(--text-muted); margin-top: 6px; }
@media (max-width: 700px) { .proof-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-5); } }

/* ── How it works ────────────────────────────────────────────── */
.how { padding: var(--s-10) 0; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); margin-top: var(--s-7); }
.step { position: relative; padding: var(--s-6); border: 1px solid var(--border); border-radius: var(--r-lg); background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%); transition: border-color var(--d-base), transform var(--d-base); }
.step:hover { border-color: var(--border-lit); transform: translateY(-4px); }
.step-number { display: block; font-family: var(--font-mono); font-size: var(--text-sm); color: var(--accent); letter-spacing: .1em; margin-bottom: var(--s-5); }
.step h3 { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; margin-bottom: var(--s-3); letter-spacing: -.015em; }
.step p { color: var(--text-muted); font-size: var(--text-base); line-height: 1.6; }
@media (max-width: 800px) { .how-grid { grid-template-columns: 1fr; } }

/* ── Features (cream section) ────────────────────────────────── */
.features {
  padding: var(--s-10) 0;
  background: var(--cream);
  color: var(--cream-ink);
  position: relative;
}
.features::before {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n2'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n2)' opacity='.2'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
.features .container { position: relative; z-index: 1; }
.features .eyebrow { color: var(--cream-ink); }
.features .eyebrow::before { background: var(--cream-ink); }
.features .section-title em { color: #758d00; }
.features .section-desc { color: var(--cream-muted); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); margin-top: var(--s-7); }
.feature {
  padding: var(--s-6);
  border: 1px solid var(--cream-border);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, .55);
  transition: transform var(--d-base), border-color var(--d-base), box-shadow var(--d-base);
}
.feature:hover { transform: translateY(-4px); border-color: var(--cream-ink); box-shadow: 0 14px 36px rgba(26, 26, 31, .1); }
.feature .icon { width: 32px; height: 32px; color: var(--cream-ink); margin-bottom: var(--s-4); }
.feature h3 { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; margin-bottom: var(--s-2); letter-spacing: -.015em; line-height: 1.25; }
.feature p { color: var(--cream-muted); font-size: var(--text-sm); line-height: 1.65; }
@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }

/* ── Pricing ─────────────────────────────────────────────────── */
.pricing { padding: var(--s-10) 0; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); margin-top: var(--s-7); }
.price-card {
  position: relative;
  padding: var(--s-7) var(--s-6);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  display: flex; flex-direction: column;
  transition: transform var(--d-base), border-color var(--d-base), box-shadow var(--d-base);
}
.price-card:hover { transform: translateY(-5px); border-color: var(--border-lit); }
.price-card.featured { border-color: var(--accent); background: linear-gradient(180deg, rgba(200, 255, 0, .04) 0%, var(--surface) 40%); }
.price-card.featured:hover { box-shadow: 0 24px 60px -20px var(--accent-glow); }
.featured-badge {
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent); color: var(--cream-ink);
  font-family: var(--font-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: .18em;
  padding: 5px 12px;
  border-radius: var(--r-full);
  font-weight: 600;
}
.price-tier { font-family: var(--font-mono); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: .2em; color: var(--text-muted); margin-bottom: var(--s-4); }
.price-amount { font-family: var(--font-display); font-size: var(--text-3xl); font-weight: 700; line-height: 1; margin-bottom: var(--s-3); letter-spacing: -.035em; }
.price-amount span { font-family: var(--font-body); font-size: var(--text-xs); color: var(--text-muted); font-weight: 400; margin-left: 6px; letter-spacing: 0; text-transform: lowercase; }
.price-note { font-size: var(--text-sm); color: var(--text-muted); margin-bottom: var(--s-5); line-height: 1.5; }
.price-features { margin-bottom: var(--s-6); }
.price-features li { padding: 11px 0; border-bottom: 1px solid var(--border); font-size: var(--text-sm); color: var(--text); display: flex; align-items: flex-start; gap: var(--s-3); line-height: 1.45; }
.price-features li::before { content: ''; flex-shrink: 0; margin-top: 6px; width: 14px; height: 8px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }
.price-card .btn { margin-top: auto; width: 100%; }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } .price-card.featured { order: -1; } }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq { padding: var(--s-10) 0; }
.faq-list { max-width: 820px; margin-top: var(--s-7); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--s-5) 0;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--text);
  gap: var(--s-4);
  transition: color var(--d-fast);
}
.faq-q:hover { color: var(--accent); }
.faq-icon { flex-shrink: 0; width: 18px; height: 18px; position: relative; color: var(--accent); }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: currentColor; transition: transform var(--d-base); }
.faq-icon::before { top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); }
.faq-item.open .faq-icon::after { transform: translateX(-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--d-slow) var(--ease-smooth); }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a p { padding: 0 0 var(--s-5); color: var(--text-muted); line-height: 1.7; font-size: var(--text-base); max-width: 64ch; }

/* ── Contact ─────────────────────────────────────────────────── */
.contact { padding: var(--s-10) 0 var(--s-9); position: relative; overflow: hidden; }
.contact::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}
.contact .container { position: relative; z-index: 1; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: var(--s-8); margin-top: var(--s-7); }
.contact-info { display: flex; flex-direction: column; gap: var(--s-4); }
.contact-method {
  display: flex; gap: var(--s-4);
  padding: var(--s-5);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color var(--d-fast), transform var(--d-fast);
}
.contact-method:hover { border-color: var(--accent); transform: translateY(-2px); }
.contact-method .icon { width: 24px; height: 24px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.contact-method h3 { font-family: var(--font-display); font-size: var(--text-base); font-weight: 600; margin-bottom: 3px; }
.contact-method a, .contact-method p { color: var(--text-muted); font-size: var(--text-sm); line-height: 1.45; }
.contact-method a { display: inline-flex; align-items: center; padding: 10px 0; min-height: 44px; }
.contact-method a:hover { color: var(--accent); }

.contact-form {
  display: flex; flex-direction: column; gap: var(--s-4);
  padding: var(--s-7);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text);
  font-size: var(--text-sm);
  transition: border-color var(--d-fast), background var(--d-fast);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: none; border-color: var(--accent); background: var(--bg); }
.contact-form textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.contact-form ::placeholder { color: var(--text-dim); }
.contact-form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23a9a69e' stroke-width='2'%3E%3Cpolyline points='4 6 8 10 12 6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.contact-form .btn { align-self: flex-start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* ── Footer ──────────────────────────────────────────────────── */
footer { border-top: 1px solid var(--border); padding: var(--s-7) 0 var(--s-5); background: var(--bg-2); }
.footer-content { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: var(--s-6); }
.footer-brand p { color: var(--text-dim); font-size: var(--text-xs); margin-top: var(--s-3); line-height: 1.7; max-width: 30ch; }
.footer-brand .nav-logo img { height: 34px; }
.footer-col h4 { font-family: var(--font-mono); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: .2em; color: var(--text-muted); margin-bottom: var(--s-4); }
.footer-col a { display: block; color: var(--text-muted); font-size: var(--text-sm); padding: 10px 0; transition: color var(--d-fast), transform var(--d-fast); }
.footer-col a:hover { color: var(--accent); transform: translateX(3px); }
@media (max-width: 800px) { .footer-col a { padding: 12px 0; } }
.footer-bottom { margin-top: var(--s-7); padding-top: var(--s-5); border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--s-3); font-size: var(--text-xs); color: var(--text-dim); font-family: var(--font-mono); }
@media (max-width: 800px) { .footer-content { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 500px) { .footer-content { grid-template-columns: 1fr; } }

/* ── Launch grid page ────────────────────────────────────────── */
.launch-hero { padding: 160px 0 var(--s-8); position: relative; }
.launch-hero h1 { font-family: var(--font-display); font-size: var(--text-4xl); font-weight: 700; letter-spacing: -.03em; line-height: 1.05; margin-bottom: var(--s-5); max-width: 18ch; }
.launch-hero h1 em { font-family: var(--font-italic); font-style: italic; font-weight: 400; color: var(--accent); }
.launch-hero p { font-size: var(--text-lg); color: var(--text-muted); max-width: 60ch; }
.launch-filters { display: flex; gap: var(--s-2); flex-wrap: wrap; margin: var(--s-7) 0; }
.filter-chip { padding: 7px 14px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-full); font-size: var(--text-xs); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .12em; color: var(--text-muted); cursor: pointer; transition: all var(--d-fast); }
.filter-chip:hover, .filter-chip.active { color: var(--cream-ink); background: var(--accent); border-color: var(--accent); }
.launch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); padding-bottom: var(--s-10); }
@media (max-width: 900px) { .launch-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .launch-grid { grid-template-columns: 1fr; } }
.launch-card { display: flex; flex-direction: column; gap: var(--s-4); padding: var(--s-5); background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); transition: transform var(--d-base), border-color var(--d-base); text-decoration: none; color: inherit; }
.launch-card:hover { transform: translateY(-4px); border-color: var(--border-lit); }
.launch-card .phone { max-width: 180px; margin: 0 auto; }
.launch-meta { border-top: 1px solid var(--border); padding-top: var(--s-4); }
.launch-industry { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .2em; color: var(--text-dim); display: block; margin-bottom: 3px; }
.launch-name { font-family: var(--font-display); font-size: var(--text-base); font-weight: 600; color: var(--text); margin-bottom: var(--s-2); letter-spacing: -.01em; }
.launch-desc { font-size: var(--text-xs); color: var(--text-muted); line-height: 1.55; }

/* ── Service pages ───────────────────────────────────────────── */
.service-hero { padding: 180px 0 var(--s-9); position: relative; overflow: hidden; }
.service-hero h1 { font-family: var(--font-display); font-size: var(--text-4xl); font-weight: 700; letter-spacing: -.035em; line-height: 1.02; margin-bottom: var(--s-5); max-width: 16ch; }
.service-hero h1 em { font-family: var(--font-italic); font-style: italic; font-weight: 400; color: var(--accent); }
.service-hero p.lede { font-size: var(--text-lg); color: var(--text-muted); max-width: 60ch; line-height: 1.6; margin-bottom: var(--s-6); }
.service-content { padding: var(--s-8) 0 var(--s-10); }
.service-content .prose { max-width: 72ch; }
.service-content .prose h2 { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 700; letter-spacing: -.025em; margin: var(--s-8) 0 var(--s-4); line-height: 1.15; }
.service-content .prose h2:first-child { margin-top: 0; }
.service-content .prose p { color: var(--text-muted); line-height: 1.75; margin-bottom: var(--s-4); font-size: var(--text-base); }
.service-content .prose ul { margin-bottom: var(--s-5); }
.service-content .prose li { color: var(--text-muted); line-height: 1.7; padding: 8px 0; padding-left: var(--s-5); position: relative; }
.service-content .prose li::before { content: ''; position: absolute; left: 0; top: 18px; width: 12px; height: 2px; background: var(--accent); }
.service-content .prose strong { color: var(--text); font-weight: 600; }
.service-cta { margin-top: var(--s-9); padding: var(--s-7); background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--s-5); }
.service-cta h3 { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; letter-spacing: -.015em; }
.service-cta p { color: var(--text-muted); font-size: var(--text-sm); margin-top: 4px; }

/* ── Motion prefs ────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
  .hero h1 .word-inner { opacity: 1 !important; transform: none !important; }
  .hero-sub, .hero-actions, .hero-stats, .hero-phone { opacity: 1 !important; transform: none !important; }
}
