/* ============================================================
   Dreem Digital — Global Stylesheet
   dreemdigital.com.au
   
   Fonts: DM Serif Display (display/headings) + Manrope (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Typefaces */
  --ff-display: 'DM Serif Display', Georgia, serif;
  --ff-body:    'Manrope', system-ui, sans-serif;

  /* Type scale */
  --fz-xs:   0.75rem;    /*  12px */
  --fz-sm:   0.875rem;   /*  14px */
  --fz-base: 1rem;       /*  16px */
  --fz-lg:   1.125rem;   /*  18px */
  --fz-xl:   1.375rem;   /*  22px */
  --fz-2xl:  1.75rem;    /*  28px */
  --fz-3xl:  2.25rem;    /*  36px */
  --fz-4xl:  3rem;       /*  48px */
  --fz-5xl:  4rem;       /*  64px */
  --fz-6xl:  5.5rem;     /*  88px */

  /* Dark palette */
  --navy:        #0C1829;
  --navy-raised: #18273F;
  --navy-mid:    #162035;

  /* Light palette */
  --paper:       #FFFFFF;
  --warm:        #F8F5F0;
  --warm-mid:    #F0EBE3;
  --edge:        #E4DDD5;

  /* Ink */
  --ink:         #111827;
  --ink-soft:    #4B5563;
  --ink-faint:   #9CA3AF;
  --ink-100:     #F3F4F6;

  /* Brand — cobalt blue */
  --cobalt:      #1B4FD8;
  --cobalt-dark: #1033A6;
  --cobalt-pale: #EEF2FF;
  --cobalt-500:  #3B6EF0;

  /* Brand — ember amber */
  --ember:       #D97706;
  --ember-dark:  #B45309;
  --ember-pale:  #FEF3C7;

  /* Status */
  --ok:          #059669;
  --warn:        #D97706;
  --risk:        #DC2626;

  /* Elevation */
  --shade-sm: 0 1px 4px rgba(0,0,0,.08);
  --shade-md: 0 4px 16px rgba(0,0,0,.1);
  --shade-lg: 0 12px 40px rgba(0,0,0,.14);
  --shade-xl: 0 24px 60px rgba(0,0,0,.18);

  /* Radii */
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   12px;
  --r-xl:   20px;
  --r-pill: 999px;

  /* Layout */
  --wrap:     1200px;
  --narrow:   720px;
  --gutter:   clamp(1.25rem, 5vw, 3rem);
  --nav-h:    72px;
  --section-v: clamp(4rem, 8vw, 7rem);

  /* Motion */
  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-in:  cubic-bezier(.4,0,1,1);
}


/* ============================================================
   BASE RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: var(--fz-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6 { margin: 0; line-height: 1.2; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
figure { margin: 0; }


/* ============================================================
   LAYOUT
   ============================================================ */
