/* ============================================================
   THINKBIG MEDIA — Design System: AREA 17
   Clean white canvas, SuisseIntl typography, yellow accent
   ============================================================ */

/*
  FONT SETUP:
  SuisseIntl (primary) — commercial typeface from Swiss Typefaces.
  Available via Adobe Fonts: https://fonts.adobe.com/fonts/suisse-intl
  1. Create a kit at fonts.adobe.com and add SuisseIntl
  2. Replace the placeholder @import below with your kit URL:
     @import url('https://use.typekit.net/YOUR_KIT_ID.css');
  Until then, Inter (Google Fonts) is used as a near-identical fallback.
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap');

/* ─── Custom Properties ────────────────────────────────────── */
:root {
  --white:      #ffffff;
  --ink:        #1a1a1a;
  --cloud:      #f2f2f2;
  --border:     #e6e6e6;
  --stone:      #949494;
  --bark:       #f2ede9;
  --yellow:     #FCF951;
  --black:      #000000;
  --btn-gray:   #cccccc;

  --font-head: 'SuisseIntl', 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-body: ui-sans-serif, system-ui, -apple-system, sans-serif;

  /* Type scale */
  --display:    55px;
  --head-lg:    42px;
  --head:       32px;
  --sub:        20px;
  --body:       16px;

  /* Spacing (8px base) */
  --s4:   4px;
  --s8:   8px;
  --s12:  12px;
  --s16:  16px;
  --s20:  20px;
  --s24:  24px;
  --s32:  32px;
  --s40:  40px;
  --s48:  48px;
  --s64:  64px;
  --s80:  80px;
  --s96:  96px;
  --s128: 128px;
  --s192: 192px;

  /* Radii */
  --r-nav:  4px;
  --r-btn:  8px;
  --r-card: 8px;
  --r-feat: 16px;
  --r-pill: 9999px;

  /* Layout */
  --bar-h:   44px;
  --nav-h:   64px;
  --offset:  calc(var(--bar-h) + var(--nav-h));
  --max-w:   1200px;
  --pad-x:   80px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--body);
  line-height: 1.5;
  letter-spacing: 0.064px;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; }
:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ─── Announcement Bar ─────────────────────────────────────── */
.bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--bar-h);
  background: var(--yellow);
  color: var(--ink);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s8);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0 var(--s48);
  transition: transform 0.3s var(--ease);
}
.bar.is-hidden { transform: translateY(-100%); }
.bar-text { text-align: center; }
.bar-link {
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}
.bar-close {
  position: absolute;
  right: var(--s20);
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.5;
  transition: opacity 0.15s;
}
.bar-close:hover { opacity: 1; }
.bar-close svg { width: 14px; height: 14px; }

