/* ============================================================
   Offload — landing page styles
   Brand theme: deep navy + mint/teal (matches business cards)
   ============================================================ */

:root {
  /* Brand palette (from business cards) */
  --navy:        #0F1923;   /* page background — card background color */
  --navy-2:      #13202C;   /* tinted / alternating sections */
  --navy-3:      #16242F;   /* cards & panels */
  --navy-4:      #1D2E3B;   /* inputs, elevated surfaces */
  --deep:        #0A1119;   /* deepest panels (how it works, contact) */

  --mint:        #5CE0C2;   /* primary accent */
  --mint-bright: #7DEAD2;   /* hover / lighter accent */
  --mint-dim:    #3FBFA3;   /* darker accent */
  --mint-tint:   rgba(92, 224, 194, .12);  /* soft accent background */
  --mint-tint-2: rgba(92, 224, 194, .22);

  --ink:         #EEF4F5;   /* headings — near white */
  --text:        #AEBCC6;   /* body text — muted slate */
  --text-soft:   #93A4AF;   /* secondary text */
  --text-faint:  #6B7A85;   /* faint text */

  --line:        rgba(255, 255, 255, .09);  /* borders */
  --line-strong: rgba(255, 255, 255, .18);

  --radius:       16px;
  --radius-sm:    10px;
  --radius-pill:  999px;
  --shadow-sm:    0 1px 2px rgba(0,0,0,.30), 0 2px 8px rgba(0,0,0,.20);
  --shadow-md:    0 10px 28px rgba(0,0,0,.38);
  --shadow-lg:    0 24px 60px rgba(0,0,0,.50);
  --glow:         0 8px 24px rgba(92,224,194,.22);

  --maxw:         1120px;
  --maxw-narrow:  760px;

  --font-head: "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.3rem, 5.2vw, 3.7rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1rem; }
a { color: var(--mint); text-decoration: none; }
a:hover { color: var(--mint-bright); text-decoration: underline; }

img, svg { max-width: 100%; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--mint); color: var(--navy); padding: .6rem 1rem; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--maxw-narrow); }

.section { padding: clamp(64px, 8vw, 108px) 0; }
.section-tint { background: var(--navy-2); }
.section-dark { background: var(--deep); }

.section-head { max-width: 680px; margin: 0 auto clamp(36px, 5vw, 56px); text-align: center; }
.section-sub { color: var(--text-soft); font-size: 1.08rem; }

.eyebrow {
  display: inline-block;
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--mint); margin: 0 0 .8rem;
}
.eyebrow-light { color: var(--mint-bright); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: .8rem 1.4rem; border-radius: var(--radius-pill);
  border: 1.5px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--mint); color: var(--navy); box-shadow: var(--glow); }
.btn-primary:hover { background: var(--mint-bright); color: var(--navy); box-shadow: 0 10px 30px rgba(92,224,194,.3); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--mint); color: var(--mint); background: var(--mint-tint); }
.btn-lg { padding: 1rem 1.7rem; font-size: 1.05rem; }
.btn-sm { padding: .55rem 1.05rem; font-size: .92rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15,25,35,.80);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.logo {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-head); font-weight: 700; font-size: 1.35rem;
  color: var(--mint); text-decoration: none; letter-spacing: -.01em;
}
.logo:hover { text-decoration: none; color: var(--mint); }
.logo-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--mint-tint); color: var(--mint);
}

.main-nav { display: flex; align-items: center; }
.nav-menu { list-style: none; display: flex; align-items: center; gap: 1.6rem; margin: 0; padding: 0; }
.nav-menu a {
  color: var(--text-soft); font-weight: 500; font-size: .98rem; text-decoration: none;
  transition: color .15s ease;
}
.nav-menu a:hover { color: var(--ink); }
.nav-menu .nav-cta a { color: var(--navy); }
.nav-menu .nav-cta a:hover { color: var(--navy); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  padding: 8px; cursor: pointer;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { padding: clamp(48px, 7vw, 96px) 0 clamp(40px, 6vw, 72px); }
.hero-inner {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 5vw, 64px); align-items: center;
}
.hero h1 { margin-bottom: .6rem; }
.hero h1 .accent { color: var(--mint); }
.lede { font-size: 1.2rem; color: var(--text); max-width: 38ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.8rem 0 1.4rem; }
.hero-points { list-style: none; display: flex; flex-wrap: wrap; gap: 1.2rem; padding: 0; margin: 0; }
.hero-points li { display: inline-flex; align-items: center; gap: .5rem; color: var(--text-soft); font-size: .95rem; font-weight: 500; }
.hero-points .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); }

