/* ==========================================================================
   Oasis Mental Wellness Initiative — Corporate Website
   Brand palette sampled directly from logo & brochure assets:
   navy #00101E, charcoal #373743, deep teal #0B5A52, accent teal #18C995
   ========================================================================== */

:root {
  --navy-900: #00101e;
  --navy-800: #081826;
  --charcoal: #373743;
  --teal-deep: #0b5a52;
  --teal-deep-2: #0a4d46;
  --teal: #18c995;
  --teal-light: #5be0b5;
  --teal-tint: #e6f9f2;
  --white: #ffffff;
  --off-white: #f7f8f9;
  --mist: #eef1f3;
  --ink: #16202a;
  --slate: #4a5568;
  --slate-light: #7c8a97;
  --line: #e4e8eb;

  --font-heading: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(0, 16, 30, 0.06);
  --shadow-md: 0 12px 32px rgba(0, 16, 30, 0.1);
  --shadow-lg: 0 24px 60px rgba(0, 16, 30, 0.16);

  --container: 1180px;
  --header-h: 84px;
}

/* ---------- Reset ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--navy-900);
}

.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4, .on-dark p, .on-dark li { color: var(--white); }

h1 { font-size: clamp(2.2rem, 4.2vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.3rem; }

p { color: var(--slate); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--teal);
  display: inline-block;
}

.lede {
  font-size: 1.15rem;
  color: var(--slate);
  max-width: 640px;
}

.on-dark .lede { color: rgba(255,255,255,0.78); }

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

.section {
  padding: 96px 0;
}

.section-tight { padding: 64px 0; }

.section-head {
  max-width: 700px;
  margin-bottom: 56px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.bg-navy { background: var(--navy-900); }
.bg-charcoal { background: var(--charcoal); }
.bg-teal-deep {
  background: linear-gradient(160deg, var(--teal-deep) 0%, var(--teal-deep-2) 100%);
}
.bg-off { background: var(--off-white); }
.bg-mist { background: var(--mist); }

.grid {
  display: grid;
  gap: 28px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color .25s ease;
  white-space: nowrap;
}

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: var(--teal);
  color: var(--navy-900);
  box-shadow: 0 10px 24px rgba(24, 201, 149, 0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(24, 201, 149, 0.38); }

.btn-outline-light {
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,0.08); transform: translateY(-2px); }

.btn-outline-dark {
  border-color: rgba(0,16,30,0.18);
  color: var(--navy-900);
}
.btn-outline-dark:hover { border-color: var(--navy-900); background: rgba(0,16,30,0.04); transform: translateY(-2px); }

.btn-block { width: 100%; }
.btn-sm { padding: 11px 22px; font-size: 0.85rem; }

.cta-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(0, 16, 30, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s ease;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand .logo-mark { width: 30px; height: 30px; flex-shrink: 0; }
.brand .logo-text {
  font-family: var(--font-heading);
  color: var(--white);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  line-height: 1;
}
.brand .logo-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--white); }

.nav-links a.active { color: var(--teal-light); }

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.nav-cta { display: flex; align-items: center; gap: 22px; }

.mobile-menu { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 30px;
  height: 22px;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 96px) 0 110px;
  overflow: hidden;
  color: var(--white);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.35;
  pointer-events: none;
}

.hero::before {
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(24,201,149,0.55) 0%, rgba(24,201,149,0) 70%);
  top: -220px;
  right: -160px;
}

.hero::after {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(11,90,82,0.7) 0%, rgba(11,90,82,0) 70%);
  bottom: -220px;
  left: -140px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 78%);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 2; }

.hero-inner { max-width: 760px; }

.hero-inner .lede { font-size: 1.2rem; margin-top: 22px; }

.hero-trust {
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.14);
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
}

/* ---------- Hero split (copy + photo) ---------- */
.hero-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-media {
  position: relative;
}

.hero-media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5 / 4.1;
}

.hero-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(0,16,30,0) 45%, rgba(0,16,30,0.55) 100%),
    linear-gradient(0deg, rgba(11,90,82,0.18), rgba(11,90,82,0.18));
}