.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.narrow-wrap {
  max-width: var(--narrow);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.row {
  display: flex;
  gap: var(--gutter);
  align-items: flex-start;
  flex-wrap: wrap;
}
.col { flex: 1; min-width: 260px; }


/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.display-xl {
  font-family: var(--ff-display);
  font-size: clamp(var(--fz-4xl), 7vw, var(--fz-6xl));
  line-height: 1.07;
  letter-spacing: -0.02em;
}
.display-lg {
  font-family: var(--ff-display);
  font-size: clamp(var(--fz-3xl), 5vw, var(--fz-5xl));
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.display-md {
  font-family: var(--ff-display);
  font-size: clamp(var(--fz-2xl), 3.5vw, var(--fz-4xl));
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.display-sm {
  font-family: var(--ff-display);
  font-size: clamp(var(--fz-xl), 2.5vw, var(--fz-3xl));
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.eyebrow {
  font-family: var(--ff-body);
  font-size: var(--fz-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.body-lg { font-size: var(--fz-lg); line-height: 1.72; }
.body-sm { font-size: var(--fz-sm); line-height: 1.65; }

.text-soft   { color: var(--ink-soft); }
.text-faint  { color: var(--ink-faint); }
.text-paper  { color: var(--paper); }
.text-cobalt { color: var(--cobalt); }
.text-ember  { color: var(--ember); }
.text-navy   { color: var(--navy); }


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.625rem;
  font-family: var(--ff-body);
  font-size: var(--fz-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--r-sm);
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s, transform .15s;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-cobalt {
  background: var(--cobalt);
  color: var(--paper);
  border: 2px solid var(--cobalt);
}
.btn-cobalt:hover { background: var(--cobalt-dark); border-color: var(--cobalt-dark); }

.btn-ember {
  background: var(--ember);
  color: var(--paper);
  border: 2px solid var(--ember);
}
.btn-ember:hover { background: var(--ember-dark); border-color: var(--ember-dark); }

.btn-ghost-paper {
  background: transparent;
  color: var(--paper);
  border: 2px solid rgba(255,255,255,.45);
}
.btn-ghost-paper:hover {
  border-color: var(--paper);
  background: rgba(255,255,255,.08);
}

.btn-ghost-ink {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--edge);
}
.btn-ghost-ink:hover {
  border-color: var(--ink);
  background: var(--warm);
}

.btn-ghost-cobalt {
  background: transparent;
  color: var(--cobalt);
  border: 2px solid var(--cobalt);
}
.btn-ghost-cobalt:hover {
  background: var(--cobalt-pale);
}

.btn-lg { padding: 1rem 2rem; font-size: var(--fz-base); }
.btn-sm { padding: .5rem 1.125rem; font-size: var(--fz-xs); }


/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding-inline: var(--gutter);
  transition: background .35s, box-shadow .35s;
}

/* Transparent on hero */
.site-nav.--dark { background: transparent; }

/* Solid on scroll */
.site-nav.--scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: var(--shade-sm);
  backdrop-filter: blur(12px);
}

.nav-inner {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-name {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--paper);
  transition: color .3s;
  line-height: 1;
}
.site-nav.--scrolled .nav-logo-name { color: var(--navy); }

.nav-logo-sub {
  font-family: var(--ff-body);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  transition: color .3s;
}
.site-nav.--scrolled .nav-logo-sub { color: var(--ink-faint); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}
.nav-links a {
  font-size: var(--fz-sm);
  font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: color .2s;
  text-decoration: none;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease-out);
}
.nav-links a:hover { color: var(--paper); }
.nav-links a:hover::after { transform: scaleX(1); }

.site-nav.--scrolled .nav-links a { color: var(--ink-soft); }
.site-nav.--scrolled .nav-links a:hover { color: var(--ink); }
.site-nav.--scrolled .nav-links a::after { background: var(--cobalt); }

.nav-ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-ham span {
  display: block;
  width: 24px; height: 2px;
  background: var(--paper);
  border-radius: 1px;
  transition: background .3s, transform .3s, opacity .3s;
}
.site-nav.--scrolled .nav-ham span { background: var(--ink); }
.nav-ham.--active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-ham.--active span:nth-child(2) { opacity: 0; }
.nav-ham.--active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta-wrap { display: none; }
  .nav-ham { display: flex; }
}

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 99;
  padding: 2rem var(--gutter) 3rem;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
.nav-drawer.--open { display: flex; }
.nav-drawer a {
  font-size: var(--fz-xl);
  font-weight: 600;
  color: var(--paper);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
  text-decoration: none;
  transition: color .2s;
}
.nav-drawer a:hover { color: var(--ember); }
.nav-drawer .btn { margin-top: 2rem; text-align: center; justify-content: center; }


/* ============================================================
   HERO
   ============================================================ */
.hero-frame {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--navy);
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.012) 1px, transparent 1px);
  background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
  overflow: hidden;
}
.hero-frame::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(27,79,216,.18) 0%, transparent 65%),
    radial-gradient(ellipse at 80% 20%, rgba(217,119,6,.1) 0%, transparent 55%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-block: calc(var(--nav-h) + 4rem) 6rem;
}

.hero-eyebrow { color: var(--ember); margin-bottom: 1.5rem; }
.hero-headline { color: var(--paper); max-width: 15ch; margin-bottom: 1.5rem; }
.hero-headline em { font-style: italic; color: rgba(255,255,255,.7); }

