/* ==========================================================================
   PolicyStrength — brand tokens & site styles
   Guardrail: emerald = VERIFIED signal only (sections 4 & 5).
              red = FAIL state only (section 5).
              Neither ever touches the logo, nav, hero, or footer identity.
   ========================================================================== */

:root {
  /* Identity */
  --navy:    #10243E;  /* primary, authority, identity */
  --stone:   #D9D6D1;  /* neutral base */
  --slate:   #5E6875;  /* supporting UI text */

  /* Signal — never identity */
  --emerald: #18A957;  /* VERIFIED only */
  --amber:   #DDAA33;  /* conditional / contract-only */
  --red:     #B33A3A;  /* FAIL only */

  /* Type */
  --font-heading: 'Manrope', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-accent:  'Sora', sans-serif;

  /* Derived neutrals */
  --stone-light: #EDEBE8;   /* stone lightened for page fields */
  --navy-deep:   #0B1A2E;   /* navy deepened for footer/hover */
  --white:       #FFFFFF;
}

/* ---------- Reset / base ---------- */

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-heading);
  line-height: 1.15;
  margin: 0 0 1rem;
}

h1 {
  font-weight: 800;
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h2 {
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

h3 {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

p { margin: 0 0 1rem; }

a { color: inherit; }

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container-narrow { max-width: 760px; }

.section { padding: 4.5rem 0; }

.kicker {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.75rem;
}

.lede {
  font-size: 1.1rem;
  color: var(--slate);
  max-width: 62ch;
}

.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;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  transition: background-color 0.15s ease, color 0.15s ease;
}

/* On navy fields the Sign In button inverts: stone fill, navy text */
.btn-signin {
  background: var(--stone);
  color: var(--navy);
}
.btn-signin:hover { background: var(--white); }

/* Hero sits on a light scene, so its button is navy (identity), not stone */
.btn-hero {
  background: var(--navy);
  color: var(--stone);
  padding: 0.9rem 2.25rem;
  font-size: 0.95rem;
}
.btn-hero:hover { background: var(--navy-deep); }

/* Ghost/outline secondary — navy border + text, transparent fill (identity
   only, no signal colors). Padding trimmed by the border width so it
   matches .btn-hero's height exactly. */
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: calc(0.9rem - 2px) calc(2.25rem - 2px);
  font-size: 0.95rem;
}
.btn-ghost:hover { background: rgba(16, 36, 62, 0.08); }

/* ---------- 1. Nav ---------- */

.site-nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo lockup — monolith mark + HTML text wordmark (Option A) */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark { height: 36px; width: auto; }

.logo-wordmark {
  font-family: var(--font-heading);
  font-size: 19px;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--stone);
  white-space: nowrap;
}

.wm-light { font-weight: 300; }
.wm-bold  { font-weight: 800; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--slate);
  text-decoration: none;
  transition: color 0.15s ease;
}
.nav-link:hover { color: var(--stone); }

/* Hamburger — hidden on desktop */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--stone);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Nav collapses at 767px so nav and hero plate switch at the SAME 768px line */
@media (max-width: 767px) {
  .nav-toggle { display: block; }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-deep);
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
  }

  .nav-menu.is-open { display: flex; }

  /* Animate hamburger into an X */
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ---------- 2. Hero — light cornerstone scene, no signal colors ----------
   Ported from the app's HeroMonolith: object-cover + object-position X% Y%
   pins that image point to X%/Y% of the container, and the monolith's
   left/bottom use the same percentages, so plate and monolith share one
   coordinate system and cannot drift on resize. If the monolith slips off
   the floor medallion, change the plate object-position AND the monolith
   left/bottom together, per breakpoint. Breakpoints match the app: 768/1024. */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-start;      /* phone: text at top, monolith below */
  background: var(--stone-light);
}

/* Short-phone guard: on portrait phones the text block (~410px) and the
   monolith (bottom 12%, height 75vw) collide below ~800px viewports
   (iPhone SE 667px). Floor the hero at 52rem so the text always clears
   the monolith — short screens scroll within the hero instead. */
@media (max-width: 767px) {
  .hero {
    min-height: 52rem;
    min-height: max(100svh, 52rem);
  }
}

.hero-stage {
  position: absolute;
  inset: 0;
}

