/* ============================================================
   DESIGN TOKENS — Adoption Boosters · Direction A (Lift-off)
   Fonts load via <link> in the head (preconnect), not @import.
   ============================================================ */

:root {
  /* Brand colours */
  --primary:        #4BBFAD;
  --primary-soft:   #7DD4C5;
  --primary-tint:   #EAF8F6;
  --primary-deep:   #126B5E;

  --accent:         #F4A4A4;
  --accent-soft:    #FBD7D0;
  --highlight:      #F7D97A;
  --highlight-soft: #FCEEC2;

  --bg:             #FFF8F2;
  --bg-soft:        #FFF3EE;
  --bg-card:        #FFFFFF;
  --mist:           #EAF8F6;

  --ink:            #1C2B2A;
  --ink-2:          #3C4A48;
  --ink-3:          #6A7775;
  --ink-4:          #A0AAA8;
  --line:           rgba(28,43,42,0.08);
  --line-2:         rgba(28,43,42,0.14);

  /* Typography */
  --font-display: 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
  --font-body:    'Inter', ui-sans-serif, system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;
  --font-italic:  'Fraunces', Georgia, serif;

  /* Elevation */
  --elev-1: 0 1px 2px rgba(28,43,42,0.06), 0 1px 1px rgba(28,43,42,0.04);
  --elev-2: 0 4px 12px rgba(28,43,42,0.08), 0 1px 2px rgba(28,43,42,0.04);
  --elev-3: 0 12px 28px rgba(28,43,42,0.10), 0 4px 8px rgba(28,43,42,0.04);

  /* Radius */
  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   16px;
  --r-xl:   22px;
  --r-2xl:  32px;
  --r-pill: 999px;

  /* Layout */
  --max-w: 1120px;
  --transition: 200ms ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section { padding-block: 6rem; }
/* Backgrounds: cream (--bg), the warm soft tint, and ink for the dark
   sections (hero, method, trust band each carry their own treatment). */
.section--soft { background: var(--bg-soft); }
.section--ink  { background: var(--ink); }
/* The dark method section: ink like the hero, one soft teal glow
   behind the cycle wheel, and light text overrides scoped below. */
.section--ink {
  position: relative;
  overflow-x: clip;
}
.section--ink::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 8%;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(75,191,173,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.section--ink > .container { position: relative; }
.section--ink .eyebrow { color: var(--primary-soft); }
.section--ink .h2 { color: #fff; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-deep);
}
.eyebrow-prefix {
  font-weight: 700;
  color: var(--primary);
}
.eyebrow--spaced { margin-bottom: 1rem; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.1;
  color: var(--ink);
}

.display {
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
.h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); line-height: 1.08; }
.h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

.body-l {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--ink-2);
}
.body {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-2);
}

.italic {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
}

/* "work" accent: brand teal, used everywhere the word appears */
.work-accent {
  font-style: normal;
  color: var(--primary);
}

/* ============================================================
   PILLS / BADGES
   ============================================================ */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-pill);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.pill-primary   { background: var(--primary-tint); color: var(--primary-deep); }