.hero-body {
  color: rgba(255,255,255,.62);
  font-size: var(--fz-lg);
  line-height: 1.72;
  max-width: 54ch;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Large decorative background text */
.hero-bg-glyph {
  position: absolute;
  right: -1rem; bottom: -4rem;
  font-family: var(--ff-display);
  font-size: clamp(8rem, 22vw, 24rem);
  line-height: 1;
  color: rgba(255,255,255,.025);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}


/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  background-color: var(--navy);
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 60px 60px;
  padding-block: calc(var(--nav-h) + 4rem) 5rem;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 15% 60%, rgba(27,79,216,.15) 0%, transparent 60%);
  pointer-events: none;
}
.page-header-inner {
  position: relative; z-index: 1;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.page-header-eyebrow { color: var(--ember); margin-bottom: 1rem; }
.page-header-title { color: var(--paper); }
.page-header-sub {
  color: rgba(255,255,255,.6);
  font-size: var(--fz-lg);
  line-height: 1.72;
  max-width: 58ch;
  margin-top: 1.25rem;
}


/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--warm);
  border-bottom: 1px solid var(--edge);
  padding-block: 1.125rem;
}
.trust-inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-label {
  font-size: var(--fz-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  flex-shrink: 0;
}
.trust-items {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}
.trust-item {
  font-size: var(--fz-sm);
  font-weight: 500;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: .45rem;
}
.trust-pip {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--cobalt);
  flex-shrink: 0;
}


/* ============================================================
   CONTENT SECTIONS
   ============================================================ */
.section { padding-block: var(--section-v); }
.section-warm { background: var(--warm); }
.section-navy {
  background-color: var(--navy);
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.section-edge-top { border-top: 1px solid var(--edge); }

.section-head { margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-head-centered {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}


/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
}
@media (max-width: 768px) {
  .problem-cols { grid-template-columns: 1fr; }
}

.stat-block {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(2.75rem, 7vw, 5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cobalt);
}
.stat-label {
  font-size: var(--fz-sm);
  color: var(--ink-soft);
  margin-top: .35rem;
  line-height: 1.4;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--edge);
}


/* ============================================================
   HOW IT WORKS — STEPS
   ============================================================ */
.steps-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
@media (max-width: 768px) {
  .steps-layout { grid-template-columns: 1fr; }
}

/* Connecting line between step numbers */
.steps-layout::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(16.67% + 1.5rem);
  right: calc(16.67% + 1.5rem);
  height: 1px;
  background: linear-gradient(to right, var(--cobalt), var(--ember));
  opacity: 0.2;
  pointer-events: none;
}
@media (max-width: 768px) {
  .steps-layout::before { display: none; }
}

.step-card { display: flex; flex-direction: column; gap: .875rem; }

.step-badge {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  background: var(--cobalt-pale);
  color: var(--cobalt);
  font-size: var(--fz-xl);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-title {
  font-size: var(--fz-lg);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.step-body {
  font-size: var(--fz-sm);
  color: var(--ink-soft);
  line-height: 1.72;
}


/* ============================================================
   FEATURE GRID
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--navy-raised);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: border-color .2s, transform .2s;
}
.feature-card:hover {
  border-color: rgba(27,79,216,.35);
  transform: translateY(-2px);
}

.feature-icon {
  width: 3rem; height: 3rem;
  background: rgba(27,79,216,.18);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--cobalt-500);
}
.feature-title {
  font-size: var(--fz-base);
  font-weight: 700;
  color: var(--paper);
  margin-bottom: .5rem;
}
.feature-body {
  font-size: var(--fz-sm);
  color: rgba(255,255,255,.48);
  line-height: 1.7;
}


/* ============================================================
   ALTERNATING SPLIT SECTIONS
   ============================================================ */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  padding-block: var(--section-v);
  border-top: 1px solid var(--edge);
}
@media (max-width: 768px) {
  .split-block { grid-template-columns: 1fr; }
}
.split-block.--reverse { direction: rtl; }
.split-block.--reverse > * { direction: ltr; }

.split-visual {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--navy);
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 30px 30px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.split-visual-label {
  font-family: var(--ff-display);
  font-size: clamp(4rem, 10vw, 8rem);
  color: rgba(255,255,255,.06);
  user-select: none;
  pointer-events: none;
}
.split-content { display: flex; flex-direction: column; gap: 1.25rem; }


/* ============================================================
   TESTIMONIAL / VOICE PANEL
   ============================================================ */
.voice-panel {
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding-block: var(--section-v);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.voice-inner {
  max-width: 840px;
  margin-inline: auto;
  padding-inline: var(--gutter);
  text-align: center;
}
.voice-opener {
  font-family: var(--ff-display);
  font-size: 7rem;
  line-height: .55;
  color: var(--cobalt);
  opacity: 0.28;
  display: block;
  margin-bottom: .5rem;
}
.voice-quote {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.42;
  color: var(--paper);
  font-style: italic;
  margin: 0 0 2.5rem;
}
.voice-credit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
}
.voice-name {
  font-weight: 700;
  color: var(--paper);
  font-size: var(--fz-sm);
}
.voice-role {
  font-size: var(--fz-xs);
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .1em;
}


/* ============================================================
   PRODUCT SHELF
   ============================================================ */
.product-shelf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}
@media (max-width: 768px) {
  .product-shelf-grid { grid-template-columns: 1fr; }
}

