/* ═══════════════════════════════════════════
   FLINT WEBS.CA — Premium Design System
   Handcrafted. Not generated.
═══════════════════════════════════════════ */

/* Fonts loaded via <link> in header.php */

/* ── DESIGN TOKENS ── */
:root {
  /* Palette */
  --navy:        #0f1729;
  --navy-mid:    #162036;
  --navy-light:  #1e2d4a;
  --teal:        #0BC4B0;
  --teal-dim:    #099e8e;
  --teal-glow:   rgba(11,196,176,0.25);
  --teal-subtle: rgba(11,196,176,0.08);
  --white:       #ffffff;
  --card-soft:   #f7f6f2;   /* warm card surface — softer than pure white */
  --off-white:   #f8fafb;
  --ice:         #f1f4f8;
  --midnight:    #0a0e1a;
  --slate-900:   #0c111d;
  --slate-700:   #293548;
  --slate-500:   #64748b;
  --slate-400:   #94a3b8;
  --slate-300:   #cbd5e1;
  --slate-200:   #e2e8f0;
  --slate-100:   #f1f5f9;
  --border:      #e2e8f0;
  --border-dark: rgba(255,255,255,0.06);
  /* Semantic text tokens (theme-aware — light defaults; overridden in [data-theme="dark"]).
     These let heading/body text flip independently of the overloaded --navy/--white
     which double as section backgrounds. */
  --ink:         #0f1729;   /* primary heading / strong body text */
  --on-dark:     #ffffff;   /* text that sits on always-dark sections */

  /* Typography — Single family, Apple approach */
  --font-head: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Flint Fire — Brand Identity */
  --maple:       #FF6B35;
  --maple-dim:   #e55a2b;
  --maple-glow:  rgba(255,107,53,0.25);
  --maple-subtle: rgba(255,107,53,0.08);

  /* Spacing scale */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  48px;
  --space-2xl: 72px;
  --space-3xl: 120px;
  --space-4xl: 160px;

  /* Radii */
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  /* Shadows — layered for depth */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 2px 4px rgba(0,0,0,0.03), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 4px 6px rgba(0,0,0,0.02), 0 12px 40px rgba(0,0,0,0.08);
  --shadow-xl: 0 8px 16px rgba(0,0,0,0.04), 0 24px 64px rgba(0,0,0,0.12);
  --shadow-teal: 0 4px 14px rgba(11,196,176,0.2), 0 1px 3px rgba(11,196,176,0.1);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ════════════════════════════════════════════════════════════
   DARK THEME — day/night toggle via html[data-theme="dark"].
   Surfaces flip dark; --ink / --on-dark keep text legible. The
   overloaded --navy/--white stay as backgrounds and just darken.
═════════════════════════════════════════════════════════════ */
html[data-theme="dark"] {
  color-scheme: dark;
  background: #08080a;
  --white:       #0f0f12;
  --card-soft:   #131316;   /* raised dark card surface */
  --off-white:   #08080a;
  --ice:         #161619;
  --midnight:    #050507;
  --navy:        #0c0c10;
  --navy-mid:    #141418;
  --navy-light:  #20202a;
  --slate-900:   #f0ede8;
  --slate-700:   #d8d5cf;
  --slate-500:   #a1a1aa;
  --slate-400:   #7c7c85;
  --slate-300:   #5a5a63;
  --slate-200:   rgba(255, 255, 255, 0.10);
  --slate-100:   #16161a;
  --border:      rgba(255, 255, 255, 0.08);
  --border-dark: rgba(255, 255, 255, 0.06);
  --ink:         #ede9e2;
  --on-dark:     #ede9e2;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 2px 6px rgba(0, 0, 0, 0.4), 0 6px 18px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.55);
  --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.6);
}
html[data-theme="dark"] body { background: var(--off-white); color: var(--slate-700); }

/* Dark-mode component fixes:
   1. Nav glass flips from white to dark (logo/links are theme-aware).
   2. Sections that use --slate-900 as a BACKGROUND must stay dark —
      in night mode that token becomes a light TEXT colour. */
html[data-theme="dark"] .nav { background: rgba(10, 10, 14, 0.88); }
html[data-theme="dark"] .nav.scrolled {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06), 0 4px 20px rgba(0, 0, 0, 0.5);
}
html[data-theme="dark"] .process-section,
html[data-theme="dark"] .orbital-section,
html[data-theme="dark"] footer {
  background: var(--midnight);
}
html[data-theme="dark"] .process-section::before {
  background: linear-gradient(to bottom, transparent, var(--midnight));
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--slate-700);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  animation: page-fade-in 0.6s ease-out;
}
@keyframes page-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Golden text highlight — draws underline on scroll */
.text-highlight {
  position: relative; display: inline;
}
.text-highlight::after {
  content: '';
  position: absolute; bottom: 2px; left: 0; right: 0;
  height: 6px; border-radius: 3px;
  background: var(--maple-glow);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.text-highlight.visible::after,
.reveal.visible .text-highlight::after { transform: scaleX(1); }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }

/* ── TYPOGRAPHY — Apple-level ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.08;
  font-weight: 700;
  font-style: normal;
  color: var(--ink);
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.2rem, 5.2vw, 4.5rem); font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.7rem, 3.4vw, 3rem); }
h3 { font-size: clamp(1rem, 1.5vw, 1.15rem); font-weight: 600; letter-spacing: -0.015em; }
p { line-height: 1.75; font-size: 0.95rem; }

/* Smooth text rendering everywhere */
* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* Selection color */
::selection { background: rgba(11,196,176,0.15); color: var(--ink); }

/* Focus visible for accessibility */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Smooth scroll with reduced motion respect */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  transition: box-shadow 0.4s var(--ease-out);
}
.nav.scrolled { box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 4px 20px rgba(0,0,0,0.06); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--space-lg); height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo svg { width: 36px; height: 36px; }
.nav-logo-text {
  font-family: var(--font-head);
  font-size: 1.4rem; font-weight: 800;
  color: var(--ink); letter-spacing: -0.03em;
  text-transform: capitalize;
}
.nav-logo-text .teal { color: var(--teal); }
.maple-accent { color: #FF6B35; }
.nav-links { display: flex; align-items: center; gap: 0; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 14px; font-size: 0.85rem; font-weight: 500;
  color: var(--slate-700); border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s; white-space: nowrap;
}
.nav-links > li > a:hover { color: var(--teal); background: var(--teal-subtle); }
.nav-links > li > a.active { color: var(--ink); font-weight: 600; }
.nav-arrow { font-size: 0.55rem; transition: transform 0.25s var(--ease-out); opacity: 0.5; }
.nav-links > li:hover .nav-arrow { transform: rotate(180deg); opacity: 1; }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); box-shadow: var(--shadow-xl);
  min-width: 240px; padding: 6px;
  opacity: 0; visibility: hidden;
  transform: translateY(-6px); transition: all 0.2s var(--ease-out);
}
.nav-links > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; border-radius: var(--radius-sm);
  font-size: 0.84rem; font-weight: 500; color: var(--slate-700);
  transition: all 0.15s;
}
.dropdown a:hover { background: var(--teal-subtle); color: var(--ink); }
.dd-icon {
  width: 32px; height: 32px; background: var(--ice);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; color: var(--slate-500);
  transition: all 0.15s;
}
.dd-icon svg { width: 16px; height: 16px; }
.dropdown a:hover .dd-icon { background: var(--teal); color: var(--on-dark); }

.nav-cta { display: flex; align-items: center; gap: 10px; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; cursor: pointer;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  /* --ink flips per theme: navy lines on light nav, warm-white on dark */
  background: var(--ink); border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* FIX 4 — mobile menu: hidden by default, slides down on open (no stray
   border/shadow line when closed). */
.mobile-nav {
  display: flex; flex-direction: column;
  background: var(--white); padding: 0 24px;
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.mobile-nav.open {
  max-height: 460px; padding: 16px 24px 24px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}
.mobile-nav a {
  padding: 14px 0; font-size: 0.92rem; font-weight: 500;
  color: var(--ink); border-bottom: 1px solid var(--slate-100);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--teal); }
.mobile-nav a:last-child { border: none; }

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.88rem;
  letter-spacing: -0.01em; border-radius: 50px;
  transition: all 0.3s var(--ease-out);
  cursor: pointer; white-space: nowrap; border: 1.5px solid transparent;
  padding: 12px 26px;
}
.btn svg { flex-shrink: 0; }
.btn-primary {
  background: var(--teal); color: var(--on-dark);
  box-shadow: var(--shadow-teal);
}
.btn-primary:hover {
  background: var(--teal-dim);
  box-shadow: 0 6px 22px rgba(11,196,176,0.42);
}
.btn-navy { background: var(--navy); color: var(--on-dark); box-shadow: var(--shadow-md); }
.btn-navy:hover { background: var(--navy-mid); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: var(--on-dark); }
.btn-ghost-white {
  background: transparent; color: var(--on-dark);
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 10px;
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.75); }
.btn-sm { padding: 9px 20px; font-size: 0.82rem; }
.btn-lg { padding: 15px 34px; font-size: 0.92rem; }

