/* ============================================================
   Conduit Growth Co. — Ignition palette
   Shared stylesheet for the marketing site
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&family=Space+Mono:wght@400;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0D1B2A;
  --navy-mid:    #162438;
  --navy-soft:   #1C2D44;
  --orange:      #E8530A;
  --orange-light:#F07840;
  --orange-dark: #B03D06;
  --ash:         #F2F2F0;
  --ash-dark:    #D8D8D4;
  --grey:        #7A7A78;
  --grey-light:  #9A9A98;
  --white:       #FFFFFF;

  --line:        rgba(255,255,255,0.08);
  --line-orange: rgba(232,83,10,0.25);

  --maxw: 1180px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;
  --mono:  'Space Mono', ui-monospace, monospace;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--navy);
  font-family: var(--sans);
  color: var(--ash);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 5%, 32px); }
.section { padding: clamp(40px, 5.5vw, 72px) 0; }
#people { padding-top: clamp(24px, 3vw, 40px); }
.section-sm { padding: clamp(28px, 4vw, 52px) 0; }
.bg-mid { background: var(--navy-mid); }
.center { text-align: center; }

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--orange);
  display: none;
}
.eyebrow.no-rule::before { display: none; }
.eyebrow-grey { color: var(--grey-light); }
.eyebrow-grey::before { background: var(--grey); }

/* ---------- Headings ---------- */
.display {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ash);
}
.display em { font-style: italic; color: var(--orange); }
h1.display { font-size: clamp(40px, 6.2vw, 76px); }
h2.display { font-size: clamp(32px, 4.4vw, 52px); }
h3.display { font-size: clamp(24px, 3vw, 34px); }

.lede {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
  color: var(--ash-dark);
  font-weight: 300;
  max-width: 60ch;
}
.muted { color: var(--grey-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 26px;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s var(--ease), background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn { transition: transform .25s var(--ease), background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease), box-shadow .25s var(--ease); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.18); }
.btn:active { transform: translateY(0) scale(0.98); box-shadow: none; }
.btn svg { width: 17px; height: 17px; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); }

.btn-secondary { background: transparent; color: var(--ash); border-color: rgba(242,242,240,0.28); }
.btn-secondary:hover { border-color: var(--orange); color: var(--orange-light); }

.btn-ghost { background: transparent; color: var(--ash); padding-left: 0; padding-right: 0; }
.btn-ghost .arrow { transition: transform .18s var(--ease); }
.btn-ghost:hover { color: var(--orange-light); }
.btn-ghost:hover .arrow { transform: translateX(4px); }

.btn-lg { padding: 17px 32px; font-size: 15px; }

/* ---------- Tags ---------- */
.tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 3px;
}
.tag-solid   { background: var(--orange); color: var(--white); }
.tag-orange  { background: rgba(232,83,10,0.13); color: var(--orange-light); border: 1px solid var(--line-orange); }
.tag-outline { background: transparent; color: var(--grey-light); border: 1px solid rgba(255,255,255,0.14); }

/* ---------- Pipe divider (signature) ---------- */
.pipe-divider { display: flex; align-items: center; margin: 0; }
.pipe-line {
  flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, rgba(232,83,10,0.35), var(--orange), rgba(232,83,10,0.35), transparent);
}
.pipe-node {
  width: 9px; height: 9px; border: 2px solid var(--orange);
  border-radius: 50%; background: var(--navy); flex-shrink: 0;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,27,42,0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 32px;
  height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand svg { width: 36px; height: 36px; flex-shrink: 0; }
.brand-name {
  font-family: var(--serif); font-size: clamp(15px, 5vw, 21px); font-weight: 700;
  letter-spacing: -0.02em; color: var(--ash); line-height: 1; white-space: nowrap;
}
.brand-name span { color: var(--orange); }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-link {
  font-size: 14px; font-weight: 500; color: var(--ash-dark);
  position: relative; padding: 4px 0; transition: color .18s var(--ease);
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--orange); transition: width .2s var(--ease);
}
.nav-link:hover { color: var(--ash); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--ash); }

.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-toggle { display: none; background: none; border: none; color: var(--ash); cursor: pointer; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; padding: 0 4px; margin-right: -4px; }
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--navy-mid); border-bottom: 1px solid var(--line);
    padding: 16px 32px 24px;
  }
  .nav-links.open .nav-link { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav-toggle { display: flex; }
  .nav-cta .btn { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: 120px 0 110px; overflow: hidden; min-height: 640px; display: flex; align-items: center; }
.hero-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center;
}
.hero .wrap { position: relative; z-index: 2; width: 100%; }
.hero-single { max-width: 600px; }

