/* =========================================================
   StackLaunch — styles.css
   Palette: near-black #0E0E10 / electric lime #C6F432 / white
   Vibe: modern tech studio (Linear/Vercel adjacent)
   ========================================================= */

:root {
  --ink: #0E0E10;
  --ink-2: #1a1a1d;
  --ink-3: #25252a;
  --lime: #C6F432;
  --lime-2: #d6ff52;
  --white: #ffffff;
  --bg: #ffffff;
  --bg-soft: #fafafa;
  --slate: #6B7280;
  --slate-2: #9CA3AF;
  --line: #E5E7EB;
  --line-dark: #2a2a30;

  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-display: 'Space Grotesk', var(--font-body);
  --font-mono: ui-monospace, 'SF Mono', Menlo, monospace;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(14,14,16,0.06), 0 2px 8px rgba(14,14,16,0.04);
  --shadow-md: 0 10px 30px rgba(14,14,16,0.10);
  --shadow-lg: 0 20px 60px rgba(14,14,16,0.20);
  --shadow-lime: 0 8px 24px rgba(198, 244, 50, 0.35);

  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(12px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.logo-mark { width: 34px; height: 34px; flex-shrink: 0; }
.logo-text-suffix { color: var(--ink); }

.logo-light { color: var(--white); }
.logo-light .logo-text-suffix { color: var(--white); }

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: .94rem;
  font-weight: 500;
}
.nav a { color: var(--slate); transition: color .15s ease; }
.nav a:hover { color: var(--ink); }
.nav .btn { padding: .55rem 1.1rem; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: .5rem;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* =========================================================
   Nav dropdown
   ========================================================= */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  font: inherit;
  font-size: .95rem;
  font-weight: 500;
  color: var(--slate);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: color .15s ease;
}
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger.has-active-child,
.nav-dropdown-trigger[aria-expanded="true"] { color: var(--ink); }
.nav-dropdown-trigger svg { transition: transform .2s ease; }
.nav-dropdown-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: .4rem;
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
  z-index: 100;
}
.nav-dropdown-trigger[aria-expanded="true"] + .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: .7rem .85rem;
  border-radius: 8px;
  font-size: .94rem;
  color: var(--ink);
  font-weight: 500;
  transition: background .12s ease, color .12s ease;
}
.nav-dropdown-menu a:hover { background: var(--bg-soft); color: var(--ink); }
.nav-dropdown-menu a.active {
  background: var(--ink);
  color: var(--lime);
}
.nav-dropdown-divider {
  height: 1px;
  background: var(--line);
  margin: .35rem .25rem;
}
.nav-dropdown-all {
  font-size: .87rem !important;
  color: var(--slate) !important;
  font-family: var(--font-mono);
}
.nav-dropdown-all:hover { color: var(--ink) !important; }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1.4rem;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: .98rem;
  font-family: var(--font-body);
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: var(--shadow-lime);
}
.btn-primary:hover { background: var(--lime-2); }

.btn-secondary {
  background: var(--ink);
  color: var(--white);
}
.btn-secondary:hover { background: var(--ink-2); }

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

.btn-ghost {
  background: var(--ink);
  color: var(--lime);
}
.btn-ghost:hover { background: var(--ink-2); }

.btn-on-dark-primary {
  background: var(--lime);
  color: var(--ink);
}
.btn-on-dark-primary:hover { background: var(--lime-2); }

.btn-block { width: 100%; }

/* =========================================================
   Typography
   ========================================================= */
h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.1;
  margin: 0 0 .75rem;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.4rem, 5.5vw + 1rem, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 2.5vw + 1rem, 2.85rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }
p { margin: 0 0 1rem; color: var(--slate); }

.highlight {
  background: var(--lime);
  color: var(--ink);
  padding: 0 .15em;
  border-radius: 3px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* Eyebrow with live "cursor" dot */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-mono);
  text-transform: lowercase;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--slate);
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--lime);
  border-radius: 2px;
  box-shadow: 0 0 0 4px rgba(198, 244, 50, 0.2);
  animation: pulse 2s ease-in-out infinite;
}
.eyebrow-light { color: var(--slate-2); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(198, 244, 50, 0.15); }
  50% { box-shadow: 0 0 0 7px rgba(198, 244, 50, 0.05); }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(4rem, 10vw, 8rem);
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 1; max-width: 920px; }
.lede {
  font-size: clamp(1.05rem, 1vw + .85rem, 1.3rem);
  color: var(--slate);
  max-width: 680px;
  margin-bottom: 2.25rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-bottom: 3.5rem;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 680px;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.hero-meta div { display: flex; flex-direction: column; }
.hero-meta strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
}
.hero-meta span { font-size: .82rem; color: var(--slate-2); font-family: var(--font-mono); }