/* ══════════════════════════════════════════
   SECTION COMMON
══════════════════════════════════════════ */
section { padding: var(--space-3xl) var(--space-lg); }
.section-inner { max-width: 1140px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: var(--space-2xl); }
.label-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--maple); background: var(--maple-subtle);
  padding: 6px 14px; border-radius: 50px; margin-bottom: 16px;
}
.label-tag-dark {
  background: rgba(200,135,30,0.12); color: var(--maple);
}
.section-title { color: var(--ink); margin-bottom: 14px; }
.section-title-white { color: var(--on-dark); margin-bottom: 14px; }
.section-sub {
  color: var(--slate-500); font-size: 1.02rem; max-width: 540px;
  margin: 0 auto; line-height: 1.7;
}
.teal { color: var(--teal); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; overflow: hidden;
  background: var(--midnight);
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; z-index: 3;
  background: linear-gradient(90deg, transparent, rgba(11,196,176,0.5), rgba(126,232,212,0.3), transparent);
  animation: hero-line-sweep 4s ease-in-out infinite;
}
@keyframes hero-line-sweep {
  0%, 100% { opacity: 0.4; background-position: 0% 0; }
  50%       { opacity: 1; }
}
/* (Bug 8) Removed dead #hero-canvas / #beams-canvas rules — no element ever
   rendered them; the hero background is the React canvas in HeroBG.tsx. The
   #beams-canvas blur(15px)+mix-blend-mode:screen was the GPU-costly rule. */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10,14,26,0.25) 0%,
    rgba(10,14,26,0.08) 30%,
    rgba(10,14,26,0.05) 55%,
    rgba(10,14,26,0.35) 100%
  );
}
/* ── FLOATING GRADIENT MESH ORBS ── */
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px); pointer-events: none; z-index: 1;
  mix-blend-mode: screen; will-change: transform;
}
.hero-orb-1 {
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(11,196,176,0.22) 0%, rgba(11,196,176,0.06) 40%, transparent 70%);
  top: -8%; left: -5%;
  animation: orb-drift-1 20s ease-in-out infinite;
}
.hero-orb-2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(28,46,94,0.3) 0%, rgba(28,46,94,0.08) 45%, transparent 70%);
  top: 15%; right: 0;
  animation: orb-drift-2 26s ease-in-out infinite;
}
.hero-orb-3 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(11,196,176,0.18) 0%, transparent 65%);
  bottom: 8%; left: 25%;
  animation: orb-drift-3 18s ease-in-out infinite;
}
.hero-orb-4 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(126,232,212,0.12) 0%, transparent 60%);
  top: 45%; right: 15%;
  animation: orb-drift-1 14s ease-in-out infinite reverse;
}
@keyframes orb-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%       { transform: translate(40px, -30px) scale(1.08); }
  50%       { transform: translate(-20px, 25px) scale(0.95); }
  75%       { transform: translate(30px, 10px) scale(1.04); }
}
@keyframes orb-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  30%       { transform: translate(-35px, 20px) scale(1.06); }
  60%       { transform: translate(25px, -25px) scale(0.97); }
}
@keyframes orb-drift-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  35%       { transform: translate(30px, -20px) scale(1.05); }
  65%       { transform: translate(-25px, 15px) scale(0.96); }
}

/* ── DOT GRID OVERLAY ── */
.hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 72%);
}

/* ── TEXT HALO GLOW ── */
.hero-text-glow {
  position: absolute; top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(11,196,176,0.08) 0%, transparent 55%);
  pointer-events: none; z-index: 1;
  animation: glow-pulse 5s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 860px; margin: 0 auto;
  padding: 140px var(--space-lg) 100px;
  text-align: center;
}
/* Guarantee hero content is ALWAYS visible — GSAP fallback */
.hero-eyebrow, .hero-headline, .hero-sub, .hero-ctas, .hero-proof {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}
/* GSAP will override these with inline styles when it loads */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.6); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: var(--space-lg);
}
.hero-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal-glow);
  animation: pulse-dot 2.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.hero-headline {
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 800; color: var(--on-dark); line-height: 1.08;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.03em;
  font-style: normal;
  text-shadow: 0 0 60px rgba(11,196,176,0.12), 0 0 120px rgba(11,196,176,0.06);
  word-wrap: break-word; overflow-wrap: break-word;
}
.hero-headline .teal { color: var(--teal); }
.hero-cycle-text {
  display: inline-block;
  background: linear-gradient(135deg, #0BC4B0 0%, #7ee8d4 40%, #0c9a89 70%, #0BC4B0 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: cycle-in 0.4s var(--ease-out), gradient-shift 5s ease infinite;
}
@keyframes cycle-in {
  from { opacity: 0; transform: translateY(-14px); filter: blur(6px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes cycle-out {
  from { opacity: 1; transform: translateY(0); filter: blur(0); }
  to { opacity: 0; transform: translateY(14px); filter: blur(6px); }
}
.hero-sub {
  color: rgba(255,255,255,0.55); font-size: 1.08rem;
  max-width: 560px; margin: 0 auto var(--space-xl); line-height: 1.8;
}
.hero-ctas {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap; margin-bottom: var(--space-3xl);
}
.hero-proof {
  display: flex; gap: 0; justify-content: center;
  align-items: center; flex-wrap: wrap;
}
.hero-proof-item { padding: 0 32px; text-align: center; }
.hero-proof-num {
  font-family: var(--font-head); font-size: 1.5rem;
  font-weight: 800; color: var(--on-dark); display: block; line-height: 1;
}
.hero-proof-lbl {
  font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-top: 6px;
  display: block;
}
.hero-proof-sep {
  width: 1px; height: 32px;
  background: rgba(255,255,255,0.1);
}

/* ══════════════════════════════════════════
   TRUST STRIP
══════════════════════════════════════════ */
.trust-strip {
  background: var(--navy); padding: 18px var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.trust-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: var(--space-xl); flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.6); font-size: 0.82rem; font-weight: 500;
}
.trust-item svg { color: var(--teal); flex-shrink: 0; }

/* ══════════════════════════════════════════
   SERVICE CARDS
══════════════════════════════════════════ */
.services-section { background: var(--white); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg); padding: 36px 30px 30px;
  position: relative; overflow: hidden;
  transition: all 0.4s var(--ease-out);
}
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--teal);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.service-card:hover {
  border-color: var(--slate-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.service-card:hover::after { transform: scaleX(1); }
.svc-num {
  position: absolute; top: 16px; right: 20px;
  font-family: var(--font-head); font-size: 0.68rem; font-weight: 700;
  color: var(--slate-300); letter-spacing: 0.05em;
}
.svc-icon {
  width: 52px; height: 52px;
  background: var(--ice);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--slate-700);
  margin-bottom: 20px;
  transition: all 0.3s var(--ease-out);
}
.service-card:hover .svc-icon {
  background: var(--teal);
  color: var(--on-dark);
}
.service-card h3 {
  color: var(--ink); margin-bottom: 10px; font-size: 1.05rem;
}
.service-card p {
  font-size: 0.86rem; color: var(--slate-500);
  line-height: 1.7; margin-bottom: 20px;
}
.svc-link {
  font-size: 0.82rem; font-weight: 600; color: var(--teal);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.3s var(--ease-out);
}
.svc-link:hover { gap: 10px; }

/* ══════════════════════════════════════════
   PROCESS SECTION
══════════════════════════════════════════ */
.process-section {
  background: var(--slate-900);
  padding: var(--space-3xl) var(--space-lg);
  overflow: hidden; overflow-x: hidden;
}
@media (max-width: 480px) {
  .process-section { padding: var(--space-xl) 16px !important; }
  .testi-section { padding: var(--space-xl) 16px !important; }
  .contact-strip { padding: var(--space-lg) 16px !important; }
}
.process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 960px; margin: 0 auto;
}
/* FIX 2 — human, watermark-number process cards (no checkmark icon) */
.process-card {
  position: relative; z-index: 1; overflow: hidden;
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px; padding: 40px 36px;
  text-align: left; will-change: transform;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
/* Featured/highlighted middle step */
.process-card.featured { border-top: 2px solid var(--teal); }
.process-card:hover {
  border-color: rgba(11,196,176,0.25);
  box-shadow: 0 0 40px rgba(11,196,176,0.06);
}
.process-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); display: block; margin-bottom: 18px;
  position: relative; z-index: 1;
}
.process-watermark {
  position: absolute; top: 4px; right: 26px; z-index: 0;
  font-family: var(--font-head); font-weight: 800; font-size: 7rem;
  line-height: 1; color: rgba(11,196,176,0.08);
  pointer-events: none; user-select: none;
}
.process-card h3 {
  position: relative; z-index: 1;
  color: var(--on-dark); font-size: 1.3rem; font-weight: 600;
  margin: 1rem 0 0; letter-spacing: -0.01em;
}
.process-card p {
  position: relative; z-index: 1;
  font-size: 0.88rem; color: rgba(255,255,255,0.5);
  line-height: 1.75; margin-top: 0.5rem;
}

/* ══════════════════════════════════════════
   WHY MAPLEMARK
══════════════════════════════════════════ */
.why-section { background: var(--white); }
.why-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl); align-items: center;
}
.why-stat-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.why-stat-card {
  background: var(--ice);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: all 0.3s var(--ease-out);
}
.why-stat-card:hover {
  border-color: var(--slate-300);
  box-shadow: var(--shadow-md);
}
.why-stat-card-accent {
  background: var(--navy);
  border-color: var(--ink);
}
.why-stat-card-accent .why-stat-num { color: var(--teal); }
.why-stat-card-accent .why-stat-desc { color: rgba(255,255,255,0.6); }
.why-stat-card-accent:hover { border-color: var(--teal); }
.why-stat-num {
  font-family: var(--font-head); font-size: 2.2rem; font-weight: 900;
  color: var(--ink); line-height: 1; margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.why-stat-desc {
  font-size: 0.82rem; color: var(--slate-500); line-height: 1.55;
}
.why-content {}
.why-body {
  color: var(--slate-500); margin-bottom: 18px; line-height: 1.8;
  font-size: 0.95rem;
}
.why-checks {
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: var(--space-xl);
}
.check-row { display: flex; align-items: flex-start; gap: 14px; }
.check-mark {
  width: 24px; height: 24px;
  background: var(--teal-subtle);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--teal);
  margin-top: 2px;
}
.check-text { font-size: 0.9rem; color: var(--slate-500); line-height: 1.6; }
.check-text strong { color: var(--ink); font-weight: 600; }