/* full-bleed hero image that dissolves into the navy behind the text */
.hero-bg {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 62%;
  z-index: 1;
  overflow: hidden;
  background: var(--navy);
}
/* Hero image */
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  display: block;
  opacity: 0.55;
  filter: saturate(0.75) brightness(0.9);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to right, var(--navy) 0%, rgba(13,27,42,0.72) 16%, rgba(13,27,42,0.28) 50%, rgba(13,27,42,0.55) 100%),
    linear-gradient(to top, var(--navy) 1%, rgba(13,27,42,0) 26%),
    linear-gradient(to bottom, var(--navy) 1%, rgba(13,27,42,0) 20%),
    radial-gradient(120% 80% at 80% 62%, rgba(232,83,10,0.14), transparent 55%);
}
.how-notes { margin-top: 44px; display: flex; gap: 26px; flex-wrap: wrap; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey-light); }
.how-notes span { display: inline-flex; align-items: center; gap: 8px; }
.how-notes .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.hero h1 { margin: 22px 0 26px; }
.hero-h1 { display: flex; flex-direction: column; gap: 2px; }
.hero-line-sm { font-size: 0.5em; font-weight: 700; color: var(--ash); }
.hero-line-dominant { font-size: 1.18em; line-height: 0.98; }
.hero-line-em { font-size: 0.72em; }
.hero .lede { margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-meta {
  margin-top: 40px; display: flex; gap: 26px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--grey-light);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }

@media (max-width: 900px) {
  .hero { min-height: 0; padding: 80px 0 72px; }
  .hero-bg { width: 100%; opacity: 0.9; }
  .hero-bg::after {
    background:
      linear-gradient(to bottom, rgba(13,27,42,0.62) 0%, rgba(13,27,42,0.82) 55%, var(--navy) 100%),
      linear-gradient(to right, var(--navy) 0%, rgba(13,27,42,0) 70%);
  }
  .hero-single { max-width: 100%; }
}

/* Hero image visual — legacy (unused) */
.hero-img-wrap { display: none; }

/* Pipeline visual */
.pipeline-card {
  background: var(--navy-mid);
  border: 1px solid var(--line-orange);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.pipeline-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px; padding-bottom: 18px; border-bottom: 1px solid var(--line);
}
.pipeline-head .ttl { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey-light); }
.pipeline-head .live { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange-light); display: inline-flex; align-items: center; gap: 7px; }
.pipeline-head .live .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); animation: pulse 1.8s var(--ease) infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.flow-step { display: flex; align-items: center; gap: 16px; padding: 13px 0; }
.flow-step .ico {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 7px;
  background: var(--navy); border: 1px solid var(--line-orange);
  display: flex; align-items: center; justify-content: center; color: var(--orange-light);
}
.flow-step .ico svg { width: 20px; height: 20px; }
.flow-step .txt .s-title { font-size: 14px; font-weight: 600; color: var(--ash); }
.flow-step .txt .s-sub { font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; color: var(--grey-light); text-transform: uppercase; }
.flow-connector { width: 1px; height: 14px; background: var(--line-orange); margin-left: 20px; }
.flow-step.final .ico { background: var(--orange); border-color: var(--orange); color: var(--white); }
.flow-step.final .s-title { color: var(--orange-light); }

/* ============================================================
   GENERIC SECTION HEADER
   ============================================================ */
.sec-head { max-width: 720px; margin-bottom: 56px; }
.sec-head.center { margin-left: auto; margin-right: auto; }
.sec-head h2 { margin: 18px 0 18px; }
.sec-head .lede { margin: 0 auto; }
.sec-head.center .lede { margin-left: auto; margin-right: auto; }

/* ---------- Page header (interior pages) ---------- */
.page-head { padding: 80px 0 64px; border-bottom: 1px solid var(--line); }
.page-head h1 { margin: 20px 0 22px; max-width: 16ch; }
.page-head .lede { margin: 0; }
.crumb { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey); margin-bottom: 8px; }

/* ============================================================
   CARDS / GRIDS
   ============================================================ */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-4 { grid-template-columns: 1fr; } }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 860px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--navy-mid);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.card:hover { transform: translateY(-3px); border-color: var(--line-orange); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.card .ico {
  width: 48px; height: 48px; border-radius: 8px;
  background: var(--navy); border: 1px solid var(--line-orange);
  display: flex; align-items: center; justify-content: center; color: var(--orange);
  margin-bottom: 22px;
}
.card .ico svg { width: 24px; height: 24px; }
.card h3 { font-family: var(--serif); font-size: 23px; font-weight: 600; color: var(--ash); margin-bottom: 10px; letter-spacing: -0.01em; }
.card p { font-size: 14.5px; color: var(--ash-dark); line-height: 1.65; }
.card .card-link {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 18px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange-light);
}
.card .card-link .arrow { transition: transform .18s var(--ease); }
.card:hover .card-link .arrow { transform: translateX(4px); }