.hero-bg {
  position: absolute;
  inset: -20% -20% auto auto;
  width: 60%;
  max-width: 700px;
  aspect-ratio: 1;
  background: radial-gradient(closest-side, rgba(198, 244, 50, 0.18), transparent 65%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

/* =========================================================
   Sections
   ========================================================= */
.section {
  padding: clamp(4rem, 8vw, 7.5rem) 0;
}
.section-head {
  max-width: 760px;
  margin-bottom: 3.5rem;
}
.section-head p { font-size: 1.05rem; }

.section-dark {
  background: var(--ink);
  color: var(--white);
}
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255, 255, 255, 0.7); }

/* =========================================================
   Service cards
   ========================================================= */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--ink);
}
.card-featured {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
.card-featured h3 { color: var(--white); }
.card-featured p { color: rgba(255, 255, 255, 0.75); }
.card-featured:hover { box-shadow: var(--shadow-lg); }
.card-featured::after {
  content: "popular";
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: 0.06em;
  background: var(--lime);
  color: var(--ink);
  padding: .15rem .5rem;
  border-radius: 999px;
  font-weight: 600;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--bg-soft);
  color: var(--ink);
  margin-bottom: 1.25rem;
  border: 1px solid var(--line);
}
.card-featured .card-icon {
  background: rgba(198, 244, 50, 0.12);
  color: var(--lime);
  border-color: rgba(198, 244, 50, 0.25);
}
.card-icon svg { width: 22px; height: 22px; }

.card ul {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}
.card li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: .45rem;
  font-size: .92rem;
  color: var(--slate);
}
.card-featured li { color: rgba(255, 255, 255, 0.75); }
.card li::before {
  content: "›";
  position: absolute;
  left: 0; top: 0;
  color: var(--lime);
  font-weight: 700;
  font-family: var(--font-mono);
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: 1.5rem;
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color .15s ease, border-color .15s ease, gap .15s ease;
}
.card-link:hover { color: var(--ink); border-bottom-color: var(--lime); gap: .55rem; }
.card-featured .card-link { color: var(--lime); }
.card-featured .card-link:hover { border-bottom-color: var(--lime); }

/* =========================================================
   Service detail page sections
   ========================================================= */

/* Subpages reuse .hero — no separate sub-hero styles */

/* =========================================================
   Trust strip (home, between hero and services)
   ========================================================= */
.trust-strip {
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.trust-strip-inner { text-align: center; }
.trust-strip .eyebrow { margin-bottom: 1.5rem; }
.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  flex-wrap: wrap;
}
.trust-logos img {
  height: 26px;
  width: auto;
  opacity: 0.55;
  transition: opacity .15s ease;
  filter: grayscale(1);
}
.trust-logos img:hover { opacity: 1; filter: none; }

/* =========================================================
   Section teaser (used on home for #why and #process)
   Compact block that punches out to a full subpage.
   ========================================================= */
.section-teaser { padding: clamp(3.5rem, 6vw, 5.5rem) 0; }
.teaser-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-teaser h2 {
  font-size: clamp(1.9rem, 2.5vw + 1rem, 2.6rem);
  margin-bottom: 1rem;
}
.section-teaser p {
  font-size: 1.05rem;
  max-width: 620px;
  margin-bottom: 2.25rem;
}

/* Pill row variant (used for Why) */
.teaser-pills {
  list-style: none;
  padding: 0;
  margin: 0 auto 2.5rem;
  max-width: 560px;
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  justify-content: center;
}
.teaser-pills li {
  font-family: var(--font-mono);
  font-size: .82rem;
  padding: .5rem 1rem;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--ink);
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.teaser-pills li::before {
  content: "✓";
  color: var(--lime);
  font-weight: 700;
  -webkit-text-stroke: 0.5px var(--ink);
}
.section-dark .teaser-pills li {
  background: rgba(198, 244, 50, 0.08);
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(198, 244, 50, 0.25);
}
.section-dark .teaser-pills li::before {
  color: var(--lime);
  -webkit-text-stroke: 0;
}

