/* =========================================================================
   LOVELOCK ADVERTISING:Shared Styles · v2 (bold modern reskin)
   ========================================================================= */

:root {
  /* Palette:ice white base, lime as the single pop */
  --bg: #F4F7FA;
  --bg-soft: #EAEEF3;
  --surface: #FFFFFF;
  --ink: #0A0A0A;
  --ink-soft: #1A1A1A;
  --muted: #6B7280;
  --dim: #94A3B8;
  --border: #E2E8F0;
  --border-strong: #0A0A0A;
  --accent: #BFFF00;        /* unified brand neon:matches hero, intake, dropdown */
  --accent-hover: #A8E300;
  --accent-soft: #F0FFC9;
  --accent-deep: #8FCC00;
  --lime: #BFFF00;          /* legacy alias */
  --lime-deep: #8FCC00;     /* legacy alias */
  --dark: #0A0A0A;
  --danger: #DC2626;

  /* Type */
  --font-display: 'Bricolage Grotesque', 'Inter Tight', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Radii */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  /* Layout */
  --container-max: 1280px;
  --container-pad: clamp(1.25rem, 4vw, 3rem);
  --nav-height: 80px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-in-out: cubic-bezier(0.7, 0, 0.3, 1);
  --t-fast: 180ms;
  --t-med: 320ms;
  --t-slow: 600ms;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(10, 10, 10, 0.04);
  --shadow-md: 0 4px 24px rgba(10, 10, 10, 0.08);
  --shadow-lg: 0 20px 60px rgba(10, 10, 10, 0.12);
  --shadow-accent: 0 12px 36px rgba(255, 77, 46, 0.32);
}

/* =========================================================================
   Reset & base
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--dark);
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: transparent;   /* transparent so the z-index:-1 grid canvas shows; html stays dark */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  min-height: 100vh;
  max-width: 100vw;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; color: inherit; }
ul { list-style: none; }

::selection { background: var(--accent); color: var(--surface); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =========================================================================
   Typography:bold, tight, oversized
   ========================================================================= */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.4rem, 8.5vw, 7.5rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.95;
  overflow-wrap: break-word;
}
h2 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
}
h3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); font-weight: 700; line-height: 1.1; }
h4 { font-size: 1.1rem; font-weight: 700; line-height: 1.25; }

p { color: var(--ink); }
.lead {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--muted);
  line-height: 1.65;
  max-width: 60ch;
  font-weight: 400;
}

/* Overline as a pill chip */
.overline {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.45rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  border: 1.5px solid var(--ink);
  border-radius: var(--r-pill);
  margin-bottom: var(--space-5);
}
.overline::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.overline.muted {
  color: var(--muted);
  border-color: var(--border);
}
.overline.muted::before { background: var(--dim); }

.eyebrow-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

/* Headline highlight word:plain lime text, no background bar */
.gold {
  color: var(--accent);
}

/* =========================================================================
   Layout helpers
   ========================================================================= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

section {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0;
}

.section-tight { padding: clamp(3rem, 5vw, 4rem) 0; }
.section-dark { background: var(--dark); }
.bg-secondary { background: var(--dark); }
.section-darker { background: var(--dark); color: var(--surface); }

.divider-gold {
  display: block;
  width: 56px;
  height: 4px;
  background: var(--accent);
  border-radius: var(--r-pill);
  margin: var(--space-5) 0;
}

/* =========================================================================
   Grain (now subtle dot texture for hero sections)
   ========================================================================= */
.grain {
  position: relative;
  isolation: isolate;
}
.grain::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  background-image: radial-gradient(circle at 1px 1px, rgba(10, 10, 10, 0.08) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, black 0%, black 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 60%, transparent 100%);
}
.grain > * { position: relative; z-index: 2; }

/* =========================================================================
   Navigation
   ========================================================================= */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(248, 248, 248, 0.06);
  transition: background var(--t-med) var(--ease-out),
              border-color var(--t-med) var(--ease-out);
}

/* Scrolled:slightly more transparent so content behind shows through */
.site-nav.scrolled {
  background: rgba(10, 10, 10, 0.68);
  border-bottom-color: rgba(248, 248, 248, 0.08);
}