/* numbered card (process) */
.step-num { font-family: var(--mono); font-size: 13px; font-weight: 700; color: var(--orange); margin-bottom: 16px; letter-spacing: 0.1em; }

/* ============================================================
   SERVICE DETAIL BLOCKS
   ============================================================ */
.svc {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px;
  padding: 72px 0; border-bottom: 1px solid var(--line); align-items: start;
}
.svc:last-child { border-bottom: none; }
.svc.flip .svc-media { order: 2; }
@media (max-width: 900px) { .svc { grid-template-columns: 1fr; gap: 36px; } .svc.flip .svc-media { order: 0; } .svc-media { display: none; } }

.svc-index { font-family: var(--mono); font-size: 13px; font-weight: 700; color: var(--orange); letter-spacing: 0.1em; }
.svc h2 { font-family: var(--serif); font-size: clamp(28px,3.4vw,40px); font-weight: 700; color: var(--ash); margin: 14px 0 18px; letter-spacing: -0.02em; line-height: 1.05; }
.svc .svc-desc { font-size: 16px; color: var(--ash-dark); line-height: 1.7; margin-bottom: 26px; }

.includes-label, .outcomes-label {
  font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--grey-light); margin-bottom: 14px; display: block;
}
.includes { list-style: none; display: grid; gap: 11px; margin-bottom: 30px; }
.includes li { display: flex; gap: 12px; font-size: 14.5px; color: var(--ash); line-height: 1.5; }
.includes li svg { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }

.outcomes { display: flex; flex-wrap: wrap; gap: 10px; }

/* media panel for services */
.svc-media-inner {
  background: var(--navy-mid); border: 1px solid var(--line-orange); border-radius: 10px;
  padding: 28px; position: sticky; top: 96px;
}
.svc-media-inner .mh { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--grey-light); margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.metric-row { display: flex; align-items: baseline; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid var(--line); }
.metric-row:last-child { border-bottom: none; }
.metric-row .ml { font-size: 13.5px; color: var(--ash-dark); }
.metric-row .mv { font-family: var(--mono); font-size: 12px; font-weight: 700; color: var(--orange-light); letter-spacing: 0.04em; }
@media (max-width: 900px) { .svc-media-inner { position: static; } }

/* ============================================================
   FEATURE / SPLIT
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.ratio { grid-template-columns: 1.1fr 0.9fr; }
@media (max-width: 880px) { .split, .split.ratio { grid-template-columns: 1fr; gap: 36px; } }

.feature-list { list-style: none; display: grid; gap: 22px; margin-top: 8px; }
.feature-list li { display: flex; gap: 16px; }
.feature-list .fico {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 8px; background: var(--navy-mid);
  border: 1px solid var(--line-orange); display: flex; align-items: center; justify-content: center; color: var(--orange);
}
.feature-list .fico svg { width: 20px; height: 20px; }
.feature-list .ftitle { font-size: 16px; font-weight: 600; color: var(--ash); margin-bottom: 4px; }
.feature-list .fbody { font-size: 14px; color: var(--ash-dark); line-height: 1.6; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { position: relative; background: var(--navy-mid); border-top: 1px solid var(--line-orange); border-bottom: 1px solid var(--line-orange); overflow: hidden; }
.cta-band .wrap { padding-top: 88px; padding-bottom: 88px; position: relative; z-index: 1; }
.cta-inner { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 48px; align-items: center; }
.cta-inner h2 { margin-bottom: 16px; }
.cta-actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.cta-actions .btn { width: 100%; justify-content: center; }
.cta-glow { position: absolute; right: -120px; top: 50%; transform: translateY(-50%); width: 460px; height: 460px; background: radial-gradient(circle, rgba(232,83,10,0.16), transparent 65%); pointer-events: none; }
@media (max-width: 820px) { .cta-inner { grid-template-columns: 1fr; gap: 28px; } .cta-actions .btn { width: auto; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); border-top: 1px solid var(--line); padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand { margin-bottom: 16px; }
.footer-blurb { font-size: 14px; color: var(--grey-light); max-width: 32ch; line-height: 1.6; }
.footer-col h4 { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey); margin-bottom: 18px; }
.footer-col a { display: block; font-size: 14px; color: var(--ash-dark); padding: 6px 0; transition: color .15s var(--ease); }
.footer-col a:hover { color: var(--orange-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid var(--line); flex-wrap: wrap; gap: 14px; }
.footer-bottom .meta { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--grey); }
.footer-markets { display: flex; gap: 8px; }

/* ============================================================
   FORMS (contact)
   ============================================================ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey-light); }
.field input, .field select, .field textarea {
  background: var(--navy); border: 1px solid var(--line); border-radius: 4px;
  padding: 13px 15px; color: var(--ash); font-family: var(--sans); font-size: 16px;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--grey); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,83,10,0.18);
}
.field textarea { resize: vertical; min-height: 120px; }
.field select { appearance: none; cursor: pointer; }

/* ============================================================
   MISC
   ============================================================ */