.pill-accent    { background: var(--accent-soft); color: #8B3030; }
.pill-highlight { background: var(--highlight-soft); color: #7A5C00; }
.pill-mist      { background: var(--mist); color: var(--ink-2); border: 1px solid var(--line); }
.pill-dark      { background: var(--primary); color: #fff; }

/* Solution colour grammar (fixed everywhere): Map = teal, Boost = blush, Measure = deep teal */
/* Beat colors follow the deck and the platform: map = highlight,
   boost = primary (our own color), measure = accent */
.pill-map      { background: var(--highlight-soft); color: #7A5C00; }
.pill-boost    { background: var(--primary-tint); color: var(--primary-deep); }
.pill-measure  { background: var(--accent-soft); color: #8B3030; }

.pill .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.7;
  display: inline-block;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.8125rem 1.75rem;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--ink);
}
.btn-primary:hover {
  background: var(--primary-soft);
  box-shadow: var(--elev-2);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary-deep);
}
.btn-ghost-light {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.2);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Logo */
.logo-lock {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 28px; height: 25px;
  display: block;
  color: var(--primary);
  transition: color var(--transition);
}
.logo-word {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.0625rem;
  color: var(--bg);
  line-height: 1;
  transition: color var(--transition);
}
.logo-word .accent { color: var(--primary); }

/* Scrolled state */
.nav.scrolled {
  background: rgba(255,248,242,0.97);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(8px);
}
.nav.scrolled .logo-word { color: var(--ink); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}
.nav__links a:hover { color: #fff; }

.nav.scrolled .nav__links a { color: var(--ink-2); }
.nav.scrolled .nav__links a:hover { color: var(--primary-deep); }

.nav__cta-wrap {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nav__lang {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}
.nav__lang a {
  color: rgba(255,255,255,0.55) !important;
  background: none !important;
  padding: 0 !important;
  font-family: var(--font-mono) !important;
  font-weight: 500 !important;
  transition: color var(--transition);
}
.nav__lang a:hover { color: #fff !important; background: none !important; }
.nav__lang a.is-current { color: var(--primary) !important; font-weight: 600 !important; }
.nav__lang i { color: rgba(255,255,255,0.3); font-style: normal; }
.nav.scrolled .nav__lang a { color: var(--ink-3) !important; }
.nav.scrolled .nav__lang a:hover { color: var(--ink) !important; }
.nav.scrolled .nav__lang a.is-current { color: var(--primary-deep) !important; }
.nav.scrolled .nav__lang i { color: var(--ink-4); }

.nav__cta-wrap > a {
  background: var(--primary);
  color: var(--ink) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 0.875rem;
  transition: background var(--transition);
}
.nav__cta-wrap > a:hover {
  background: var(--primary-soft) !important;
}

.nav.scrolled .nav__cta-wrap > a {
  background: var(--primary);
  color: var(--ink) !important;
  box-shadow: none;
}
.nav.scrolled .nav__cta-wrap > a:hover { background: var(--primary-soft) !important; }

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.nav__burger span {
  display: block; width: 22px; height: 2px;
  background: var(--bg);
  border-radius: 2px;
  transition: var(--transition);
}
.nav.scrolled .nav__burger span { background: var(--ink); }

/* Mobile flyout: z-index must exceed the hero's stacking context */
.nav__mobile {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  z-index: 200;
  background: var(--bg-card);
  border-top: 1px solid var(--line);
  padding: 1.5rem;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--elev-3);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-weight: 600;
  color: var(--ink-2);
  padding-block: 0.5rem;
  border-bottom: 1px solid var(--line);
}
.nav__mobile a:last-child { border-bottom: none; }

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cta-wrap { display: none; }
  .nav__burger { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--ink);
  padding-top: calc(68px + 5rem);
  padding-bottom: 6rem;
  position: relative;
  /* The decorative glows extend past the right edge; clip them so
     the page can never scroll sideways on small screens */
  overflow-x: clip;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(75,191,173,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(244,164,164,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 2rem;
}

.hero__title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: #fff;
  letter-spacing: -0.035em;
  line-height: 1.0;
  margin-bottom: 1.75rem;
}
.hero__title .accent { color: var(--primary); }

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
/* The gap layer of the journey chart (WHY): legend, gap label and
   the caption under the merged phases-and-gap visual. */
.gap-visual__legend {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  margin-bottom: 0.75rem;
}
.gap-visual__key {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-weight: 500;
}
.gap-visual__key--muted { color: var(--ink-3); }
.gap-visual__key--boost { color: var(--primary-deep); font-weight: 600; }
.gap-visual__swatch { display: inline-block; width: 22px; }
.gap-visual__swatch--cap   { height: 2px; background: #126B5E; border-radius: 1px; }
.gap-visual__swatch--typ   { height: 0; border-top: 2px dashed rgba(28,43,42,0.35); }
.gap-visual__swatch--boost { height: 3px; background: var(--primary); border-radius: 2px; }
.gap-visual__gaplabel {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  fill: #B8543A;
}
.gap-visual__source {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.04em;
  fill: var(--ink-4);
}
@media (max-width: 768px) {
  .gap-visual__legend { justify-content: flex-start; gap: 0.5rem 1rem; }
}

/* ============================================================
   PROOF STRIP (early credibility)
   ============================================================ */
.proof {
  background: var(--primary-deep);
  color: #fff;
}
.proof__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding-block: 1.5rem;
  flex-wrap: wrap;
}
.proof__item {
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
}
.proof__num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
}
.proof__label {
  font-size: 0.9375rem;
  color: var(--primary-soft);
}
.proof__divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.18);
}
@media (max-width: 768px) {
  .proof__inner { gap: 1rem 1.5rem; }
  .proof__divider { display: none; }
}

/* ============================================================
   USP BAND (why Adoption Boosters — slim band, sibling of the proof strip)
   ============================================================ */
.usps {
  background: var(--primary-deep);
  color: #fff;
}
.usps__eyebrow {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-soft);
  padding-top: 1.75rem;
  margin-bottom: 0.25rem;
}
.usps__inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 2.25rem;
  padding-block: 1.25rem 1.75rem;
  flex-wrap: wrap;
}
.usps__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1 1 0;
  min-width: 170px;
  max-width: 230px;
}
.usps__lead {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.2;
}
.usps__sub {
  font-size: 0.8125rem;
  color: var(--primary-soft);
  line-height: 1.45;
}
.usps__divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255,255,255,0.18);
}
@media (max-width: 860px) {
  .usps__inner { flex-direction: column; align-items: center; text-align: center; gap: 1.25rem; }
  .usps__divider { display: none; }
  .usps__item { max-width: 420px; }
}