/* ─── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: var(--bar-h);
  left: 0; right: 0;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 900;
  display: flex;
  align-items: center;
  transition: top 0.3s var(--ease);
}
.nav.bar-gone { top: 0; }
.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
}
.nav-logo img {
  height: 26px;
  width: auto;
  display: block;
}
.nav-logo span {
  display: inline-block;
  background: var(--yellow);
  padding: 1px 4px;
  border-radius: 2px;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  vertical-align: middle;
  margin-left: 5px;
  position: relative;
  top: -1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-right: var(--s24);
}
.nav-link {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.0040em;
  color: var(--stone);
  padding: 6px 12px;
  border-radius: var(--r-nav);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--ink); background: var(--cloud); }
.nav-link.is-active { color: var(--ink); background: var(--cloud); }
.nav-cta {
  margin-left: var(--s8);
  flex-shrink: 0;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.2s var(--ease);
  transform-origin: center;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu {
  position: fixed;
  inset: 0;
  top: var(--offset);
  background: var(--white);
  z-index: 800;
  padding: var(--s48) var(--s24);
  display: flex;
  flex-direction: column;
  gap: var(--s8);
  border-top: 1px solid var(--border);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease);
}
.mobile-menu.is-open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  padding: var(--s24) 0;
  border-bottom: 1px solid var(--border);
}

/* ─── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s8);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: var(--r-btn);
  padding: 12px 24px;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.15s;
  cursor: pointer;
}
.btn:active { transform: scale(0.98); }

/* Neutral button - cloud gray */
.btn-neutral {
  background: var(--cloud);
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn-neutral:hover { background: #e8e8e8; }

/* Dark button - primary action */
.btn-dark {
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--ink);
}
.btn-dark:hover { background: #333; border-color: #333; }

/* Ghost button */
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: var(--r-nav);
}
.btn-ghost:hover { border-color: var(--ink); background: var(--cloud); }

/* Yellow button - very selective use */
.btn-yellow {
  background: var(--yellow);
  color: var(--ink);
  border: 1px solid transparent;
}
.btn-yellow:hover { background: #ece111; }

/* Text link */
.link {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  display: inline-flex;
  align-items: center;
  gap: var(--s8);
  transition: border-color 0.15s;
}
.link:hover { border-color: var(--ink); }
.link-stone {
  color: var(--stone);
  border-bottom-color: transparent;
}
.link-stone:hover { color: var(--ink); border-color: var(--ink); }

/* ─── Layout ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.container--narrow { max-width: 800px; }
.container--wide   { max-width: 1400px; }

.page-offset { padding-top: var(--offset); }

.section { padding: var(--s96) 0; }
.section--sm { padding: var(--s64) 0; }
.section--lg { padding: var(--s128) 0; }
.section--xl { padding: var(--s192) 0; }

.divider { border: none; border-top: 1px solid var(--border); }

/* ─── Typography ───────────────────────────────────────────── */
.t-display {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, var(--display));
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.825px;
  color: var(--ink);
}
.t-head-lg {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, var(--head-lg));
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.588px;
  color: var(--ink);
}
.t-head {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, var(--head));
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.416px;
  color: var(--ink);
}
.t-sub {
  font-family: var(--font-head);
  font-size: var(--sub);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.08px;
  color: var(--ink);
}
.t-body {
  font-size: var(--body);
  line-height: 1.6;
  letter-spacing: 0.064px;
  color: var(--stone);
}
.t-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
}
.t-num {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--stone);
}

/* ─── Hero ─────────────────────────────────────────────────── */
.hero {
  padding: var(--s128) 0;
  border-bottom: 1px solid var(--border);
}
.hero--centered { text-align: center; }
.hero--centered .hero-sub { margin-left: auto; margin-right: auto; }
.hero-sub {
  font-size: 17px;
  color: var(--stone);
  line-height: 1.65;
  max-width: 520px;
  margin-top: var(--s24);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--s16);
  flex-wrap: wrap;
  margin-top: var(--s40);
}
.hero--centered .hero-actions { justify-content: center; }

/* ─── Section Header ───────────────────────────────────────── */
.section-hdr {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: var(--s48);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--s48);
}
.section-hdr--stacked {
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s16);
}

/* ─── Stats ─────────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  padding: var(--s48) var(--s32);
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-item:first-child { padding-left: 0; }
.stat-value {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: var(--s12);
}
.stat-desc {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.55;
  max-width: 240px;
}

/* ─── Method/Steps ─────────────────────────────────────────── */
.method-list { border-top: 1px solid var(--border); }
.method-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: start;
  gap: var(--s32);
  padding: var(--s40) 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.method-item a { display: contents; }
.method-num {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--stone);
  padding-top: 4px;
}
.method-content h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: var(--s8);
}
.method-content p {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.6;
  max-width: 580px;
}
.method-arrow {
  font-size: 18px;
  color: var(--stone);
  padding-top: 2px;
  transition: transform 0.2s var(--ease), color 0.15s;
}
.method-item:hover .method-arrow { transform: translate(3px, -2px); color: var(--ink); }
.method-item:hover .method-content h3 { color: var(--ink); }

/* ─── Cards ─────────────────────────────────────────────────── */
.card {
  background: var(--cloud);
  border-radius: var(--r-card);
  padding: var(--s32);
  border: none;
}
.card--bark { background: var(--bark); }
.card--white { background: var(--white); border: 1px solid var(--border); }
.card--feat {
  background: var(--cloud);
  border-radius: var(--r-feat);
  padding: var(--s40);
}
.card--dark {
  background: var(--cloud);
  color: var(--ink);
  border-radius: var(--r-card);
  padding: var(--s40);
}
.card--dark .t-head,
.card--dark .t-sub,
.card--dark p { color: var(--stone); }
.card--dark .t-label { color: var(--stone); }