.hero-plate {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

/* Phone plate — medallion at 50% x, 88% y */
.hero-plate-phone {
  display: block;
  object-position: 50% 88%;
}

/* Monolith pinned to the medallion: left = plate x%, bottom = 100% − y% */
.hero-monolith {
  position: absolute;
  left: 50%;
  bottom: 12%;
  width: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-monolith img {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 1;
}

.hero-monolith-shadow {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 72%;
  height: 24px;
  background: radial-gradient(ellipse at center, rgba(16, 36, 62, 0.32) 0%, transparent 70%);
  filter: blur(10px);
}

/* Phone scrim: top-down fade behind the stacked headline */
.hero-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(to bottom,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
  max-width: 34rem;
  margin: 0 auto;
}

.hero h1 {
  color: var(--navy);
  margin: 0;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 44ch;
  margin: 0;
}

/* Dual-CTA row — side by side, centered with the phone text column */
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Narrow phones: stack the buttons full-width */
@media (max-width: 479px) {
  .hero-cta-row {
    flex-direction: column;
    align-self: stretch;
  }

  .hero-cta-row .btn { text-align: center; }
}

@media (min-width: 768px) {
  .hero { align-items: center; }   /* tablet/desktop: text vertically centered */

  .hero-plate-phone { display: none; }

  /* Tablet plate — medallion at 62% x, 88% y */
  .hero-plate-tablet {
    display: block;
    object-position: 62% 88%;
  }

  .hero-monolith {
    left: 62%;
    bottom: 12%;
    width: 27%;
  }

  /* Desktop/tablet scrim: left-to-right fade behind the text column */
  .hero-scrim {
    background: linear-gradient(to right,
      rgba(255, 255, 255, 0.6) 0%,
      rgba(255, 255, 255, 0.3) 40%,
      transparent 68%);
  }

  .hero-text {
    align-items: flex-start;
    text-align: left;
    margin: 0;
    max-width: 50%;
  }

  .hero-cta-row { justify-content: flex-start; }
}

@media (min-width: 1024px) {
  .hero-plate-tablet { display: none; }

  /* Desktop plate — medallion at 65% x, 90% y */
  .hero-plate-desktop {
    display: block;
    object-position: 65% 90%;
  }

  .hero-monolith {
    left: 65%;
    bottom: 10%;
    width: 27%;
  }
}

/* ---------- 3. Problem — COI gate scene, text overlaid left ----------
   Image is one complete render (gate + floor + carved wall), 1536×1024.
   Desktop/tablet: full-bleed cover background, gate stays right, text
   over the pale left area behind a left scrim. Phone: stacked instead —
   text above on stone, full image below, so text never sits on the gate. */

.section-problem {
  position: relative;
  overflow: hidden;
  background: var(--stone-light);
}

.problem-plate {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* y 62% keeps the carved COI text, door slabs, and wall names in frame
     when wide sections crop the image vertically */
  object-position: 70% 62%;
}

.problem-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(to right,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(255, 255, 255, 0.3) 40%,
    transparent 65%);
}

.problem-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 4.5rem 1.25rem;
}

@media (min-width: 768px) {
  .problem-content { padding: 7rem 1.5rem; }

  /* Keep the text column on the pale left area, off the gate */
  .problem-text { max-width: 46%; }
}

/* Phone: text-above / image-below — the 3:2 scene cropped to a tall
   phone column would put text over the gate, so stack instead */
@media (max-width: 767px) {
  .section-problem {
    display: flex;
    flex-direction: column;
  }

  .problem-content { order: 1; }

  .problem-scrim { display: none; }

  .problem-plate {
    order: 2;
    position: static;
    width: 100%;
    height: auto;      /* full uncropped scene below the text */
  }
}

/* ---------- 4. What It Does — full-bleed render + SEO prose below ---------- */

.section-steps {
  background: var(--white);
}

.steps-plate {
  display: block;
  width: 100%;
  height: auto;      /* natural 3:2 — never crop; all three pedestals visible */
}

/* Subtle crawlable restatement of the baked-in step copy */
.steps-caption {
  max-width: 760px;
  margin: 0 auto;
  padding: 1.75rem 1.25rem 3rem;
}

.steps-caption p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--slate);
  text-align: center;
}