/* ============================================================
   HUMAN BAND (full-width photo moment)
   ============================================================ */
.human-band {
  position: relative;
  height: 420px;
  overflow: hidden;
}
.human-band img,
.human-band video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Keep the faces in frame: the band is a wide crop and heads sit high in the photo */
.human-band img { object-position: center 30%; }
/* The overhead video reads best centred */
.human-band video { object-position: center 50%; }
.human-band__caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 3rem;
  background: linear-gradient(to top, rgba(18,43,42,0.72) 0%, rgba(18,43,42,0.15) 45%, rgba(18,43,42,0) 75%);
}
.human-band__quote {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.4vw, 1.875rem);
  letter-spacing: -0.02em;
  line-height: 1.25;
  max-width: 640px;
}

@media (max-width: 768px) {
  .human-band { height: 320px; }
  .human-band__caption { padding: 1.5rem; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__photo {
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1/1;
  max-width: 240px;
  justify-self: center;
  background: linear-gradient(160deg, var(--primary-tint), var(--mist));
  display: flex;
  align-items: center;
  position: relative;
}

.about__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.35);
  transform-origin: 25% 30%;
}

.about__body {
  font-size: 1.0625rem;
  color: var(--ink-2);
  line-height: 1.75;
  margin-block: 1.25rem;
}

.about__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.about__stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-deep);
  letter-spacing: -0.04em;
  line-height: 1;
}
.about__stat-label {
  font-size: 0.875rem;
  color: var(--ink-3);
  margin-top: 2px;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__grid > div { min-width: 0; }
  .about__stats { flex-wrap: wrap; gap: 1.5rem 2rem; }
  .about__photo {
    aspect-ratio: 1/1;
    order: -1;
  }
  .about__photo-img {
    object-position: 50% 20%;
  }
}

/* ============================================================
   OFFERINGS
   ============================================================ */
.offerings__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.offer-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  padding: 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--elev-1);
  transition: box-shadow var(--transition), transform var(--transition);
}
.offer-card:hover {
  box-shadow: var(--elev-3);
  transform: translateY(-3px);
}

.offer-card--dark {
  background: var(--ink);
  border-color: var(--ink);
}

.offer-card__title {
  font-size: 1.25rem;
  font-weight: 700;
}
.offer-card--dark .offer-card__title { color: #fff; }

.offer-card__body {
  font-size: 0.9375rem;
  color: var(--ink-3);
  line-height: 1.7;
}
.offer-card--dark .offer-card__body { color: rgba(255,255,255,0.6); }

.offer-card__list {
  font-size: 0.875rem;
  color: var(--ink-3);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.offer-card--dark .offer-card__list { color: rgba(255,255,255,0.5); }

.offer-card__list li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.offer-card__list li::before {
  content: '→';
  color: var(--primary);
  flex-shrink: 0;
}
.offer-card--dark .offer-card__list li::before { color: var(--primary-soft); }

.offer-card .btn { align-self: flex-start; margin-top: auto; }

@media (max-width: 900px) {
  .offerings__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(75,191,173,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  position: relative;
}

.contact__heading {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #fff;
  margin-block: 1rem 1.25rem;
}

.contact__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.contact__links {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.contact__link {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.9375rem;
  transition: color var(--transition);
}
.contact__link:hover { color: #fff; }

.contact__link-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: background var(--transition);
}
.contact__link:hover .contact__link-icon { background: rgba(255,255,255,0.12); }

/* Form */
.form-card {
  background: var(--bg-card);
  border-radius: var(--r-2xl);
  padding: 2.25rem;
  box-shadow: var(--elev-3);
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.form__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
}
.form__input,
.form__textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--line-2);
  border-radius: var(--r-lg);
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--bg-card);
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form__input:focus, .form__textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-tint);
}
.form__textarea { resize: vertical; min-height: 120px; }