/* Step row variant (used for Process) */
.teaser-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: center;
  align-items: center;
}
.teaser-steps li {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
}
.teaser-steps .step-num {
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.06em;
  padding: .3rem .55rem;
  background: var(--lime);
  border-radius: 5px;
}
.teaser-arrow {
  color: var(--slate-2);
  font-family: var(--font-mono);
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
}
.section-dark .teaser-steps li { color: var(--white); }

/* Includes grid (flex so orphan rows center on desktop) */
.includes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.include-item {
  flex: 0 1 260px;
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .15s ease, transform .15s ease;
}
.include-item:hover { border-color: var(--ink); transform: translateY(-2px); }
.include-item .include-icon {
  width: 36px; height: 36px;
  background: var(--lime);
  border-radius: 8px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--ink);
}
.include-item .include-icon svg { width: 18px; height: 18px; }
.include-item h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.include-item p { font-size: .92rem; margin: 0; }

/* Pricing tiers */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.price-card {
  position: relative;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.price-card.featured h3, .price-card.featured .price-amount { color: var(--white); }
.price-card.featured p, .price-card.featured li { color: rgba(255,255,255,0.75); }
.price-card.featured::after {
  content: "most popular";
  position: absolute;
  top: 1rem; right: 1rem;
  font-family: var(--font-mono);
  font-size: .7rem;
  background: var(--lime);
  color: var(--ink);
  padding: .15rem .55rem;
  border-radius: 999px;
  font-weight: 600;
}
.price-eyebrow {
  font-family: var(--font-mono);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate);
  margin-bottom: .5rem;
}
.price-card.featured .price-eyebrow { color: var(--lime); }
.price-amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  gap: .3rem;
  margin: .5rem 0;
}
.price-amount .price-prefix {
  font-size: 1rem;
  color: var(--slate);
  font-weight: 500;
  font-family: var(--font-body);
}
.price-amount .price-unit {
  font-size: .95rem;
  color: var(--slate);
  font-weight: 500;
  font-family: var(--font-body);
}
.price-card.featured .price-amount .price-prefix,
.price-card.featured .price-amount .price-unit { color: rgba(255,255,255,0.6); }
.price-card > p { font-size: .95rem; margin-bottom: 1.25rem; min-height: 2.5em; }
.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex: 1;
}
.price-features li {
  position: relative;
  padding-left: 1.5rem;
  font-size: .94rem;
  color: var(--slate);
}
.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 700;
}
.price-card.featured .price-features li { color: rgba(255,255,255,0.8); }
.price-card .btn { width: 100%; }

/* FAQ accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  max-width: 820px;
  margin: 0 auto;
}
/* Center any section whose body is an FAQ */
.section:has(> .container > .faq-list) .section-head,
.section:has(.faq-list) .section-head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  transition: border-color .15s ease;
}
.faq-list details[open] { border-color: var(--ink); }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lime);
  color: var(--ink);
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  transition: background .15s ease;
}
.faq-list details[open] summary::after {
  content: "−";
}
.faq-list summary:hover::after { background: var(--lime-2); }
.faq-list details > div {
  padding: 0 1.5rem 1.5rem;
  color: var(--slate);
  font-size: .98rem;
  line-height: 1.7;
}
.faq-list details > div p { margin: 0 0 .75rem; }
.faq-list details > div p:last-child { margin: 0; }

/* Sub-page CTA strip */
.cta-strip {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  padding: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}
.cta-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(198, 244, 50, 0.12), transparent 60%);
  pointer-events: none;
}
.cta-strip h2 { color: var(--white); margin: 0; max-width: 580px; font-size: clamp(1.5rem, 2vw + 1rem, 2.2rem); }
.cta-strip p { color: rgba(255,255,255,0.7); margin: .5rem 0 0; max-width: 580px; }
.cta-strip > div:first-child { position: relative; z-index: 1; }
.cta-strip > a { position: relative; z-index: 1; flex-shrink: 0; }

/* Process deep-dive (accordion — used on /our-process/) */
.process-deep {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.process-deep-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: border-color .15s ease;
}
.process-deep-item[open] { border-color: var(--ink); }
.process-deep-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--lime);
  opacity: 0;
  transition: opacity .15s ease;
}
.process-deep-item[open]::before,
.process-deep-item:hover::before { opacity: 1; }