/* ---------- 5. Proof — vendor comparison render (synthetic data) ----------
   Headline + table are baked into the image. aspect-ratio + top-anchored
   object-fit:cover clips the render just below the table's plinth edge,
   hiding the garbled baked caption (starts ~79% down the 1024px image);
   the corrected caption is real HTML text below. If a sliver of the baked
   caption ever shows, lower the 800 in the aspect-ratio slightly. */

.section-proof { background: var(--stone-light); }

.proof-plate {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1535 / 800;
  object-fit: cover;
  object-position: top;
}

.proof-caption {
  max-width: 760px;
  margin: 0 auto;
  padding: 1.75rem 1.25rem 3rem;
}

.proof-caption p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--slate);
  text-align: center;
}

/* ---------- The Document — Scorecard vs. COI, centered text column ----------
   Mirrors the methodology-content pattern. Stone-light field so the seam
   against the white methodology section below stays visible. */

.section-document {
  background: var(--stone-light);
}

.document-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 4.5rem 1.25rem;
  text-align: center;
}

@media (min-width: 768px) {
  .document-content { padding: 7rem 1.5rem; }
}

/* Body copy reads left-aligned; kicker/h2 stay centered */
.document-content .lede {
  margin: 0 auto 1.25rem;
  text-align: left;
}

.document-disclaimer {
  max-width: 62ch;
  margin: 2rem auto 0;
  font-size: 0.95rem;
  color: var(--slate);
  text-align: left;
}

/* ---------- Methodology — carved-stone stat tablets, pure CSS ----------
   Monument language matching the renders, identity colors only.
   Tablets: stone-gradient face, beveled inset edge, engraved numerals. */

.section-methodology {
  background: var(--white);
}

.methodology-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 4.5rem 1.25rem;
  text-align: center;
}

@media (min-width: 768px) {
  .methodology-content { padding: 7rem 1.5rem; }
}

/* Body copy reads left-aligned; kicker/h2/divider/tablets stay centered */
.methodology-content .lede {
  margin: 0 auto;
  text-align: left;
}

/* Engraved divider — thin navy rule between prose and tablets */
.methodology-rule {
  width: 48px;
  height: 2px;
  background: var(--navy);
  margin: 2.5rem auto;
}

.stat-tablets {
  display: flex;
  flex-direction: column;   /* phone: stacked full-width */
  gap: 1.5rem;
}

@media (min-width: 480px) {
  .stat-tablets { flex-direction: row; }
  .stat-tablet { flex: 1 1 0; }
}

.stat-tablet {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 2.75rem 1.5rem;
  border-radius: 3px;        /* masonry, not app-UI */
  /* Cut-stone face, three layers: edge vignette (weathered face, center
     catching light) over mineral grain (inline SVG feTurbulence, grayscale,
     overlay-blended) over the stone gradient */
  background-image:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.12) 0%, transparent 45%, rgba(140, 133, 123, 0.16) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.5' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23g)' opacity='0.3'/%3E%3C/svg%3E"),
    linear-gradient(135deg, #F2F0ED 0%, var(--stone-light) 55%, #E0DDD7 100%);
  background-blend-mode: normal, overlay, normal;
  /* Chamfered edge + seat: crisp 1px light/dark cuts, soft mid bevel,
     hard bottom edge so the tablet sits ON the page */
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.9),
    inset -1px -1px 0 rgba(140, 133, 123, 0.5),
    inset 3px 3px 6px rgba(255, 255, 255, 0.45),
    inset -3px -3px 6px rgba(140, 133, 123, 0.25),
    0 4px 0 -1px rgba(140, 133, 123, 0.55),
    0 6px 12px rgba(16, 36, 62, 0.1);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.stat-numeral {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(3.25rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--navy);
  /* Engraved: dark hairline above the stroke, light hairline below —
     the digits read cut INTO the face */
  text-shadow:
    0 -1px 0 rgba(11, 26, 46, 0.4),
    0 1px 0 rgba(255, 255, 255, 0.85);
}

.stat-label {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
}

/* Desktop hover — monument lift, barely perceptible; chamfer preserved */
@media (min-width: 768px) {
  .stat-tablet:hover {
    transform: translateY(-2px);
    box-shadow:
      inset 1px 1px 0 rgba(255, 255, 255, 0.9),
      inset -1px -1px 0 rgba(140, 133, 123, 0.5),
      inset 3px 3px 6px rgba(255, 255, 255, 0.45),
      inset -3px -3px 6px rgba(140, 133, 123, 0.25),
      0 6px 0 -1px rgba(140, 133, 123, 0.5),
      0 10px 18px rgba(16, 36, 62, 0.14);
  }
}