/* Card grid */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s8);
}
.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s8);
}

/* Service tier cards */
.tier-card {
  background: var(--cloud);
  border-radius: var(--r-card);
  padding: var(--s40);
  display: flex;
  flex-direction: column;
  gap: var(--s24);
  position: relative;
}
.tier-card--featured {
  background: var(--yellow);
  border-radius: var(--r-feat);
  color: var(--ink);
}
.tier-card--featured .t-label { color: var(--stone); }
.tier-card--featured .tier-name { color: var(--ink); }
.tier-card--featured .tier-desc { color: var(--stone); }
.tier-card--featured .tier-includes li { color: var(--stone); }
.tier-card--featured .tier-includes li::before { background: var(--stone); }
.tier-featured-badge {
  position: absolute;
  top: var(--s16);
  right: var(--s16);
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-pill);
}
.tier-name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.tier-tagline {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  color: var(--stone);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 4px 12px;
  display: inline-block;
}
.tier-card--featured .tier-tagline {
  background: rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.1);
  color: var(--stone);
}
.tier-desc {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.65;
}
.tier-includes { margin-top: var(--s8); }
.tier-includes li {
  font-size: 14px;
  color: var(--stone);
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: var(--s8);
}
.tier-card--featured .tier-includes li { border-bottom-color: rgba(0,0,0,0.06); }
.tier-includes li:last-child { border-bottom: none; }
.tier-includes li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--btn-gray);
  flex-shrink: 0;
}
.tier-footer { margin-top: auto; padding-top: var(--s16); }

/* ─── Testimonials ─────────────────────────────────────────── */
.testimonial {
  padding: var(--s40);
  background: var(--bark);
  border-radius: var(--r-feat);
  display: flex;
  flex-direction: column;
}
.testimonial-logo {
  height: 28px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  object-position: left center;
  filter: grayscale(1);
  opacity: 0.6;
  margin-bottom: var(--s32);
  align-self: flex-start;
}
.testimonial::before {
  content: '\201C';
  font-family: var(--font-head);
  font-size: 64px;
  line-height: 1;
  color: var(--yellow);
  display: block;
  margin-bottom: var(--s8);
  letter-spacing: -0.04em;
}
.testimonial-quote {
  font-family: var(--font-head);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: var(--s24);
  flex: 1;
}
.testimonial-attr {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}
.testimonial-name {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.testimonial-role {
  font-size: 13px;
  color: var(--ink);
}
.testimonial-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  background: var(--yellow);
  border: none;
  color: var(--ink);
  margin-top: var(--s12);
  font-family: var(--font-head);
}

/* Testimonials grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s8);
}

/* ─── FAQ ──────────────────────────────────────────────────── */
.faq-list { border-top: 1px solid var(--border); }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s24);
  padding: var(--s24) 0;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
}
.faq-icon {
  width: 24px; height: 24px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1;
  color: var(--stone);
  transition: transform 0.2s, background 0.15s;
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); background: var(--cloud); }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  font-size: 15px;
  color: var(--stone);
  line-height: 1.7;
  transition: grid-template-rows 0.35s var(--ease);
}
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner { overflow: hidden; padding-bottom: var(--s24); max-width: 680px; }

/* ─── About / Founders ─────────────────────────────────────── */
.founder-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s8);
}
.founder-card {
  background: var(--cloud);
  border-radius: var(--r-feat);
  padding: var(--s48);
}
.founder-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--border);
  margin-bottom: var(--s24);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.founder-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: var(--s4);
}
.founder-role {
  font-size: 13px;
  color: var(--stone);
  letter-spacing: 0.04em;
  margin-bottom: var(--s24);
  font-family: var(--font-head);
  font-weight: 500;
}
.founder-bio {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.7;
}
.founder-bio strong { color: var(--ink); font-weight: 500; }

/* ─── CTA Banner ───────────────────────────────────────────── */
.cta-strip {
  background: var(--yellow);
  color: var(--ink);
  padding: var(--s80) 0;
}
.cta-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s48);
}
.cta-strip h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.cta-strip p {
  font-size: 16px;
  color: rgba(0,0,0,0.65);
  margin-top: var(--s12);
  max-width: 400px;
  line-height: 1.6;
}
.cta-strip-actions { flex-shrink: 0; display: flex; flex-direction: column; gap: var(--s12); align-items: flex-start; }