.process-deep-summary {
  list-style: none;
  cursor: pointer;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1.25rem, 2vw, 2rem);
}
.process-deep-summary::-webkit-details-marker { display: none; }
.process-deep-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--lime);
  line-height: 1;
  letter-spacing: -0.04em;
  -webkit-text-stroke: 1px var(--ink);
}
.process-deep-head { display: flex; flex-direction: column; gap: .35rem; min-width: 0; }
.process-deep-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.5vw + .6rem, 1.5rem);
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.02em;
}
.process-deep-meta {
  font-family: var(--font-mono);
  font-size: .8rem;
  color: var(--slate);
  letter-spacing: 0.04em;
}
.process-deep-meta strong { color: var(--ink); }

.process-deep-summary::after {
  content: "+";
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lime);
  color: var(--ink);
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  transition: background .15s ease;
}
.process-deep-item[open] .process-deep-summary::after { content: "−"; }
.process-deep-summary:hover::after { background: var(--lime-2); }

.process-deep-body {
  padding: 0 clamp(1.5rem, 2.5vw, 2rem) clamp(1.75rem, 2.5vw, 2rem);
  border-top: 1px solid var(--line);
  padding-top: 1.75rem;
}
.process-deep-body p {
  font-size: 1rem;
  color: var(--slate);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.process-deep-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2.5rem;
  padding-top: 1.5rem;
  margin-top: .5rem;
  border-top: 1px solid var(--line);
}
.process-deep-cols h4 {
  font-family: var(--font-mono);
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate);
  margin: 0 0 .75rem;
}
.process-deep-cols ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.process-deep-cols li {
  position: relative;
  padding-left: 1.2rem;
  font-size: .92rem;
  color: var(--ink);
}
.process-deep-cols li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 700;
  font-family: var(--font-mono);
}

@media (max-width: 640px) {
  .process-deep-summary { grid-template-columns: auto 1fr auto; gap: 1rem; }
  .process-deep-num { font-size: 2.25rem; }
  .process-deep-cols { grid-template-columns: 1fr; }
}

/* Founder note (used on /why-us/) */
.founder-note {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2.5rem, 4vw, 4rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
}
.founder-note::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2.5rem;
  width: 60px;
  height: 4px;
  background: var(--lime);
}
.founder-note .founder-eyebrow {
  font-family: var(--font-mono);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate);
  font-weight: 500;
  margin-bottom: 1.5rem;
  display: block;
}
.founder-note p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 1rem;
}
.founder-note p:last-of-type { margin-bottom: 0; }
.founder-sign {
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.founder-sign .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.founder-sign .role {
  color: var(--slate);
  font-size: .88rem;
  font-family: var(--font-mono);
}

/* Comparison table (used on /why-us/) */
.compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
}
.compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}
.compare-table th,
.compare-table td {
  padding: 1.15rem 1.5rem;
  text-align: left;
  font-size: .95rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.compare-table thead th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  background: var(--bg-soft);
  letter-spacing: -0.01em;
}
.compare-table thead th.col-us {
  background: var(--ink);
  color: var(--lime);
}
.compare-table thead th.col-them { color: var(--slate); }
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table td.feature {
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 600;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  width: 22%;
  white-space: nowrap;
}
.compare-table td.col-us {
  background: rgba(198, 244, 50, 0.06);
  color: var(--ink);
  font-weight: 500;
}
.compare-table td.col-them {
  color: var(--slate);
}

/* "Who we work with" grid (flex so orphans center on desktop) */
.who-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.who-item {
  flex: 0 1 240px;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .15s ease, transform .15s ease;
}
.who-item:hover { border-color: var(--ink); transform: translateY(-2px); }
.who-item h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 .4rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.who-item p {
  font-size: .9rem;
  color: var(--slate);
  margin: 0;
  line-height: 1.55;
}

/* =========================================================
   Contact page — info cards + standalone form
   ========================================================= */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-block {
  display: flex;
  flex-direction: column;
}
.contact-block .block-head {
  margin-bottom: 1.5rem;
}
.contact-block h2 {
  font-size: clamp(1.6rem, 1.8vw + 1rem, 2.1rem);
  margin-bottom: .5rem;
}
.contact-block .block-head p {
  font-size: 1.02rem;
  margin: 0;
}

/* =========================================================
   Scheduling form + modal
   ========================================================= */