.page-hero {
  position: relative;
  color: var(--white);
  padding: calc(var(--header-h) + 76px) 0 76px;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24,201,149,0.4) 0%, rgba(24,201,149,0) 70%);
  top: -240px;
  right: -140px;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .lede { margin-top: 18px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.breadcrumb a:hover { color: var(--teal-light); }

/* ---------- Stat strip ---------- */
.stat-strip {
  position: relative;
  margin-top: -64px;
  z-index: 3;
}

.stat-card-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.stat-card {
  background: var(--white);
  padding: 34px 26px;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--teal-deep);
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.45;
}

/* ---------- Icon badge ---------- */
.icon-badge {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-tint);
  color: var(--teal-deep);
  margin-bottom: 22px;
  flex-shrink: 0;
}
.icon-badge svg { width: 26px; height: 26px; }

.icon-badge.on-dark {
  background: rgba(255,255,255,0.08);
  color: var(--teal-light);
}

.icon-badge.solid {
  background: var(--teal);
  color: var(--navy-900);
}

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }

.card h3 { margin-bottom: 12px; }
.card p { font-size: 0.96rem; }

.card-list {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--slate);
}
.card-list li svg { width: 16px; height: 16px; margin-top: 3px; color: var(--teal-deep); flex-shrink: 0; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--teal-deep);
}
.card-link svg { width: 15px; height: 15px; transition: transform 0.25s ease; }
.card:hover .card-link svg { transform: translateX(4px); }

.card-dark {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-md);
  padding: 34px 30px;
}
.card-dark h3 { color: var(--white); }
.card-dark p { color: rgba(255,255,255,0.7); }

/* ---------- Split section ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-reverse .split-media { order: 2; }

.pill-list { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.pill-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.98rem;
  color: var(--slate);
}
.pill-list li svg {
  width: 20px; height: 20px; color: var(--teal-deep); flex-shrink: 0; margin-top: 2px;
}
.on-dark .pill-list li { color: rgba(255,255,255,0.78); }

/* ---------- Framework timeline ---------- */
.framework-timeline {
  position: relative;
  display: grid;
  gap: 26px;
}

.framework-step {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 28px;
  position: relative;
}

.framework-step .step-num {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--teal-light);
  position: relative;
  z-index: 2;
}

.framework-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 42px;
  top: 84px;
  width: 1px;
  height: calc(100% - 20px);
  background: linear-gradient(to bottom, rgba(24,201,149,0.5), rgba(255,255,255,0.06));
}

.framework-step .step-body {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 26px 30px;
}

.framework-step .step-body h3 { margin-bottom: 8px; }
.framework-step .step-body p { margin: 0; }

/* ---------- Founder ---------- */
.founder-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: 44px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 36px;
  align-items: center;
}

.founder-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 14px 30px rgba(11,90,82,0.3);
}

.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-role {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  color: var(--teal-deep);
  font-weight: 600;
  margin: 4px 0 14px;
}

.founder-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 16px;
}
.founder-creds li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--slate);
}
.founder-creds li svg { width: 15px; height: 15px; color: var(--teal-deep); }

/* ---------- Testimonial ---------- */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 46px;
  position: relative;
}
.testimonial .quote-mark {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--teal);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.testimonial p.quote {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--navy-900);
  line-height: 1.5;
}
.testimonial .attribution {
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--slate-light);
  font-weight: 600;
}

/* ---------- Sector chips ---------- */
.chip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.chip:hover { border-color: var(--teal); transform: translateY(-3px); }
.chip svg { width: 20px; height: 20px; color: var(--teal-deep); flex-shrink: 0; }

/* ---------- Value grid ---------- */
.value-item {
  display: flex;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.value-item:last-child { border-bottom: none; }
.value-item .icon-badge { margin-bottom: 0; }
.value-item h4 { margin-bottom: 6px; }
.value-item p { font-size: 0.92rem; margin: 0; }

/* ---------- Metric list (impact) ---------- */
.metric-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.metric-row:last-child { border-bottom: none; }
.metric-row .metric-figure {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--teal-light);
  min-width: 88px;
}
.metric-row p { margin: 0; color: rgba(255,255,255,0.78); font-size: 0.95rem; }

/* ---------- Case study ---------- */
.case-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.case-card-head {
  padding: 30px 34px;
  background: var(--navy-900);
  color: var(--white);
}
.case-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-light);
  background: rgba(24,201,149,0.14);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.case-card-body { padding: 34px; }