/* ---------- 6. Scope — five-dimension temple, text overlaid left ----------
   Same treatment as section 3: full-bleed cover image, temple stays right,
   live HTML text over the empty left wall behind a left scrim.
   Phone: stacked (text above, full image below). */

.section-scope {
  position: relative;
  overflow: hidden;
  background: var(--stone-light);
}

.scope-plate {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* x 80% keeps the temple in frame if the section crops horizontally;
     y 40% holds pediment-through-plaque in the visible band */
  object-position: 80% 40%;
}

.scope-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(to right,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(255, 255, 255, 0.3) 40%,
    transparent 65%);
}

.scope-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 4.5rem 1.25rem;
}

@media (min-width: 768px) {
  .scope-content { padding: 7rem 1.5rem; }
  .scope-text { max-width: 46%; }
}

@media (max-width: 767px) {
  .section-scope {
    display: flex;
    flex-direction: column;
  }

  .scope-content { order: 1; }

  .scope-scrim { display: none; }

  .scope-plate {
    order: 2;
    position: static;
    width: 100%;
    height: auto;      /* full uncropped scene below the text */
  }
}

/* ---------- CTA band — navy field, single inverted action ----------
   navy-deep matches the footer family; identity colors only. */

.section-cta {
  background: var(--navy-deep);
}

.cta-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 3.5rem 1.25rem;
  text-align: center;
}

@media (min-width: 768px) {
  .cta-content { padding: 5rem 1.5rem; }
}

/* Sized between the section h2s (max 2.5rem) and the hero h1 (max 3.75rem) */
.section-cta h2 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 2rem;
}

/* Inverted action — stone fill, navy text (10.8:1 on stone; hover 15.6:1) */
.btn-cta {
  background: var(--stone);
  color: var(--navy);
  padding: 0.9rem 2.25rem;
  font-size: 0.95rem;
}
.btn-cta:hover { background: var(--white); }

/* ---------- Insights: homepage steles ----------
   Carved-tablet treatment — same stonework recipe as .stat-tablet
   (stone gradient + feTurbulence grain + chamfer), image plate on top. */

.section-insights {
  background: var(--stone-light);
}

.insights-content {
  max-width: 1080px;
  margin: 0 auto;
  padding: 4.5rem 1.25rem;
  text-align: center;
}

@media (min-width: 768px) {
  .insights-content { padding: 7rem 1.5rem; }
}

.stele-row {
  display: flex;
  flex-direction: column;   /* phone: stacked */
  gap: 1.5rem;
  margin-top: 2.5rem;
  text-align: left;
}

@media (min-width: 768px) {
  .stele-row { flex-direction: row; }   /* desktop: three across */
  .stele { flex: 1 1 0; }
}

.stele {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 3px;
  overflow: hidden;          /* clip the image plate to the masonry radius */
  background-image:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.12) 0%, transparent 45%, rgba(140, 133, 123, 0.16) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.5' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23g)' opacity='0.3'/%3E%3C/svg%3E"),
    linear-gradient(135deg, #F2F0ED 0%, var(--stone-light) 55%, #E0DDD7 100%);
  background-blend-mode: normal, overlay, normal;
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.9),
    inset -1px -1px 0 rgba(140, 133, 123, 0.5),
    inset 3px 3px 6px rgba(255, 255, 255, 0.45),
    inset -3px -3px 6px rgba(140, 133, 123, 0.25),
    0 4px 0 -1px rgba(140, 133, 123, 0.55),
    0 6px 12px rgba(16, 36, 62, 0.1);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.stele img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.stele-text {
  display: block;
  padding: 1.5rem 1.5rem 1.75rem;
}

.stele-title {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.stele-deck {
  display: block;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--slate);
  margin-bottom: 1rem;
}

.stele-read {
  display: block;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
}

/* Seated-lift hover, matching the stat tablets */
@media (min-width: 768px) {
  .stele:hover {
    transform: translateY(-2px);
    box-shadow:
      inset 1px 1px 0 rgba(255, 255, 255, 0.9),
      inset -1px -1px 0 rgba(140, 133, 123, 0.5),
      inset 3px 3px 6px rgba(255, 255, 255, 0.45),
      inset -3px -3px 6px rgba(140, 133, 123, 0.25),
      0 6px 0 -1px rgba(140, 133, 123, 0.5),
      0 10px 18px rgba(16, 36, 62, 0.14);
  }
}