/* ══════════════════════════════════════════
   PRICING
══════════════════════════════════════════ */
.pricing-section { background: var(--off-white); }
.pricing-card {
  max-width: 920px; margin: 0 auto;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 1fr 1fr;
}
.pc-left {
  padding: 44px 40px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
}
.pc-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--teal-subtle); color: var(--teal-dim);
  font-size: 0.72rem; font-weight: 600; padding: 5px 12px;
  border-radius: 50px; margin-bottom: 18px; width: fit-content;
  letter-spacing: 0.03em;
}
.pc-title {
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 700;
  color: var(--ink); margin-bottom: 8px; letter-spacing: -0.02em;
}
.pc-sub { color: var(--slate-500); font-size: 0.88rem; margin-bottom: 24px; line-height: 1.65; }
.pc-price {
  display: flex; align-items: baseline; gap: 6px; margin-bottom: 28px;
}
.pc-price-curr {
  font-family: var(--font-head); font-size: 3rem; font-weight: 900;
  color: var(--ink); letter-spacing: -0.03em;
}
.pc-price-period { color: var(--slate-400); font-size: 0.95rem; }
.pc-price-save {
  background: #dcfce7; color: #166534; font-size: 0.72rem; font-weight: 600;
  padding: 3px 10px; border-radius: 20px; margin-left: 4px;
}
.pc-benefits {
  display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px;
}
.pc-benefit {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.86rem; color: var(--slate-500);
}
.pc-benefit svg { color: var(--teal); flex-shrink: 0; }
.pc-right { padding: 44px 40px; }
.pc-features-title {
  font-family: var(--font-body); font-weight: 600; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--slate-400);
  margin-bottom: 18px;
}
.pc-features {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px;
}
.pc-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.86rem; color: var(--slate-500);
}
.pc-feature-check {
  width: 20px; height: 20px; background: var(--teal-subtle);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--teal); flex-shrink: 0;
}

/* Pricing testimonial */
.pc-testimonial-wrap {
  border-top: 1px solid var(--border); padding-top: 22px;
}
.pc-testimonial {
  background: var(--ice); border-radius: var(--radius-md); padding: 18px;
  border: 1px solid var(--slate-200);
  min-height: 160px; position: relative; overflow: hidden;
}
.pc-testi-inner {
  position: absolute; inset: 0; padding: 18px;
  opacity: 0; transition: opacity 0.5s;
  display: flex; flex-direction: column; justify-content: center;
}
.pc-testi-inner.active { opacity: 1; }
.pc-testi-stars { color: var(--teal); font-size: 0.8rem; margin-bottom: 6px; display: flex; gap: 2px; }
.pc-testi-quote {
  font-size: 0.78rem; color: var(--slate-500);
  font-style: italic; line-height: 1.55; margin-bottom: 8px;
}
.pc-testi-author { display: flex; align-items: center; gap: 8px; }
.pc-testi-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 0.62rem; font-weight: 700;
  color: var(--on-dark); flex-shrink: 0;
}
.pc-testi-name {
  font-family: var(--font-head); font-weight: 600;
  font-size: 0.78rem; color: var(--ink);
}
.pc-testi-biz { font-size: 0.7rem; color: var(--slate-400); }
.pc-dots { display: flex; justify-content: center; gap: 6px; margin-top: 12px; }
.pc-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--slate-300); cursor: pointer;
  transition: all 0.25s var(--ease-out);
}
.pc-dot.active { width: 20px; border-radius: 4px; background: var(--teal); }

/* ══════════════════════════════════════════
   TESTIMONIALS — Premium Cards
══════════════════════════════════════════ */
.testi-section {
  background: var(--navy);
  padding: var(--space-3xl) var(--space-lg);
  position: relative;
}
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}

/* Card */
.tcard {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl); padding: 32px 28px;
  position: relative; overflow: hidden;
  transition: all 0.4s var(--ease-out);
  display: flex; flex-direction: column;
}
.tcard::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.5s var(--ease-out);
}
.tcard:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(11,196,176,0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(11,196,176,0.06), 0 4px 12px rgba(0,0,0,0.15);
}
.tcard:hover::before { transform: scaleX(1); }

/* Staggered entrance */
.tcard.visible { animation: tcard-enter 0.6s var(--ease-out) both; }
.tcard.visible:nth-child(2) { animation-delay: 0.15s; }
.tcard.visible:nth-child(3) { animation-delay: 0.3s; }
@keyframes tcard-enter {
  from { opacity: 0; transform: translateY(28px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Large quote background */
.tcard-quote-bg {
  position: absolute; top: 20px; right: 20px;
  color: var(--teal); pointer-events: none;
  transition: opacity 0.3s;
}
.tcard:hover .tcard-quote-bg { opacity: 1.5; }

/* Top row: stars + rating */
.tcard-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.tcard-stars {
  color: var(--teal); display: flex; gap: 2px;
}
.tcard-rating {
  font-family: var(--font-head); font-weight: 700;
  font-size: 0.75rem; color: var(--teal);
  background: rgba(11,196,176,0.1);
  padding: 3px 10px; border-radius: 20px;
  letter-spacing: 0.02em;
}

/* Quote */
.tcard-quote {
  font-size: 0.9rem; color: rgba(255,255,255,0.7);
  font-style: italic; line-height: 1.78; margin-bottom: 18px;
  flex: 1; position: relative; z-index: 1;
}

/* Result highlight */
.tcard-result {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.76rem; font-weight: 600; color: var(--teal);
  background: rgba(11,196,176,0.08);
  padding: 6px 14px; border-radius: 20px;
  margin-bottom: 18px; width: fit-content;
}
.tcard-result svg { flex-shrink: 0; }

/* Divider */
.tcard-divider {
  height: 1px; background: rgba(255,255,255,0.06);
  margin-bottom: 18px;
}

/* Author */
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-ava {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(11,196,176,0.15), rgba(28,46,94,0.3));
  border: 1.5px solid rgba(11,196,176,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700;
  font-size: 0.8rem; color: var(--teal);
  transition: all 0.3s;
}
.tcard:hover .tcard-ava {
  border-color: var(--teal);
  box-shadow: 0 0 12px rgba(11,196,176,0.2);
}
.tcard-name {
  font-family: var(--font-head); font-weight: 600;
  color: var(--on-dark); font-size: 0.88rem;
}
.tcard-biz { font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-top: 2px; }

/* ══════════════════════════════════════════
   CONTACT STRIP
══════════════════════════════════════════ */
.contact-strip { background: var(--off-white); padding: var(--space-2xl) var(--space-lg); }
.contact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.contact-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease-out);
}
.contact-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: var(--slate-300);
}
.cc-icon {
  width: 52px; height: 52px; background: var(--ice);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--slate-700);
  transition: all 0.3s var(--ease-out);
}
.contact-card:hover .cc-icon { background: var(--teal); color: var(--on-dark); }
.cc-label {
  font-size: 0.7rem; font-weight: 600; color: var(--slate-400);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px;
}
.cc-value {
  font-family: var(--font-head); font-weight: 600;
  color: var(--ink); font-size: 0.92rem;
}
.cc-value a { color: var(--ink); transition: color 0.2s; }
.cc-value a:hover { color: var(--teal); }

/* ── FORM STYLES ── */
.form-row-2col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
@media (max-width: 640px) {
  .form-row-2col { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════ */
.cta-section {
  background: var(--midnight);
  padding: var(--space-4xl) var(--space-lg);
  position: relative; overflow: hidden;
}
#cta-canvas {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; z-index: 0;
  opacity: 0.4;
}
.cta-inner {
  max-width: 680px; margin: 0 auto; text-align: center;
  position: relative; z-index: 1;
}
.cta-inner h2 {
  color: var(--on-dark); margin-bottom: 18px;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}
.cta-inner p {
  color: rgba(255,255,255,0.5); font-size: 1rem;
  margin-bottom: var(--space-xl); line-height: 1.75;
}
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: var(--slate-900);
  padding: 60px var(--space-lg) 30px;
}
.footer-inner { max-width: 1140px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; margin-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-logo-wrap {
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.footer-logo-text {
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 800;
  color: var(--on-dark); letter-spacing: -0.02em;
}
.footer-logo-text .teal { color: var(--teal); }
.footer-logo-text .maple-accent { color: #FF6B35; }
.footer-tagline {
  font-size: 0.82rem; color: rgba(255,255,255,0.35);
  line-height: 1.7; max-width: 270px; margin-bottom: 20px;
}
.footer-socials { display: flex; gap: 8px; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.3s var(--ease-out);
}
.social-btn:hover { background: var(--teal); color: var(--on-dark); border-color: var(--teal); }
.social-btn svg { width: 16px; height: 16px; }
.footer-col h4 {
  font-family: var(--font-head); font-weight: 600; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7); margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.35); font-size: 0.84rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--teal); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; color: rgba(255,255,255,0.25);
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: var(--teal); }

/* ══════════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════════ */
/* ── SCROLL REVEAL SYSTEM — Apple-level ── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* CSS-based stagger (replaces JS setTimeout stagger) */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }

/* ── SECTION BLEED TRANSITIONS ── */
.process-section::before {
  content: ''; position: absolute; top: -60px; left: 0; right: 0;
  height: 60px; pointer-events: none;
  background: linear-gradient(to bottom, transparent, var(--slate-900));
  z-index: 1;
}
.testi-section::before {
  content: ''; position: absolute; top: -60px; left: 0; right: 0;
  height: 60px; pointer-events: none;
  background: linear-gradient(to bottom, transparent, var(--navy));
  z-index: 1;
}