.divider-block { padding: 8px 0; }
.kicker-stat { font-family: var(--serif); font-size: clamp(40px,5vw,64px); font-weight: 700; color: var(--orange); line-height: 1; letter-spacing: -0.02em; }

/* ============================================================
   TEAM CARD
   ============================================================ */
.team-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: center;
  background: var(--navy);
  border: 1px solid var(--line-orange);
  border-radius: 12px;
  overflow: hidden;
}
.team-photo {
  height: 480px;
  overflow: hidden;
  border-radius: 16px;
  flex-shrink: 0;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: contrast(1.04) saturate(0.96);
  transition: transform .5s var(--ease);
}
.team-card:hover .team-photo img { transform: scale(1.03); }
.team-bio {
  padding: 44px 44px 44px 0;
}
.team-name {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 700;
  color: var(--ash);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.team-role {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 22px;
}
.team-text {
  font-size: 16px;
  color: var(--ash-dark);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 52ch;
}
.team-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.team-trust span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ash);
  font-weight: 500;
}
.team-trust svg { color: var(--orange); flex-shrink: 0; }
@media (max-width: 860px) {
  .team-card { grid-template-columns: 1fr; }
  .team-photo { height: 360px; }
  .team-bio { padding: 32px; }
}
.team-card + .team-card { margin-top: 28px; }
.team-card.flip { grid-template-columns: 1fr 340px; }
.team-card.flip .team-photo { order: 2; }
.team-card.flip .team-bio { padding: 44px 0 44px 44px; }
@media (max-width: 860px) {
  .team-card.flip { grid-template-columns: 1fr; }
  .team-card.flip .team-photo { order: 0; }
  .team-card.flip .team-bio { padding: 32px; }
}

/* Services page — full-bleed cinematic hero */
.svc-hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 120px 0 100px;
}
.svc-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.svc-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% 28%;
  display: block;
  filter: saturate(0.85) contrast(1.05);
}
.svc-hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, var(--navy) 0%, rgba(13,27,42,0.88) 38%, rgba(13,27,42,0.55) 65%, rgba(13,27,42,0.75) 100%),
    linear-gradient(to bottom, rgba(13,27,42,0.3) 0%, transparent 30%, transparent 70%, var(--navy) 100%),
    radial-gradient(120% 80% at 72% 60%, rgba(232,83,10,0.14), transparent 55%);
}
.svc-hero-content { position: relative; z-index: 1; }
.svc-hero-text { max-width: 620px; }
@media (max-width: 860px) {
  .svc-hero { min-height: 0; padding: 100px 0 80px; }
  .svc-hero-bg img { object-position: 75% center; }
  .svc-hero-bg::after {
    background: linear-gradient(to bottom, rgba(13,27,42,0.6) 0%, rgba(13,27,42,0.92) 60%, var(--navy) 100%);
  }
}

/* Services page split header (old — kept for safety) */
.svc-head-split,
.svc-head-grid,
.svc-head-text,
.svc-head-img { display: none; }

/* Network background overlay — reusable */
.has-network-bg { position: relative; overflow: hidden; }
.has-network-bg::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background-image: url('about-story.jpg');
  background-size: cover;
  background-position: center right;
  opacity: 0.28;
  pointer-events: none;
}
.has-network-bg > .wrap,
.has-network-bg > .cta-glow { position: relative; z-index: 1; }