/* All nav children styled for the permanent dark surface */
.site-nav .nav-links a              { color: var(--hero-ice, #F8F8F8); }
.site-nav .nav-links a:hover        { background: var(--hero-ice, #F8F8F8); color: var(--hero-bg, #0A0A0A); }
.site-nav .nav-links a.is-active {
  color: var(--accent);
  font-weight: 700;
}
.site-nav .nav-links a.is-active::after { display: none; }
/* When the white pill is showing, force text to black so lime never sits on ice */
.site-nav .nav-links a.is-active:hover,
.site-nav .nav-links a.is-active:focus-visible {
  background: var(--hero-ice, #F8F8F8);
  color: var(--hero-bg, #0A0A0A);
}
/* nav logo SVG now ships white:no filter needed */
.site-nav .nav-toggle   { background: var(--hero-ice, #F8F8F8); color: var(--hero-bg, #0A0A0A); }
.site-nav .nav-links a.nav-cta {
  background: var(--accent);
  border-color: var(--accent);
  color: #000000;
  font-weight: 700;
  transition: transform var(--t-med) var(--ease-spring),
              box-shadow var(--t-med) var(--ease-out),
              background var(--t-med) var(--ease-out),
              color var(--t-med) var(--ease-out);
}
.site-nav .nav-links a.nav-cta:hover {
  background: #000000;
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.site-nav .nav-links a.nav-cta:active {
  transform: translateY(0) scale(0.98);
  box-shadow: none;
}

.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

/* Logo text lockup */
.nav-logo {
  display: inline-flex;
  align-items: baseline;
  text-decoration: none;
}

.logo-lockup {
  display: inline-flex;
  align-items: baseline;
  gap: 0.14em;
  color: #ffffff;
  /* smooth exit when mouse leaves */
  transition:
    color       0.5s var(--ease-out),
    text-shadow 0.5s var(--ease-out),
    transform   0.6s var(--ease-spring);
}

/* Lovelock wordmark:matches the hero's "Your Business" treatment (Inter 900) */
.logo-word {
  font-family: 'Inter', 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
}

.logo-sub {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  align-self: center;
}

/* Nav logo sizing */
.nav-logo .logo-word { font-size: calc(var(--nav-height) * 0.72); }
.nav-logo .logo-sub  { font-size: calc(var(--nav-height) * 0.20); }

/* Image logo (replaces text lockup in the header) */
.nav-logo-img {
  display: block;
  height: calc(var(--nav-height) * 0.78);
  width: auto;
  max-width: none;
  flex-shrink: 0;
  will-change: transform, filter;
  transition:
    filter    0.5s var(--ease-out),
    transform 0.6s var(--ease-spring);
}

/* ── Hover: spring pop + soft neon glow ──────────────────────────────────
   On enter : animation springs up and settles with a lime glow
   On leave : transition smoothly fades back                              */
.nav-logo:hover .nav-logo-img {
  filter:
    drop-shadow(0 0 12px rgba(191, 255, 0, 0.7))
    drop-shadow(0 0 35px rgba(191, 255, 0, 0.25));
  transform: translateY(-2px) scale(1.02) rotate(-0.4deg);
  animation: logo-pop 0.5s var(--ease-spring) both;
}

@keyframes logo-pop {
  0% {
    filter: drop-shadow(0 0 0 rgba(191, 255, 0, 0));
    transform: translateY(0) scale(1) rotate(0deg);
  }
  /* spring overshoot */
  40% {
    filter:
      drop-shadow(0 0 18px rgba(191, 255, 0, 0.85))
      drop-shadow(0 0 50px rgba(191, 255, 0, 0.3));
    transform: translateY(-5px) scale(1.05) rotate(-0.8deg);
  }
  /* settle */
  100% {
    filter:
      drop-shadow(0 0 12px rgba(191, 255, 0, 0.7))
      drop-shadow(0 0 35px rgba(191, 255, 0, 0.25));
    transform: translateY(-2px) scale(1.02) rotate(-0.4deg);
  }
}

/* Footer logo: image variant, no hover effect */
.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: var(--space-4);
}

.footer-logo-img {
  display: block;
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, 1.5vw, 1rem);
}

.nav-links a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
  padding: 0.6rem 1rem;
  border-radius: var(--r-pill);
  transition: background var(--t-fast), color var(--t-fast);
}

.nav-links a:hover { background: var(--ink); color: var(--surface); }
.nav-links a.is-active {
  background: transparent;
  color: var(--accent);
  font-weight: 700;
}
.nav-links a.is-active::after {
  display: none;
  box-shadow: 0 0 0 3px var(--accent);
}

.nav-cta {
  margin-left: var(--space-3);
}

/* Hamburger */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  z-index: 110;
  position: relative;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: var(--surface);
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.8px;
  background: currentColor;
  position: relative;
  transition: transform var(--t-med) var(--ease-out), background var(--t-fast);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.8px;
  background: currentColor;
  transition: transform var(--t-med) var(--ease-out), top var(--t-med) var(--ease-out);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top:  6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

/* Mobile overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 105;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-5);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity var(--t-med) var(--ease-out), transform var(--t-med) var(--ease-out);
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.8px solid rgba(248, 248, 248, 0.35);
  border-radius: 50%;
  background: transparent;
  color: var(--hero-ice, #F8F8F8);
  cursor: pointer;
  transition: background var(--t-fast) var(--ease-out),
              border-color var(--t-fast) var(--ease-out),
              transform var(--t-fast) var(--ease-out);
}
.mobile-menu-close svg { width: 22px; height: 22px; display: block; }
.mobile-menu-close:hover,
.mobile-menu-close:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
  outline: none;
  transform: rotate(90deg);
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 9vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--hero-ice, #F8F8F8);
  transition: color var(--t-fast);
}
.mobile-menu a:hover { color: var(--hero-lime, #BFFF00); }
.mobile-menu .nav-cta { margin-top: var(--space-5); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }

  /* Shrink the nav bar + logo so the hamburger isn't squeezed off-screen */
  :root { --nav-height: 64px; }
  .nav-inner { gap: var(--space-4); }
  .nav-logo .logo-word { font-size: 1.5rem; }
  .nav-logo .logo-sub  { font-size: 0.62rem; letter-spacing: 0.14em; }

  /* Cap the image logo so it never crowds the hamburger */
  .nav-logo-img {
    height: 40px;
    max-width: 55vw;
    object-fit: contain;
    object-position: left center;
    flex-shrink: 1;
  }

  /* Anchor the hamburger absolutely so it can never be pushed off-screen,
     regardless of what the flex layout or logo decides to do. */
  .site-nav .nav-toggle {
    position: absolute;
    top: 50%;
    right: clamp(0.75rem, 3vw, 1.25rem);
    transform: translateY(-50%);
    background: var(--accent);
    color: var(--ink);
    width: 44px;
    height: 44px;
    box-shadow: 0 0 0 2px rgba(10, 10, 10, 0.85),
                0 4px 12px rgba(191, 255, 0, 0.4);
    z-index: 2;
    transition: background var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
  }
  .site-nav .nav-toggle:hover,
  .site-nav .nav-toggle:focus-visible {
    transform: translateY(-50%) scale(1.04);
  }
  /* Reserve space inside the nav so the logo never overlaps the absolute toggle */
  .nav-inner { padding-right: 64px; }
  .site-nav .nav-toggle:hover,
  .site-nav .nav-toggle:focus-visible {
    background: var(--accent-hover, #A8E300);
    transform: translateY(-50%) scale(1.04);
    outline: none;
  }
  .site-nav .nav-toggle[aria-expanded="true"] {
    background: var(--accent);
    box-shadow: 0 0 0 2px rgba(10, 10, 10, 0.85),
                0 0 16px rgba(191, 255, 0, 0.55);
    transform: translateY(-50%);
  }
  .nav-toggle span,
  .nav-toggle span::before,
  .nav-toggle span::after {
    width: 20px;
    height: 2.2px;
    border-radius: 2px;
  }
}

@media (max-width: 480px) {
  /* Extra-narrow phones: keep usable padding without letting the glow clip */
  :root { --container-pad: 1.125rem; }
  .nav-logo .logo-word { font-size: 1.3rem; }
  .nav-logo .logo-sub  { font-size: 0.58rem; }
  .nav-logo-img { height: 34px; max-width: 60vw; }
}

/* =========================================================================
   Buttons:pill, bold, smooth
   ========================================================================= */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  padding: 0.95rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  border: 1.8px solid var(--ink);
  color: var(--ink);
  background: transparent;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: transform var(--t-fast) var(--ease-out),
              background var(--t-med) var(--ease-out),
              color var(--t-med) var(--ease-out),
              box-shadow var(--t-med) var(--ease-out),
              border-color var(--t-med) var(--ease-out);
  will-change: transform;
}
.btn:hover {
  background: var(--ink);
  color: var(--surface);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn:active { transform: translateY(0); }

.btn-filled {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--surface);
}
.btn-filled:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(191, 255, 0, 0.55);
}

.btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover { background: var(--ink); color: var(--surface); }

.btn-lg {
  padding: 1.15rem 2rem;
  font-size: 1rem;
}

/* On dark surfaces */
.section-darker .btn,
.cta-block .btn {
  border-color: var(--surface);
  color: var(--surface);
}
.section-darker .btn:hover,
.cta-block .btn:hover {
  background: var(--surface);
  color: var(--ink);
}
.cta-block .btn-filled,
.section-darker .btn-filled {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
}
.cta-block .btn-filled:hover,
.section-darker .btn-filled:hover {
  background: var(--surface);
  border-color: var(--surface);
  color: var(--ink);
  box-shadow: 0 12px 36px rgba(255, 255, 255, 0.15);
}

/* Subhero (interior page top sections) use dark backgrounds too,
   so buttons get the same treatment as .cta-block buttons. */
.subhero .btn {
  border-color: var(--surface);
  color: var(--surface);
}
.subhero .btn:hover {
  background: var(--surface);
  color: var(--ink);
}
.subhero .btn-filled {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
}
.subhero .btn-filled:hover {
  background: var(--surface);
  border-color: var(--surface);
  color: var(--ink);
  box-shadow: 0 12px 36px rgba(255, 255, 255, 0.15);
}

.btn .arrow {
  display: inline-block;
  transition: transform var(--t-med) var(--ease-spring);
}
.btn:hover .arrow { transform: translateX(4px); }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-7);
}

/* =========================================================================
   Hero
   ========================================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 6rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero .container {
  position: relative;
  z-index: 3;
  max-width: 1200px;
}

.hero h1 { margin-bottom: var(--space-5); }
.hero .lead {
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  color: var(--muted);
  max-width: 58ch;
}

/* Hero decor */
.hero-decor {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  will-change: transform;
}

.hero-ring {
  position: absolute;
  top: 6%;
  right: -10%;
  width: clamp(380px, 50vw, 720px);
  aspect-ratio: 1;
  border: 2px solid var(--ink);
  border-radius: 50%;
  opacity: 0.45;
}

.hero-ring--inner {
  position: absolute;
  top: 14%;
  right: -2%;
  width: clamp(280px, 36vw, 520px);
  aspect-ratio: 1;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.7;
  mix-blend-mode: multiply;
}

.hero-line {
  position: absolute;
  bottom: 14%;
  left: -10%;
  width: 70vw;
  height: 2px;
  background: var(--ink);
  opacity: 0.5;
  transform: rotate(-7deg);
}

.hero-dot {
  position: absolute;
  top: 32%;
  left: 6%;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(191, 255, 0, 0.28);
}

/* Highlight word (used inside h1) */
.gold {
  position: relative;
  color: var(--accent);
  display: inline-block;
}

/* Sub-hero (interior pages) */
.subhero {
  position: relative;
  padding-top: calc(var(--nav-height) + 5rem);
  padding-bottom: 4.5rem;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.subhero h1 { font-size: clamp(2.8rem, 6.5vw, 5.5rem); }
.subhero .lead { margin-top: var(--space-5); max-width: 60ch; }

.breadcrumb {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: var(--space-6);
}
.breadcrumb a { color: var(--muted); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { color: var(--ink); margin: 0 0.6em; }

/* =========================================================================
   Marquee:punchy accent band
   ========================================================================= */
.marquee {
  background: var(--ink);
  color: var(--surface);
  overflow: hidden;
  padding: 1.4rem 0;
  position: relative;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.marquee-inner {
  display: flex;
  width: max-content;
  animation: marquee-scroll 38s linear infinite;
}

.marquee-inner span {
  display: inline-block;
  padding: 0 1.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--surface);
  white-space: nowrap;
}
.marquee-inner span:nth-child(2n) { color: var(--accent); }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================================
   Section heading
   ========================================================================= */
.section-head {
  max-width: 760px;
  margin-bottom: var(--space-8);
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .overline { margin-left: auto; margin-right: auto; }
.section-head h2 { margin-bottom: var(--space-4); }
.section-head .lead { color: var(--muted); }
.section-head.center .lead { margin-left: auto; margin-right: auto; }

/* =========================================================================
   Cards
   ========================================================================= */
.card {
  position: relative;
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 2.5vw, 2.5rem);
  transition: transform var(--t-med) var(--ease-out),
              box-shadow var(--t-med) var(--ease-out);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 8px 8px 0 0 var(--ink);
}

.card-h {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-3);
}

.card-p { color: var(--muted); line-height: 1.6; }

/* Positioning duo:"for you" (prominent) vs "not for you" (recedes) */
.duo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-5);
}
.duo-grid .duo-card {
  position: relative;
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
  padding: var(--space-7);
  transition: transform 420ms var(--ease-spring),
              box-shadow 420ms var(--ease-out),
              background 300ms var(--ease-out),
              border-color 300ms var(--ease-out),
              opacity 480ms var(--ease-out);
}

/* "This is for you":pops forward: lifts, grows, tilts, lime shadow */
.duo-grid .duo-card:not(.negative):hover {
  transform: translateY(-14px) scale(1.045) rotate(-1.8deg);
  box-shadow: 16px 16px 0 0 var(--accent);
  z-index: 2;
}

/* "This is not for you":dark and recessive, fades into the section */
.duo-grid .duo-card.negative {
  background: #222222;
  border: 1.5px dashed rgba(255, 255, 255, 0.1);
}
.duo-grid .duo-card.negative:hover {
  border-color: rgba(255, 255, 255, 0.22);
}

.duo-card h3 { margin-bottom: var(--space-5); }
.duo-card ul li {
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-weight: 500;
}
.duo-card ul li:last-child { border-bottom: 0; }
.duo-card ul li::before {
  content: '';
  display: inline-block;
  flex-shrink: 0;
  margin-top: 0.55rem;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--ink);
}

/* Negative card:dimmed text so it reads as "fading away" */
.duo-card.negative h3 { color: rgba(255, 255, 255, 0.5); }
.duo-card.negative ul li {
  color: rgba(255, 255, 255, 0.34);
  border-bottom-color: rgba(255, 255, 255, 0.07);
}
.duo-card.negative ul li::before {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.22);
}
.duo-card.negative .overline.muted {
  color: rgba(255, 255, 255, 0.34);
  border-color: rgba(255, 255, 255, 0.14);
}

/* Service cards (homepage strip) */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-5);
  perspective: 1100px;
}

.service-card {
  position: relative;
  display: block;
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
  padding: var(--space-7) var(--space-6);
  min-height: 280px;
  overflow: hidden;
}
/* scoped to .service-grid so it outranks the .reveal transform/transition;
   JS layers a cursor-driven 3D tilt on top via inline transform */
.service-grid .service-card {
  will-change: transform;
  transition: transform 140ms var(--ease-out),
              box-shadow 340ms var(--ease-out),
              background 300ms var(--ease-out),
              opacity 560ms var(--ease-out);
}
.service-grid .service-card:hover {
  transform: translateY(-12px) scale(1.045);
  background: var(--lime);
  box-shadow: 0 26px 55px rgba(191, 255, 0, 0.28);
}
.service-card .eyebrow-num { display: block; margin-bottom: var(--space-7); }
.service-card .card-h { margin-bottom: var(--space-3); }
.service-card .card-p { color: var(--muted); }
.service-card:hover .card-p { color: var(--ink-soft); }
.service-card .arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--space-6);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}
.service-card .arrow-link .arrow { transition: transform var(--t-med) var(--ease-spring); }
.service-card:hover .arrow-link .arrow { transform: translateX(6px); }

/* Big service rows on services.html */
.service-rows {
  position: relative;
}

.service-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: var(--space-7);
  padding: var(--space-7) var(--space-5);
  border-top: 2px solid var(--ink);
  border-radius: 0;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: transform 0.5s var(--ease-spring),
              border-radius 0.5s var(--ease-spring),
              box-shadow 0.45s var(--ease-out),
              z-index 0s;
}
.service-row:last-child { border-bottom: 2px solid var(--ink); }

/* Green fill:slides in from the left on hover */
.service-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: 0% 50%;
  transition: transform 0.55s var(--ease-spring);
  z-index: 0;
}
.service-row:hover::before { transform: scaleX(1); }