/* Inline form container (used on /contact/ and inside modal) */
.schedule-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
}
.schedule-form-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.25rem;
  margin-bottom: 1rem;
}
.schedule-form-head-text { flex: 1; min-width: 0; }
.schedule-form-head h2 {
  font-size: clamp(1.25rem, 1.2vw + .7rem, 1.55rem);
  margin: .35rem 0 .35rem;
}
.schedule-form-head p {
  font-size: .92rem;
  margin: 0;
}
.schedule-form-head .eyebrow { margin-bottom: .35rem; }
.schedule-actions {
  display: flex;
  gap: .5rem;
  flex-shrink: 0;
  align-items: center;
}
.schedule-actions .btn {
  padding: .55rem 1rem;
  font-size: .88rem;
}

.schedule-section { margin-bottom: 1.25rem; }
.schedule-group {
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate);
  margin: 1.25rem 0 .7rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid var(--line);
}
.schedule-group:first-of-type { margin-top: .25rem; }

/* Tabs */
.schedule-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.schedule-tab {
  flex: 1;
  background: transparent;
  border: 0;
  padding: .65rem .5rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  color: var(--slate);
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color .15s ease, border-color .15s ease;
}
.schedule-tab:hover { color: var(--ink); }
.schedule-tab.active {
  color: var(--ink);
  border-bottom-color: var(--lime);
}
.schedule-tab .tab-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--slate);
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 700;
  border: 1px solid var(--line);
}
.schedule-tab.active .tab-num {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--ink);
}
.schedule-tab.is-complete .tab-num {
  background: var(--ink);
  color: var(--lime);
  border-color: var(--ink);
}
.schedule-tab.is-complete.active .tab-num {
  background: var(--lime);
  color: var(--ink);
}

/* Tab panels */
.schedule-tab-panel { display: none; }
.schedule-tab-panel.active {
  display: block;
  animation: scheduleTabFade .25s ease-out;
}
@keyframes scheduleTabFade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Summary line shown on time + info tabs */
.schedule-summary {
  font-size: .88rem;
  color: var(--ink);
  margin: 0 0 .9rem;
  padding: .6rem .85rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.schedule-summary-empty { color: var(--slate); }
.schedule-summary .schedule-tz { color: var(--slate-2); }

/* Back-button visibility helper: hidden but holds layout when first tab */
.schedule-back.is-first { visibility: hidden; }

/* Calendar */
.schedule-calendar {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: clamp(.75rem, 1.5vw, 1.1rem);
  max-width: 480px;
  margin: 0 auto;
}
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .85rem;
}
.cal-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
}
.cal-nav {
  background: var(--white);
  border: 1px solid var(--line);
  width: 34px;
  height: 34px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--ink);
  line-height: 1;
  transition: background .12s ease, color .12s ease, border-color .12s ease;
}
.cal-nav:not(:disabled):hover {
  background: var(--ink);
  color: var(--lime);
  border-color: var(--ink);
}
.cal-nav:disabled { opacity: 0.3; cursor: not-allowed; }
.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 6px;
}
.cal-weekdays span {
  text-align: center;
  font-family: var(--font-mono);
  font-size: .68rem;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: .35rem 0;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-day {
  aspect-ratio: 1;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  cursor: pointer;
  transition: border-color .12s ease, transform .12s ease, background .12s ease;
}
.cal-day:not(:disabled):not(.empty):hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}
.cal-day.active {
  background: var(--ink);
  color: var(--lime);
  border-color: var(--ink);
}
.cal-day:disabled {
  background: transparent;
  border-color: transparent;
  color: var(--slate-2);
  cursor: not-allowed;
  font-weight: 400;
}
.cal-day.empty {
  background: transparent;
  border: 0;
  cursor: default;
}

/* Checkbox pills (services multi-select) */
.schedule-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.checkbox-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .42rem .8rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: .85rem;
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--ink);
  letter-spacing: 0;
  transition: background .12s ease, color .12s ease, border-color .12s ease;
  user-select: none;
}
.checkbox-pill input {
  margin: 0;
  cursor: pointer;
  accent-color: var(--lime);
}
.checkbox-pill:has(input:checked) {
  background: var(--ink);
  color: var(--lime);
  border-color: var(--ink);
}
.schedule-section h3 {
  font-family: var(--font-mono);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate);
  margin: 0 0 .9rem;
  display: flex;
  align-items: baseline;
  gap: .5rem;
}
.schedule-tz {
  font-size: .72rem;
  color: var(--slate-2);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.04em;
}