/* Honeypot: visually hidden, off-screen */
.form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Inline validation error banner */
.form__error {
  display: none;
  padding: 0.75rem 1rem;
  background: var(--accent-soft);
  color: #8B3030;
  border-radius: var(--r-md);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.form__error.visible { display: block; }

.form__submit {
  width: 100%;
  padding: 0.875rem;
  background: var(--primary);
  color: var(--ink);
  border: none;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.form__submit:hover {
  background: var(--primary-soft);
  box-shadow: var(--elev-2);
  transform: translateY(-1px);
}

.form__success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--primary-deep);
  font-weight: 600;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .contact__inner { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0d1a18;
  padding-block: 2.5rem;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__tagline {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.3);
  margin-top: 2px;
}

/* "work" in footer tagline uses primary teal so it stands out */
.footer__tagline .work-accent {
  color: var(--primary);
}

.footer__copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
}
.footer__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.375rem;
}
.footer__links { display: flex; gap: 1.25rem; }
.footer__links a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer__links a:hover { color: #fff; }
@media (max-width: 560px) {
  .footer__meta { align-items: flex-start; }
}

/* Footer logo */
.footer .logo-word { color: rgba(255,255,255,0.7); }
.footer .logo-mark { color: var(--primary); }

/* ============================================================
   HERO PLATFORM PREVIEW (real screenshot in the shot frame)
   ============================================================ */
.hero__preview { position: relative; z-index: 1; }

@media (max-width: 900px) {
  .hero__preview { max-width: 520px; }
}

/* ============================================================
   METHOD — the cycle plate (rhythm, levers, measurement, phases)
   ============================================================ */
.plate__intro { max-width: 640px; margin-bottom: 3.5rem; }

/* WHAT WE ARE: one object with two faces. Consultancy runs the
   method, the platform carries it; the method chip sits on the seam. */
.what-one {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--elev-2);
}
.what-one__half {
  padding: 2.75rem 2.5rem 3rem;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.what-one__half--consultancy {
  background: var(--bg-card);
  padding-right: 12.5rem;
}
.what-one__half--platform {
  background: var(--ink);
  padding-left: 12.5rem;
}
.what-one__kicker {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-deep);
  margin-bottom: 0.625rem;
}
.what-one__half--platform .what-one__kicker { color: var(--primary-soft); }
.what-one__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.what-one__half--platform .what-one__title { color: #fff; }
.what-one__body {
  font-size: 0.9375rem;
  color: var(--ink-2);
  line-height: 1.65;
  max-width: 380px;
}
.what-one__half--platform .what-one__body { color: rgba(255,255,255,0.65); }
.what-one__method {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--elev-3);
  padding: 1.125rem 1.375rem 1rem;
  text-align: center;
}
.what-one__method-kicker {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 0.625rem;
}
.what-one__beats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}
.what-one__beats b { color: var(--ink-4); font-weight: 600; }
.what-one__loop {
  color: var(--primary-deep);
  font-size: 1.0625rem;
  font-weight: 700;
  margin-left: 0.125rem;
}
.what-one__method-foot {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 0.625rem;
}
@media (max-width: 860px) {
  .what-one { grid-template-columns: 1fr; }
  .what-one__half { min-height: 0; }
  .what-one__half--consultancy { padding: 1.75rem 1.5rem 2.5rem; }
  .what-one__half--platform { padding: 2.5rem 1.5rem 1.75rem; }
  .what-one__method {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: fit-content;
    margin: -1.25rem auto;
  }
  .what-one__beats { flex-wrap: wrap; gap: 0.5rem; }
}

/* The cycle widget: the quarter as a wheel, beats lighting up in turn */
.cycle-widget {
  display: grid;
  grid-template-columns: minmax(260px, 340px) 1fr;
  gap: 3.5rem;
  align-items: center;
  max-width: 760px;
  margin-inline: auto;
}