/* Keep all content above the fill layer */
.service-row > * { position: relative; z-index: 1; }

/* Row lifts, rounds, and casts a shadow */
.service-row:hover {
  transform: translateY(-6px) scale(1.012);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  z-index: 2;
}
.service-row .num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
}
.service-row:hover .num { color: var(--ink); }
.service-row h3 { font-size: clamp(1.6rem, 2.8vw, 2.4rem); margin-bottom: var(--space-2); }
.service-row p { color: var(--muted); max-width: 60ch; font-weight: 500; }
.service-row:hover p { color: var(--ink-soft); }
.service-row .arrow-link {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.service-row:hover .arrow-link .arrow { transform: translateX(6px); }
.service-row .arrow-link .arrow { transition: transform var(--t-med) var(--ease-spring); }

@media (max-width: 720px) {
  .service-row { grid-template-columns: 1fr; gap: var(--space-4); padding: var(--space-6) var(--space-4); }
  .service-row .num { font-size: 2.4rem; }
}

/* =========================================================================
   Stats:bold accent numbers on white
   ========================================================================= */
.stats-bar {
  background: var(--ink);
  border: none;
  border-radius: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.stat {
  text-align: center;
  padding: var(--space-8) var(--space-4);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.stat:last-child { border-right: 0; }
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--lime);
  line-height: 1;
  margin-bottom: var(--space-3);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.03em;
}
.stat .label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 720px) {
  .stat { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .stat:last-child { border-bottom: 0; }
}

/* =========================================================================
   Two-column editorial
   ========================================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.split.middle { align-items: center; }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: var(--space-7); }
}

.numbered-list { counter-reset: step; }
.numbered-list li {
  position: relative;
  padding: var(--space-5) 0 var(--space-5) 4.5rem;
  border-bottom: 1px solid var(--border);
  counter-increment: step;
}
.numbered-list li:last-child { border-bottom: 0; }
.numbered-list li::before {
  content: "0" counter(step);
  position: absolute;
  left: 0;
  top: var(--space-5);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.numbered-list li::after {
  content: '';
  position: absolute;
  left: 2.4rem;
  top: calc(var(--space-5) + 0.45rem);
  width: 1.2rem;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.numbered-list li h4 { margin-bottom: var(--space-2); font-size: 1.15rem; }
.numbered-list li p { color: var(--muted); font-size: 0.97rem; }

/* =========================================================================
   Testimonials
   ========================================================================= */
/* Auto-scrolling partner testimonials marquee */
.testimonial-marquee {
  position: relative;
  overflow: hidden;
  padding: 2rem 0 1rem;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.testimonial-track {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--space-5);
  width: max-content;
  animation: testimonial-scroll 48s linear infinite;
}
.testimonial-marquee:hover .testimonial-track,
.testimonial-marquee:focus-within .testimonial-track {
  animation-play-state: paused;
}
@keyframes testimonial-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - (var(--space-5) / 2))); }
}
@media (prefers-reduced-motion: reduce) {
  .testimonial-track { animation: none; }
  .testimonial-marquee { overflow-x: auto; }
}
.testimonial {
  position: relative;
  flex: 0 0 360px;
  max-width: 360px;
  padding: var(--space-7);
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
  transition: transform var(--t-med) var(--ease-spring), box-shadow var(--t-med), background var(--t-med);
}
@media (max-width: 760px) {
  .testimonial { flex-basis: 320px; max-width: 320px; padding: 2.75rem var(--space-6) var(--space-6); }
  .testimonial blockquote { font-size: 1.05rem; }
  .testimonial .testimonial-stars { margin-top: 0.25rem; }
}
@media (max-width: 520px) {
  .testimonial { flex-basis: 280px; max-width: 280px; padding: 2.5rem var(--space-5) var(--space-6); }
  .testimonial blockquote { font-size: 1rem; line-height: 1.4; margin-bottom: var(--space-5); }
  .testimonial::before,
  .testimonial::after { top: -1.4rem; left: 1.25rem; width: 2.8rem; height: 2.8rem; }
  .testimonial::after { font-size: 2.4rem; transform: translateY(0.55rem); }
  .testimonial .testimonial-stars { margin-top: 0.35rem; }
}
.testimonial:hover {
  transform: translateY(-8px) rotate(-1.5deg);
  box-shadow: 10px 10px 0 0 var(--ink);
  background: var(--lime);
}
/* Quote badge:lime bubble (::before) with the " glyph centred over it (::after) */
.testimonial::before,
.testimonial::after {
  position: absolute;
  top: -1.5rem;
  left: 1.6rem;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  transition: transform var(--t-med) var(--ease-spring), background var(--t-med) var(--ease-out);
}
.testimonial::before {
  content: '';
  background: var(--accent);
  border: 2px solid var(--ink);
}
.testimonial::after {
  content: '"';
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
  color: var(--ink);
  /* nudge the high-sitting quote glyph down to true centre */
  transform: translateY(0.72rem);
}
/* Hover:bubble switches lime → white and pops; quote counter-rotates upright */
.testimonial:hover::before {
  background: var(--surface);
  transform: scale(1.1);
}
.testimonial:hover::after {
  transform: translateY(0.72rem) scale(1.1) rotate(1.5deg);
}
.testimonial blockquote {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: var(--space-6);
  margin-top: var(--space-3);
}
.testimonial .who {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
}
.testimonial .who-mark {
  width: 42px; height: 42px;
  background: var(--ink);
  color: var(--surface);
  border-radius: var(--r-pill);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.testimonial .who-name { font-weight: 600; font-size: 0.95rem; color: var(--ink); }
.testimonial .who-biz { font-size: 0.85rem; color: var(--muted); }
.testimonial-stars {
  color: #FFC000;
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  display: block;
}

.hero-sub {
  text-align: center;
  color: var(--muted, #999);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  max-width: 44ch;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.cta-proof {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.25rem;
}

.trust-bar {
  background: var(--surface-2, #111);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 1.25rem 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-bar-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted, #666);
  white-space: nowrap;
}
.trust-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--surface, #fff);
  white-space: nowrap;
}
.trust-badge svg {
  color: #FFC000;
  flex-shrink: 0;
}

/* =========================================================================
   Final CTA:deep black with lime accents
   ========================================================================= */
.cta-block {
  position: relative;
  text-align: center;
  padding: clamp(5rem, 10vw, 9rem) var(--container-pad);
  background: var(--ink);
  color: var(--surface);
  overflow: hidden;
  isolation: isolate;
}
.cta-block h2 {
  max-width: 22ch;
  margin: 0 auto var(--space-5);
  color: var(--surface);
}
.cta-block h2 .gold { color: var(--surface); }
.cta-block .lead {
  margin: 0 auto var(--space-7);
  color: rgba(255, 255, 255, 0.78);
  max-width: 56ch;
}
.cta-block .overline {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--surface);
}
.cta-block .overline::before { background: var(--accent); }
.cta-note {
  display: block;
  margin-top: var(--space-5);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}
/* Ambient glows are drawn site-wide on the background canvas (js/main.js),
   no longer clipped per-section. */
.cta-block > * { position: relative; z-index: 1; }

/* =========================================================================
   Service detail:includes list, approach steps
   ========================================================================= */
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-4);
}
.included-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-5);
  background: var(--surface);
  border: 1.5px solid var(--ink);
  border-radius: var(--r-md);
  transition: transform var(--t-med), background var(--t-med);
}
.included-item:hover { transform: translateY(-3px); background: var(--lime); }
.included-item .tick {
  flex-shrink: 0;
  width: 26px; height: 26px;
  background: var(--ink);
  color: var(--accent);
  border-radius: var(--r-pill);
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 700;
}
.included-item:hover .tick { background: var(--surface); color: var(--ink); }
.included-item span:last-child { font-size: 0.98rem; line-height: 1.4; font-weight: 500; }

/* =========================================================================
   Service-page "Process" timeline:vertical lime spine, alternating cards
   ========================================================================= */
.approach-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-7);
  margin-top: var(--space-9);
  position: relative;
  padding: var(--space-7) 0;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

/* The vertical lime spine:draws in on scroll where supported */
.approach-grid::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--accent) 6%,
    var(--accent) 94%,
    transparent 100%
  );
  transform: translateX(-50%) scaleY(0);
  transform-origin: top;
  z-index: 0;
  pointer-events: none;
  box-shadow: 0 0 24px rgba(191, 255, 0, 0.25);
  animation: spineDraw linear forwards;
  animation-timeline: view();
  animation-range: cover 0% cover 45%;
}

/* Fallback: browsers without scroll-timeline just show the spine */
@supports not (animation-timeline: view()) {
  .approach-grid::before { transform: translateX(-50%) scaleY(1); }
}

@keyframes spineDraw {
  to { transform: translateX(-50%) scaleY(1); }
}

/* Each phase:card alternates side of the spine */
.approach-step {
  position: relative;
  width: calc(50% - 64px);
  padding: var(--space-7);
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
  will-change: transform;
  transition: transform 220ms var(--ease-out),
              box-shadow 340ms var(--ease-out),
              background 300ms var(--ease-out);
}
.approach-step:nth-child(odd)  { align-self: flex-start; }
.approach-step:nth-child(even) { align-self: flex-end; }

/* Hover: lift toward the spine + lime flip (matches home service-cards) */
.approach-step:hover {
  transform: translateY(-8px);
  background: var(--lime);
  box-shadow: 0 26px 55px rgba(191, 255, 0, 0.32);
  border-color: var(--ink);
}
.approach-step:nth-child(odd):hover  { transform: translateY(-8px) translateX(8px); }
.approach-step:nth-child(even):hover { transform: translateY(-8px) translateX(-8px); }

/* Horizontal connector line from card edge → spine */
.approach-step::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 2px;
  background: var(--accent);
  opacity: 0.55;
  z-index: 1;
  transition: opacity 280ms var(--ease-out), width 280ms var(--ease-out);
}
.approach-step:nth-child(odd)::before  { right: -40px; }
.approach-step:nth-child(even)::before { left:  -40px; }
.approach-step:hover::before { opacity: 1; width: 52px; }

/* Phase number:repurposed as the glowing circular badge on the spine */
.approach-step .step-num {
  position: absolute;
  top: 50%;
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  color: var(--accent);
  border: 3px solid var(--accent);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  padding: 0;
  margin: 0;
  z-index: 3;
  transform: translateY(-50%);
  box-shadow: 0 0 0 6px rgba(191, 255, 0, 0.10), 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 320ms var(--ease-spring),
              box-shadow 320ms var(--ease-out),
              background 280ms var(--ease-out),
              color 280ms var(--ease-out);
}
.approach-step:nth-child(odd)  .step-num { right: -98px; }
.approach-step:nth-child(even) .step-num { left:  -98px; }