/* Date picker grid */
.schedule-dates {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(78px, 1fr));
  gap: .5rem;
}
.schedule-date-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .15rem;
  padding: .75rem .5rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-display);
  color: var(--ink);
  transition: border-color .12s ease, background .12s ease, color .12s ease, transform .12s ease;
}
.schedule-date-btn:hover { border-color: var(--ink); transform: translateY(-1px); }
.schedule-date-btn.active {
  background: var(--ink);
  color: var(--lime);
  border-color: var(--ink);
}
.schedule-date-btn .day-name {
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate);
}
.schedule-date-btn.active .day-name { color: rgba(198, 244, 50, 0.7); }
.schedule-date-btn .day-num { font-size: 1.4rem; font-weight: 700; line-height: 1.1; }
.schedule-date-btn .month {
  font-family: var(--font-mono);
  font-size: .65rem;
  color: var(--slate-2);
  text-transform: uppercase;
}
.schedule-date-btn.active .month { color: rgba(198, 244, 50, 0.6); }

/* Time picker grid */
.schedule-times {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: .4rem;
}
.schedule-time-btn {
  padding: .55rem .5rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: border-color .12s ease, background .12s ease, color .12s ease, transform .12s ease;
}
.schedule-time-btn:hover { border-color: var(--ink); transform: translateY(-1px); }
.schedule-time-btn.active {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--ink);
}

/* Contact fields inside schedule form */
.schedule-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem .85rem;
}
.schedule-fields label {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.schedule-fields label.full { grid-column: 1 / -1; }
.schedule-fields input,
.schedule-fields select,
.schedule-fields textarea {
  font: inherit;
  font-family: var(--font-body);
  font-size: .95rem;
  padding: .55rem .7rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.schedule-fields input:focus,
.schedule-fields select:focus,
.schedule-fields textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px var(--lime);
}
.schedule-fields textarea { resize: vertical; min-height: 60px; }

.schedule-note {
  margin: 0 0 .9rem;
  font-family: var(--font-mono);
  font-size: .85rem;
}
.schedule-note:empty { display: none; }

/* Success state */
.schedule-success {
  text-align: center;
  padding: 2rem 1rem;
}
.schedule-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: var(--lime);
  color: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
}
.schedule-success h2 {
  font-size: 1.8rem;
  margin-bottom: .75rem;
}
.schedule-success p { font-size: 1.02rem; margin-bottom: .5rem; }
.schedule-success .muted { color: var(--slate-2); font-size: .9rem; }

/* Honor the hidden attribute even on flex/grid display rules */
[hidden] { display: none !important; }

/* Modal wrapper (uses native <dialog>) */
.schedule-modal {
  border: 0;
  padding: 0;
  max-width: 880px;
  width: calc(100% - 2rem);
  max-height: calc(100vh - 2rem);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}
.schedule-modal::backdrop {
  background: rgba(14, 14, 16, 0.6);
  backdrop-filter: blur(6px);
}
.schedule-modal-body {
  overflow-y: auto;
  max-height: calc(100vh - 2rem);
}
.schedule-modal .schedule-form {
  border: 0;
  border-radius: 0;
  margin: 0;
}
.schedule-modal-close {
  position: absolute;
  top: .85rem;
  right: .85rem;
  width: 36px;
  height: 36px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--slate);
  border-radius: 8px;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.schedule-modal-close:hover {
  background: var(--ink);
  color: var(--lime);
  border-color: var(--ink);
}

@media (max-width: 560px) {
  .schedule-fields { grid-template-columns: 1fr; }
  .schedule-modal {
    width: calc(100% - .5rem);
    max-height: calc(100vh - 1rem);
    border-radius: 12px;
  }
  .schedule-modal-body { max-height: calc(100vh - 1rem); }
  .schedule-form { padding: 1rem; }
  /* Stack header text + action buttons on narrow screens */
  .schedule-form-head { flex-direction: column; align-items: stretch; gap: .75rem; }
  .schedule-actions { justify-content: flex-end; }
  .schedule-form-head h2 { font-size: 1.2rem; }
  .schedule-form-head p { font-size: .85rem; }
  /* Compact tabs: smaller, label hides on tightest widths */
  .schedule-tab {
    font-size: .82rem;
    padding: .55rem .25rem;
    gap: .35rem;
  }
  .schedule-tab .tab-num { width: 20px; height: 20px; font-size: .7rem; }
  .schedule-times { grid-template-columns: repeat(auto-fill, minmax(78px, 1fr)); }
  .schedule-time-btn { font-size: .8rem; padding: .5rem .3rem; }
  /* Calendar fits narrow screens */
  .cal-day { font-size: .85rem; }
  .cal-weekdays span { font-size: .6rem; }
  /* Footer buttons sit on one row but smaller */
  .schedule-footer .btn { padding: .55rem .85rem; font-size: .85rem; }
  /* Group headers a touch tighter */
  .schedule-group { font-size: .68rem; margin-top: 1rem; }
}