.wheel {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1;
  margin-inline: auto;
}
.wheel__svg { width: 100%; height: 100%; display: block; }
.wheel__seg { fill: none; transition: opacity 500ms ease; cursor: pointer; pointer-events: stroke; }
/* Beats light up in turn; without JS (or with reduced motion) all stay lit */
.cycle-widget[data-active="map"].is-cycling .wheel__seg--boost,
.cycle-widget[data-active="map"].is-cycling .wheel__seg--measure,
.cycle-widget[data-active="boost"].is-cycling .wheel__seg--map,
.cycle-widget[data-active="boost"].is-cycling .wheel__seg--measure,
.cycle-widget[data-active="measure"].is-cycling .wheel__seg--map,
.cycle-widget[data-active="measure"].is-cycling .wheel__seg--boost {
  opacity: 0.22;
}
/* On the dark plate the resting beats need more presence to stay visible */
.section--ink .cycle-widget.is-cycling .wheel__seg { opacity: 0.4; }
.section--ink .cycle-widget[data-active="map"].is-cycling .wheel__seg--map,
.section--ink .cycle-widget[data-active="boost"].is-cycling .wheel__seg--boost,
.section--ink .cycle-widget[data-active="measure"].is-cycling .wheel__seg--measure {
  opacity: 1;
}
.wheel__center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 55%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.wheel__center-big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.wheel__center-sub {
  font-size: 0.75rem;
  color: var(--ink-2);
  line-height: 1.4;
}

.cycle-steps {
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
}
.cycle-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity 500ms ease;
}
.cycle-widget:not(.is-cycling) .cycle-step,
.cycle-step.is-active { opacity: 1; }
.cycle-step__text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.cycle-step__q {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.cycle-step__meta {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-4);
}
/* On the dark method plate: light text, light guides, same beat colors */
.section--ink .wheel__svg circle { stroke: rgba(255,255,255,0.25); }
.section--ink .wheel__center-big { color: #fff; }
.section--ink .wheel__center-sub { color: rgba(255,255,255,0.65); }
.section--ink .cycle-step__q { color: #fff; }
.section--ink .cycle-step__meta { color: rgba(255,255,255,0.55); }
.section--ink .roadmap__lane::before { background: rgba(255,255,255,0.28); }
.section--ink .roadmap__chip::after { border-color: var(--ink); }
.section--ink .roadmap__chip:not(.is-live) {
  border-color: rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.8);
}
.section--ink .roadmap__chip:not(.is-live) svg { color: rgba(255,255,255,0.7); }
.section--ink .roadmap__chip:not(.is-live)::after { background: rgba(255,255,255,0.45); }
.section--ink .roadmap__axis { color: rgba(255,255,255,0.5); }
.section--ink .roadmap__example {
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.6);
}
.cycle-step:focus-visible,
.journey__chip:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: var(--r-pill);
}

/* The roadmap strip: tools land on a timeline, the rhythm moves with it */
.roadmap {
  position: relative;
  max-width: 760px;
  margin: 3rem auto 0;
}
/* Honest label: the tools on the strip are an example, not a promise.
   It sits to the left of the strip; on narrower screens it moves above. */
.roadmap__example {
  position: absolute;
  top: 12px;
  right: calc(100% + 1.25rem);
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-right: 1.25rem;
  border-right: 1px solid var(--line-2);
}
@media (max-width: 1180px) {
  .roadmap__example {
    position: static;
    display: table;
    margin: 0 0 1rem;
    padding-right: 0;
    border-right: none;
  }
}
.roadmap__lane {
  position: relative;
  height: 54px;
}
.roadmap__lane::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 5px;
  height: 2px;
  border-radius: 1px;
  background: var(--line-2);
}
.roadmap__chip {
  position: absolute;
  left: var(--x);
  bottom: 16px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--line-2);
  border-radius: var(--r-pill);
  padding: 5px 11px;
  font-size: 0.6875rem;
  font-weight: 600;
  white-space: nowrap;
  color: var(--ink-2);
  box-shadow: var(--elev-1);
}
.roadmap__chip svg { width: 12px; height: 12px; color: var(--primary-deep); flex-shrink: 0; }
.roadmap__chip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 8px; height: 8px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--bg-card);
}
.roadmap__chip:not(.is-live) {
  border-style: dashed;
  background: transparent;
  box-shadow: none;
  color: var(--ink-3);
}
.roadmap__chip:not(.is-live) svg { color: var(--ink-3); }
.roadmap__chip:not(.is-live)::after { background: var(--ink-4); }
/* Between launches the rhythm keeps turning: a small map·boost·measure wheel
   sits on the timeline in each gap, centred on the baseline */