/* About page story section — full-bleed photo, text anchored left */
.about-story {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.about-story-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-story-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  display: block;
  filter: saturate(0.72) brightness(0.82);
}
.about-story-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, var(--navy) 0%, rgba(13,27,42,0.94) 24%, rgba(13,27,42,0.65) 48%, rgba(13,27,42,0.18) 72%, rgba(13,27,42,0.08) 100%),
    linear-gradient(to bottom, var(--navy) 0%, transparent 14%, transparent 84%, var(--navy) 100%);
}
.about-story-text {
  position: relative;
  z-index: 1;
  max-width: 580px;
}
@media (max-width: 900px) {
  .about-story { min-height: 0; padding: 80px 0; }
  .about-story-bg img { object-position: 78% center; }
  .about-story-bg::after {
    background:
      linear-gradient(to bottom, var(--navy) 0%, rgba(13,27,42,0.7) 30%, rgba(13,27,42,0.85) 70%, var(--navy) 100%),
      linear-gradient(to right, rgba(13,27,42,0.5) 0%, rgba(13,27,42,0) 100%);
  }
  .about-story-text { max-width: 100%; }
}

/* Calendly placeholder slot */
.calendly-slot {
  max-width: 760px;
  margin: 0 auto;
  border: 1px dashed var(--line-orange);
  border-radius: 10px;
  overflow: hidden;
}
.calendly-inline-widget {
  width: 100% !important;
  min-width: 0 !important;
}

/* Trade image break — Why Conduit section */
.trade-img-break {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin: 0 0 28px;
  height: 380px;
}
.trade-img-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  display: block;
  filter: saturate(0.9) contrast(1.05);
}
.trade-img-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(13,27,42,0.85) 0%, rgba(13,27,42,0.2) 40%, rgba(13,27,42,0.1) 100%),
    linear-gradient(to right, rgba(13,27,42,0.3) 0%, rgba(13,27,42,0) 40%),
    radial-gradient(120% 80% at 30% 60%, rgba(232,83,10,0.1), transparent 55%);
  pointer-events: none;
}
.trade-img-caption {
  position: absolute;
  bottom: 24px;
  left: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242,242,240,0.55);
}
@media (max-width: 640px) {
  .trade-img-break { height: 240px; }
  .trade-img-caption { left: 20px; bottom: 16px; }
}

/* AI highlight card */
.ai-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-soft) 0%, var(--navy-mid) 100%);
  border: 1px solid var(--line-orange);
  border-radius: 10px;
  padding: 36px 40px;
  margin: 0 0 24px;
  position: relative;
  overflow: hidden;
}
.ai-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 140% at 8% 50%, rgba(232,83,10,0.13), transparent 55%);
  pointer-events: none;
}
.ai-card-icon {
  width: 64px; height: 64px;
  background: var(--navy);
  border: 1px solid var(--line-orange);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ai-card-eyebrow {
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 8px;
}
.ai-card-title {
  font-family: var(--serif); font-size: clamp(20px, 2vw, 26px);
  font-weight: 700; color: var(--ash);
  letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 12px;
}
.ai-card-desc {
  font-size: 15px; color: var(--ash-dark); line-height: 1.7; max-width: 72ch;
}
.ai-card-tags {
  display: flex; flex-direction: column; gap: 8px; flex-shrink: 0;
}
@media (max-width: 860px) {
  .ai-card { grid-template-columns: 1fr; gap: 20px; padding: 28px; }
  .ai-card-tags { flex-direction: row; flex-wrap: wrap; }
}

.why-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  background: var(--navy);
  border: 1px solid var(--line-orange);
  border-radius: 10px;
  padding: 32px 40px;
}
.why-cta-text {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: var(--ash);
  line-height: 1.5;
  max-width: 52ch;
}
@media (max-width: 640px) {
  .why-cta-strip { flex-direction: column; align-items: flex-start; padding: 28px; }
}

/* Trust badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 6px;
  padding: 9px 15px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.trust-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ash);
  white-space: nowrap;
}

/* ============================================================
   SYSTEM STRIP (What we do)
   ============================================================ */
.system-strip {
  display: flex;
  align-items: flex-start;
  gap: 0;
  background: var(--navy-mid);
  border: 1px solid var(--line-orange);
  border-radius: 10px;
  padding: 36px 0;
  margin-bottom: 0;
}
.system-item {
  flex: 1;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 0 36px;
}
.system-num {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  padding-top: 2px;
}
.system-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--ash);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.system-desc {
  font-size: 14px;
  color: var(--ash-dark);
  line-height: 1.65;
}
.system-divider {
  width: 1px;
  align-self: stretch;
  background: var(--line-orange);
  flex-shrink: 0;
}
@media (max-width: 860px) {
  .system-strip { flex-direction: column; padding: 0; }
  .system-item { padding: 28px 28px; }
  .system-divider { width: auto; height: 1px; align-self: stretch; margin: 0; }
}

