/* ========================================
   Gopher Studios AI — Standalone Styles
   ======================================== */

:root {
  /* Palette */
  --ink:        #0f0e0d;
  --charcoal:   #1e1c19;
  --dark:       #242220;
  --mid:        #3a3733;
  --cream:      #FFF7ED;
  --tan:        #FDEAD7;
  --peach:      #FFDDB7;
  --orange:     #FFB35C;
  --amber:      #F59E0B;
  --brown:      #8B5E3C;
  --cocoa:      #5A3E2B;
  --white:      #ffffff;

  /* Text colors — for use on dark backgrounds */
  --text-muted: rgba(255, 247, 237, 0.78);
  --text-dim:   rgba(255, 247, 237, 0.6);

  /* Typography */
  --font-body:  'Nunito', system-ui, -apple-system, sans-serif;
  --font-head:  'Montserrat', sans-serif;

  /* Spacing */
  --radius:     16px;
  --radius-lg:  24px;
  --shadow:     0 8px 32px rgba(0,0,0,.14);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
}

/* ---- Utility ---- */
.container { width: min(1100px, 92%); margin-inline: auto; }
.text-center { text-align: center; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 1rem; top: 1rem; padding: .5rem 1rem; background: var(--ink); color: #fff; border-radius: 8px; z-index: 100; text-decoration: none; }

/* ---- Eyebrow ---- */
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .75rem;
}
.eyebrow--dark { color: var(--cocoa); }

/* ---- Section titles ---- */
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: var(--ink);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.section-sub {
  max-width: 660px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
  opacity: .85;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: filter .2s, transform .15s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--orange); color: var(--ink); box-shadow: var(--shadow); }
.btn--primary:hover { filter: brightness(.96) saturate(1.1); }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,.55); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.1); }
.btn--dark { background: var(--ink); color: var(--orange); }
.btn--dark:hover { filter: brightness(1.15); }

/* ---- Fade-in animation ---- */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ======================================
   NAV
   ====================================== */
.topnav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15,14,13,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.topnav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 0;
  gap: 1rem;
}
.topnav__brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: #fff;
  font-family: var(--font-head);
  font-size: .95rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.topnav__brand img { border-radius: 10px; }