.case-card-body h4 { font-size: 0.95rem; color: var(--navy-900); margin: 22px 0 12px; font-family: var(--font-heading); }
.case-outcomes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 10px;
}
.case-outcomes li {
  font-size: 0.88rem;
  color: var(--slate);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.case-outcomes li svg { width: 15px; height: 15px; color: var(--teal-deep); margin-top: 2px; flex-shrink: 0; }

/* ---------- Resources ---------- */
.resource-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.resource-type {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 14px;
}
.resource-card h3 { font-size: 1.08rem; margin-bottom: 10px; }
.resource-card p { font-size: 0.9rem; flex-grow: 1; }

.topic-tag {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink);
  background: var(--white);
  transition: all 0.25s ease;
}
.topic-tag:hover { background: var(--navy-900); color: var(--white); border-color: var(--navy-900); }
.topic-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Form ---------- */
.form-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 46px;
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--off-white);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 110px; }

.form-note {
  font-size: 0.82rem;
  color: var(--slate-light);
  margin-top: 16px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 10px;
}
.form-success.is-visible { display: block; }
.form-success .icon-badge { margin: 0 auto 20px; }

.contact-info-card {
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
}
.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-line:first-of-type { padding-top: 0; }
.contact-line:last-child { border-bottom: none; }
.contact-line svg { width: 20px; height: 20px; color: var(--teal-light); margin-top: 2px; flex-shrink: 0; }
.contact-line strong { display: block; font-family: var(--font-heading); font-size: 0.82rem; color: rgba(255,255,255,0.55); font-weight: 500; margin-bottom: 4px; }
.contact-line span, .contact-line a { font-size: 0.98rem; }

/* ---------- Final CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 64px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24,201,149,0.4), transparent 70%);
  top: -180px;
  right: -100px;
}
.cta-band-content { position: relative; z-index: 2; max-width: 560px; }
.cta-band-content p { color: rgba(255,255,255,0.78); margin-top: 12px; }
.cta-band .cta-row { position: relative; z-index: 2; margin-top: 0; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 14px 20px;
  display: none;
  align-items: center;
  justify-content: center;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.92rem; max-width: 300px; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.footer-social a:hover { background: var(--teal); border-color: var(--teal); color: var(--navy-900); }
.footer-social svg { width: 16px; height: 16px; }

.footer-col h5 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.92rem; color: rgba(255,255,255,0.62); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--teal-light); }

.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; color: rgba(255,255,255,0.62); margin-bottom: 14px; }
.footer-contact svg { width: 16px; height: 16px; color: var(--teal-light); margin-top: 3px; flex-shrink: 0; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a:hover { color: var(--teal-light); }
.footer-legal { display: flex; gap: 22px; }

/* ---------- Reveal animation ----------
   Hidden only once JS confirms it can reveal them again (progressive
   enhancement: no-JS / JS-blocked visitors still see full content). */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stat-card-row { grid-template-columns: repeat(2, 1fr); }
  .chip-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-reverse .split-media { order: 0; }
  .hero-split { grid-template-columns: 1fr; gap: 60px; }
  .hero-media { order: -1; max-width: 460px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .founder-card { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .founder-creds { justify-content: center; }
  .case-outcomes { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  :root { --header-h: 72px; }
  .section { padding: 68px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { gap: 14px; }

  .mobile-menu {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy-900);
    z-index: 997;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
  }
  .mobile-menu.is-open { transform: translateX(0); }
  .mobile-menu a {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--white);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .mobile-menu .btn { margin-top: 24px; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stat-card-row { grid-template-columns: repeat(2, 1fr); }
  .stat-strip { margin-top: -40px; }
  .chip-grid { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .form-panel { padding: 30px 24px; }
  .founder-card { padding: 30px 24px; }
  .cta-band { padding: 40px 28px; flex-direction: column; text-align: center; }
  .cta-band .cta-row { justify-content: center; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .framework-step { grid-template-columns: 60px 1fr; gap: 18px; }
  .framework-step .step-num { width: 60px; height: 60px; font-size: 1.2rem; }
  .framework-step:not(:last-child)::before { left: 29px; top: 60px; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 74px; }
  .case-outcomes { grid-template-columns: 1fr; }
}