.product-card {
  border-radius: var(--r-lg);
  border: 1px solid var(--edge);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.product-card:hover {
  box-shadow: var(--shade-lg);
  transform: translateY(-3px);
}
.product-card-thumb {
  height: 210px;
  background-color: var(--navy);
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 30px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-card-glyph {
  font-family: var(--ff-display);
  font-size: 4rem;
  color: rgba(255,255,255,.07);
  user-select: none;
  pointer-events: none;
}
.product-card-pill {
  position: absolute;
  top: 1.125rem; left: 1.125rem;
  font-size: var(--fz-xs);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: var(--r-pill);
  color: var(--paper);
  background: var(--cobalt);
}
.product-card-pill.--soon { background: var(--ember); }

.product-card-body { padding: 1.875rem; }
.product-card-title {
  font-size: var(--fz-xl);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .5rem;
}
.product-card-desc {
  font-size: var(--fz-sm);
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 1.375rem;
}


/* ============================================================
   ACTION BAND (CTA section)
   ============================================================ */
.action-band {
  background: var(--ember);
  padding-block: clamp(3rem, 6vw, 5rem);
}
.action-band-inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 640px) {
  .action-band-inner { grid-template-columns: 1fr; }
}
.action-band-headline {
  font-family: var(--ff-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--paper);
}
.action-band-sub {
  color: rgba(255,255,255,.78);
  font-size: var(--fz-base);
  margin-top: .75rem;
}


/* ============================================================
   ROADMAP TABLE
   ============================================================ */
.roadmap-wrap {
  border-radius: var(--r-lg);
  border: 1px solid var(--edge);
  overflow: hidden;
}
.roadmap-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fz-sm);
}
.roadmap-table thead th {
  text-align: left;
  padding: .875rem 1.25rem;
  font-weight: 700;
  font-size: var(--fz-xs);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  border-bottom: 2px solid var(--edge);
  background: var(--warm);
}
.roadmap-table tbody td {
  padding: .875rem 1.25rem;
  border-bottom: 1px solid var(--edge);
  vertical-align: top;
  color: var(--ink-soft);
}
.roadmap-table tbody tr:last-child td { border-bottom: none; }
.roadmap-table tbody td:first-child { color: var(--ink); font-weight: 500; }
.roadmap-table tbody tr:hover td { background: var(--warm); }