/* Hero before/after card — with brand corner-frame detailing */
.hero-card {
  position: relative;
  background: var(--navy-3); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem; box-shadow: var(--shadow-lg);
}
.hero-card::before, .hero-card::after {
  content: ""; position: absolute; width: 18px; height: 18px; pointer-events: none;
  border-color: var(--mint); border-style: solid; border-width: 0;
}
.hero-card::before { top: 10px; left: 10px; border-top-width: 2px; border-left-width: 2px; border-top-left-radius: 6px; }
.hero-card::after { bottom: 10px; right: 10px; border-bottom-width: 2px; border-right-width: 2px; border-bottom-right-radius: 6px; }
.hc-row { padding: 1rem 1.1rem; border-radius: var(--radius-sm); }
.hc-row p { margin: .35rem 0 0; font-size: 1rem; color: var(--ink); }
.hc-label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.hc-before { background: rgba(255,255,255,.04); }
.hc-before .hc-label { color: var(--text-faint); }
.hc-after { background: var(--mint-tint); }
.hc-after .hc-label { color: var(--mint); }
.hc-arrow { display: flex; justify-content: center; color: var(--mint); padding: .5rem 0; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--navy-3); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  padding: 28px 24px; text-align: center;
}
.trust-num { display: block; font-family: var(--font-head); font-weight: 600; font-size: 1.5rem; color: var(--mint); }
.trust-cap { display: block; font-size: .88rem; color: var(--text-soft); margin-top: .25rem; }

/* ---------- Grids & cards ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--navy-3); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--text-soft); margin: 0; }

.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--mint-tint); color: var(--mint); margin-bottom: 1.1rem;
}
.card-icon svg { width: 24px; height: 24px; }

/* What we build cards */
.build-card {
  background: var(--navy-3); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.build-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.build-card h3 { margin-bottom: .9rem; }
.build-card ul { list-style: none; padding: 0; margin: 0; }
.build-card li {
  position: relative; padding-left: 1.5rem; margin-bottom: .55rem;
  color: var(--text-soft); font-size: .96rem;
}
.build-card li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--mint);
}

/* ---------- Industries ---------- */
.industry-row { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }
.industry-chip {
  background: var(--navy-3); border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: .65rem 1.2rem; font-size: .95rem; font-weight: 500; color: var(--ink);
  box-shadow: var(--shadow-sm); transition: border-color .2s ease, color .2s ease;
}
.industry-chip:hover { border-color: var(--mint); color: var(--mint); }

/* ---------- How it works (steps) ---------- */
.step-card {
  position: relative; background: var(--navy-3); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.9rem; color: var(--text);
}
.step-card h3 { color: var(--ink); margin-bottom: .3rem; }
.step-num {
  display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
  color: var(--mint); margin-bottom: .9rem;
}
.step-price { color: var(--mint-bright); font-weight: 600; font-size: .95rem; margin-bottom: 1rem; }
.step-card ul { list-style: none; padding: 0; margin: 0; }
.step-card li { position: relative; padding-left: 1.5rem; margin-bottom: .55rem; font-size: .95rem; }
.step-card li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--mint);
}
.step-featured {
  background: linear-gradient(160deg, #1B3340, #15242F);
  border-color: var(--mint-tint-2); box-shadow: var(--shadow-lg);
}
.step-tag {
  position: absolute; top: -12px; left: 1.9rem;
  background: var(--mint); color: var(--navy); font-size: .72rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; padding: .3rem .8rem; border-radius: var(--radius-pill);
}

/* ---------- Pricing ---------- */
.pricing-table-wrap {
  overflow-x: auto; background: var(--navy-3); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-md); margin-bottom: 2.5rem;
}
.pricing-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.pricing-table th, .pricing-table td {
  padding: 1.05rem 1.3rem; text-align: left; border-bottom: 1px solid var(--line);
  font-size: .98rem; vertical-align: top;
}
.pricing-table thead th {
  font-family: var(--font-head); font-size: 1.15rem; font-weight: 600; color: var(--ink);
  background: var(--navy-2); border-bottom: 2px solid var(--line);
}
.pricing-table thead th:first-child { background: var(--navy-3); }
.pricing-table tbody th { font-weight: 600; color: var(--text-soft); width: 150px; }
.pricing-table tbody td { color: var(--ink); }
.pricing-table td strong { color: var(--mint); font-size: 1.05rem; }
.pricing-table tr:last-child th, .pricing-table tr:last-child td { border-bottom: 0; }
.pricing-table tbody tr:nth-child(3) td:nth-child(3),
.pricing-table thead th:nth-child(3) { background: var(--mint-tint); }