/* Stats strip */
.stats-strip {
  background: var(--navy);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 0 40px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.stat-item:first-child { border-left: 1px solid var(--line); }
#trust + .about-story { padding-top: 44px; }
.stat-track { align-items: stretch; }
.stat-track .stat-item { flex: 0 0 300px; width: 300px; border-right: 1px solid var(--line); }
.stat-track .stat-item:last-child { border-right: none; }
@media (max-width: 700px) { .stat-track .stat-item { flex-basis: 240px; width: 240px; } }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.stat-plus {
  font-size: 0.55em;
  vertical-align: super;
  color: var(--orange-light);
}
.stat-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 6px;
  line-height: 1.3;
}
.stat-sub {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}
@media (max-width: 780px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 28px 20px; border-right: none; border-bottom: 1px solid var(--line); }
  .stat-item:first-child { border-left: none; }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--line); }
  .stat-item:last-child { border-bottom: none; }
  .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
}
@media (max-width: 440px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item:nth-child(odd) { border-right: none; }
}

/* Pipeline dashboard widget */
.pipeline-section { background: var(--navy); }
.pw {
  background: var(--navy-soft);
  border: 1px solid var(--line-orange);
  border-radius: 14px;
  padding: 32px 36px;
  max-width: 860px;
  margin: 0 auto;
}
.pw-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.pw-title {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ash);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pw-powered {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 7px;
}
.pw-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-block;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
.pw-dot.blue { background: #60a5fa; }
.pw-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}
.pw-metric { padding: 0; }
.pw-bar {
  width: 44px; height: 5px;
  border-radius: 3px;
  background: var(--orange);
  margin-bottom: 10px;
}
.pw-bar.blue { background: #60a5fa; }
.pw-mlabel {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.pw-mnum {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--ash);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.pw-msub {
  font-size: 13px;
  color: var(--muted);
}
.pw-chart-wrap {
  background: var(--navy-mid);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px 24px 16px;
  margin-bottom: 24px;
}
.pw-chart-hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.pw-chart-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ash);
}
.pw-chart-range {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.pw-canvas {
  width: 100%;
  height: 160px;
  display: block;
}
.pw-legend {
  display: flex;
  gap: 24px;
  margin-top: 14px;
}
.pw-leg {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 7px;
}
.pw-leg-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-block;
}
.pw-leg.blue .pw-leg-dot {
  background: transparent;
  border: 2px dashed #60a5fa;
}
.pw-steps {
  display: flex;
  align-items: center;
  gap: 16px;
}
.pw-step {
  flex: 1;
  background: rgba(232,83,10,0.1);
  border: 1px solid var(--line-orange);
  border-radius: 10px;
  padding: 14px 20px;
  text-align: center;
}
.pw-step-num {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--orange);
  margin-bottom: 4px;
}
.pw-step-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ash);
}
.pw-step-arrow {
  font-size: 20px;
  color: var(--muted);
  flex-shrink: 0;
}
@media (max-width: 620px) {
  .pw { padding: 24px 20px; }
  .pw-metrics { grid-template-columns: 1fr 1fr; gap: 16px; }
  .pw-steps { flex-wrap: wrap; }
  .pw-step-arrow { display: none; }
}

/* ============================================================
   TOOLS MARQUEE
   ============================================================ */