@media (max-width: 380px) {
  .schedule-tab .tab-label { display: none; }
  .schedule-tab { gap: 0; }
}

/* Direct contact info cards */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.contact-info-card {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.contact-info-card h4 {
  font-family: var(--font-mono);
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate);
  margin: 0 0 .5rem;
}
.contact-info-card p, .contact-info-card a {
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 600;
  margin: 0;
  word-break: break-word;
}
.contact-info-card a:hover { color: var(--lime); }
.contact-info-card .muted {
  font-size: .92rem;
  font-weight: 400;
  color: var(--slate);
  margin-top: .25rem;
}

/* Contact form variant for /contact/ (light bg, no dark wrapper) */
.contact-form-standalone {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-form-standalone label {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.contact-form-standalone label.full { grid-column: 1 / -1; }
.contact-form-standalone input,
.contact-form-standalone select,
.contact-form-standalone textarea {
  font: inherit;
  font-family: var(--font-body);
  font-size: .98rem;
  padding: .8rem .9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.contact-form-standalone input:focus,
.contact-form-standalone select:focus,
.contact-form-standalone textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px var(--lime);
}
.contact-form-standalone textarea { resize: vertical; min-height: 140px; }
.contact-form-standalone button { grid-column: 1 / -1; }

/* OR divider between contact sections */
.contact-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0 0 1rem;
  font-family: var(--font-mono);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
}
.contact-divider::before,
.contact-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

@media (max-width: 720px) {
  .contact-form-standalone { grid-template-columns: 1fr; }
}

/* Breadcrumb */
.breadcrumb {
  font-family: var(--font-mono);
  font-size: .85rem;
  color: var(--slate);
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.breadcrumb a { color: var(--slate); transition: color .15s ease; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { color: var(--slate-2); }
.breadcrumb .current { color: var(--ink); font-weight: 500; }

/* =========================================================
   Why grid
   ========================================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem 2rem;
}
.why-item {
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-dark);
  position: relative;
}
.why-item::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 40px;
  height: 1px;
  background: var(--lime);
}
.why-num {
  font-family: var(--font-mono);
  font-size: .8rem;
  color: var(--lime);
  font-weight: 500;
  margin-bottom: .75rem;
  letter-spacing: 0.04em;
}

/* =========================================================
   Process
   ========================================================= */
.process {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem 2rem;
}
.process li {
  position: relative;
  display: flex;
  flex-direction: column;
}
.process-num {
  font-family: var(--font-mono);
  font-size: .8rem;
  font-weight: 500;
  color: var(--slate);
  letter-spacing: 0.04em;
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.process-num::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 40px;
  height: 1px;
  background: var(--ink);
}
.process-num span { color: var(--ink); font-weight: 700; }

/* Dark-section overrides: lime label, lime accent line, subtle border */
.section-dark .process-num { color: rgba(255, 255, 255, 0.55); border-bottom-color: var(--line-dark); }
.section-dark .process-num span { color: var(--lime); }
.section-dark .process-num::after { background: var(--lime); }

/* =========================================================
   Contact
   ========================================================= */
.section-contact {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section-contact::before {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50%;
  aspect-ratio: 1;
  background: radial-gradient(closest-side, rgba(198, 244, 50, 0.18), transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact-copy h2 { color: var(--white); }
.contact-copy p { color: rgba(255, 255, 255, 0.7); }
.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0;
}
.contact-list li {
  margin-bottom: .5rem;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-mono);
  font-size: .9rem;
}
.contact-list strong { color: rgba(255, 255, 255, 0.55); font-weight: 500; margin-right: .5rem; }
.contact-list a { color: var(--lime); }
.contact-list a:hover { text-decoration: underline; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.contact-form label.full { grid-column: 1 / -1; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  font: inherit;
  font-family: var(--font-body);
  font-size: .98rem;
  padding: .8rem .9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px var(--lime);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form button { grid-column: 1 / -1; }
.form-note { grid-column: 1/-1; margin: 0; font-size: .9rem; min-height: 1.2em; font-family: var(--font-mono); }
.form-note.success { color: #047857; }
.form-note.error { color: #b91c1c; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid var(--line-dark);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, transparent 0%, var(--lime) 30%, var(--lime) 70%, transparent 100%);
  opacity: 0.4;
}

/* CTA bar */
.footer-cta {
  border-bottom: 1px solid var(--line-dark);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  position: relative;
}
.footer-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(198, 244, 50, 0.08), transparent 60%);
  pointer-events: none;
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.footer-cta h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 2vw + 1rem, 2.1rem);
  margin: 0;
  max-width: 580px;
}
.footer-cta .eyebrow { margin-bottom: .75rem; }

/* Main footer columns */
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  align-items: start;
  padding: clamp(3rem, 5vw, 4.5rem) 0 2.5rem;
}
.footer-brand .logo { font-size: 1.25rem; }
.footer-tag {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 320px;
  font-size: .95rem;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 1.25rem;
  position: relative;
  padding-bottom: .75rem;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 24px;
  height: 2px;
  background: var(--lime);
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  font-size: .95rem;
  transition: color .15s ease, transform .15s ease;
  display: inline-block;
}
.footer-col a:hover {
  color: var(--lime);
  transform: translateX(2px);
}
.footer-col .muted {
  color: rgba(255, 255, 255, 0.5);
  font-size: .9rem;
}
.footer-email {
  font-weight: 600;
  color: var(--lime) !important;
}

/* Bottom strip */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--line-dark);
  font-size: .85rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-status {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-mono);
  font-size: .8rem;
}
.lime-dot {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 999px;
  box-shadow: 0 0 8px rgba(198, 244, 50, 0.6);
  animation: pulse 2s ease-in-out infinite;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 820px) {
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header.menu-open .nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.25rem 1.5rem;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }
  .site-header.menu-open .nav a {
    padding: .85rem 0;
    border-bottom: 1px solid var(--line);
  }
  .site-header.menu-open .nav .btn {
    margin-top: .75rem;
    text-align: center;
    justify-content: center;
  }
  /* Dropdown in mobile menu: expand inline */
  .site-header.menu-open .nav-dropdown { width: 100%; }
  .site-header.menu-open .nav-dropdown-trigger {
    width: 100%;
    padding: .85rem 0;
    border-bottom: 1px solid var(--line);
    justify-content: space-between;
    font-size: 1rem;
  }
  .site-header.menu-open .nav-dropdown-menu {
    position: static;
    transform: none;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: .25rem 0 .5rem .75rem;
    min-width: 0;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease, opacity .15s ease, visibility .15s ease;
  }
  .site-header.menu-open .nav-dropdown-trigger[aria-expanded="true"] + .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 400px;
  }
  .site-header.menu-open .nav-dropdown-menu a { padding: .55rem .85rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-form { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-meta { grid-template-columns: 1fr 1fr; }
  .cta-strip { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-meta { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* =========================================================
   Page load + scroll-reveal animations
   ========================================================= */

/* Body fade on every page load */
body { animation: pageFadeIn .35s ease-out both; }
@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Stagger the hero's child elements on first paint */
.hero-inner > * {
  opacity: 0;
  transform: translateY(14px);
  animation: heroItemIn .65s ease-out forwards;
}
.hero-inner > :nth-child(1) { animation-delay: .12s; }
.hero-inner > :nth-child(2) { animation-delay: .22s; }
.hero-inner > :nth-child(3) { animation-delay: .34s; }
.hero-inner > :nth-child(4) { animation-delay: .46s; }
.hero-inner > :nth-child(5) { animation-delay: .58s; }
@keyframes heroItemIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll-revealed sections — only hide when JS is available to bring them back */
.js-enabled main > section:not(.hero) {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease-out, transform .65s ease-out;
  will-change: opacity, transform;
}
.js-enabled main > section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
  /* Bring everything back to visible since the animations are off */
  body,
  .hero-inner > *,
  .js-enabled main > section:not(.hero) {
    opacity: 1 !important;
    transform: none !important;
  }
}