.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.included-title { font-family: var(--font-body); font-size: 1.05rem; font-weight: 700; display: flex; align-items: center; gap: .5rem; }
.included-yes { color: var(--mint); }
.included-no { color: var(--text-faint); }
.check-list, .x-list { list-style: none; padding: 0; margin: 0; }
.check-list li, .x-list li {
  position: relative; padding-left: 1.8rem; margin-bottom: .6rem; color: var(--text-soft); font-size: .98rem;
}
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--mint); font-weight: 700;
}
.x-list li::before {
  content: "—"; position: absolute; left: 0; top: 0; color: var(--text-faint); font-weight: 700;
}

/* ---------- Case studies ---------- */
.case-card {
  background: var(--navy-3); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow-sm);
}
.case-head { display: flex; align-items: baseline; gap: .8rem; margin-bottom: 1.1rem; flex-wrap: wrap; }
.case-tag {
  background: var(--mint-tint); color: var(--mint); font-weight: 700; font-size: .85rem;
  padding: .3rem .8rem; border-radius: var(--radius-pill);
}
.case-meta { color: var(--text-faint); font-size: .9rem; }
.case-situation, .case-built { color: var(--text-soft); font-size: 1rem; }
.case-built { margin-bottom: 1.4rem; }
.case-built strong, .case-situation strong { color: var(--ink); }
.case-results { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; border-top: 1px solid var(--line); padding-top: 1.3rem; }
.case-num { display: block; font-family: var(--font-head); font-weight: 600; font-size: 1.35rem; color: var(--mint); line-height: 1.15; }
.case-cap { display: block; font-size: .85rem; color: var(--text-faint); margin-top: .25rem; }

/* ---------- Case study workflow image ---------- */
.case-workflow {
  margin: 1.6rem auto 1.8rem;
  display: block;
  text-align: center;
}
.case-workflow img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--navy);
}
.case-workflow figcaption {
  margin-top: .7rem;
  font-size: .85rem;
  color: var(--text-faint);
  opacity: 0.75;
}

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: .8rem; }
.faq-item {
  background: var(--navy-3); border: 1px solid var(--line); border-radius: var(--radius-sm);
  overflow: hidden; transition: box-shadow .2s ease, border-color .2s ease;
}
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: var(--line-strong); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.15rem 1.4rem; font-weight: 600; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--mint); transition: transform .2s ease; line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 1.4rem 1.3rem; }
.faq-body p { margin: 0; color: var(--text-soft); }

/* ---------- Contact ---------- */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.contact-sub { color: var(--text-soft); font-size: 1.1rem; max-width: 42ch; }
.contact-list { list-style: none; padding: 0; margin: 1.6rem 0 0; display: flex; flex-direction: column; gap: 1rem; }
.contact-list li { display: flex; align-items: center; gap: .8rem; }
.contact-list svg { width: 22px; height: 22px; color: var(--mint); flex-shrink: 0; }
.contact-list a { color: var(--ink); font-size: 1.05rem; font-weight: 500; }
.contact-list a:hover { color: var(--mint); }

.contact-form-wrap {
  background: var(--navy-3); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.2rem); box-shadow: var(--shadow-lg);
}
.form-row { margin-bottom: 1.1rem; }
.form-row label { display: block; font-weight: 600; font-size: .92rem; color: var(--ink); margin-bottom: .4rem; }
.optional { color: var(--text-faint); font-weight: 400; }
.form-row input, .form-row textarea {
  width: 100%; padding: .8rem 1rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: var(--deep);
  transition: border-color .15s ease, box-shadow .15s ease; resize: vertical;
}
.form-row input::placeholder, .form-row textarea::placeholder { color: var(--text-faint); }
.form-row input:focus, .form-row textarea:focus {
  outline: none; border-color: var(--mint); box-shadow: 0 0 0 3px var(--mint-tint); background: var(--navy-4);
}
.form-row input[aria-invalid="true"], .form-row textarea[aria-invalid="true"] {
  border-color: #E5736B; box-shadow: 0 0 0 3px rgba(229,115,107,.15);
}
/* ---------- Booking block (Google Calendar CTA) ---------- */
.booking-block { display: flex; flex-direction: column; gap: 1.4rem; }
.booking-details {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .7rem;
}
.booking-details li {
  position: relative; padding-left: 1.5rem; color: var(--text-soft); font-size: .97rem; line-height: 1.5;
}
.booking-details li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--mint);
}
.booking-details strong { color: var(--ink); }