.topnav__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.topnav__links a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
  transition: color .15s;
}
.topnav__links a:hover { color: #fff; }
.btn-nav {
  padding: .5rem 1.2rem;
  border-radius: 999px;
  background: var(--orange);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  font-size: .9rem;
  transition: filter .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-nav:hover { filter: brightness(.95); color: var(--ink); }
/* Specificity fix: .topnav__links a above sets rgba(255,255,255,.8) on all
   anchors. This override ensures the Book CTA pill keeps its dark-on-orange
   contrast. */
.topnav__links .btn-nav { color: var(--ink); }
.topnav__links .btn-nav:hover { color: var(--ink); }

/* ======================================
   HERO
   ====================================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url('hero-bg.png') center/cover no-repeat;
  transform: scale(1.02);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,9,8,.82) 0%,
    rgba(18,16,14,.68) 50%,
    rgba(25,22,18,.75) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 5rem 0 4rem;
}
.hero__eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
  border: 1px solid rgba(245,158,11,.35);
  padding: .25rem .8rem;
  border-radius: 999px;
  background: rgba(245,158,11,.08);
}
.hero__headline {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero__headline .accent { color: var(--orange); }
.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.82);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.hero__proof span {
  font-size: .82rem;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  padding: .3rem .8rem;
  border-radius: 999px;
}

/* ======================================
   SECTIONS
   ====================================== */
.section { padding: 5rem 0; }
.section--dark {
  background: var(--charcoal);
  color: #fff;
}
.section--dark .section-title { color: #fff; }
.section--dark .eyebrow { color: var(--orange); }
.section--cream { background: var(--cream); }
.section--amber {
  background: linear-gradient(135deg, var(--orange) 0%, #FFCF7A 100%);
  color: var(--ink);
}

/* ======================================
   PITCH (problem + solution combined)
   ====================================== */
.pitch {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.pitch__left h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.25;
}
.pitch__left p { color: rgba(255,255,255,.75); margin-bottom: .9rem; line-height: 1.7; }
.pitch__model {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
}
.pitch__model-title {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: .75rem;
}
.nope-chips, .yes-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.nope-chips span {
  font-size: .82rem;
  font-weight: 700;
  padding: .3rem .75rem;
  border-radius: 999px;
  background: rgba(239,68,68,.12);
  border: 1px solid rgba(239,68,68,.25);
  color: #fca5a5;
  text-decoration: line-through;
  text-decoration-color: rgba(239,68,68,.5);
}
.yes-chips span {
  font-size: .82rem;
  font-weight: 700;
  padding: .3rem .75rem;
  border-radius: 999px;
  background: rgba(255,179,92,.12);
  border: 1px solid rgba(255,179,92,.3);
  color: var(--orange);
}

/* compare removed — replaced by pitch chips */

/* ======================================
   SERVICES
   ====================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.service-card {
  background: var(--white);
  border: 2px solid var(--tan);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.service-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.service-card__icon {
  width: 48px; height: 48px;
  color: var(--brown);
  margin-bottom: 1.2rem;
}
.service-card__icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--cocoa);
  margin-bottom: .7rem;
}
.service-card p { color: var(--charcoal); opacity: .85; line-height: 1.65; margin-bottom: 1rem; }
.service-card__result {
  font-size: .85rem;
  font-weight: 700;
  color: var(--brown);
  background: var(--tan);
  border-radius: 8px;
  padding: .5rem .85rem;
  display: inline-block;
}
.services-note {
  margin-top: 2rem;
  text-align: center;
  font-size: .9rem;
  color: var(--cocoa);
  background: var(--tan);
  border-radius: var(--radius);
  padding: 1rem 2rem;
}

/* ======================================
   PROCESS
   ====================================== */
.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.process-step {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: border-color .25s;
}
.process-step:hover { border-color: var(--peach); }
.process-step__num {
  width: 44px; height: 44px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 1.1rem;
}
.process-step h3 {
  font-family: var(--font-head);
  color: var(--cocoa);
  font-size: 1rem;
  margin-bottom: .6rem;
}
.process-step p { font-size: .9rem; color: var(--charcoal); opacity: .85; line-height: 1.6; }
.process-step__time {
  margin-top: 1rem;
  font-size: .8rem;
  font-weight: 800;
  color: var(--brown);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ======================================
   CASE STUDY
   ====================================== */
.case-study {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}
.case-study__badge {
  display: inline-block;
  background: var(--orange);
  color: var(--ink);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.case-study h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  color: #fff;
  margin-bottom: .9rem;
}
.case-study__desc { color: rgba(255,255,255,.7); max-width: 560px; margin-inline: auto; margin-bottom: 2rem; }
.case-study__results {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
}
.result-stat__num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.result-stat__label { font-size: .85rem; color: rgba(255,255,255,.65); margin-top: .4rem; }
.case-study__quote {
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,.75);
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
}
.case-study__quote::before { content: open-quote; }
.case-study__quote::after { content: close-quote; }

/* ======================================
   PILOT
   ====================================== */
.pilot-wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
}
.pilot__copy h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--ink);
}
.pilot__copy p { margin-bottom: 1rem; line-height: 1.7; color: var(--cocoa); }
.pilot__perks {
  list-style: none;
  margin-bottom: 1.5rem;
}
.pilot__perks li {
  padding: .5rem 0;
  font-weight: 700;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.pilot__urgency {
  font-size: .9rem !important;
  font-style: italic;
  color: var(--cocoa) !important;
  margin-bottom: 1.5rem !important;
}
.pilot-box {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  color: #fff;
}
.pilot-box__spots {
  display: flex;
  gap: .75rem;
  margin-bottom: .75rem;
}
.spot {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: block;
}
.spot--filled { background: var(--orange); }
.spot--open { background: rgba(255,255,255,.2); border: 2px solid rgba(255,255,255,.3); }
.pilot-box__label {
  font-weight: 800;
  color: var(--orange);
  font-size: .9rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.pilot-box__types > div {
  padding: .6rem 0;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.pilot-box__types > div::before { content: "→  "; color: var(--orange); }

/* ======================================
   FAQ
   ====================================== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
.faq-item {
  background: #fff;
  border: 2px solid var(--tan);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] { border-color: var(--orange); }
.faq-item summary {
  list-style: none;
  padding: 1.2rem 1.5rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--cocoa);
  user-select: none;
}
.faq-item summary::after { content: "+"; font-size: 1.3rem; color: var(--orange); transition: transform .2s; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  padding: 0 1.5rem 1.2rem;
  color: var(--charcoal);
  opacity: .85;
  line-height: 1.7;
  font-size: .95rem;
}

/* ======================================
   CONTACT
   ====================================== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
.contact__copy h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--ink);
  margin-bottom: .8rem;
}
.contact__copy p { color: var(--cocoa); opacity: .85; line-height: 1.7; margin-bottom: 1.5rem; }
.contact__details { display: flex; flex-direction: column; gap: .6rem; }
.contact__details > div { font-weight: 700; color: var(--cocoa); }
/* Contact form (SES) */
.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.cf-field { display: flex; flex-direction: column; gap: .35rem; }
.cf-label {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--cocoa);
}
.cf-input,
.cf-textarea {
  background: var(--tan);
  border: 1.5px solid rgba(0,0,0,.1);
  border-radius: 8px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: .92rem;
  padding: .65rem .9rem;
  outline: none;
  transition: border-color .15s;
  width: 100%;
  box-sizing: border-box;
}
.cf-input:focus,
.cf-textarea:focus { border-color: var(--orange); }
.cf-textarea { resize: vertical; min-height: 110px; }
.cf-submit { align-self: flex-start; margin-top: .25rem; }
.cf-error {
  color: #c0392b;
  font-size: .85rem;
  background: #fdf0ed;
  border: 1px solid #e9bcb7;
  border-radius: 8px;
  padding: .6rem .9rem;
  display: none;
}
.cf-success {
  display: none;
  align-items: center;
  gap: .6rem;
  background: #eafaf1;
  border: 1px solid #a9dfbf;
  border-radius: 8px;
  padding: .75rem 1rem;
  color: #1e8449;
  font-weight: 700;
  font-size: .9rem;
}
@media (max-width: 600px) {
  .cf-row { grid-template-columns: 1fr; }
}

/* ======================================
   INDIVIDUALS & FAMILIES
   ====================================== */
.audience-intro {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  color: var(--cocoa);
  opacity: .85;
  line-height: 1.7;
  margin-bottom: 3rem;
}
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.audience-card {
  background: #fff;
  border: 2px solid var(--tan);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color .2s;
}
.audience-card:hover { border-color: var(--peach); }
.audience-card--family {
  border-color: var(--peach);
  background: linear-gradient(135deg, #fff 80%, #fff9f2);
}
.audience-card__tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brown);
  background: var(--tan);
  padding: .3rem .75rem;
  border-radius: 999px;
  width: fit-content;
}
.audience-card__tag--family {
  color: #8b4513;
  background: #fff0e0;
}
.audience-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--ink);
  line-height: 1.3;
  margin: 0;
}
.audience-card p {
  color: var(--cocoa);
  line-height: 1.7;
  opacity: .88;
  font-size: .95rem;
}
.audience-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  padding: 0;
  margin: 0;
}
.audience-card__list li {
  font-size: .88rem;
  color: var(--charcoal);
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.5;
}
.audience-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 800;
}
.audience-card__format {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--tan);
  font-size: .78rem;
  font-weight: 700;
  color: var(--brown);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.audience-cta {
  text-align: center;
  padding-top: 1rem;
}
.audience-cta p {
  color: var(--cocoa);
  margin-bottom: 1.2rem;
  opacity: .8;
}
@media (max-width: 700px) {
  .audience-grid { grid-template-columns: 1fr; }
}