.tools-band { overflow: hidden; }
.tools-head {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-light);
  text-align: center;
  margin-bottom: 40px;
}
.tools-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}
.tools-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: tools-scroll 34s linear infinite;
}
.tools-marquee:hover .tools-track { animation-play-state: paused; }
@keyframes tools-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.tool-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  color: var(--ash-dark);
  opacity: 0.62;
  transition: opacity .2s var(--ease), color .2s var(--ease);
}
.tool-logo:hover { opacity: 1; color: var(--ash); }
.tool-logo svg { width: 30px; height: 30px; flex-shrink: 0; }
.tool-logo:hover svg { color: var(--orange-light); }
.tool-logo span {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.tool-logo .tld { color: var(--orange); font-weight: 600; }
@media (prefers-reduced-motion: reduce) {
  .tools-track { animation: none; flex-wrap: wrap; justify-content: center; gap: 40px 56px; }
}

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
/* ============================================================
   FLOATING CTA BUBBLE
   ============================================================ */
.float-cta-wrap {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transform: translateY(120px);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
  pointer-events: none;
}
.float-cta-wrap.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.float-cta-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--orange);
  box-shadow: 0 4px 18px rgba(232,83,10,0.35);
  flex-shrink: 0;
}
.float-cta-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.float-cta-speech {
  background: var(--navy-soft);
  border: 1px solid var(--line-orange);
  border-radius: 20px 20px 20px 4px;
  padding: 9px 16px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ash);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  align-self: flex-start;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.float-cta-speech:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.float-cta {
  display: none;
}
@media (max-width: 480px) {
  .float-cta-wrap { bottom: 20px; right: 20px; }
  .float-cta-avatar { width: 60px; height: 60px; }
  .float-cta-speech { white-space: nowrap; font-size: 10px; padding: 8px 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover { transform: none; }
}

/* ============================================================
   RESPONSIVE POLISH — fluid, mobile-first
   ============================================================ */

/* Scroll offset for sticky nav */
[id] { scroll-margin-top: 88px; }

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

/* ---- Navigation ---- */
@media (max-width: 880px) {
  .nav-links.open { padding: 16px clamp(20px, 5%, 32px) 24px; }
}
@media (max-width: 380px) {
  .nav-inner { padding: 0 14px; gap: 10px; }
  .brand svg { width: 28px; height: 28px; }
  .brand { gap: 8px; }
}

/* ---- Hero ---- */
@media (max-width: 480px) {
  .hero { padding: clamp(64px, 15vw, 80px) 0 clamp(48px, 12vw, 64px); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; width: 100%; }
  .hero-meta { gap: 12px; }
}

/* ---- Page header ---- */
@media (max-width: 640px) {
  .page-head { padding: clamp(40px, 10vw, 56px) 0 clamp(28px, 7vw, 40px); }
  .page-head h1 { max-width: 100%; }
}

/* ---- Sec head ---- */
@media (max-width: 640px) {
  .sec-head { margin-bottom: clamp(28px, 6vw, 40px); }
}

/* ---- Cards ---- */
@media (max-width: 480px) {
  .card { padding: 22px 18px; }
}

/* ---- Grid 3 — 2-col at medium, 1-col at small ---- */
@media (max-width: 860px) and (min-width: 560px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Service blocks ---- */
@media (max-width: 640px) { .svc { padding: 48px 0; } }
@media (max-width: 480px) { .svc-hero { padding: 80px 0 60px; } }

/* ---- Service outcomes list (AI page) ---- */
.svc-outcomes {
  list-style: none; display: grid; gap: 10px; margin: 0 0 24px;
}
.svc-outcomes li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--ash); line-height: 1.55;
}
.svc-outcomes li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
}

/* ---- Team photos — fluid aspect-ratio, no clipping ---- */
@media (max-width: 860px) {
  .team-photo { height: auto; aspect-ratio: 4/3; }
  .team-photo img { height: 100%; object-position: center 20%; }
}
@media (max-width: 480px) {
  .team-photo { aspect-ratio: 3/4; }
  .team-photo img { object-position: center 15%; }
  .team-bio { padding: 24px !important; }
  .team-name { font-size: 26px; }
}

/* ---- Pipeline widget ---- */
@media (max-width: 480px) {
  .pw { padding: 20px 16px; }
  .pw-metrics { grid-template-columns: 1fr; gap: 12px; }
  .pw-header { flex-wrap: wrap; gap: 8px; }
}

/* ---- System strip ---- */
@media (max-width: 480px) { .system-item { padding: 20px 18px; } }

/* ---- Stats strip ---- */
@media (max-width: 480px) { .stats-strip { padding: 40px 0; } }

/* ---- AI card & why-cta ---- */
@media (max-width: 480px) {
  .ai-card { padding: 20px 16px; }
  .why-cta-strip { padding: 22px 18px; }
  .why-cta-text { font-size: 17px; }
}

/* ---- CTA band ---- */
@media (max-width: 480px) {
  .cta-band .wrap { padding-top: clamp(48px, 10vw, 64px); padding-bottom: clamp(48px, 10vw, 64px); }
  .cta-actions { align-items: stretch; }
  .cta-actions .btn { width: 100% !important; justify-content: center; }
}

/* ---- Footer — touch-friendly links ---- */
.footer-col a { min-height: 44px; display: flex; align-items: center; }
.footer-col a[href^="mailto"] { word-break: break-all; overflow-wrap: anywhere; display: block; }
@media (max-width: 520px) {
  .footer { padding: 48px 0 32px; }
  .footer-grid { margin-bottom: 32px; }
}

/* ---- Float CTA ---- */
@media (max-width: 480px) {
  .float-cta-wrap { bottom: 20px; right: 20px; }
  .float-cta-avatar { width: 60px; height: 60px; }
  .float-cta-speech { white-space: nowrap; font-size: 10px; padding: 8px 13px; }
}