/* ══════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════ */
.page-hero {
  background: var(--navy);
  padding: 80px var(--space-lg); text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(11,196,176,0.06) 0%, transparent 60%);
}
.page-hero h1 { color: var(--on-dark); margin-bottom: 14px; position: relative; }
.page-hero p {
  color: rgba(255,255,255,0.5); max-width: 520px;
  margin: 0 auto; position: relative;
}

/* ══════════════════════════════════════════
   INNER PAGE LAYOUTS
══════════════════════════════════════════ */
.split-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.split-grid-start { max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
}
.feature-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  margin-bottom: 32px;
}
.feature-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: var(--slate-500);
}
.feature-item svg { flex-shrink: 0; }
.stats-grid-2x2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.diff-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.order-flip { order: 2; }
.order-first { order: 1; }

/* ═══ ORBITAL (kept for backward compat) ═══ */
.orbital-section { background: var(--slate-900); padding: var(--space-3xl) var(--space-lg); overflow: hidden; }
.orbital-inner { max-width: 1200px; margin: 0 auto; }
.orbital-header { text-align: center; margin-bottom: 60px; }
.orbital-wrap {
  position: relative; width: 100%; max-width: 700px; margin: 0 auto; height: 600px;
}
#orbital-canvas { width: 100%; height: 100%; }
.orbital-info {
  position: absolute; top: 50%; left: calc(100% + 30px);
  transform: translateY(-50%);
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md); padding: 24px; min-width: 240px;
  backdrop-filter: blur(12px);
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.orbital-info.visible { opacity: 1; }
.orbital-info h3 { color: var(--on-dark); margin-bottom: 8px; font-size: 1rem; }
.orbital-info p { color: rgba(255,255,255,0.55); font-size: 0.83rem; line-height: 1.65; }
.orbital-info .step-badge {
  display: inline-block; background: var(--teal); color: var(--on-dark);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em;
  padding: 3px 10px; border-radius: 20px; margin-bottom: 10px;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .pricing-card { grid-template-columns: 1fr; }
  .pc-left { border-right: none; border-bottom: 1px solid var(--border); }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .split-grid, .split-grid-start { grid-template-columns: 1fr; gap: 40px; }
  .order-flip { order: 0; }
  .order-first { order: 0; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: var(--space-2xl) 20px; }
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-orb { display: none; }
  .hero-grid { display: none; }
  .hero-text-glow { width: 300px; height: 200px; }
  .testi-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-proof { gap: 20px; }
  .hero-proof-sep { display: none; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn-liquid-glass { width: 100%; max-width: 300px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn-liquid-glass { width: 100%; max-width: 300px; }
  .trust-inner { gap: 14px; flex-direction: column; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .orbital-wrap { height: 400px; }
  .orbital-info { position: static; transform: none; margin-top: 20px; opacity: 1; }
  .why-stat-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .stats-grid-2x2 { grid-template-columns: 1fr 1fr; }
  .legal-inner { padding: 0; }
  .legal-inner h2 { font-size: 1.05rem; }
  .page-hero { padding: 70px 20px 60px; }
  .page-hero h1 { font-size: clamp(1.8rem, 5vw, 2.5rem); }
  .bento-inner-split { grid-template-columns: 1fr; gap: 20px; }
  .bento-split-meta { text-align: center; }
  .pc-left, .pc-right { padding: 28px 20px; }
  .pricing-card { border-radius: var(--radius-lg); }
  .nav-logo-text { font-size: 1.2rem; }
  .split-grid, .split-grid-start { grid-template-columns: 1fr; gap: 32px; }
  .diff-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 400px; }
  .team-card { padding: 36px 24px; }
}

@media (max-width: 480px) {
  /* NUCLEAR OVERFLOW PREVENTION */
  html, body { overflow-x: hidden !important; max-width: 100vw; }
  *, *::before, *::after { max-width: 100%; }
  img, video, canvas, svg { max-width: 100%; height: auto; }

  /* Global */
  section { padding: var(--space-xl) 16px; }
  .section-inner { padding: 0; }
  .section-title { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  .section-sub { font-size: 0.88rem; }
  .section-header { margin-bottom: var(--space-xl); }

  /* Nav */
  .nav-logo-text { font-size: 1.15rem; }
  .nav-logo svg { width: 32px; height: 32px; }

  /* Hero */
  .hero-headline { font-size: 2rem; }
  .hero-content { padding: 90px 16px 60px; }
  .hero-sub { font-size: 0.9rem; max-width: 100%; }
  .hero-proof { gap: 12px; flex-direction: column; align-items: center; }
  .hero-proof-item { padding: 0 16px; }
  .hero-proof-num { font-size: 1.2rem; }
  .hero-proof-lbl { font-size: 0.68rem; }
  .hero-ctas .btn-liquid-glass { padding: 13px 28px; font-size: 0.85rem; }

  /* Trust */
  .trust-strip { padding: 14px 16px; }
  .trust-inner { gap: 8px; }
  .trust-item { font-size: 0.78rem; }

  /* Story timeline */
  .story-content { padding: 22px 18px 20px; }
  .story-content h3 { font-size: 0.95rem; }
  .story-content p { font-size: 0.8rem; margin-bottom: 16px; }
  .story-stat-num { font-size: 1rem; }
  .story-icon { width: 42px; height: 42px; }

  /* Process */
  .process-card { padding: 24px 18px; }
  .process-icon { width: 52px; height: 52px; }
  .process-card h3 { font-size: 0.95rem; }
  .process-card p { font-size: 0.82rem; }

  /* Why section */
  .why-stat-grid { grid-template-columns: 1fr; }
  .why-stat-num { font-size: 1.8rem; }
  .why-stat-card { padding: 22px 18px; }
  .why-body { font-size: 0.88rem; }
  .check-text { font-size: 0.84rem; }

  /* Pricing */
  .pc-left, .pc-right { padding: 24px 18px; }
  .pc-price-curr { font-size: 2.2rem; }
  .pc-title { font-size: 1.2rem; }
  .pc-sub { font-size: 0.82rem; }
  .pc-feature { font-size: 0.8rem; }
  .pc-benefit { font-size: 0.8rem; }

  /* Testimonials */
  .tcard { padding: 24px 18px; }
  .tcard-quote { font-size: 0.84rem; }
  .tcard-result { font-size: 0.7rem; padding: 5px 10px; }
  .tcard-name { font-size: 0.82rem; }

  /* Contact */
  .contact-card { padding: 18px 14px; }
  .cc-icon { width: 42px; height: 42px; }
  .cc-value { font-size: 0.84rem; }

  /* Bento (legacy) */
  .bento-card { padding: 24px 18px 20px; }
  .bento-stat-big { font-size: 2.4rem; }

  /* Page hero */
  .page-hero { padding: 56px 16px 48px; }
  .page-hero h1 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .page-hero p { font-size: 0.88rem; }

  /* CTA */
  .cta-section { padding: var(--space-2xl) 16px; }
  .cta-inner h2 { font-size: clamp(1.4rem, 4vw, 2rem); }
  .cta-inner p { font-size: 0.88rem; }

  /* Footer */
  .footer-inner { padding: 0; }
  footer { padding: 40px 16px 24px; }
  .footer-tagline { font-size: 0.78rem; }
  .footer-col h4 { font-size: 0.72rem; }
  .footer-col ul li a { font-size: 0.8rem; }

  /* Buttons */
  .btn-lg { padding: 13px 26px; font-size: 0.86rem; }
  .btn { padding: 10px 20px; font-size: 0.84rem; }

  /* Forms — prevent iOS zoom */
  input, textarea, select { font-size: 16px !important; }
}

/* ── MOBILE PREMIUM POLISH ── */
/* Tap targets — 44px minimum for all interactive elements */
@media (max-width: 480px) {
  .btn, .btn-liquid-glass, .story-card, .bento-link, .rot-card-link,
  .nav-logo, .hamburger, .social-btn, .team-social-btn {
    min-height: 44px;
  }
  /* Smooth momentum scrolling */
  html { -webkit-overflow-scrolling: touch; }
  /* Prevent text size adjustment */
  body { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
  /* Full-width buttons on mobile */
  .hero-ctas { width: 100%; padding: 0; }
  .hero-ctas .btn-liquid-glass,
  .hero-ctas .btn-ghost-white { width: 100%; justify-content: center; max-width: none; }
  .cta-btns .btn-liquid-glass,
  .cta-btns .btn-ghost-white,
  .cta-btns .btn { width: 100%; justify-content: center; max-width: 100%; }
  /* Why section checks */
  .why-checks { gap: 12px; }
  .check-row { gap: 10px; }
  .check-mark { width: 20px; height: 20px; min-width: 20px; }
  .check-mark svg { width: 10px; height: 10px; }
  /* Pricing section */
  .pricing-card { margin: 0 -4px; border-radius: var(--radius-lg); }
  .pc-badge { font-size: 0.68rem; }
  .pc-features { gap: 8px; }
  .pc-testimonial-wrap { margin-top: 16px; }
  .pc-testimonial { min-height: 150px; padding: 14px; }
  .pc-testi-inner { padding: 14px; }
  .pc-testi-quote { font-size: 0.74rem; line-height: 1.5; }
  /* Liquid glass buttons mobile */
  .btn-liquid-glass { padding: 14px 24px; font-size: 0.88rem; backdrop-filter: blur(12px); }
  /* Team section */
  .team-grid { grid-template-columns: 1fr; max-width: 100%; }
  .team-card { padding: 32px 20px; }
  .team-avatar { width: 68px; height: 68px; font-size: 1.2rem; }
  .team-name { font-size: 1.2rem; }
  .team-role { font-size: 0.7rem; }
  .team-bio { font-size: 0.82rem; }
  /* Legal pages */
  .legal-inner h2 { font-size: 1rem; margin-top: var(--space-lg); }
  .legal-inner p, .legal-inner ul li { font-size: 0.86rem; }
  /* Hamburger touch area */
  /* 22px lines + 2×14px padding = 50×44px — meets 44px touch target */
  .hamburger { padding: 14px 14px; margin-right: -14px; }
}

/* Extra small phones (375px and below) */
@media (max-width: 375px) {
  .hero-headline { font-size: 1.7rem; letter-spacing: -0.02em; }
  .hero-content { padding: 80px 12px 50px; }
  .hero-sub { font-size: 0.86rem; line-height: 1.7; }
  .hero-eyebrow { font-size: 0.68rem; }
  section { padding: var(--space-lg) 12px; }
  .process-section, .testi-section { padding: var(--space-lg) 12px; }
  .story-content { padding: 18px 14px 16px; }
  .story-content h3 { font-size: 0.9rem; }
  .story-content p { font-size: 0.78rem; }
  .tcard { padding: 20px 14px; }
  .tcard-quote { font-size: 0.8rem; }
  .process-card { padding: 20px 14px; }
  .pc-left, .pc-right { padding: 18px 14px; }
  .pc-price-curr { font-size: 2rem; }
  .pc-title { font-size: 1.1rem; }
  .contact-card { padding: 16px 12px; flex-direction: column; text-align: center; gap: 10px; }
  .cc-icon { margin: 0 auto; }
  .page-hero { padding: 48px 12px 40px; }
  .page-hero h1 { font-size: 1.5rem; }
  footer { padding: 32px 12px 20px; }
  .section-header { margin-bottom: var(--space-lg); }
  .section-title { font-size: 1.3rem; }
  .btn-lg { padding: 12px 22px; font-size: 0.84rem; }
  .btn-liquid-glass { padding: 12px 20px; }
  .nav-logo-text { font-size: 1.05rem; }
  .nav-logo svg { width: 28px; height: 28px; }
}

/* ── MOBILE FIXED CTA BAR ── */
.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 999; padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(15,23,41,0.92);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-top: 1px solid rgba(255,255,255,0.06);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}
.mobile-cta-bar.show { transform: translateY(0); }
.mobile-cta-btn {
  display: block; width: 100%; text-align: center;
  padding: 14px 24px; border-radius: 50px;
  background: var(--teal); color: var(--on-dark);
  font-family: var(--font-head); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; letter-spacing: -0.01em;
  box-shadow: 0 4px 14px rgba(11,196,176,0.3);
}
@media (max-width: 768px) {
  .mobile-cta-bar { display: block; }
}
@media (min-width: 769px) {
  .mobile-cta-bar { display: none !important; }
}

/* ── SERVICE ROW HOVER (replaces inline JS) ── */
.svc-row {
  transition: padding-left 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (pointer: fine) {
  .svc-row:hover { padding-left: 12px; }
}
.svc-row .svc-row-arrow {
  transition: all 0.3s var(--ease-out);
}
.svc-row:hover .svc-row-arrow,
.svc-row:focus .svc-row-arrow {
  background: var(--teal); color: var(--on-dark);
  transform: translateX(3px);
}

/* Explore link hover */
.explore-link {
  transition: gap 0.3s var(--ease-out);
}
.explore-link:hover, .explore-link:focus { gap: 14px; }

/* ── ABOUT STAT STRIP ── */
.about-stat-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 3vw, 32px); text-align: center;
}
@media (max-width: 768px) {
  .about-stat-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .about-stat-strip { grid-template-columns: 1fr 1fr; gap: 12px; }
}

/* ── FOUNDER SOCIAL BUTTONS (replaces inline JS) ── */
.founder-social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: all 0.3s var(--ease-out);
}
.founder-social-btn:hover, .founder-social-btn:focus {
  background: var(--maple); color: var(--on-dark); border-color: var(--maple);
}
.founder-social-btn-teal:hover, .founder-social-btn-teal:focus {
  background: var(--teal); color: var(--on-dark); border-color: var(--teal);
}

/* ── SVC-ROW MOBILE COLLAPSE ── */
@media (max-width: 480px) {
  .svc-row { flex-wrap: wrap !important; }
  .svc-row > div:last-child {
    width: 100%; display: flex; justify-content: space-between;
    align-items: center; padding-top: 12px;
    border-top: 1px solid var(--slate-100); margin-top: 12px;
  }
}

/* Safe area insets for notched phones (iPhone X+) */
@supports (padding: env(safe-area-inset-bottom)) {
  .nav { padding-top: env(safe-area-inset-top); }
  footer { padding-bottom: calc(20px + env(safe-area-inset-bottom)); }
  .hero { padding-top: env(safe-area-inset-top); }
  .mobile-nav { padding-bottom: env(safe-area-inset-bottom); }
}

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--slate-300); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--teal); }