.roadmap__cycle {
  position: absolute;
  left: var(--x);
  bottom: 0;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  opacity: 0.85;
}
.roadmap__cycle-svg {
  width: 100%;
  height: 100%;
  transform-origin: 50% 50%;
  animation: roadmap-cycle-spin 14s linear infinite;
}
@keyframes roadmap-cycle-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .roadmap__cycle-svg { animation: none; }
}
.roadmap__axis {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-4);
}
@media (max-width: 700px) {
  .roadmap__lane {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }
  .roadmap__lane::before { display: none; }
  .roadmap__chip { position: static; transform: none; }
  .roadmap__chip::after { display: none; }
  .roadmap__cycle { display: none; }
  .roadmap__axis { justify-content: center; gap: 1rem; }
  .roadmap__example { margin: 0 auto 1rem; }
}

@media (max-width: 760px) {
  .cycle-widget {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 2rem;
  }
  .cycle-steps { align-items: flex-start; }
}

/* The question carousel: one tile per critical question, click through */
.qcar { margin-bottom: 2rem; }
.qcar__tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.qcar__tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
  text-align: left;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  padding: 1.25rem 1.375rem;
  cursor: pointer;
  box-shadow: var(--elev-1);
  opacity: 0.72;
  transition: opacity var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.qcar__tab:hover { opacity: 1; transform: translateY(-2px); box-shadow: var(--elev-2); }
.qcar__tab.is-active {
  opacity: 1;
  border-color: var(--primary);
  box-shadow: var(--elev-2);
}
.qcar__tab:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}
.qcar__tab-q {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
  line-height: 1.4;
  color: var(--ink);
}
.qcar__panels { margin-top: 1rem; }
.qcar__panel { display: none; }
.qcar__panel.is-active {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  padding: 2rem 2.25rem;
  box-shadow: var(--elev-1);
}
@media (prefers-reduced-motion: no-preference) {
  .qcar__panel.is-active { animation: qcarIn 320ms ease; }
  @keyframes qcarIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: none; }
  }
}
.qcar__kicker {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-deep);
  margin-bottom: 0.625rem;
}
.qcar__body {
  font-size: 0.9375rem;
  color: var(--ink-2);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .qcar__tabs { grid-template-columns: 1fr; gap: 0.75rem; }
  .qcar__panel.is-active { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.5rem; }
}

/* MY ADOPTION BOOSTER: the employee portal */
.portal__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 3.5rem;
  align-items: center;
}
.portal__features {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 1.75rem;
  font-size: 0.9375rem;
  color: var(--ink-2);
  line-height: 1.65;
}
.portal__features li {
  position: relative;
  padding-left: 1.375rem;
}
.portal__features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
}
.portal__features b { color: var(--ink); font-weight: 600; }
.portal__note {
  margin-top: 1.75rem;
  font-size: 0.875rem;
  color: var(--ink-3);
  line-height: 1.6;
}
/* Optional-portal note sits under the screenshot so the two columns balance */
.portal__caption {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: var(--ink-3);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .portal__grid { grid-template-columns: 1fr; gap: 2rem; }
}

.contact__booking {
  margin-bottom: 2rem;
  font-size: 1rem;
  padding: 0.875rem 2rem;
}

/* Question echo on the offer cards */
.offer-card__q {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--primary-deep);
  margin-top: -0.5rem;
}
.offer-card--dark .offer-card__q { color: var(--primary-soft); }

/* ============================================================
   PLATFORM (one platform, three solutions)
   ============================================================ */
.platform__intro { max-width: 680px; margin-bottom: 3rem; }

/* Seam band: the differentiating moment */
@media (max-width: 900px) {
}

/* ============================================================
   JOURNEY (where you are: three phases, one road)
   ============================================================ */
.journey__intro { max-width: 640px; margin-bottom: 3rem; }

.journey {
  display: grid;
  grid-template-columns: 1.85fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.journey__stage {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--elev-1);
  padding: 1.5rem 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
}
/* The chart centers in the card, so the card matches the height of the
   phase cards plus the gap note beside it */
.journey__stage .journey__svg { margin-block: auto; }
.journey__svg { width: 100%; height: auto; display: block; }
.journey__zone-bg {
  fill: rgba(75,191,173,0.08);
  opacity: 0;
  transition: opacity 600ms ease;
  cursor: pointer;
  pointer-events: all;
}
/* Lines, fills and labels must not swallow the zone clicks */
.journey__svg path,
.journey__svg line,
.journey__svg text { pointer-events: none; }
.journey__marker { pointer-events: all; }
.journey__zone-bg.is-active { opacity: 1; }
.journey__zonelabel {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  fill: var(--ink-3);
}
.journey__marker { cursor: pointer; }
.journey__marker .journey__dot {
  fill: var(--primary-deep);
  transition: r 400ms ease, fill 400ms ease;
}
.journey__marker .journey__halo {
  fill: rgba(75,191,173,0.18);
  opacity: 0;
  transition: opacity 400ms ease;
}
.journey__marker.is-active .journey__halo { opacity: 1; }
.journey__marker.is-active .journey__dot { fill: var(--primary); }
@media (prefers-reduced-motion: no-preference) {
  .journey__marker.is-active .journey__halo { animation: journeyPulse 2.2s ease-in-out infinite; }
  @keyframes journeyPulse {
    0%, 100% { opacity: 0.45; }
    50%      { opacity: 1; }
  }
}