.approach-step:hover .step-num {
  transform: translateY(-50%) scale(1.18) rotate(-6deg);
  background: var(--accent);
  color: var(--ink);
  box-shadow:
    0 0 0 10px rgba(191, 255, 0, 0.22),
    0 0 40px rgba(191, 255, 0, 0.55),
    0 12px 30px rgba(0, 0, 0, 0.25);
}

/* Subtle continuous pulse on the badges, idle state */
.approach-step .step-num::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 2px solid var(--accent);
  opacity: 0.6;
  animation: spinePulse 2.6s var(--ease-out) infinite;
}
@keyframes spinePulse {
  0%   { transform: scale(1);    opacity: 0.6; }
  70%  { transform: scale(1.45); opacity: 0; }
  100% { transform: scale(1.45); opacity: 0; }
}

.approach-step h3 { font-size: 1.35rem; margin-bottom: var(--space-3); }
.approach-step p { color: var(--muted); font-size: 0.97rem; transition: color 300ms var(--ease-out); }
.approach-step:hover p { color: var(--ink-soft); }

/* Mobile: collapse to a single column with the spine running down the left */
@media (max-width: 760px) {
  .approach-grid {
    padding-left: 64px;
    max-width: 100%;
  }
  .approach-grid::before {
    left: 28px;
  }
  .approach-step,
  .approach-step:nth-child(odd),
  .approach-step:nth-child(even) {
    width: 100%;
    align-self: stretch;
  }
  .approach-step:nth-child(odd):hover,
  .approach-step:nth-child(even):hover {
    transform: translateY(-6px) translateX(0);
  }
  .approach-step::before,
  .approach-step:nth-child(odd)::before,
  .approach-step:nth-child(even)::before {
    left: -32px;
    right: auto;
    width: 32px;
  }
  .approach-step .step-num,
  .approach-step:nth-child(odd) .step-num,
  .approach-step:nth-child(even) .step-num {
    left: -64px;
    right: auto;
    width: 56px;
    height: 56px;
    font-size: 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .approach-grid::before { transform: translateX(-50%) scaleY(1); animation: none; }
  .approach-step .step-num::after { animation: none; }
}

/* =========================================================================
   About:story portrait
   ========================================================================= */
.story-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: var(--r-xl);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.story-portrait::before {
  content: '';
  position: absolute;
  top: -10%; left: -8%;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent);
  z-index: 1;
}
.story-portrait::after {
  content: '';
  position: absolute;
  bottom: -18%; right: -12%;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid var(--accent);
  z-index: 1;
}
.story-portrait .initials {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(5rem, 13vw, 10rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--surface);
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 0.15em;
  mix-blend-mode: difference;
}
.story-portrait .initials span.amp {
  font-style: italic;
  font-weight: 500;
  font-size: 0.65em;
  color: var(--accent);
}

/* =========================================================================
   About: Founders stage (Two Founders. Every Client.)
   Cutout photo floats on layered composition: ghost word, lime orb,
   corner brackets, ticker strip, and pointer tags. Cursor parallax in JS.
   ========================================================================= */
.founders-section { overflow: hidden; }

.founders-split {
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
}

/* Stage: the whole left-hand visual composition */
.founder-stage {
  position: relative;
  aspect-ratio: 4 / 3.4;
  min-height: 380px;
  perspective: 1200px;
  isolation: isolate;
  --fx: 0;          /* cursor X offset, -0.5..0.5 (set by JS) */
  --fy: 0;          /* cursor Y offset, -0.5..0.5 (set by JS) */
}

/* Ghost word behind everything: matches the hero ghost-text treatment */
.founder-ghost {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4.5rem, 14vw, 11rem);
  letter-spacing: -0.06em;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.12);
  user-select: none;
  pointer-events: none;
  z-index: 1;
  transform: translate3d(calc(var(--fx) * -22px), calc(var(--fy) * -14px), 0);
  transition: transform 0.6s var(--ease-out);
  will-change: transform;
}

/* Soft lime gradient orb drifting behind the photo */
.founder-orb {
  position: absolute;
  top: 8%;
  left: 50%;
  width: 62%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%,
    rgba(191, 255, 0, 0.55) 0%,
    rgba(191, 255, 0, 0.18) 40%,
    rgba(191, 255, 0, 0) 70%);
  filter: blur(6px);
  pointer-events: none;
  transform: translate3d(calc(-50% + var(--fx) * 30px), calc(var(--fy) * 22px), 0);
  transition: transform 0.6s var(--ease-out);
  z-index: 2;
  animation: founderOrbPulse 6s ease-in-out infinite;
}
@keyframes founderOrbPulse {
  0%, 100% { opacity: 0.9; }
  50%      { opacity: 0.6; }
}

/* Subtle scan-line grid behind the photo for the "tech" feel */
.founder-grid {
  position: absolute;
  inset: 8% 4%;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(to right,  rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, #000 50%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 50%, transparent 80%);
}

/* Asymmetric corner brackets: viewfinder framing */
.founder-frame {
  position: absolute;
  width: 64px;
  height: 64px;
  border: 3px solid var(--accent);
  z-index: 4;
  pointer-events: none;
}
.founder-frame-tl {
  top: 8%;
  left: 2%;
  border-right: 0;
  border-bottom: 0;
  border-top-left-radius: 6px;
}
.founder-frame-br {
  bottom: 6%;
  right: 2%;
  border-left: 0;
  border-top: 0;
  border-bottom-right-radius: 6px;
}

/* The photo itself: floats above the layers, tilts with cursor */
.founder-photo {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 92%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: bottom center;
  z-index: 3;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.45))
          drop-shadow(0 0 60px rgba(191, 255, 0, 0.08));
  transform-style: preserve-3d;
  transform: translate3d(calc(var(--fx) * 14px), calc(var(--fy) * 10px), 0)
             rotateX(calc(var(--fy) * -3deg))
             rotateY(calc(var(--fx) * 4deg));
  transition: transform 0.5s var(--ease-out), filter var(--t-med);
  will-change: transform;
}
.founder-stage:hover .founder-photo {
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.5))
          drop-shadow(0 0 80px rgba(191, 255, 0, 0.22));
}

/* Marquee-ish ticker strip across the top of the stage */
.founder-ticker {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 0;
  overflow: hidden;
  z-index: 5;
  padding: 0.65rem 0;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  border-top: 1px solid rgba(191, 255, 0, 0.25);
  border-bottom: 1px solid rgba(191, 255, 0, 0.25);
  background: linear-gradient(to right,
    rgba(191, 255, 0, 0.04),
    rgba(191, 255, 0, 0.08),
    rgba(191, 255, 0, 0.04));
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.founder-ticker span {
  flex: 0 0 auto;
  white-space: nowrap;
  animation: founderTickerScroll 28s linear infinite;
}
@keyframes founderTickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* Pointer tags: small lime pills with a line pointing at each face */
.founder-tag {
  position: absolute;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.75rem 0.35rem 0.55rem;
  background: var(--accent);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--r-pill);
  box-shadow: 0 6px 20px rgba(191, 255, 0, 0.25);
  opacity: 0;
  transform: translateY(8px) scale(0.92);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-spring);
}
.founder-tag-dot {
  width: 8px;
  height: 8px;
  background: var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(10, 10, 10, 0.15);
}
.founder-tag::before {
  content: '';
  position: absolute;
  width: 38px;
  height: 1px;
  background: var(--accent);
  top: 50%;
}
.founder-tag-left {
  top: 32%;
  left: 4%;
}
.founder-tag-left::before {
  right: -34px;
  transform: translateY(-50%) rotate(18deg);
  transform-origin: left center;
}
.founder-tag-right {
  top: 24%;
  right: 4%;
}
.founder-tag-right::before {
  left: -34px;
  transform: translateY(-50%) rotate(-18deg);
  transform-origin: right center;
}
/* Stagger the tags in after the rest of the stage has revealed.
   IntersectionObserver in main.js adds .is-visible to .reveal elements. */
.founder-stage.is-visible .founder-tag-left {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.55s;
}
.founder-stage.is-visible .founder-tag-right {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.75s;
}

/* Right-hand copy: a touch more breathing room than default */
.founders-copy h2 {
  font-size: clamp(2.25rem, 4.2vw, 3.4rem);
}

/* Reduced motion: kill the parallax + animations, keep layout */
@media (prefers-reduced-motion: reduce) {
  .founder-ghost,
  .founder-orb,
  .founder-photo {
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
  .founder-ticker span {
    animation: none !important;
  }
}

/* Tablet: scale brackets/tags down a touch */
@media (max-width: 900px) {
  .founder-frame { width: 48px; height: 48px; }
  .founder-tag { font-size: 0.72rem; }
}

/* Mobile: simpler stack, drop the pointer tags, tighten the orb */
@media (max-width: 640px) {
  .founder-stage {
    aspect-ratio: 4 / 3.8;
    min-height: 320px;
  }
  .founder-ghost { font-size: clamp(3.5rem, 18vw, 6rem); }
  .founder-tag { display: none; }
  .founder-frame { width: 36px; height: 36px; border-width: 2px; }
  .founder-orb { top: 12%; width: 70%; }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-5);
}
.value-card {
  padding: var(--space-7);
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.value-card:nth-child(1):hover { box-shadow: 10px 10px 0 0 var(--accent); transform: translateY(-6px); }
.value-card:nth-child(2):hover { box-shadow: 10px 10px 0 0 var(--lime-deep); transform: translateY(-6px); }
.value-card:nth-child(3):hover { box-shadow: 10px 10px 0 0 var(--ink); transform: translateY(-6px); }
.value-card .v-num {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--lime);
  padding: 0.35rem 0.8rem;
  border-radius: var(--r-pill);
  margin-bottom: var(--space-5);
}
.value-card h3 { font-size: 1.5rem; margin-bottom: var(--space-3); }
.value-card p { color: var(--muted); }

/* =========================================================================
   Forms
   ========================================================================= */
.form-card {
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
  padding: clamp(1.75rem, 4vw, 3rem);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
@media (max-width: 720px) { .form-row { grid-template-columns: 1fr; } }

.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: var(--space-5);
}
.field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.field label .req { color: var(--accent); }
.field label .muted { color: var(--muted); font-weight: 400; }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  background: var(--bg);
  border: 1.5px solid var(--border);
  color: var(--ink);
  font-size: 0.98rem;
  border-radius: var(--r-md);
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}
.field textarea { resize: vertical; min-height: 140px; font-family: inherit; }

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.5rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(191, 255, 0, 0.45);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--danger);
  background: #FEF2F2;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}