/* ══════════════════════════════════════════
   PREMIUM ENHANCEMENTS — UI/UX Pro Max
   Glassmorphism · AI-Native UI · Minimalism
══════════════════════════════════════════ */

/* Gradient text animation */
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}
.gradient-text {
  background: linear-gradient(135deg, #0BC4B0 0%, #7ee8d4 40%, #0c9a89 70%, #0BC4B0 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 5s ease infinite;
}

/* Orb float */
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(18px, -22px) scale(1.05); }
  66%       { transform: translate(-12px, 14px) scale(0.96); }
}

/* ══════════════════════════════════════════
   STORYLINE SERVICES GRID
══════════════════════════════════════════ */
.story-timeline {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; max-width: 1140px; margin: 0 auto;
  position: relative;
}

.story-card {
  display: flex; gap: 0;
  text-decoration: none; color: inherit;
  position: relative; padding: 0 14px;
  transition: all 0.4s var(--ease-out);
}
.story-card:hover { transform: translateY(-4px); }

/* Vertical connector (dot + line) */
.story-connector {
  display: flex; flex-direction: column; align-items: center;
  padding-top: 28px; flex-shrink: 0; width: 28px;
}
.story-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--maple); border: 2px solid var(--white);
  box-shadow: 0 0 0 4px var(--maple-subtle), 0 0 12px var(--maple-glow);
  flex-shrink: 0; z-index: 2;
  transition: all 0.3s var(--ease-spring);
}
.story-card:hover .story-dot {
  transform: scale(1.3);
  box-shadow: 0 0 0 6px var(--teal-subtle), 0 0 20px rgba(11,196,176,0.4);
}
.story-line {
  width: 2px; flex: 1; min-height: 20px;
  background: linear-gradient(to bottom, var(--maple), rgba(200,135,30,0.1));
  margin-top: 4px;
}

/* Card content */
.story-content {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 28px 24px 24px;
  position: relative; overflow: hidden;
  transition: all 0.4s var(--ease-out);
}
.story-content::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--teal);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.story-card:hover .story-content {
  border-color: rgba(11,196,176,0.3);
  box-shadow: 0 12px 40px rgba(11,196,176,0.08), 0 4px 12px rgba(0,0,0,0.04);
}
.story-card:hover .story-content::before { transform: scaleX(1); }

.story-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.story-phase {
  font-family: var(--font-head); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--maple); background: var(--maple-subtle);
  padding: 4px 10px; border-radius: 20px;
}
.story-num {
  font-family: var(--font-head); font-size: 0.62rem; font-weight: 700;
  color: var(--slate-300); letter-spacing: 0.1em;
}
.story-icon {
  width: 50px; height: 50px;
  background: var(--teal-subtle); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); margin-bottom: 18px;
  transition: all 0.4s var(--ease-spring);
}
.story-card:hover .story-icon {
  background: var(--teal); color: var(--on-dark);
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 6px 20px rgba(11,196,176,0.3);
}
.story-content h3 {
  font-family: var(--font-head); font-size: 1.05rem; font-weight: 700;
  color: var(--ink); margin-bottom: 10px; letter-spacing: -0.01em;
}
.story-content p {
  font-size: 0.84rem; color: var(--slate-500); line-height: 1.72;
  margin-bottom: 20px;
}
.story-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px; border-top: 1px solid var(--slate-100);
}
.story-stat { display: flex; align-items: baseline; gap: 6px; }
.story-stat-num {
  font-family: var(--font-head); font-size: 1.2rem; font-weight: 800;
  color: var(--maple); letter-spacing: -0.02em;
}
.story-stat-lbl { font-size: 0.72rem; color: var(--slate-400); }
.story-arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--ice); display: flex; align-items: center;
  justify-content: center; color: var(--slate-400);
  transition: all 0.3s var(--ease-out);
}
.story-card:hover .story-arrow {
  background: var(--teal); color: var(--on-dark);
  transform: translateX(3px);
}

/* Responsive storyline */
@media (max-width: 1024px) {
  .story-timeline { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .story-timeline { grid-template-columns: 1fr; max-width: 480px; }
  .story-card { padding: 0; }
  .story-connector { display: none; }
}

/* ── BENTO GRID SYSTEM ── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1140px; margin: 0 auto;
  align-items: start;
}
.bento-span-2 { grid-column: span 2; }
.bento-full   { grid-column: 1 / -1; }

/* Bento base card */
.bento-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 36px 30px 28px;
  position: relative; overflow: hidden;
  transition: transform 0.5s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s;
  transform-style: preserve-3d;
}
.bento-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,196,176,0.05) 0%, transparent 55%);
  border-radius: inherit; opacity: 0;
  transition: opacity 0.4s;
}
.bento-card:hover {
  box-shadow: 0 20px 60px rgba(11,196,176,0.09), 0 4px 16px rgba(0,0,0,0.04);
  border-color: rgba(11,196,176,0.28);
}
.bento-card:hover::before { opacity: 1; }