.journey__chips {
  display: flex;
  gap: 0.625rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.journey__chip {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  padding: 0.4rem 1rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-2);
  background: transparent;
  color: var(--ink-3);
  cursor: pointer;
  transition: var(--transition);
}
.journey__chip:hover { color: var(--ink); border-color: var(--ink-4); }
.journey__chip.is-active {
  background: var(--primary-tint);
  color: var(--primary-deep);
  border-color: rgba(75,191,173,0.5);
}

.journey__side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}
.journey__cards { display: grid; }
.journey__note {
  font-size: 0.9375rem;
  color: var(--ink-2);
  line-height: 1.65;
  padding-inline: 0.25rem;
}
.journey__note b { color: var(--ink); }
.journey__card {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 400ms ease;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--elev-1);
  padding: 1.75rem;
}
.journey__card.is-active { opacity: 1; visibility: visible; }
.journey__card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.625rem;
}
.journey__card-body {
  font-size: 0.9375rem;
  color: var(--ink-3);
  line-height: 1.65;
}
.journey__card-start {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary-deep);
  line-height: 1.5;
}

.journey__promise {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 1.0625rem;
  color: var(--ink-2);
}
.journey__promise b { color: var(--ink); }

@media (max-width: 900px) {
  .journey { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ============================================================
   SHOT FRAME (real platform screenshots in a light browser chrome)
   ============================================================ */
.shot-frame {
  background: var(--bg-card);
  border: 1px solid var(--line-2);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--elev-3);
}
.shot-frame__bar {
  display: flex;
  gap: 5px;
  padding: 9px 12px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.shot-frame__bar i {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line-2);
  display: block;
}
.shot-frame img { display: block; width: 100%; height: auto; }

/* Hero variant: layered shadow with a soft teal glow, glassy edge,
   and a light perspective tilt that levels out on hover (desktop) */
.shot-frame--dark {
  border-color: rgba(255,255,255,0.20);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.35),
    0 18px 28px -12px rgba(0,0,0,0.42),
    0 56px 110px -16px rgba(28,43,42,0.65),
    0 0 130px rgba(75,191,173,0.34);
}
.shot-frame--dark .shot-frame__bar {
  background: linear-gradient(to bottom, rgba(255,255,255,0.92), rgba(255,243,238,0.78));
  backdrop-filter: blur(4px);
}
/* The floating proof chip on the hero shot */
.hero__float {
  position: absolute;
  left: -1.25rem;
  bottom: -1.125rem;
  z-index: 2;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 0.625rem 1.125rem;
  box-shadow: var(--elev-3);
}
.hero__float {
  align-items: center;
  gap: 0.625rem;
}
.hero__float-dots {
  display: inline-flex;
  gap: 4px;
}
.hero__float-dots i {
  width: 7px; height: 7px;
  border-radius: 50%;
}
.hero__float-dots i:nth-child(1) { background: var(--highlight); }
.hero__float-dots i:nth-child(2) { background: var(--primary); }
.hero__float-dots i:nth-child(3) { background: var(--accent); }
.hero__float span:last-child {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  color: var(--ink-2);
  white-space: nowrap;
}
/* Perspective tilt with a slow drift (no hover response, so the shot
   reads as a screenshot, not something clickable); the chip floats in
   counter-phase for depth. Reduced motion keeps everything still. */
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .hero__preview .shot-frame--dark {
    transform: perspective(1200px) rotateX(2deg) rotateY(-3deg);
    animation: heroDrift 7s ease-in-out infinite alternate;
  }
  .hero__float { animation: heroChipDrift 5.5s ease-in-out infinite alternate; }
  @keyframes heroDrift {
    from { transform: perspective(1200px) rotateX(2deg) rotateY(-3deg) translateY(0); }
    to   { transform: perspective(1200px) rotateX(2deg) rotateY(-3deg) translateY(-9px); }
  }
  @keyframes heroChipDrift {
    from { transform: translateY(0); }
    to   { transform: translateY(7px); }
  }
}