.field .err-msg {
  font-size: 0.78rem;
  color: var(--danger);
  font-weight: 500;
  display: none;
}
.field.has-error .err-msg { display: block; }

.form-success {
  display: none;
  padding: var(--space-7);
  background: var(--lime);
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
  color: var(--ink);
  text-align: center;
}
.form-success.show { display: block; }
.form-success h3 { margin-bottom: var(--space-3); color: var(--ink); }

/* Benefit bullets (book a call) */
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin: var(--space-7) 0;
}
.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  font-size: 1.02rem;
  background: var(--surface);
  border: 1.5px solid var(--ink);
  border-radius: var(--r-md);
  font-weight: 500;
}
.benefit-list .tick {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--ink);
  color: var(--accent);
  border-radius: var(--r-pill);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
}

/* Contact split */
.contact-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.info-block {
  padding: var(--space-7);
  background: var(--ink);
  color: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
}
.info-block h3 { margin-bottom: var(--space-5); color: var(--surface); }
.info-block p { color: rgba(255, 255, 255, 0.7); }
.info-block .overline {
  color: var(--lime);
  border-color: var(--lime);
}
.info-line {
  display: block;
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}
.info-line:last-of-type { border-bottom: 0; margin-bottom: var(--space-5); }
.info-line a { color: var(--surface); transition: color var(--t-fast); }
.info-line a:hover { color: var(--lime); }
.info-line .lbl {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.social-row {
  display: flex;
  gap: var(--space-2);
}
.social-row a {
  width: 44px; height: 44px;
  border: 1.5px solid currentColor;
  border-radius: var(--r-pill);
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: color var(--t-fast), background var(--t-fast), transform var(--t-fast);
  opacity: 0.65;
}
.social-row a:hover {
  background: var(--accent);
  color: var(--surface);
  border-color: var(--accent);
  transform: translateY(-2px);
  opacity: 1;
}
.social-row a svg { width: 16px; height: 16px; }

/* In dark info-block */
.info-block .social-row a {
  color: var(--surface);
  border-color: rgba(255, 255, 255, 0.3);
  opacity: 0.85;
}
.info-block .social-row a:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); }

/* =========================================================================
   Contact page:Direct Contact redesign
   ========================================================================= */
.contact-direct-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--space-9);
}

.contact-direct-head h2 {
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-5);
}

.contact-direct-head .divider-gold { margin: 0 auto var(--space-5); }

.contact-direct-head .lead {
  max-width: 60ch;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.75);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin-bottom: var(--space-9);
}

@media (max-width: 960px) {
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .contact-cards { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
}

.contact-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-lg);
  color: var(--surface);
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--t-med) var(--ease-spring),
              border-color var(--t-med) var(--ease-out),
              background var(--t-med) var(--ease-out),
              box-shadow var(--t-med) var(--ease-out);
}

/* Lime glow that fades in on hover, behind the card */
.contact-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, rgba(191, 255, 0, 0.18), transparent 65%);
  opacity: 0;
  z-index: -1;
  transition: opacity var(--t-med) var(--ease-out);
  pointer-events: none;
}

/* Diagonal lime sweep that wipes across on hover */
.contact-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(191, 255, 0, 0.08) 50%, transparent 65%);
  transform: translateX(-130%);
  transition: transform 900ms var(--ease-out);
  pointer-events: none;
  z-index: 0;
}

.contact-card > * { position: relative; z-index: 1; }

.contact-card:hover {
  transform: translateY(-8px) rotate(-0.6deg);
  border-color: var(--accent);
  background: rgba(191, 255, 0, 0.04);
  box-shadow: 10px 10px 0 0 var(--accent), 0 28px 60px rgba(0, 0, 0, 0.45);
}

.contact-card:hover::before { opacity: 1; }
.contact-card:hover::after  { transform: translateX(130%); }

.contact-card--static { cursor: default; }
.contact-card--static:hover {
  transform: translateY(-8px) rotate(0.6deg);
}

.contact-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: var(--r-md);
  background: rgba(191, 255, 0, 0.10);
  border: 1.5px solid rgba(191, 255, 0, 0.35);
  color: var(--accent);
  margin-bottom: var(--space-4);
  transition: background var(--t-med) var(--ease-out),
              transform var(--t-med) var(--ease-spring),
              border-color var(--t-med) var(--ease-out);
}

.contact-card-icon svg { width: 26px; height: 26px; }

.contact-card:hover .contact-card-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
  transform: rotate(-8deg) scale(1.05);
}

.contact-card-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-card-value {
  font-family: var(--font-display);
  font-size: clamp(0.82rem, 2vw, 1.2rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--surface);
  word-break: break-word;
}

/* Email-specific:never wrap, ellipsis as a final safety on extreme widths */
.contact-card-value--email {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: normal;
}

.contact-card-cta {
  margin-top: auto;
  padding-top: var(--space-4);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--t-med) var(--ease-out);
}

.contact-card-cta .arrow {
  display: inline-block;
  transition: transform var(--t-med) var(--ease-spring);
}

.contact-card:hover .contact-card-cta { color: var(--accent); }
.contact-card:hover .contact-card-cta .arrow { transform: translateX(6px); }
.contact-card--static:hover .contact-card-cta { color: rgba(255, 255, 255, 0.7); }
.contact-card--static:hover .contact-card-cta .arrow { transform: none; }

/* Foot block:CTA + hours + socials */
.contact-direct-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
  text-align: center;
}

.contact-direct-foot .btn-filled {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
}

.contact-direct-foot .btn-filled:hover {
  background: var(--surface);
  border-color: var(--surface);
  color: var(--ink);
  box-shadow: 0 14px 40px rgba(191, 255, 0, 0.35);
}

.contact-hours {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}

.contact-socials {
  justify-content: center;
  gap: var(--space-3);
}

.contact-socials a {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.25);
  opacity: 0.9;
}

.contact-socials a:hover {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-3px) rotate(-4deg);
  opacity: 1;
}

/* =========================================================================
   Service pages:Outcomes section (dark, lime-accented glass cards)
   ========================================================================= */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
@media (max-width: 960px) {
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .outcomes-grid { grid-template-columns: 1fr; max-width: 580px; margin: 0 auto; }
}

.outcome-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-lg);
  color: var(--surface);
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--t-med) var(--ease-spring),
              border-color var(--t-med) var(--ease-out),
              background var(--t-med) var(--ease-out),
              box-shadow var(--t-med) var(--ease-out);
}

/* Lime glow halo, fades in on hover */
.outcome-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, rgba(191, 255, 0, 0.16), transparent 65%);
  opacity: 0;
  z-index: -1;
  transition: opacity var(--t-med) var(--ease-out);
  pointer-events: none;
}

.outcome-card:hover {
  transform: translateY(-8px) rotate(-0.4deg);
  border-color: var(--accent);
  background: rgba(191, 255, 0, 0.04);
  box-shadow: 10px 10px 0 0 var(--accent), 0 28px 60px rgba(0, 0, 0, 0.45);
}
.outcome-card:hover::before { opacity: 1; }

.outcome-card-num {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-2);
}

.outcome-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: rgba(191, 255, 0, 0.10);
  border: 1.5px solid rgba(191, 255, 0, 0.32);
  color: var(--accent);
  margin-bottom: var(--space-4);
  transition: background var(--t-med) var(--ease-out),
              transform var(--t-med) var(--ease-spring);
}
.outcome-card-icon svg { width: 24px; height: 24px; }
.outcome-card:hover .outcome-card-icon {
  background: var(--accent);
  color: var(--ink);
  transform: rotate(-8deg) scale(1.06);
}

.outcome-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.7vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--surface);
}

.outcome-card p {
  font-size: 0.96rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

/* =========================================================================
   Service pages:Rich "What's Included" cards (light, lime-accented)
   ========================================================================= */
.included-deep {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
@media (max-width: 760px) { .included-deep { grid-template-columns: 1fr; } }

.included-deep-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: clamp(1.4rem, 2.3vw, 1.85rem);
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--r-md);
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--t-med) var(--ease-spring),
              box-shadow var(--t-med) var(--ease-out);
}

/* Lime fill sweep from left on hover */
.included-deep-item::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 6px;
  background: var(--accent);
  transform-origin: top;
  transform: scaleY(0);
  transition: transform var(--t-med) var(--ease-out);
  z-index: 0;
}

.included-deep-item:hover {
  transform: translateY(-4px);
  box-shadow: 8px 8px 0 0 var(--accent);
}
.included-deep-item:hover::before { transform: scaleY(1); }

.included-deep-num {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--accent);
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
  transition: transform var(--t-med) var(--ease-spring);
}

.included-deep-item:hover .included-deep-num {
  transform: rotate(-8deg) scale(1.08);
}

.included-deep-body {
  flex: 1 1 auto;
  position: relative;
  z-index: 1;
}

.included-deep-body h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.included-deep-body p {
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--muted);
}

/* =========================================================================
   Footer:dark band with bold accent top
   ========================================================================= */
.site-footer {
  position: relative;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding-top: var(--space-9);
  padding-bottom: var(--space-5);
  border-top: 6px solid var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  margin-bottom: var(--space-8);
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand img {
  height: 36px;
  margin-bottom: var(--space-5);
}
.footer-brand p { color: rgba(255, 255, 255, 0.6); max-width: 36ch; font-size: 0.95rem; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: var(--space-5);
  font-weight: 600;
}
.footer-col ul li { margin-bottom: var(--space-3); }
.footer-col a { color: var(--surface); font-size: 0.95rem; transition: color var(--t-fast); }
.footer-col a:hover { color: var(--lime); }
.footer-col p { font-size: 0.95rem; margin-bottom: var(--space-3); color: rgba(255, 255, 255, 0.7); }

.site-footer .social-row a {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.25);
  opacity: 1;
}
.site-footer .social-row a:hover {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--t-fast);
}
.footer-legal a:hover { color: var(--lime); }

/* =========================================================================
   Article (Insights) body:shared across insights.html + each article
   ========================================================================= */
.article-page { max-width: 1040px; margin: 0 auto; }
.article-page .article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
  margin-bottom: var(--space-6);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.article-page .article-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255, 255, 255, 0.3); display: inline-block; }