/* Gradient ring on hover */
.bento-ring {
  position: absolute; inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background: linear-gradient(var(--white), var(--white)) padding-box,
              linear-gradient(135deg, rgba(11,196,176,0.5), transparent 50%, rgba(11,196,176,0.2)) border-box;
  opacity: 0; transition: opacity 0.4s; pointer-events: none;
}
.bento-card:hover .bento-ring { opacity: 1; }

/* Bento card typography */
.bento-num {
  font-family: var(--font-head); font-size: 0.62rem; font-weight: 700;
  color: var(--slate-300); letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 18px;
}
.bento-icon {
  width: 54px; height: 54px;
  background: var(--teal-subtle); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); margin-bottom: 20px;
  transition: all 0.4s var(--ease-spring);
}
.bento-card:hover .bento-icon {
  background: var(--teal); color: var(--on-dark);
  transform: scale(1.1) rotate(-6deg);
  box-shadow: 0 8px 24px rgba(11,196,176,0.35);
}
.bento-card h3 { color: var(--ink); margin-bottom: 10px; font-size: 1.06rem; }
.bento-card p  { font-size: 0.86rem; color: var(--slate-500); line-height: 1.72; margin-bottom: 20px; }
.bento-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 600; color: var(--teal);
  transition: gap 0.3s var(--ease-out);
}
.bento-link:hover { gap: 10px; }

/* Wide card inner layout — card must be flex to let inner-split stretch */
.bento-card:has(.bento-inner-split) { display: flex; flex-direction: column; }
.bento-inner-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; align-items: center; flex: 1;
}
.bento-split-meta { display: flex; flex-direction: column; }
.bento-stat-big {
  font-family: var(--font-head); font-size: 3.8rem; font-weight: 900;
  color: var(--teal); line-height: 1; letter-spacing: -0.04em; margin-bottom: 8px;
}
.bento-stat-label { font-size: 0.84rem; color: var(--slate-500); line-height: 1.55; }
.bento-highlights { display: flex; flex-direction: column; gap: 11px; margin-top: 22px; }
.bento-highlight-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.84rem; color: var(--slate-500);
}
.bento-highlight-row svg { color: var(--teal); flex-shrink: 0; }

/* ── PROCESS ENHANCEMENTS ── */
.process-section { position: relative; overflow: hidden; }
.process-grid { position: relative; }
/* FIX 1 — entrance is handled by the single ScrollFX .reveal system only.
   The old process-enter keyframe + icon-float ran on top of .reveal and
   fought it (the overlap/jitter bug). Removed. No stagger on mobile. */
@media (max-width: 768px) {
  .process-card { transition-delay: 0s !important; }
}

/* ── TESTIMONIAL QUOTE ICON ── */
.tcard { position: relative; overflow: hidden; }
.tcard-quote-icon {
  position: absolute; top: 20px; right: 20px;
  color: var(--teal); opacity: 0.12;
  transition: opacity 0.3s;
  pointer-events: none;
}
.tcard:hover .tcard-quote-icon { opacity: 0.22; }

/* ── HERO PROOF GRADIENT TEXT ── */
.hero-proof-num {
  background: linear-gradient(135deg, var(--white) 0%, rgba(255,255,255,0.85) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── READING PROGRESS BAR ── */
#wov-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2.5px;
  background: linear-gradient(90deg, var(--teal), #7ee8d4);
  transform-origin: left; transform: scaleX(0);
  z-index: 9999; pointer-events: none;
  transition: transform 0.12s linear;
}

/* ── PAGE HERO UPGRADE ── */
.page-hero { padding: 100px var(--space-lg) 90px; }
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 55%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11,196,176,0.35), transparent);
}

/* ── SECTION AMBIENT GRADIENT ── */
.services-section { position: relative; }
.services-section::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 45%; height: 100%; pointer-events: none;
  background: radial-gradient(ellipse at 85% 30%, rgba(11,196,176,0.03) 0%, transparent 65%);
}

/* ── CTA MESH GRADIENT ── */
.cta-section {
  background:
    radial-gradient(ellipse at 15% 50%, rgba(11,196,176,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 15%, rgba(11,196,176,0.07) 0%, transparent 48%),
    var(--midnight) !important;
}
.cta-inner h2 { letter-spacing: -0.038em; }

/* ── FOOTER TOP BORDER ── */
footer { position: relative; }
footer::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11,196,176,0.25), transparent);
}

/* ── BUTTON ACTIVE & SHIMMER ── */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: '';
  position: absolute; top: 0; left: -100%; width: 55%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}
.btn-primary:hover::after { left: 160%; }
.btn-primary:active, .btn-navy:active { transform: scale(0.97) !important; transition-duration: 0.1s; }

/* ── RESPONSIVE BENTO ── */
@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-span-2 { grid-column: span 2; }
  .bento-span-2 .bento-inner-split { grid-template-columns: 1fr 1fr; gap: 24px; }
  .bento-full  { grid-column: 1 / -1; }
  .process-grid::before { display: none; }
}
@media (max-width: 768px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-span-2, .bento-full { grid-column: span 1; }
  .bento-span-2 .bento-inner-split { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 640px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-span-2, .bento-full { grid-column: span 1; }
}


/* ── LIQUID GLASS BUTTON ── */
.btn-liquid-glass {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.92rem;
  letter-spacing: -0.01em;
  padding: 15px 34px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  color: var(--on-dark);
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  box-shadow:
    0 0 0 0.5px rgba(255,255,255,0.1),
    inset 0 1px 0 rgba(255,255,255,0.15),
    inset 0 -1px 0 rgba(255,255,255,0.05),
    0 4px 24px rgba(0,0,0,0.12),
    0 1px 3px rgba(0,0,0,0.08);
}

/* Glass refraction layer */
.btn-liquid-glass::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(ellipse 120% 80% at 30% 0%, rgba(255,255,255,0.2) 0%, transparent 50%),
    radial-gradient(ellipse 80% 120% at 70% 100%, rgba(11,196,176,0.1) 0%, transparent 50%);
  opacity: 1;
  transition: opacity 0.4s;
  z-index: -2;
}

/* Liquid ripple blob */
.btn-liquid-glass::after {
  content: '';
  position: absolute;
  width: 140%; height: 200%;
  top: -50%; left: -20%;
  border-radius: 40%;
  background: radial-gradient(ellipse, rgba(11,196,176,0.35) 0%, rgba(11,196,176,0.1) 40%, transparent 70%);
  opacity: 0;
  transform: rotate(0deg) scale(0.3);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
  animation: liquid-idle 6s ease-in-out infinite;
}

@keyframes liquid-idle {
  0%, 100% { transform: rotate(0deg) scale(0.3) translate(0, 0); }
  33%      { transform: rotate(120deg) scale(0.32) translate(5px, -3px); }
  66%      { transform: rotate(240deg) scale(0.28) translate(-3px, 5px); }
}

/* Hover state — liquid expands */
.btn-liquid-glass:hover {
  border-color: rgba(11,196,176,0.35);
  background: rgba(255,255,255,0.12);
  box-shadow:
    0 0 0 0.5px rgba(11,196,176,0.2),
    inset 0 1px 0 rgba(255,255,255,0.2),
    inset 0 -1px 0 rgba(255,255,255,0.08),
    0 8px 40px rgba(11,196,176,0.22),
    0 2px 8px rgba(0,0,0,0.1);
}
.btn-liquid-glass:hover::after {
  opacity: 1;
  transform: rotate(60deg) scale(1);
  animation: liquid-hover 3s ease-in-out infinite;
}

@keyframes liquid-hover {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25%      { transform: rotate(90deg) scale(1.05) translate(3px, -2px); }
  50%      { transform: rotate(180deg) scale(0.98) translate(-2px, 3px); }
  75%      { transform: rotate(270deg) scale(1.03) translate(2px, 1px); }
}

/* Active press */
.btn-liquid-glass:active {
  transform: scale(0.96) !important;
  transition-duration: 0.1s;
  box-shadow:
    inset 0 2px 4px rgba(0,0,0,0.15),
    0 1px 2px rgba(0,0,0,0.1);
}