/* Static caption directly under the submit button */
.form-note { font-size: 0.85rem; opacity: 0.55; margin-top: 0.75rem; text-align: center; }
.form-note a { color: var(--mint); }
/* Live status message set by JS (success / error after submission) */
.form-status { margin: .6rem 0 0; font-size: .95rem; text-align: center; min-height: 1.2em; }
.form-status.error { color: #F0938B; }
.form-status.success { color: var(--mint); font-weight: 600; }

/* ---------- Focus visibility ---------- */
a:focus-visible, button:focus-visible, summary:focus-visible,
input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--mint); outline-offset: 2px; border-radius: 4px;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--deep); color: var(--text-soft); padding: 56px 0 28px; border-top: 1px solid var(--line); }
.footer-inner { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; padding-bottom: 2rem; border-bottom: 1px solid var(--line); }
.logo-footer { color: var(--mint); }
.logo-footer .logo-mark { background: var(--mint-tint); color: var(--mint); }
.footer-brand p { margin: .8rem 0 0; color: var(--text-faint); max-width: 30ch; }
.footer-contact { display: flex; flex-direction: column; gap: .5rem; }
.footer-contact a { color: var(--text); }
.footer-contact a:hover { color: var(--mint); }
.footer-contact span { color: var(--text-faint); font-size: .9rem; }
.footer-bottom { padding-top: 1.5rem; }
.footer-bottom p { margin: 0; font-size: .88rem; color: var(--text-faint); }

/* ---------- Long-form body sections (Success, Stakes) ---------- */
.success-body, .stakes-body {
  font-size: 1.12rem; line-height: 1.7; color: var(--text);
  text-align: left;
}
.success-body p, .stakes-body p { margin: 0 0 1.1rem; }
.success-body strong { color: var(--mint); font-weight: 600; }
.stakes-body strong { color: var(--ink); }

/* Centered CTA wrapper for in-section calls to action */
.section-cta { display: flex; justify-content: center; margin-top: 2rem; }

/* ---------- Trust commitments (4-up grid of promises) ---------- */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.trust-commitment {
  background: var(--navy-3); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.5rem; box-shadow: var(--shadow-sm);
  transition: border-color .2s ease, transform .2s ease;
}
.trust-commitment:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.trust-commitment h3 {
  font-size: 1.05rem; color: var(--mint); margin: 0 0 .55rem;
  display: flex; align-items: flex-start; gap: .5rem;
}
.trust-commitment h3::before {
  content: "✓"; color: var(--mint); font-weight: 700; line-height: 1.2;
}
.trust-commitment p { margin: 0; color: var(--text-soft); font-size: .96rem; line-height: 1.55; }

/* Center the single-card case grid */
.case-grid-single { display: flex; justify-content: center; }
.case-grid-single .case-card { max-width: 720px; width: 100%; }

/* ---------- Pricing note (caption under the pricing table) ---------- */
.pricing-note {
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.6;
  margin: 1.25rem auto 2rem;
  max-width: 600px;
}

/* ---------- "What we build" trailing note ---------- */
.build-extra {
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.6;
  color: var(--text-soft);
  margin: 2.5rem auto 0;
  max-width: 640px;
}

/* ---------- Testimonial section ---------- */
.testimonial { max-width: 760px; margin: 0 auto; text-align: center; }
.testimonial .eyebrow { margin-bottom: 1.5rem; }
.testimonial-mark {
  display: block;
  color: var(--mint);
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  margin: 0 0 1.5rem;
}
.testimonial-quote {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.4;
  color: var(--ink);
  font-weight: 500;
  margin: 0 0 2rem;
}
.testimonial-attr {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: 1rem;
  margin: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.testimonial-rule {
  display: inline-block;
  width: 36px;
  height: 2px;
  background: var(--mint);
}
.testimonial-name { color: var(--ink); font-weight: 600; }
.testimonial-role { color: var(--text-faint); font-weight: 400; }

/* ---------- Founder section ---------- */
.founder-grid {
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
}
.founder-photo {
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: 50%;
  background: var(--navy-3);
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.founder-photo img {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 50%;
}
.founder-text h3 {
  font-size: 1.6rem;
  color: var(--ink);
  margin: 0 0 .3rem;
}
.founder-title {
  display: inline-block;
  color: var(--mint);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0 0 1.4rem;
}
.founder-bio p {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 1rem;
}
.founder-bio p:last-child { margin-bottom: 0; }

/* ---------- Footer founder bio ---------- */
.footer-bio {
  font-size: 0.9rem;
  opacity: 0.75;
  line-height: 1.6;
  max-width: 340px;
  margin: 0;
  color: var(--text-soft);
}
.footer-bio strong { color: var(--ink); font-weight: 600; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .founder-grid { grid-template-columns: 1fr; max-width: 460px; gap: 1.75rem; text-align: center; }
  .founder-photo { max-width: 220px; margin: 0 auto; }
  .founder-title { margin-bottom: 1.1rem; }
}
@media (max-width: 600px) {
  .grid-4 { grid-template-columns: 1fr; }
}
@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { max-width: 480px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--navy); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    max-height: 0; overflow: hidden; transition: max-height .3s ease; padding: 0 24px;
  }
  .nav-menu.open { max-height: 75vh; padding: .5rem 24px 1.2rem; }
  .nav-m