.article-page .article-lead {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-7);
}
.article-page h2 {
  font-size: clamp(1.5rem, 2.6vw, 1.95rem);
  margin: var(--space-8) 0 var(--space-3);
  color: var(--surface);
  line-height: 1.25;
}
.article-page h3 {
  font-size: 1.15rem;
  margin: var(--space-5) 0 var(--space-2);
  color: var(--surface);
}
.article-page p, .article-page li {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  font-size: 1.02rem;
}
.article-page p { margin-bottom: var(--space-4); }
.article-page ul, .article-page ol { padding-left: 1.4rem; margin: var(--space-3) 0 var(--space-5); }
.article-page li { margin-bottom: 0.6rem; }
.article-page strong { color: rgba(255, 255, 255, 0.96); font-weight: 600; }
.article-page em { color: rgba(255, 255, 255, 0.88); }
.article-page a {
  color: var(--accent, #d4af37);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t-fast);
}
.article-page a:hover { color: var(--surface); }
.article-page blockquote {
  border-left: 3px solid var(--accent);
  padding: var(--space-2) 0 var(--space-2) var(--space-5);
  margin: var(--space-6) 0;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
}
.article-page hr {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: var(--space-8) 0;
}
.article-page .pull-callout {
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(212, 175, 55, 0.06);
  padding: var(--space-5);
  border-radius: 12px;
  margin: var(--space-6) 0;
}
.article-page .pull-callout p:last-child { margin-bottom: 0; }

/* Related articles strip at end of each article */
.related-articles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-6);
}
.related-card {
  display: block;
  padding: var(--space-5);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color var(--t-fast), transform var(--t-fast), background var(--t-fast);
}
.related-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}
.related-card .eyebrow-num { color: var(--accent); font-size: 0.78rem; letter-spacing: 0.1em; }
.related-card h4 { color: var(--surface); margin: var(--space-2) 0 var(--space-2); font-size: 1.1rem; line-height: 1.35; }
.related-card p { color: rgba(255, 255, 255, 0.6); font-size: 0.92rem; margin: 0; }
.related-card .arrow-link { color: var(--accent); margin-top: var(--space-3); display: inline-block; font-size: 0.88rem; }

.leave-review {
  text-align: center;
  margin-top: var(--space-6);
  font-size: 0.95rem;
  color: var(--muted);
}
.leave-review a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.leave-review a:hover { opacity: 0.85; }

/* =========================================================================
   Reveal animations:fade-up, slide-in-left, slide-in-right
   ========================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.reveal-left  { transform: translateX(-48px); }
.reveal.reveal-right { transform: translateX( 48px); }
.reveal.reveal-left.is-visible,
.reveal.reveal-right.is-visible { transform: translateX(0); }
.reveal.reveal-scale { transform: translateY(20px) scale(0.96); }
.reveal.reveal-scale.is-visible { transform: translateY(0) scale(1); }

.reveal.delay-1 { transition-delay: 80ms; }
.reveal.delay-2 { transition-delay: 160ms; }
.reveal.delay-3 { transition-delay: 240ms; }
.reveal.delay-4 { transition-delay: 320ms; }

/* =========================================================================
   Page transitions
   ========================================================================= */
body {
  transition: opacity 280ms var(--ease-out);
  opacity: 1;
}
body.is-fading-out { opacity: 0; }
body.is-fading-in  { opacity: 0; }

/* =========================================================================
   Hero v3:typographic, dark, cursor parallax
   ========================================================================= */
:root {
  --hero-bg: #0A0A0A;
  --hero-ice: #F8F8F8;
  --hero-lime: #BFFF00;
}

.hero-typographic {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  width: 100%;
  padding: calc(var(--nav-height) + 2rem) var(--container-pad) 6rem;
  background: var(--hero-bg);
  color: var(--hero-ice);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  isolation: isolate;
}

@media (max-width: 760px) {
  .hero-typographic {
    min-height: 0;
    padding-top: calc(var(--nav-height) + 2.25rem);
    padding-bottom: 3rem;
    justify-content: flex-start;
    gap: 1.25rem;
  }
}

/* Hero grid texture is now drawn by the shared animated canvas (.bg-grid) */

/* Ghost word:large outlined word behind the headline */
.hero-ghost {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(220px, 34vw, 580px);
  letter-spacing: -0.07em;
  line-height: 0.82;
  color: var(--hero-ice);
  opacity: 0.06;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
  user-select: none;
  text-transform: uppercase;
  --tx: 0px; --ty: 0px;
  transform: translate(-50%, -50%) translate3d(var(--tx), var(--ty), 0);
  will-change: transform;
}

.hero-stage {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Prominent centred CTA:lime pill with magnetic + spotlight cursor effects */
.hero-cta-prominent {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: clamp(2rem, 4vw, 3.25rem);
  padding: 1.25rem 2.6rem;
  background: var(--hero-lime, #BFFF00);
  color: var(--hero-bg, #0A0A0A);
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 1.05vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 2px solid var(--hero-lime, #BFFF00);
  border-radius: var(--r-pill);
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  z-index: 5;
  white-space: nowrap;

  /* Cursor-driven custom props (JS sets these) */
  --mx: 50%;
  --my: 50%;
  --magnet-x: 0px;
  --magnet-y: 0px;

  transform: translate3d(var(--magnet-x), var(--magnet-y), 0);
  transition: box-shadow 400ms var(--ease-out);
  box-shadow:
    0 8px 24px rgba(191, 255, 0, 0.28),
    0 0 0 0 rgba(191, 255, 0, 0);

  /* Reveal:uses `scale` (separate from transform) so it doesn't clobber magnet */
  scale: 0.92;
  opacity: 0;
  animation: heroCtaReveal 700ms 1.4s var(--ease-out) forwards;
}

/* Spotlight that follows the cursor inside the button */
.hero-cta-prominent::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle 140px at var(--mx) var(--my),
    rgba(255, 255, 255, 0.55),
    rgba(255, 255, 255, 0) 60%
  );
  opacity: 0;
  transition: opacity 280ms ease;
  pointer-events: none;
  border-radius: inherit;
  z-index: 0;
}

/* Outer lime glow halo */
.hero-cta-prominent::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: var(--hero-lime, #BFFF00);
  filter: blur(22px);
  opacity: 0.32;
  z-index: -1;
  transition: opacity 400ms ease, filter 400ms ease;
  pointer-events: none;
}

.hero-cta-prominent > * { position: relative; z-index: 1; }

.hero-cta-prominent:hover {
  box-shadow:
    0 18px 50px rgba(191, 255, 0, 0.55),
    0 0 0 6px rgba(191, 255, 0, 0.12);
}
.hero-cta-prominent:hover::before { opacity: 1; }
.hero-cta-prominent:hover::after  { opacity: 0.7; filter: blur(30px); }

.hero-cta-prominent .arrow {
  display: inline-block;
  font-weight: 800;
  transition: transform 400ms var(--ease-spring);
}
.hero-cta-prominent:hover .arrow { transform: translateX(6px); }

@keyframes heroCtaReveal {
  to { opacity: 1; scale: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-cta-prominent { animation: none; opacity: 1; scale: 1; }
}

/* Stacked headline */
.hero-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(0.4rem, 1vw, 1rem);
  font-family: var(--font-display);
}

.hero-stack--center {
  align-items: center;
  text-align: center;
  justify-content: center;
}

/* Slide-in slot wrappers:outer element is animated by CSS,
   inner .hero-row is parallaxed by JS. Two transform owners, zero conflict. */
.hero-slot {
  display: block;
  will-change: transform, opacity;
}
.hero-slot--slide-left  { animation: heroSlideInLeft  1.05s 0.18s var(--ease-out) both; }
.hero-slot--slide-right { animation: heroSlideInRight 1.05s 0.18s var(--ease-out) both; }

@keyframes heroSlideInLeft {
  from { opacity: 0; transform: translate3d(-110vw, 0, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes heroSlideInRight {
  from { opacity: 0; transform: translate3d(110vw, 0, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}

.hero-row {
  position: static;
  display: block;
  font-family: 'Inter', 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 900;
  font-size: clamp(3.25rem, 9vw, 9.25rem);
  letter-spacing: -0.045em;
  color: var(--hero-ice);
  line-height: 1;
  white-space: nowrap;
  --tx: 0px; --ty: 0px;
  transform: translate3d(var(--tx), var(--ty), 0);
  will-change: transform;
}

.hero-row--right  { text-align: right; }
.hero-row--indent { padding-left: clamp(2rem, 10vw, 9rem); }
.hero-row--offset { padding-left: clamp(1rem, 5vw, 5rem); }

/* Lime outlined italic:the highlight phrase */
.hero-row--lime {
  color: transparent;
  -webkit-text-stroke: 2px var(--hero-lime);
  font-style: italic;
  letter-spacing: -0.035em;
}
@supports not (-webkit-text-stroke: 2px black) {
  .hero-row--lime { color: var(--hero-lime); }
}

@media (max-width: 720px) {
  .hero-row { white-space: normal; font-size: clamp(2.8rem, 13vw, 5rem); }
  .hero-row--indent { padding-left: 6vw; }
  .hero-row--offset { padding-left: 0; }
  .hero-row--lime { -webkit-text-stroke-width: 1.5px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slot--slide-left,
  .hero-slot--slide-right { animation: none; opacity: 1; }
}

/* Hero ticker (legacy:kept in case re-introduced inside hero) */
.hero-ticker {
  position: absolute;
  bottom: clamp(7rem, 14vh, 11rem);
  left: 0; right: 0;
  width: 100%;
  overflow: hidden;
  padding: 0.65rem 0;
  border-top: 1px solid rgba(248, 248, 248, 0.1);
  border-bottom: 1px solid rgba(248, 248, 248, 0.1);
  z-index: 1;
}
.hero-ticker-inner {
  display: flex;
  width: max-content;
  animation: heroTickerScroll 60s linear infinite;
}
.hero-ticker-inner span {
  display: inline-block;
  padding: 0 1rem;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--hero-lime);
  white-space: nowrap;
}

/* Section-level tagline strip:same visual language as the hero ticker,
   but rendered as a standalone dark band between sections. */
.tagline-strip {
  position: relative;
  background: var(--ink);
  overflow: hidden;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(248, 248, 248, 0.08);
  border-bottom: 1px solid rgba(248, 248, 248, 0.08);
}
.tagline-strip-inner {
  display: flex;
  width: max-content;
  animation: heroTickerScroll 60s linear infinite;
}
.tagline-strip-inner span {
  display: inline-block;
  padding: 0 1rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--hero-lime, #BFFF00);
  white-space: nowrap;
}

@keyframes heroTickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* CTA bottom-left */
.hero-cta {
  position: absolute;
  bottom: 3rem;
  left: var(--container-pad);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--hero-ice);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding-bottom: 0.7rem;
  z-index: 5;
}
.hero-cta::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--hero-lime);
  transition: width 900ms var(--ease-out);
}
.hero-cta.is-revealed::after,
.hero-cta:hover::after { width: 100%; }
.hero-cta .arrow {
  display: inline-block;
  transition: transform var(--t-med) var(--ease-spring);
}
.hero-cta:hover .arrow { transform: translateX(6px); }

/* Scroll cue bottom-right */
.hero-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(248, 248, 248, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 5;
}
/* Vertical line with a light droplet that slides downward */
.hero-cue::after {
  content: '';
  width: 1px;
  height: 44px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(248, 248, 248, 0.7) 50%,
    transparent 100%
  );
  background-size: 100% 200%;
  background-position: 0 -100%;
  animation: cueDown 2s ease-in-out infinite;
}
@keyframes cueDown {
  0%   { background-position: 0 -100%; }
  100% { background-position: 0 200%; }
}

@media (max-width: 640px) {
  .hero-cue { display: none; }
  .hero-cta { font-size: 0.75rem; letter-spacing: 0.18em; }
}

/* Disable cursor parallax on touch */
@media (hover: none) {
  .hero-typographic [data-depth] {
    --tx: 0px !important;
    --ty: 0px !important;
  }
}

/* =========================================================================
   Utilities
   ========================================================================= */
.text-center { text-align: center; }
.mt-6 { margin-top: var(--space-6); }
.mt-7 { margin-top: var(--space-7); }
.mt-8 { margin-top: var(--space-8); }
.muted { color: var(--muted); }

@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;
  }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================================
   DARK THEME:predominantly-dark section bands
   Section bands flipped to near-black; on-band text recoloured to stay
   readable. Cards keep their light surfaces.
   ========================================================================= */

/* --- Subhero band (interior pages):whole band is on-band text --- */
.subhero h1,
.subhero h2 { color: var(--surface); }
.subhero .lead,
.subhero p { color: rgba(255, 255, 255, 0.72); }
.subhero .breadcrumb,
.subhero .breadcrumb a { color: rgba(255, 255, 255, 0.55); }
.subhero .breadcrumb a:hover,
.subhero .breadcrumb .sep { color: var(--surface); }
.subhero .overline {
  color: var(--surface);
  border-color: rgba(255, 255, 255, 0.4);
}

/* --- Section heads on the dark bands --- */
.section-dark .section-head h2,
.section-dark .contact-direct-head h2,
.bg-secondary .section-head h2 { color: var(--surface); }
.section-dark .section-head .lead,
.section-dark .contact-direct-head .lead,
.bg-secondary .section-head .lead { color: rgba(255, 255, 255, 0.72); }
.section-dark .section-head .overline,
.section-dark .contact-direct-head .overline,
.bg-secondary .section-head .overline {
  color: var(--surface);
  border-color: rgba(255, 255, 255, 0.4);
}

/* --- Two-column editorial split (The Difference, About story) --- */
.section-dark .split .overline {
  color: var(--surface);
  border-color: rgba(255, 255, 255, 0.4);
}
.section-dark .split h2 { color: var(--surface); }
.section-dark .split .lead,
.section-dark .split p { color: rgba(255, 255, 255, 0.72); }
.section-dark .numbered-list li h4 { color: var(--surface); }
.section-dark .numbered-list li p { color: rgba(255, 255, 255, 0.6); }
.section-dark .numbered-list li::before { color: var(--surface); }

/* Ghost button sitting directly on a dark band */
.section-dark .btn-ghost {
  color: var(--surface);
  border-color: rgba(255, 255, 255, 0.55);
}
.section-dark .btn-ghost:hover {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--surface);
}

/* --- Service rows (services.html):on-band rows, not cards --- */
.section-dark .service-row .num,
.section-dark .service-row h3,
.section-dark .service-row .arrow-link { color: var(--surface); }
.section-dark .service-row p { color: rgba(255, 255, 255, 0.62); }
.section-dark .service-row:hover .num,
.section-dark .service-row:hover h3,
.section-dark .service-row:hover p,
.section-dark .service-row:hover .arrow-link { color: var(--ink); }

/* --- Stray on-band helper text (contact "prefer to book" line) --- */
.section-dark .contact-grid > div > .muted { color: rgba(255, 255, 255, 0.6); }

/* =========================================================================
   Animated grid backdrop:one fixed canvas drawn behind the whole site
   (drift + cursor ripples handled in js/main.js).
   ========================================================================= */
.bg-grid {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  display: block;
}
/* Dark bands go transparent so the single canvas grid shows through them */
.section-dark,
.bg-secondary,
.subhero,
.hero-typographic,
.marquee,
.tagline-strip,
.stats-bar,
.cta-block,
.site-footer {
  background: transparent;
}

/* =========================================================================
   Services dropdown (desktop)
   ========================================================================= */
.nav-item.has-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.site-nav .nav-links .nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.nav-caret {
  width: 11px;
  height: 7px;
  transition: transform 0.42s var(--ease-spring);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 400px;
  max-width: calc(100vw - 32px);
  margin-left: -200px;
  padding-top: 14px;            /* invisible hover bridge */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s var(--ease-out),
              visibility 0s linear 0.28s;
  z-index: 120;
}

.nav-dropdown-panel {
  position: relative;
  padding: 1.1rem 1.1rem 0.9rem;
  background: rgba(14, 14, 14, 0.96);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(248, 248, 248, 0.08);
  border-radius: var(--r-lg);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(191, 255, 0, 0.04),
    inset 0 1px 0 rgba(248, 248, 248, 0.05);
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px) scale(0.97);
  transform-origin: top center;
  transition: opacity 0.32s var(--ease-out),
              transform 0.4s var(--ease-spring);
}