/* ---------- FAQ — static definition list, doctrine answers ----------
   White field: alternates against stone-light insights above; navy-deep
   CTA below contrasts either way. No accordion — all answers visible. */

.section-faq {
  background: var(--white);
}

.faq-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 4.5rem 1.25rem;
  text-align: center;
}

@media (min-width: 768px) {
  .faq-content { padding: 7rem 1.5rem; }
}

/* Questions and answers read left-aligned; kicker/h2 stay centered */
.faq-list {
  margin: 2.5rem 0 0;
  text-align: left;
}

.faq-list dt {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin-top: 2.25rem;
}

.faq-list dd {
  margin: 0.6rem 0 0;
  max-width: 62ch;
  line-height: 1.7;
  color: var(--slate);
}

/* ---------- Insights: article pages ----------
   Header band = .section-problem treatment family: full-bleed render,
   navy scrim, live HTML text on top. */

.article-hero {
  position: relative;
  overflow: hidden;
  min-height: 45vh;
  display: flex;
  align-items: flex-end;
  background: var(--navy-deep);
}

.article-hero-plate {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(to bottom,
    rgba(11, 26, 46, 0.2) 0%,
    rgba(11, 26, 46, 0.65) 100%);
}

.article-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 6rem 1.25rem 2.5rem;
}

.article-hero .kicker { color: var(--stone); }

.article-hero h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  margin: 0;
}

/* Reading column */
.article-body {
  max-width: 65ch;
  margin: 0 auto;
  padding: 3.5rem 1.25rem 4.5rem;
  font-size: 1.15rem;
  line-height: 1.8;
}

.article-body p { margin: 0 0 1.6rem; }

/* Drop cap — first paragraph only */
.article-body > p:first-of-type::first-letter {
  float: left;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 3.2em;
  line-height: 0.85;
  padding: 0.04em 0.12em 0 0;
  color: var(--navy);
}

.article-body h2 {
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  margin: 2.75rem 0 1rem;
}

/* Pull-quote — engraved navy rules above and below */
.pull-quote {
  margin: 3rem auto;
  padding: 0;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--navy);
}

.pull-quote::before,
.pull-quote::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: var(--navy);
  margin: 0 auto;
}

.pull-quote::before { margin-bottom: 1.75rem; }
.pull-quote::after  { margin-top: 1.75rem; }

/* Further reading */
.further-reading {
  background: var(--white);
  border-top: 1px solid var(--stone-light);
}

.further-inner {
  max-width: 65ch;
  margin: 0 auto;
  padding: 3rem 1.25rem 3.5rem;
}

.further-reading h2 {
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.further-link {
  display: block;
  padding: 1rem 0;
  text-decoration: none;
  border-top: 1px solid var(--stone-light);
}

.further-link:last-of-type { border-bottom: 1px solid var(--stone-light); }

.fr-title {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.further-link:hover .fr-title { text-decoration: underline; }

.fr-deck {
  display: block;
  font-size: 0.9rem;
  color: var(--slate);
}

/* ---------- 7. Footer — navy, identity colors only ---------- */

.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--stone);   /* seam against the navy CTA band */
  color: var(--stone);
  padding: 3.5rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (min-width: 720px) {
  .footer-inner {
    flex-direction: row;
    align-items: flex-start;      /* columns top-align */
    justify-content: space-between;
    gap: 2rem;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.footer-logo .logo-mark { height: 32px; }
.footer-logo .logo-wordmark { font-size: 17px; }

.footer-tagline {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--stone);
  margin: 0 0 0.25rem;
}

.footer-address {
  font-size: 0.8rem;
  color: var(--slate);
  margin: 0;
}

.footer-address a { text-decoration: none; }
.footer-address a:hover { text-decoration: underline; }

.footer-copyright {
  font-size: 0.8rem;
  color: var(--slate);
  margin: 0.75rem 0 0;
}

/* Link columns (Explore / Get Started) — identity colors only */
.footer-heading {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  margin: 0 0 1rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--stone);
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-links a:hover { color: var(--white); }

.footer-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