/* Seam variant: same family, lighter treatment on the dark band */
.offerings__note {
  margin-top: 1.75rem;
  font-size: 0.9375rem;
  color: var(--ink-3);
  line-height: 1.6;
  max-width: 640px;
}

/* ============================================================
   TRUST BAND (measurement people can trust)
   ============================================================ */
.trust-band { background: var(--ink); }
.trust-band__inner {
  padding-block: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.trust-band__title { font-size: clamp(1.5rem, 3vw, 2rem); color: #fff; }
.trust-band__list { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.5rem; }
.trust-band__list li {
  position: relative;
  padding-left: 1.75rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.9375rem;
  line-height: 1.4;
}
.trust-band__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 700;
}

@media (max-width: 768px) {
  .trust-band__inner { grid-template-columns: 1fr; gap: 1.75rem; padding-block: 2.5rem; }
  .trust-band__list { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
}

/* ============================================================
   MOTION (reveals, hero ambience, nav underline)
   ============================================================ */
/* Applied by JS only when motion is allowed; no-JS sees everything. */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 480ms ease, transform 480ms cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: no-preference) {
  .hero::before { animation: heroDrift1 19s ease-in-out infinite alternate; }
  .hero::after  { animation: heroDrift2 23s ease-in-out infinite alternate; }
  @keyframes heroDrift1 {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(-60px, 40px) scale(1.08); }
  }
  @keyframes heroDrift2 {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(50px, -30px) scale(1.06); }
  }
  .hero__eyebrow, .hero__title, .hero__actions {
    animation: heroRise 640ms cubic-bezier(0.4, 0, 0.2, 1) backwards;
  }
  .hero__title   { animation-delay: 90ms; }
  .hero__actions { animation-delay: 270ms; }
  .hero__preview { animation: heroRise 720ms cubic-bezier(0.4, 0, 0.2, 1) 320ms backwards; }
  @keyframes heroRise {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

/* Nav underline slides in on hover and marks the section in view */
.nav__links a { position: relative; padding-bottom: 4px; }
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--primary);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}
.nav__links a:hover::after,
.nav__links a.is-current::after { transform: scaleX(1); }

/* ============================================================
   PRIVACY PAGE
   ============================================================ */
.privacy-page { padding-top: 68px; }
.privacy__inner { max-width: 640px; }
.privacy__h {
  font-size: 1.0625rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
.privacy p {
  font-size: 0.9375rem;
  color: var(--ink-2);
  line-height: 1.7;
}
.privacy p a { color: var(--primary-deep); font-weight: 600; }
.privacy p a:hover { text-decoration: underline; }

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

/* ============================================================
   MOBILE REFINEMENTS (Phase 1)
   Tighter section rhythm, a static and compact journey (no tab
   switch), a lighter chart, calmer full-width bands, and larger
   tap targets. Appended last so these win on equal specificity.
   ============================================================ */
@media (max-width: 768px) {
  .section { padding-block: 3.25rem; }
  /* Calmer full-width bands on small screens */
  .human-band { height: 210px; }
  /* Comfortable tap targets (~44px): the chips in the tablet range
     where they are still shown, and the method cycle steps */
  .journey__chip { padding-block: 0.65rem; }
  .cycle-step { padding-block: 0.4rem; }
}

@media (max-width: 700px) {
  /* The three phase cards no longer stack on one grid cell with a
     hidden tab switch; they simply sit under each other, all visible,
     so the chips become redundant */
  .journey__chips { display: none; }
  .journey__cards { display: flex; flex-direction: column; gap: 0.75rem; }
  .journey__card {
    grid-area: auto;
    opacity: 1;
    visibility: visible;
    padding: 1rem 1.1rem;
  }
  .journey__card-body { font-size: 0.875rem; }
  .journey__card-start { margin-top: 0.6rem; padding-top: 0.6rem; }
  /* Lighter chart card, and drop the finest chart details: the source
     note and the thin gap-connector line. The three lines and the gap
     area stay */
  .journey__stage { padding: 1rem 1rem 0.75rem; }
  .gap-visual__source { display: none; }
  .journey__svg path[stroke="rgba(184,84,58,0.45)"] { display: none; }
  /* Hide the second (video) band that sits before the offer; the first
     photo band stays */
  .human-band:has(video) { display: none; }
}

@media (max-width: 480px) {
  .section { padding-block: 2.75rem; }
}