/* Glass shine sweep on hover */
.btn-liquid-glass .liquid-shine {
  position: absolute; inset: 0;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.btn-liquid-glass .liquid-shine::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn-liquid-glass:hover .liquid-shine::after { left: 160%; }

/* Button text layer */
.btn-liquid-glass span {
  position: relative; z-index: 2;
}
.btn-liquid-glass svg {
  position: relative; z-index: 2; flex-shrink: 0;
}

/* Light section variant (white bg pages) */
.btn-liquid-glass-light {
  background: rgba(15,23,41,0.06);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-color: rgba(15,23,41,0.1);
  color: var(--ink);
  box-shadow:
    0 0 0 0.5px rgba(0,0,0,0.04),
    inset 0 1px 0 rgba(255,255,255,0.7),
    inset 0 -1px 0 rgba(0,0,0,0.03),
    0 4px 24px rgba(0,0,0,0.06),
    0 1px 3px rgba(0,0,0,0.04);
}
.btn-liquid-glass-light::before {
  background:
    radial-gradient(ellipse 120% 80% at 30% 0%, rgba(255,255,255,0.6) 0%, transparent 50%),
    radial-gradient(ellipse 80% 120% at 70% 100%, rgba(11,196,176,0.06) 0%, transparent 50%);
}
.btn-liquid-glass-light:hover {
  border-color: rgba(11,196,176,0.3);
  background: rgba(11,196,176,0.08);
  color: var(--ink);
  box-shadow:
    0 0 0 0.5px rgba(11,196,176,0.15),
    inset 0 1px 0 rgba(255,255,255,0.5),
    0 8px 40px rgba(11,196,176,0.1),
    0 2px 8px rgba(0,0,0,0.06);
}

/* ══════════════════════════════════════════
   RADIAL ORBITAL TIMELINE — Solar System v3
   Multi-ring · Canvas connections · Spring physics
══════════════════════════════════════════ */
.rot-section {
  background: var(--midnight);
  padding: var(--space-xl) var(--space-lg) var(--space-2xl);
  overflow: hidden;
}
.rot-container {
  width: 100%; max-width: 1000px; margin: 0 auto;
  height: clamp(450px, 58vh, 600px);
  position: relative; cursor: grab;
}
.rot-container:active { cursor: grabbing; }

/* Single canvas for connections + particles */
.rot-canvas-layer {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
}
.rot-orbit-wrap {
  position: absolute; inset: 0; z-index: 3;
  display: flex; align-items: center; justify-content: center;
}

/* Center sun — Maplemark brand */
.rot-center {
  position: absolute; width: 110px; height: 110px;
  border-radius: 50%; z-index: 10;
  background: radial-gradient(circle at 35% 35%, rgba(11,196,176,0.7), rgba(28,46,94,0.85) 55%, rgba(10,14,26,0.95));
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 0 50px rgba(11,196,176,0.4),
    0 0 100px rgba(11,196,176,0.15),
    0 0 160px rgba(11,196,176,0.06),
    inset 0 0 24px rgba(11,196,176,0.2);
}
.rot-center-brand {
  font-family: var(--font-head); font-size: 16px; font-weight: 800;
  color: var(--on-dark); letter-spacing: 0.06em;
  text-shadow: 0 0 16px rgba(11,196,176,0.6), 0 0 40px rgba(11,196,176,0.3);
  position: relative; z-index: 2;
}
.rot-center-glow {
  position: absolute; width: 180px; height: 180px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(11,196,176,0.12) 0%, transparent 70%);
  animation: rot-glow-breathe 4s ease-in-out infinite;
}
@keyframes rot-glow-breathe {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.2); opacity: 1; }
}
.rot-center-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(11,196,176,0.15);
  animation: rot-ring-expand 3s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.rot-center-ring-1 { width: 110px; height: 110px; }
.rot-center-ring-2 { width: 110px; height: 110px; animation-delay: 1s; }
.rot-center-ring-3 { width: 110px; height: 110px; animation-delay: 2s; }
@keyframes rot-ring-expand {
  0% { transform: scale(0.9); opacity: 0.5; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* Nodes — physics-driven positioning */
.rot-node {
  position: absolute; display: flex; flex-direction: column;
  align-items: center; cursor: pointer;
  transition: filter 0.4s, opacity 0.4s;
  will-change: transform;
}
.rot-node-glow {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(11,196,176,0.18) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none;
  animation: rot-node-glow-pulse 3s ease-in-out infinite;
}
@keyframes rot-node-glow-pulse {
  0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 0.8; transform: translate(-50%, -50%) scale(1.15); }
}
.rot-node-circle {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(15,23,41,0.92); color: var(--teal);
  border: 2px solid rgba(11,196,176,0.25);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative; z-index: 2;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
}
.rot-node-circle:hover {
  border-color: var(--teal);
  background: rgba(11,196,176,0.18);
  transform: scale(1.2);
  box-shadow: 0 0 16px rgba(11,196,176,0.3), 0 4px 12px rgba(0,0,0,0.3);
}
.rot-node-circle.rot-node-active {
  background: var(--white); color: var(--ink);
  border-color: var(--on-dark);
  box-shadow: 0 0 28px rgba(255,255,255,0.3), 0 0 60px rgba(11,196,176,0.2);
}
.rot-node-circle.rot-node-related {
  background: rgba(11,196,176,0.3); color: var(--on-dark);
  border-color: var(--teal);
  animation: rot-pulse-related 1.8s ease-in-out infinite;
}
@keyframes rot-pulse-related {
  0%, 100% { box-shadow: 0 0 0 0 rgba(11,196,176,0.4); }
  50% { box-shadow: 0 0 16px 6px rgba(11,196,176,0.25); }
}
.rot-node-label {
  margin-top: 10px; font-size: 0.75rem; font-weight: 600;
  color: rgba(255,255,255,0.7); white-space: nowrap;
  letter-spacing: 0.04em; text-align: center;
  transition: all 0.3s;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* Expanded card — glassmorphism */
.rot-card {
  position: absolute; top: 64px; left: 50%; transform: translateX(-50%);
  width: 250px; padding: 20px;
  background: rgba(10,14,26,0.88);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid rgba(11,196,176,0.15);
  border-radius: var(--radius-md);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.03),
    inset 0 1px 0 rgba(255,255,255,0.06);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateX(-50%) translateY(12px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 100;
}
.rot-card-visible {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}
.rot-card-line {
  position: absolute; top: -14px; left: 50%;
  transform: translateX(-50%); width: 1px; height: 14px;
  background: linear-gradient(to bottom, transparent, rgba(11,196,176,0.5));
}
.rot-card-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px;
}
.rot-badge {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.1em;
  padding: 3px 10px; border-radius: 20px; text-transform: uppercase;
}
.rot-status-active { background: var(--teal); color: var(--on-dark); }
.rot-status-progress { background: var(--white); color: var(--ink); }
.rot-status-pending { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.12); }
.rot-card-cat {
  font-size: 0.6rem; font-family: var(--font-body);
  color: rgba(255,255,255,0.3); letter-spacing: 0.05em;
}
.rot-card-title {
  font-family: var(--font-head); font-size: 0.95rem; font-weight: 600;
  color: var(--on-dark); margin-bottom: 8px; letter-spacing: -0.01em;
}
.rot-card-desc {
  font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.65;
  margin-bottom: 14px;
}
.rot-card-energy { margin-bottom: 14px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.06); }
.rot-energy-header {
  display: flex; justify-content: space-between;
  font-size: 0.66rem; color: rgba(255,255,255,0.45); margin-bottom: 6px;
}
.rot-energy-bar {
  width: 100%; height: 3px; background: rgba(255,255,255,0.06);
  border-radius: 3px; overflow: hidden;
}
.rot-energy-fill {
  height: 100%; border-radius: 3px;
  background: linear-gradient(90deg, var(--teal), #7ee8d4);
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.rot-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 600; color: var(--teal);
  transition: gap 0.3s var(--ease-out);
}
.rot-card-link:hover { gap: 10px; }

/* Responsive orbital */
@media (max-width: 1024px) {
  .rot-container { height: clamp(440px, 60vh, 620px); }
  .rot-center { width: 80px; height: 80px; }
  .rot-center-brand { font-size: 12px; }
  .rot-center-glow { width: 140px; height: 140px; }
}
@media (max-width: 768px) {
  .rot-container { height: clamp(400px, 55vh, 520px); }
  .rot-center { width: 66px; height: 66px; }
  .rot-center-brand { font-size: 10px; }
  .rot-center-ring-1, .rot-center-ring-2, .rot-center-ring-3 { width: 80px; height: 80px; }
  .rot-center-glow { width: 110px; height: 110px; }
  .rot-card { width: 210px; padding: 16px; }
  .rot-node-circle { width: 40px; height: 40px; }
}
@media (max-width: 480px) {
  .rot-container { height: 380px; }
  .rot-center { width: 52px; height: 52px; }
  .rot-center-brand { font-size: 0; }
  .rot-center-brand::after { content: "W"; font-size: 18px; font-weight: 800; color: white; }
  .rot-center-ring-1, .rot-center-ring-2, .rot-center-ring-3 { width: 64px; height: 64px; }
  .rot-center-glow { width: 80px; height: 80px; }
  .rot-node-circle { width: 36px; height: 36px; }
  .rot-node-circle svg { width: 14px; height: 14px; }
  .rot-card { width: 180px; padding: 12px; }
  .rot-card-title { font-size: 0.82rem; }
  .rot-card-desc { font-size: 0.72rem; }
  .rot-node-label { font-size: 0.58rem; }
}
@media (prefers-reduced-motion: reduce) {
  .rot-center-ring { animation: none; }
  .rot-center-glow { animation: none; }
  .rot-node-glow { animation: none; }
}

/* ══════════════════════════════════════════
   LEGAL PAGES (Privacy, Terms)
══════════════════════════════════════════ */
.legal-section { background: var(--white); padding: var(--space-2xl) var(--space-lg) var(--space-3xl); }
.legal-inner { max-width: 760px; margin: 0 auto; }
.legal-updated {
  font-size: 0.82rem; color: var(--slate-400); margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md); border-bottom: 1px solid var(--border);
}
.legal-inner h2 {
  font-size: 1.15rem; color: var(--ink); margin-top: var(--space-xl);
  margin-bottom: var(--space-md); padding-top: var(--space-md);
}
.legal-inner p {
  font-size: 0.92rem; color: var(--slate-500); line-height: 1.8;
  margin-bottom: var(--space-md);
}
.legal-inner ul {
  list-style: disc; padding-left: 24px; margin-bottom: var(--space-md);
}
.legal-inner ul li {
  font-size: 0.92rem; color: var(--slate-500); line-height: 1.8;
  margin-bottom: 6px;
}
.legal-inner a { color: var(--teal); font-weight: 500; transition: color 0.2s; }
.legal-inner a:hover { color: var(--teal-dim); }