/* ─── Client Logos ─────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  padding: var(--s24) 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: var(--s64);
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-track img {
  height: 32px;
  width: auto;
  max-width: 160px;
  min-width: 48px;
  flex-shrink: 0;
  object-fit: contain;
  filter: grayscale(100%) opacity(55%);
  mix-blend-mode: multiply;
  transition: filter 0.25s;
}
.marquee-track img:hover { filter: grayscale(40%) opacity(90%); }
.marquee-track img.logo-lg { height: 32px; max-width: 160px; }
/* Per-logo size corrections */
.marquee-track img[src*="tahi"]                 { height: 44px; }
.marquee-track img[src*="private-clinic-group"] { height: 28px; }
.marquee-track img[src*="gosh"]                 { height: 56px; max-width: 100px; }
.marquee-track img[src*="black-and-white"]      { height: 64px; }
.marquee-track img[src*="alexis"]               { height: 44px; }
.marquee-track img[src*="crown"]                { height: 36px; }
.marquee-track img[src*="kaea"]                 { filter: grayscale(100%) brightness(0) opacity(55%); mix-blend-mode: multiply; height: 28px; }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}
@media (max-width: 768px) {
  .marquee-track { gap: var(--s40); animation-duration: 24s; }
  .marquee-track img { width: 100px; height: 32px; }
}
.logo-item {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--btn-gray);
  white-space: nowrap;
  transition: color 0.15s;
}
.logo-item:hover { color: var(--stone); }

/* ─── Form ─────────────────────────────────────────────────── */
.form-group { margin-bottom: var(--s24); }
.form-label {
  display: block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--s8);
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--border);
  border-radius: var(--r-btn);
  padding: 14px 16px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(0,0,0,0.38); }
.form-input:focus,
.form-textarea:focus,
.form-select:focus { border-color: var(--ink); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23949494' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s16); }

/* Form with dark split layout */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--s8);
  background: var(--border);
  border-radius: var(--r-feat);
  overflow: hidden;
}
.contact-info {
  background: var(--bark);
  color: var(--ink);
  padding: var(--s64);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact-form-side {
  background: var(--white);
  padding: var(--s64);
}
.contact-info .t-label { color: var(--stone); }
.contact-detail { margin-bottom: var(--s32); }
.contact-detail-lbl {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: var(--s8);
}
.contact-detail-val {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.6;
}
.contact-detail-val a { transition: opacity 0.15s; }
.contact-detail-val a:hover { opacity: 0.7; }

/* ─── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--bark);
  color: var(--ink);
  padding: var(--s64) 0 var(--s40);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s64);
  padding-bottom: var(--s48);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--s32);
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: var(--s16);
}
.footer-logo img {
  height: 28px;
  width: auto;
  display: block;
}
.footer-tagline {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.6;
  max-width: 260px;
  margin-bottom: var(--s32);
}
.footer-col-title {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: var(--s20);
}
.footer-links { display: flex; flex-direction: column; gap: var(--s12); }
.footer-links a {
  font-size: 14px;
  color: var(--stone);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--ink); }
.footer-links .footer-contact-item {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.55;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s24);
}
.footer-bottom p {
  font-size: 12px;
  color: var(--stone);
}
.footer-legal {
  display: flex;
  gap: var(--s24);
}
.footer-legal a {
  font-size: 12px;
  color: var(--stone);
  transition: color 0.15s;
}
.footer-legal a:hover { color: var(--ink); }

/* ─── Prose ────────────────────────────────────────────────── */
.prose p { font-size: 16px; color: var(--stone); line-height: 1.75; margin-bottom: var(--s16); }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--ink); font-weight: 500; }