.pill {
  display: inline-block;
  padding: .2rem .75rem;
  border-radius: var(--r-pill);
  font-size: var(--fz-xs);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pill-done   { background: #DCFCE7; color: #166534; }
.pill-high   { background: var(--cobalt-pale); color: var(--cobalt-dark); }
.pill-medium { background: var(--ember-pale); color: var(--ember-dark); }
.pill-low    { background: var(--ink-100); color: var(--ink-soft); }


/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-set { border-top: 1px solid var(--edge); }
.faq-item { border-bottom: 1px solid var(--edge); }

.faq-trigger {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: var(--fz-base);
  font-weight: 600;
  color: var(--ink);
  font-family: var(--ff-body);
  line-height: 1.4;
  transition: color .2s;
}
.faq-trigger:hover { color: var(--cobalt); }

.faq-arrow {
  flex-shrink: 0;
  margin-top: .2rem;
  width: 18px; height: 18px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .25s var(--ease-out);
}
.faq-item.--open .faq-arrow { transform: rotate(225deg); }

.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height .38s var(--ease-out);
}
.faq-item.--open .faq-body { max-height: 900px; }

.faq-body-inner {
  padding-bottom: 1.625rem;
  font-size: var(--fz-sm);
  color: var(--ink-soft);
  line-height: 1.78;
}
.faq-body-inner p { margin-bottom: .75rem; }
.faq-body-inner p:last-child { margin-bottom: 0; }


/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
}
@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-field { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: var(--fz-sm);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .4rem;
}
.form-control {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--edge);
  border-radius: var(--r-md);
  font-family: var(--ff-body);
  font-size: var(--fz-sm);
  color: var(--ink);
  background: var(--paper);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  appearance: none;
}
.form-control:focus {
  border-color: var(--cobalt);
  box-shadow: 0 0 0 3px rgba(27,79,216,.1);
}
textarea.form-control { min-height: 140px; resize: vertical; }

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.contact-detail-icon {
  width: 2.75rem; height: 2.75rem;
  background: var(--cobalt-pale);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cobalt);
  flex-shrink: 0;
}
.contact-detail-label {
  font-size: var(--fz-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: .25rem;
}
.contact-detail-value {
  font-size: var(--fz-sm);
  color: var(--ink-soft);
  line-height: 1.55;
}


/* ============================================================
   VALUES / PILLARS
   ============================================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}
.pillar-card {
  padding: 2rem 0;
  border-top: 3px solid var(--cobalt);
}
.pillar-card.--ember { border-color: var(--ember); }
.pillar-title {
  font-size: var(--fz-lg);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .75rem;
}
.pillar-body {
  font-size: var(--fz-sm);
  color: var(--ink-soft);
  line-height: 1.72;
}


/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-foot {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: 2rem;
}

.foot-grid {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 900px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .foot-grid { grid-template-columns: 1fr; }
}

.foot-brand-name {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.875rem;
  color: var(--paper);
  display: block;
  line-height: 1;
  margin-bottom: .2rem;
}
.foot-brand-sub {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  display: block;
  margin-bottom: 1.25rem;
}
.foot-tagline {
  font-size: var(--fz-sm);
  color: rgba(255,255,255,.45);
  line-height: 1.72;
  margin-bottom: 1.5rem;
}
.foot-locale {
  font-size: var(--fz-xs);
  color: rgba(255,255,255,.22);
}
.foot-col-heading {
  font-size: var(--fz-xs);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 1rem;
  display: block;
}
.foot-nav-list {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  list-style: none;
  margin: 0; padding: 0;
}
.foot-nav-list a {
  font-size: var(--fz-sm);
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .2s;
}
.foot-nav-list a:hover { color: var(--paper); }

.foot-divider {
  max-width: var(--wrap);
  margin-inline: auto;
  margin-block: 2.5rem 1.5rem;
  border: none;
  border-top: 1px solid rgba(255,255,255,.07);
  padding-inline: var(--gutter);
}
.foot-base {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: var(--fz-xs);
  color: rgba(255,255,255,.28);
}


/* ============================================================
   ANIMATE ON SCROLL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(1.75rem);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
[data-reveal].--in {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal][data-delay="1"] { transition-delay: .12s; }
[data-reveal][data-delay="2"] { transition-delay: .22s; }
[data-reveal][data-delay="3"] { transition-delay: .34s; }
[data-reveal][data-delay="4"] { transition-delay: .46s; }
[data-reveal][data-delay="5"] { transition-delay: .56s; }


/* ============================================================
   UTILITIES
   ============================================================ */
.mt-2  { margin-top: .5rem; }
.mt-4  { margin-top: 1rem; }
.mt-6  { margin-top: 1.5rem; }
.mt-8  { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mb-2  { margin-bottom: .5rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-6  { margin-bottom: 1.5rem; }
.mb-8  { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }

.flex         { display: flex; align-items: center; }
.inline-flex  { display: inline-flex; align-items: center; }
.flex-wrap    { flex-wrap: wrap; }
.gap-4        { gap: 1rem; }
.gap-6        { gap: 1.5rem; }
.gap-8        { gap: 2rem; }

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