/* ======================================
   PRIVATE WORKSPACE SECTION
   ====================================== */
.workspace-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.workspace__copy h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.25;
}
.workspace__copy p {
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.workspace__features {
  list-style: none;
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.workspace__features li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  color: rgba(255,255,255,.85);
  line-height: 1.5;
}
.workspace__features li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  stroke: var(--orange);
}
.workspace__platforms {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.workspace__platforms-label {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.4rem;
}
.platform-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.platform-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  transition: border-color .2s, background .2s;
}
.platform-card:hover {
  border-color: rgba(255,180,80,.3);
  background: rgba(255,255,255,.08);
}
.platform-card__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  margin-bottom: .4rem;
}
.platform-card__desc {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
}
.workspace__platforms-note {
  margin-top: 1.4rem;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  font-style: italic;
  line-height: 1.5;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1rem;
}

/* ======================================
   SCHEDULER WIDGET (embedded calendar)
   ====================================== */
.scheduler-section {
  background: #fff;
}
.scheduler-section h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--ink);
  margin-bottom: .6rem;
}
.scheduler-section > .container > p {
  color: var(--cocoa);
  opacity: .8;
  margin-bottom: 2.5rem;
  max-width: 560px;
}

/* ======================================
   FOOTER
   ====================================== */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.7);
  padding: 2.5rem 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 1.5rem;
  align-items: center;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: #fff;
}
.footer__brand img { border-radius: 10px; }
.footer__brand strong { display: block; }
.footer__brand span { font-size: .82rem; opacity: .7; }
.footer__brand a { color: var(--orange); text-decoration: none; }
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.footer__links a { color: rgba(255,255,255,.65); text-decoration: none; font-size: .9rem; transition: color .15s; }
.footer__links a:hover { color: #fff; }
.footer__copy { text-align: right; font-size: .82rem; opacity: .5; }

/* ======================================
   RESPONSIVE
   ====================================== */
@media (max-width: 900px) {
  .pitch,
  .services-grid,
  .pilot-wrap,
  .contact-wrap,
  .workspace-wrap { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__copy { text-align: center; }
  .footer__links { justify-content: center; }
}
@media (max-width: 600px) {
  .topnav__links a:not(.btn-nav) { display: none; }
  .topnav__inner { gap: .5rem; }
  .topnav__brand { font-size: .82rem; gap: .5rem; }
  .topnav__brand img { width: 28px; height: 28px; }
  .btn-nav { font-size: .78rem; padding: .45rem .85rem; }
  .process-track { grid-template-columns: 1fr; }
  .hero { min-height: 100svh; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .case-study__results { flex-direction: column; gap: 1rem; }
  .cf-submit { width: 100%; text-align: center; }
}

/* ======================================
   NEW COMPONENTS (v2 redesign)
   ====================================== */

/* Who section */
.who { max-width: 680px; }
.who__body { font-size: 1.15rem; color: var(--text-muted); line-height: 1.8; margin-top: 1rem; }

/* Path cards */
.path-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1rem;
}
.path-card {
  background: var(--charcoal);
  border: 1px solid var(--mid);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.path-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.path-card__icon { font-size: 2.5rem; line-height: 1; }
.path-card__label { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: var(--cream); }
.path-card__desc { color: var(--text-muted); line-height: 1.7; flex: 1; }
.path-card__cta { color: var(--orange); font-weight: 700; font-size: 0.95rem; margin-top: 0.5rem; }

/* Trust bar */
.trust-bar {
  background: var(--orange);
  padding: 1rem 0;
}
.trust-bar p {
  text-align: center;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0;
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.feature-card {
  background: var(--mid);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.feature-card__icon { font-size: 2rem; line-height: 1; }
.feature-card h3 { font-family: var(--font-head); font-size: 1.1rem; color: var(--cream); margin: 0; }
.feature-card p { color: var(--text-muted); line-height: 1.7; margin: 0; font-size: 0.95rem; }

/* Steps (families how it works) */
.steps { display: flex; flex-direction: column; gap: 2rem; margin-top: 2rem; }
.step { display: flex; gap: 1.5rem; align-items: flex-start; }
.step__num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orange);
  opacity: 0.6;
  line-height: 1;
  flex-shrink: 0;
  width: 3rem;
}
.step__body h3 { font-family: var(--font-head); font-size: 1.1rem; color: var(--cream); margin: 0 0 0.5rem; }
.step__body p { color: var(--text-muted); line-height: 1.7; margin: 0; }

/* Pilot steps (businesses) */
.pilot-steps { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.pilot-step { display: flex; gap: 1.25rem; align-items: flex-start; background: var(--mid); border-radius: var(--radius); padding: 1.5rem; }
.pilot-step__num {
  background: var(--orange);
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pilot-step strong { display: block; color: var(--cream); font-size: 1rem; margin-bottom: 0.4rem; }
.pilot-step p { color: var(--text-muted); line-height: 1.65; margin: 0; font-size: 0.95rem; }

/* Sub-page hero (slightly less tall) */
.hero--sub { min-height: 65vh; }

/* Btn large */
.btn--lg { padding: 1rem 2.5rem; font-size: 1.1rem; }

/* Active nav link */
.topnav__links a.active { color: var(--orange); font-weight: 700; }

/* Footer (ensure layout works for new pages) */
.footer__inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; }

/* Responsive for new components */
@media (max-width: 700px) {
  .path-cards { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .trust-bar p { font-size: 0.8rem; }
}