/* ---- Tag chips on mobile ---- */
@media (max-width: 480px) { .tag { font-size: 9px; padding: 5px 9px; } }

/* ============================================================
   TESTIMONIAL PLACEHOLDERS (Trust section)
   ============================================================ */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 860px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial-card {
  background: var(--navy-mid);
  border: 1px dashed var(--line-orange);
  border-radius: 8px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testimonial-quote { font-family: var(--serif); font-style: italic; font-size: 18px; line-height: 1.55; color: var(--ash-dark); }
.testimonial-tag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey); }

/* ============================================================
   TESTIMONIALS V2 — trust wall
   ============================================================ */
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 980px) { .exp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .exp-grid { grid-template-columns: 1fr; } }
.exp-card {
  background: linear-gradient(160deg, var(--navy-mid) 0%, var(--navy-soft) 100%);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 34px 30px;
  transition: transform 250ms var(--ease), border-color 250ms var(--ease), box-shadow 250ms var(--ease);
}
.exp-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-orange);
  box-shadow: 0 20px 48px rgba(0,0,0,0.32), 0 0 0 1px rgba(232,83,10,0.15);
}
.exp-ico {
  width: 46px; height: 46px; border-radius: 10px;
  background: rgba(232,83,10,0.1); border: 1px solid var(--line-orange);
  display: flex; align-items: center; justify-content: center; color: var(--orange);
  margin-bottom: 22px; transition: transform 250ms var(--ease);
}
.exp-ico svg { width: 22px; height: 22px; }
.exp-card:hover .exp-ico { transform: scale(1.08) rotate(-4deg); }
.exp-card h3 { font-family: var(--serif); font-size: 21px; font-weight: 600; font-style: italic; color: var(--ash); margin-bottom: 12px; letter-spacing: -0.01em; line-height: 1.3; }
.exp-card p { font-size: 14.5px; color: var(--ash-dark); line-height: 1.7; }

.tw-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.tw-head h2 { margin: 16px 0 14px; }
.tw-head .lede { margin: 0 auto; }
/* Transform-driven carousel (avoids scrollLeft rounding issues on Windows) */
.tw-carousel-wrap { position: relative; margin: 0 -32px; }
.tw-carousel-3d {
  overflow: hidden;
  padding: 40px 0 56px;
  touch-action: pan-y;
  cursor: grab;
}
.tw-carousel-3d.grabbing { cursor: grabbing; }
.tw-track {
  display: flex;
  gap: 28px;
  width: max-content;
  will-change: transform;
  transform: translate3d(0,0,0);
}
.tw-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy-mid); border: 1px solid var(--line-orange);
  color: var(--ash); display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 5; transition: border-color .18s var(--ease), background .18s var(--ease);
}
.tw-nav:hover { background: var(--orange); border-color: var(--orange); }
.tw-nav svg { width: 20px; height: 20px; }
.tw-nav.prev { left: 8px; }
.tw-nav.next { right: 8px; }
@media (max-width: 700px) { .tw-nav { display: none; } }

.tw-card {
  background: var(--ash);
  border-radius: 16px;
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  width: 320px;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 8px 20px rgba(0,0,0,0.06);
  transition: transform 120ms linear, opacity 120ms linear, box-shadow 250ms var(--ease);
  cursor: pointer;
  will-change: transform;
}
.tw-card:hover { box-shadow: 0 4px 10px rgba(0,0,0,0.1), 0 20px 40px rgba(0,0,0,0.14); }
.tw-stars { display: flex; gap: 3px; color: #E8A317; }
.tw-stars svg { width: 15px; height: 15px; }
.tw-quote { font-size: 14.5px; line-height: 1.65; color: #262523; flex: 1; }
.tw-person { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid rgba(13,27,42,0.08); }
.tw-avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.tw-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 250ms var(--ease); }
.tw-card:hover .tw-avatar img { transform: scale(1.02); }
.tw-name { font-size: 14.5px; font-weight: 700; color: #14110E; line-height: 1.3; }
.tw-role { font-size: 12px; color: #6B6862; line-height: 1.4; }
.tw-loc { font-size: 11.5px; color: #8C8983; }
.tw-badge {
  position: absolute; bottom: 14px; right: 16px;
  display: flex; align-items: center; gap: 4px;
  font-family: var(--sans); font-size: 9.5px; font-weight: 600; color: #8C8983;
  background: rgba(13,27,42,0.04); border-radius: 20px; padding: 3px 8px 3px 6px;
}
.tw-badge svg { width: 11px; height: 11px; }