/* Lime hairline along the top edge */
.nav-dropdown-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 18%;
  right: 18%;
  height: 1px;
  background: linear-gradient(90deg,
              transparent,
              rgba(191, 255, 0, 0.55) 50%,
              transparent);
}

/* Soft lime corner glow */
.nav-dropdown-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at center,
              rgba(191, 255, 0, 0.18),
              rgba(191, 255, 0, 0) 65%);
  pointer-events: none;
  filter: blur(8px);
}

.nav-dropdown-eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248, 248, 248, 0.5);
  padding: 0.2rem 0.6rem 0.7rem;
  position: relative;
  z-index: 1;
}

.nav-dropdown-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  z-index: 1;
}

.nav-dropdown-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 0.75rem;
  border-radius: 14px;
  color: var(--hero-ice, #F8F8F8);
  text-decoration: none;
  transition: background 0.22s var(--ease-out),
              transform 0.32s var(--ease-spring);
  overflow: hidden;
}

.nav-dropdown-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 2px;
  border-radius: 2px;
  background: var(--accent);
  opacity: 0;
  transform: scaleY(0.4);
  transform-origin: center;
  transition: opacity 0.24s var(--ease-out),
              transform 0.36s var(--ease-spring);
}

.nav-dropdown-num {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
  opacity: 0.7;
  transition: opacity 0.22s var(--ease-out),
              color 0.22s var(--ease-out);
}

.nav-dropdown-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.nav-dropdown-title {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--hero-ice, #F8F8F8);
  line-height: 1.1;
  transition: color 0.22s var(--ease-out);
}

.nav-dropdown-desc {
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(248, 248, 248, 0.55);
  letter-spacing: -0.005em;
  transition: color 0.22s var(--ease-out);
}

.nav-dropdown-arrow {
  font-size: 1rem;
  color: rgba(248, 248, 248, 0.35);
  transform: translateX(-6px);
  opacity: 0;
  transition: transform 0.28s var(--ease-spring),
              opacity 0.22s var(--ease-out),
              color 0.22s var(--ease-out);
}