/* ─── Animations ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim > * {
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) forwards;
}
.anim > *:nth-child(1) { animation-delay: 0.05s; }
.anim > *:nth-child(2) { animation-delay: 0.18s; }
.anim > *:nth-child(3) { animation-delay: 0.30s; }
.anim > *:nth-child(4) { animation-delay: 0.40s; }
.anim > *:nth-child(5) { animation-delay: 0.50s; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(2px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), filter 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); filter: blur(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  .anim > * {
    opacity: 1;
    animation: none;
  }
  .wt {
    color: var(--ink);
    transition: none;
  }
  .scroll-bar { display: none; }
}

/* ─── Card hover lift ───────────────────────────────────────── */
.testimonial,
.tier-card,
.method-item,
.proof-card,
.package-card {
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  will-change: transform;
}
.testimonial:hover,
.tier-card:hover,
.proof-card:hover,
.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.07);
}
.method-item:hover {
  transform: translateX(4px);
}

/* ─── Nav link sliding underline ───────────────────────────── */
.nav-link {
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 12px;
  right: 12px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav-link:hover::after  { transform: scaleX(1); }
.nav-link.is-active::after { transform: scaleX(1); }

/* ─── Button hover scale ────────────────────────────────────── */
.btn-yellow:hover { background: #ece111; transform: scale(1.03); }
.btn-dark:hover   { background: #333; border-color: #333; transform: scale(1.03); }

/* ─── Scrolling text strip ──────────────────────────────────── */
.text-strip {
  overflow: hidden;
  padding: var(--s20) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.text-strip-track {
  display: flex;
  align-items: center;
  gap: var(--s48);
  width: max-content;
  animation: textstrip 22s linear infinite;
}
.text-strip--reverse .text-strip-track {
  animation-direction: reverse;
}
@keyframes textstrip {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.text-strip-item {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  white-space: nowrap;
  flex-shrink: 0;
}
.text-strip-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}
@media (prefers-reduced-motion: reduce) {
  .text-strip-track { animation: none; }
}

/* ─── Utilities ────────────────────────────────────────────── */
.gap-8  { gap: var(--s8); }
.gap-16 { gap: var(--s16); }
.gap-24 { gap: var(--s24); }
.gap-32 { gap: var(--s32); }
.mt-16  { margin-top: var(--s16); }
.mt-24  { margin-top: var(--s24); }
.mt-32  { margin-top: var(--s32); }
.mt-40  { margin-top: 40px; }
.mt-48  { margin-top: var(--s48); }
.mt-64  { margin-top: var(--s64); }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.col-span-2 { grid-column: span 2; }

/* ─── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --pad-x: 40px; }
  .cards-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s40); }
  .founder-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding-left: 0; }
  .stat-item:last-child { border-bottom: none; }
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-info { padding: var(--s48); }
  .contact-form-side { padding: var(--s48); }
}
@media (max-width: 768px) {
  :root { --pad-x: 24px; --bar-h: 40px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .cards-3 { grid-template-columns: 1fr; }
  .cards-2 { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--s32); }
  .section { padding: var(--s64) 0; }
  .section--lg { padding: var(--s80) 0; }
  .hero { padding: var(--s80) 0; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
  .method-item { grid-template-columns: 40px 1fr auto; gap: var(--s16); }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .bar { font-size: 12px; padding: 0 var(--s40); }
  .contact-info { padding: var(--s32); }
  .contact-form-side { padding: var(--s32); }
  .section-hdr { flex-direction: column; align-items: flex-start; gap: var(--s16); }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* Missing utility */
/* ─── Word reveal — text lights up black on scroll ──────── */
.wt {
  color: var(--border);
  transition: color 0.65s var(--ease);
  transition-delay: calc(var(--wi) * 48ms);
}
.words-lit .wt { color: var(--ink); }

/* ─── Scroll progress bar ───────────────────────────────── */
.scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--yellow);
  transform-origin: left center;
  transform: scaleX(0);
  z-index: 998;
  pointer-events: none;
}

/* ─── Nav glass on scroll ───────────────────────────────── */
.nav.is-scrolled {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(230,230,230,0.6);
}

/* ─── Hero parallax container ───────────────────────────── */
.hero .anim {
  will-change: transform;
}

/* ─── Custom cursor ─────────────────────────────────────── */
.site-cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease),
              height 0.3s var(--ease),
              background 0.3s var(--ease),
              border 0.3s var(--ease);
  border: 1.5px solid transparent;
  mix-blend-mode: normal;
}
.site-cursor.is-hover {
  width: 36px;
  height: 36px;
  background: transparent;
  border-color: var(--ink);
}
@media (max-width: 768px) { .site-cursor { display: none; } }