/* ── SHIMMER TEXT ── */
.shimmer-text {
  display: inline-block;
  background: linear-gradient(
    110deg,
    rgba(255,255,255,0.25) 0%,
    rgba(255,255,255,0.7) 25%,
    var(--white) 45%,
    var(--white) 55%,
    rgba(255,255,255,0.7) 75%,
    rgba(255,255,255,0.25) 100%
  );
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer-sweep 3.5s ease-in-out infinite;
}
@keyframes shimmer-sweep {
  0%   { background-position: 150% center; }
  100% { background-position: -150% center; }
}

/* Dark bg shimmer (teal tint) */
.shimmer-text-teal {
  background: linear-gradient(
    110deg,
    rgba(11,196,176,0.4) 0%,
    rgba(11,196,176,0.8) 25%,
    var(--teal) 45%,
    var(--teal) 55%,
    rgba(11,196,176,0.8) 75%,
    rgba(11,196,176,0.4) 100%
  );
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer-sweep 3.5s ease-in-out infinite;
}

/* ══════════════════════════════════════════
   LEADERSHIP / MEET THE TEAM
══════════════════════════════════════════ */
.team-section {
  background: var(--midnight);
  padding: var(--space-3xl) var(--space-lg);
  position: relative; overflow: hidden;
}
.team-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(11,196,176,0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 20%, rgba(28,46,94,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.team-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; max-width: 800px; margin: 0 auto;
  position: relative; z-index: 1;
}
.team-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 44px 32px;
  text-align: center;
  position: relative; overflow: hidden;
  transition: all 0.4s var(--ease-out);
}
.team-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,196,176,0.04) 0%, transparent 55%);
  border-radius: inherit; opacity: 0;
  transition: opacity 0.4s;
}
.team-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(11,196,176,0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(11,196,176,0.08);
}
.team-card:hover::before { opacity: 1; }

.team-avatar {
  width: 88px; height: 88px; border-radius: 50%;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--teal), #1C2E5E);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800;
  font-size: 1.6rem; color: var(--on-dark);
  letter-spacing: -0.02em;
  position: relative; z-index: 1;
  box-shadow: 0 8px 32px rgba(11,196,176,0.2);
}
.team-avatar::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(11,196,176,0.2);
  animation: team-ring-pulse 3s ease-in-out infinite;
}
@keyframes team-ring-pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.06); }
}

.team-name {
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 800;
  color: var(--on-dark); margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.team-role {
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 18px;
}
.team-bio {
  font-size: 0.86rem; color: rgba(255,255,255,0.45);
  line-height: 1.75; position: relative; z-index: 1;
}
.team-socials {
  display: flex; gap: 8px; justify-content: center;
  margin-top: 20px; position: relative; z-index: 1;
}
.team-social-btn {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: all 0.3s var(--ease-out);
}
.team-social-btn:hover { background: var(--teal); color: var(--on-dark); border-color: var(--teal); }
.team-social-btn svg { width: 14px; height: 14px; }

@media (max-width: 640px) {
  .team-grid { grid-template-columns: 1fr; max-width: 400px; }
  .team-card { padding: 36px 24px; }
  .team-avatar { width: 72px; height: 72px; font-size: 1.3rem; }
  .team-name { font-size: 1.3rem; }
}

/* Teal glass variant — for light backgrounds (nav, white sections) */
.btn-liquid-glass-teal {
  background: rgba(11,196,176,0.12);
  border-color: rgba(11,196,176,0.3);
  color: var(--teal-dim);
  box-shadow:
    0 0 0 0.5px rgba(11,196,176,0.15),
    inset 0 1px 0 rgba(255,255,255,0.5),
    inset 0 -1px 0 rgba(11,196,176,0.08),
    0 4px 16px rgba(11,196,176,0.1),
    0 1px 3px rgba(0,0,0,0.04);
}
.btn-liquid-glass-teal::before {
  background:
    radial-gradient(ellipse 120% 80% at 30% 0%, rgba(11,196,176,0.15) 0%, transparent 50%),
    radial-gradient(ellipse 80% 120% at 70% 100%, rgba(11,196,176,0.08) 0%, transparent 50%);
}
.btn-liquid-glass-teal::after {
  background: radial-gradient(ellipse, rgba(11,196,176,0.3) 0%, rgba(11,196,176,0.08) 40%, transparent 70%);
}
.btn-liquid-glass-teal:hover {
  background: rgba(11,196,176,0.18);
  border-color: rgba(11,196,176,0.45);
  color: var(--ink);
  box-shadow:
    0 0 0 0.5px rgba(11,196,176,0.25),
    inset 0 1px 0 rgba(255,255,255,0.4),
    0 8px 32px rgba(11,196,176,0.18),
    0 2px 8px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

/* ── FAQ SECTION — Apple-style accordion ── */
.faq-section {
  background: var(--white);
  padding: clamp(40px, 6vw, 72px) clamp(16px, 4vw, 32px) clamp(64px, 10vw, 120px);
}
.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}
.faq-section .section-header {
  margin-bottom: clamp(28px, 4vw, 40px);
}
.faq-item {
  border-top: 1px solid var(--slate-100);
}
.faq-item:last-child {
  border-bottom: 1px solid var(--slate-100);
}
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(18px, 2.4vw, 22px) 6px clamp(18px, 2.4vw, 22px)
    clamp(16px, 2vw, 22px);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-head);
  transition: color 0.2s ease;
}
.faq-trigger:hover { color: var(--ink); }
.faq-trigger:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
  border-radius: 4px;
}
.faq-question {
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.45;
  flex: 1 1 auto;
  min-width: 0;
  overflow-wrap: anywhere;
}
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-400);
  transition: transform 0.4s var(--ease-out), color 0.2s ease;
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
  color: var(--teal);
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out);
}
.faq-answer {
  /* Top padding guarantees the answer never crashes into the question /
     divider / accent line on any width; left padding clears the accent bar. */
  padding: clamp(8px, 1.1vw, 14px) clamp(16px, 2vw, 22px)
    clamp(20px, 2.8vw, 28px);
  padding-left: clamp(16px, 2vw, 22px);
  font-size: clamp(0.9rem, 1.2vw, 0.98rem);
  color: var(--slate-500);
  line-height: 1.85;
  max-width: 640px;
}

/* Selection */
::selection { background: rgba(11,196,176,0.2); color: var(--ink); }

/* ════════════════════════════════════════════════════════════
   MAPPLEMARK — SPACING TIGHTENING + POLISH
   Appended last so it wins the cascade. Reduces excessive vertical
   whitespace consistently and adds subtle, performant polish.
═════════════════════════════════════════════════════════════ */

/* Tighten the spacing scale that drives most section paddings/gaps. */
:root {
  --space-2xl: 52px;  /* was 72px */
  --space-3xl: 92px;  /* was 120px */
  --space-4xl: 120px; /* was 160px */
}

/* Section rhythm — a touch more compact, still breathable. */
.section-header { margin-bottom: 42px; }
.page-hero { padding: 100px var(--space-lg) 60px; }
.why-inner { gap: clamp(40px, 6vw, 80px); align-items: center; }
.cta-inner { padding-top: 0; padding-bottom: 0; }

/* Accessible focus ring (keyboard users) — premium, not noisy. */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.btn-liquid-glass:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-radius: 6px;
}

/* On small screens, hide the per-row service stat so rows never crowd. */
@media (max-width: 560px) {
  .svc-row-stat { display: none; }
}

/* ════════════════════════════════════════════════════════════
   UNIFORM HERO SYSTEM  (authoritative — loads last, wins)
   One compact, fluid, above-the-fold hero for every inner page.
   .page-hero is used on About, Services, Contact, Insights, the
   service pages (.page-hero.svc-hero), and the legal pages.
   The nav is sticky (in normal flow), so no nav-clearance padding
   is needed — this is pure rhythm.
═════════════════════════════════════════════════════════════ */
.page-hero {
  padding: clamp(80px, 11vh, 116px) clamp(16px, 4vw, 32px)
    clamp(44px, 6vh, 68px) !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-hero > * {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.95rem, 1.2rem + 3.2vw, 3rem) !important;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 20ch;
  margin: 0 auto 14px !important;
}
.page-hero p {
  font-size: clamp(0.95rem, 0.88rem + 0.4vw, 1.08rem) !important;
  line-height: 1.7;
  max-width: 60ch !important;
  margin: 0 auto !important;
  color: rgba(255, 255, 255, 0.6);
}
/* The service-page hero shares the exact same system (no extra padding). */
.page-hero.svc-hero {
  padding-top: clamp(80px, 11vh, 116px) !important;
  padding-bottom: clamp(44px, 6vh, 68px) !important;
}
.svc-hero .svc-hero-ctas {
  margin-top: clamp(22px, 3vw, 32px);
}
/* Optional hero CTA + trust rows (shared structure across pages) */
.hero-ctas-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: clamp(22px, 3vw, 30px);
  position: relative;
  z-index: 1;
}
@media (max-width: 560px) {
  .page-hero h1 { max-width: 16ch; }
  .page-hero p { font-size: 0.92rem !important; }
}
/* Bug 2 — more minimal hero on phones (<480px). The authoritative .page-hero
   system above has no 480px block, so this is added here; desktop/tablet/560px
   untouched. Note: .page-hero.svc-hero keeps its own padding (higher specificity). */
@media (max-width: 480px) {
  .page-hero {
    padding-top: clamp(52px, 8vh, 72px) !important;
    padding-bottom: clamp(28px, 4vh, 40px) !important;
  }
  .page-hero h1 {
    font-size: clamp(1.5rem, 6vw, 1.85rem) !important;
    max-width: 14ch;
  }
  .page-hero p {
    font-size: 0.86rem !important;
    line-height: 1.65;
  }
}

/* (Display-font override reverted — all headings use --font-head, i.e.
   the original Plus Jakarta Sans, per request.) */