/* Item hover/focus:white pill, black text (mirrors the trigger pattern) */
.nav-dropdown-item:hover,
.nav-dropdown-item:focus-visible {
  background: var(--hero-ice, #F8F8F8);
  outline: none;
}
.nav-dropdown-item:hover .nav-dropdown-title,
.nav-dropdown-item:focus-visible .nav-dropdown-title { color: var(--hero-bg, #0A0A0A); }
.nav-dropdown-item:hover .nav-dropdown-desc,
.nav-dropdown-item:focus-visible .nav-dropdown-desc { color: rgba(10, 10, 10, 0.62); }
.nav-dropdown-item:hover .nav-dropdown-num,
.nav-dropdown-item:focus-visible .nav-dropdown-num {
  color: var(--hero-bg, #0A0A0A);
  opacity: 1;
}
.nav-dropdown-item:hover .nav-dropdown-arrow,
.nav-dropdown-item:focus-visible .nav-dropdown-arrow {
  transform: translateX(0);
  opacity: 1;
  color: var(--hero-bg, #0A0A0A);
}
.nav-dropdown-item:hover::before,
.nav-dropdown-item:focus-visible::before {
  opacity: 1;
  transform: scaleY(1);
}

/* Current page in the dropdown (resting state on dark panel) */
.nav-dropdown-item.is-current {
  background: rgba(191, 255, 0, 0.07);
}
.nav-dropdown-item.is-current::before {
  opacity: 1;
  transform: scaleY(1);
}
.nav-dropdown-item.is-current .nav-dropdown-title { color: var(--accent); }
.nav-dropdown-item.is-current .nav-dropdown-num { opacity: 1; }

/* Current + hover:let the white pill win over the lime wash */
.nav-dropdown-item.is-current:hover,
.nav-dropdown-item.is-current:focus-visible {
  background: var(--hero-ice, #F8F8F8);
}
.nav-dropdown-item.is-current:hover .nav-dropdown-title,
.nav-dropdown-item.is-current:focus-visible .nav-dropdown-title { color: var(--hero-bg, #0A0A0A); }
.nav-dropdown-item.is-current:hover .nav-dropdown-num,
.nav-dropdown-item.is-current:focus-visible .nav-dropdown-num { color: var(--hero-bg, #0A0A0A); }
.nav-dropdown-item.is-current:hover .nav-dropdown-desc,
.nav-dropdown-item.is-current:focus-visible .nav-dropdown-desc { color: rgba(10, 10, 10, 0.62); }

/* Footer link */
.nav-dropdown-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.65rem;
  padding: 0.65rem 0.85rem;
  border-top: 1px solid rgba(248, 248, 248, 0.07);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: rgba(248, 248, 248, 0.7);
  text-decoration: none;
  border-radius: 0 0 12px 12px;
  position: relative;
  z-index: 1;
  transition: color 0.22s var(--ease-out),
              background 0.22s var(--ease-out);
}
.nav-dropdown-foot .arrow {
  transition: transform 0.28s var(--ease-spring);
}
.nav-dropdown-foot:hover {
  color: var(--accent);
  background: rgba(191, 255, 0, 0.05);
}
.nav-dropdown-foot:hover .arrow { transform: translateX(4px); }

/* --- Open states ---------------------------------------------------------- */

/* JS-driven (touch / keyboard click) */
.has-dropdown.is-open > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.28s var(--ease-out),
              visibility 0s linear 0s;
}
.has-dropdown.is-open > .nav-dropdown > .nav-dropdown-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.site-nav .nav-links .has-dropdown.is-open > .nav-trigger,
.site-nav .nav-links .has-dropdown.is-open > .nav-trigger.is-active {
  background: var(--hero-ice, #F8F8F8);
  color: var(--hero-bg, #0A0A0A);
}
.has-dropdown.is-open > .nav-trigger .nav-caret { transform: rotate(180deg); }

/* Hover-capable devices: pure CSS reveal on hover + focus-within */
@media (hover: hover) and (pointer: fine) {
  .has-dropdown:hover > .nav-dropdown,
  .has-dropdown:focus-within > .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.28s var(--ease-out),
                visibility 0s linear 0s;
  }
  .has-dropdown:hover > .nav-dropdown > .nav-dropdown-panel,
  .has-dropdown:focus-within > .nav-dropdown > .nav-dropdown-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  .site-nav .nav-links .has-dropdown:hover > .nav-trigger,
  .site-nav .nav-links .has-dropdown:focus-within > .nav-trigger,
  .site-nav .nav-links .has-dropdown:hover > .nav-trigger.is-active,
  .site-nav .nav-links .has-dropdown:focus-within > .nav-trigger.is-active {
    background: var(--hero-ice, #F8F8F8);
    color: var(--hero-bg, #0A0A0A);
  }
  .has-dropdown:hover > .nav-trigger .nav-caret,
  .has-dropdown:focus-within > .nav-trigger .nav-caret { transform: rotate(180deg); }
}

/* Staggered item fade-in once the panel is visible */
.nav-dropdown-list li {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.32s var(--ease-out),
              transform 0.4s var(--ease-spring);
}
.has-dropdown.is-open .nav-dropdown-list li,
.has-dropdown:hover .nav-dropdown-list li,
.has-dropdown:focus-within .nav-dropdown-list li {
  opacity: 1;
  transform: translateY(0);
}
.has-dropdown .nav-dropdown-list li:nth-child(1) { transition-delay: 0.06s; }
.has-dropdown .nav-dropdown-list li:nth-child(2) { transition-delay: 0.10s; }
.has-dropdown .nav-dropdown-list li:nth-child(3) { transition-delay: 0.14s; }
.has-dropdown .nav-dropdown-list li:nth-child(4) { transition-delay: 0.18s; }

@media (prefers-reduced-motion: reduce) {
  .nav-caret,
  .nav-dropdown-panel,
  .nav-dropdown,
  .nav-dropdown-list li,
  .nav-dropdown-arrow,
  .nav-dropdown-item::before { transition: none !important; }
  .nav-dropdown-list li { transition-delay: 0s !important; }
}

/* =========================================================================
   Mobile services accordion (inside mobile menu)
   ========================================================================= */
.mobile-services { width: 100%; text-align: center; }

.mobile-services-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 9vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--hero-ice, #F8F8F8);
  background: none;
  padding: 0;
  cursor: pointer;
  transition: color var(--t-fast);
}
.mobile-services-toggle:hover { color: var(--hero-lime, #BFFF00); }

.mobile-services-caret {
  width: 0.55em;
  height: 0.34em;
  color: var(--accent);
  transition: transform 0.4s var(--ease-spring);
}
.mobile-services-toggle[aria-expanded="true"] .mobile-services-caret { transform: rotate(180deg); }

.mobile-services-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height 0.42s var(--ease-out),
              opacity 0.3s var(--ease-out),
              margin-top 0.42s var(--ease-out);
}
.mobile-services-list.is-open {
  max-height: 520px;
  opacity: 1;
  margin-top: 1rem;
}

.mobile-menu .mobile-services-list a {
  display: inline-flex;
  align-items: baseline;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 4.5vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(248, 248, 248, 0.78);
  transition: color var(--t-fast), transform var(--t-fast);
}
.mobile-menu .mobile-services-list a:hover {
  color: var(--hero-lime, #BFFF00);
  transform: translateX(2px);
}

.mobile-services-num {
  font-size: 0.72em;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  opacity: 0.75;
}

.mobile-menu .mobile-services-list a.mobile-services-all {
  margin-top: 0.35rem;
  font-size: clamp(0.9rem, 3.2vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0;
  color: var(--accent);
  text-transform: none;
}

/* =========================================================================
   FAQ accordion:neon-themed, animated
   ========================================================================= */
.faq-list {
  max-width: 860px;
  margin: var(--space-7) auto 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  counter-reset: faq;
}

.faq-item {
  counter-increment: faq;
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--r-md);
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color var(--t-med) var(--ease-out),
              background var(--t-med) var(--ease-out),
              box-shadow var(--t-med) var(--ease-out),
              transform 220ms var(--ease-out);
}

/* Neon accent stripe:grows in on hover/open */
.faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 0;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(191, 255, 0, 0.85), 0 0 28px rgba(191, 255, 0, 0.45);
  transform: translateY(-50%);
  transition: height 380ms var(--ease-spring);
  border-radius: 0 2px 2px 0;
}

/* Soft scanning glow that sweeps across on hover */
.faq-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 38%,
    rgba(191, 255, 0, 0.08) 50%,
    transparent 62%,
    transparent 100%
  );
  background-size: 250% 100%;
  background-position: 100% 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med) var(--ease-out), background-position 900ms var(--ease-out);
}

.faq-item:hover {
  border-color: rgba(191, 255, 0, 0.45);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35),
              0 0 0 1px rgba(191, 255, 0, 0.20) inset;
}
.faq-item:hover::before { height: 56%; }
.faq-item:hover::after {
  opacity: 1;
  background-position: 0 0;
}

.faq-item[open] {
  border-color: rgba(191, 255, 0, 0.55);
  background: rgba(191, 255, 0, 0.045);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45),
              0 0 0 1px rgba(191, 255, 0, 0.30) inset,
              0 0 32px rgba(191, 255, 0, 0.10);
}
.faq-item[open]::before {
  height: 78%;
  animation: faq-pulse 2.4s var(--ease-in-out) infinite;
}

@keyframes faq-pulse {
  0%, 100% {
    box-shadow: 0 0 14px rgba(191, 255, 0, 0.85), 0 0 28px rgba(191, 255, 0, 0.45);
  }
  50% {
    box-shadow: 0 0 22px rgba(191, 255, 0, 1), 0 0 44px rgba(191, 255, 0, 0.65);
  }
}

.faq-q {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  padding: 1.35rem 1.6rem 1.35rem 2rem;
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  cursor: pointer;
  list-style: none;
  user-select: none;
  position: relative;
  z-index: 1;
  transition: color var(--t-fast) var(--ease-out);
}
.faq-q,
.faq-q .faq-q-text { color: #FFFFFF; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { display: none; content: ""; }
.faq-q:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

/* Numbered badge:01, 02, etc., glowing on open */
.faq-q::before {
  content: counter(faq, decimal-leading-zero);
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  opacity: 0.6;
  min-width: 2ch;
  transition: opacity var(--t-med) var(--ease-out),
              text-shadow var(--t-med) var(--ease-out),
              transform var(--t-med) var(--ease-spring);
}
.faq-item:hover .faq-q::before { opacity: 0.95; }
.faq-item[open] .faq-q::before {
  opacity: 1;
  text-shadow: 0 0 10px rgba(191, 255, 0, 0.75);
  transform: translateY(-1px);
}

/* Question text wrapper grows; arrow icon sits at the end */
.faq-q-text {
  flex: 1 1 auto;
  position: relative;
}
.faq-q-text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(191, 255, 0, 0.7);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 380ms var(--ease-out);
}
.faq-item:hover .faq-q-text::after { transform: scaleX(0.35); }
.faq-item[open] .faq-q-text::after { transform: scaleX(1); }

.faq-icon {
  flex: 0 0 auto;
  width: 1.75rem;
  height: 1.75rem;
  display: inline-grid;
  place-items: center;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, 0.30);
  color: var(--surface);
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 380ms var(--ease-spring),
              background var(--t-med) var(--ease-out),
              border-color var(--t-med) var(--ease-out),
              color var(--t-med) var(--ease-out),
              box-shadow var(--t-med) var(--ease-out);
}
.faq-item:hover .faq-icon {
  border-color: var(--accent);
  color: var(--accent);
}
.faq-item[open] .faq-icon {
  transform: rotate(135deg);
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
  box-shadow: 0 0 18px rgba(191, 255, 0, 0.7),
              0 0 36px rgba(191, 255, 0, 0.35);
}

.faq-a {
  padding: 0 1.6rem 1.5rem 2rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.96rem, 1.4vw, 1.04rem);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.faq-a, .faq-a p { color: rgba(255, 255, 255, 0.88); }
.faq-a p + p { margin-top: 0.75rem; }
.faq-a a {
  color: var(--accent);
  border-bottom: 1px solid rgba(191, 255, 0, 0.4);
  transition: border-color var(--t-fast), text-shadow var(--t-fast);
}
.faq-a a:hover {
  border-bottom-color: var(--accent);
  text-shadow: 0 0 8px rgba(191, 255, 0, 0.5);
}

/* Smooth slide-down animation on open */
.faq-item[open] .faq-a {
  animation: faq-slide-down 380ms var(--ease-out);
}
@keyframes faq-slide-down {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stagger the entrance reveals (works with existing .reveal class) */
.faq-list .faq-item { transition-delay: 0s; }
.faq-list.reveal .faq-item:nth-child(1) { transition-delay: 60ms; }
.faq-list.reveal .faq-item:nth-child(2) { transition-delay: 120ms; }
.faq-list.reveal .faq-item:nth-child(3) { transition-delay: 180ms; }
.faq-list.reveal .faq-item:nth-child(4) { transition-delay: 240ms; }
.faq-list.reveal .faq-item:nth-child(5) { transition-delay: 300ms; }
.faq-list.reveal .faq-item:nth-child(6) { transition-delay: 360ms; }

@media (prefers-reduced-motion: reduce) {
  .faq-item,
  .faq-item::before,
  .faq-item::after,
  .faq-icon,
  .faq-q-text::after,
  .faq-q::before,
  .faq-a { transition: none !important; animation: none !important; }
  .faq-item[open]::before { animation: none !important; }
}

