/* ==========================================================================
   Gasland Horizon — Global Stylesheet  (v2, premium SaaS design system)
   Mobile-first. Breakpoints: 640 (tablet), 1024 (desktop).
   Brand: navy #162345, accent red #D02121. Same class names as v1.
   ========================================================================== */

/* ------------------------------ Design tokens --------------------------- */
:root {
  /* Brand */
  --navy: #101b38;
  --navy-900: #0c1530;
  --navy-800: #182648;
  --navy-700: #24365f;
  --red: #d81f2a;
  --red-600: #c01824;
  --red-700: #a4141f;
  --gold: #f0b429;

  /* Neutrals (cool, refined) */
  --ink: #10131c;          /* headings */
  --body: #454b5c;         /* body text */
  --muted: #6b7286;        /* secondary */
  --faint: #9aa1b4;        /* tertiary / eyebrow on light */
  --line: #e7e9f0;         /* 1px borders */
  --line-strong: #d7dae5;
  --surface: #ffffff;
  --surface-2: #f7f8fb;    /* subtle section bg */
  --surface-3: #f1f3f8;
  --tint-red: #fdecec;

  /* Typography */
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Arimo", sans-serif;
  --tracking-tight: -0.02em;
  --tracking-tighter: -0.035em;

  /* Layout */
  --maxw: 1200px;
  --maxw-narrow: 940px;
  --gutter: clamp(1.25rem, 5vw, 2.5rem);
  --space-section: clamp(5rem, 9vw, 10rem);   /* 80 -> 160px */
  --space-section-sm: clamp(3.5rem, 6vw, 6rem);

  /* Shape */
  --radius-sm: 10px;
  --radius: 14px;
  --radius-card: 20px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* Elevation (soft, layered) */
  --shadow-xs: 0 1px 2px rgba(16, 27, 56, .06);
  --shadow-sm: 0 1px 3px rgba(16, 27, 56, .06), 0 2px 8px rgba(16, 27, 56, .05);
  --shadow-md: 0 4px 14px rgba(16, 27, 56, .07), 0 10px 30px rgba(16, 27, 56, .06);
  --shadow-lg: 0 18px 48px rgba(16, 27, 56, .14);
  --ring: 0 0 0 4px rgba(216, 31, 42, .16);
  --ring-navy: 0 0 0 4px rgba(16, 27, 56, .12);

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --dur: .2s;
  --dur-slow: .45s;

  --header-h: 68px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--body);
  background: var(--surface);
  line-height: 1.65;
  font-size: 1.0625rem;                /* 17px */
  letter-spacing: -0.006em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
picture { display: block; }

a { color: var(--red); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--red-700); }

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.1;
  margin: 0 0 .55em;
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.25rem); letter-spacing: var(--tracking-tighter); line-height: 1.03; }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); letter-spacing: var(--tracking-tight); line-height: 1.08; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p { margin: 0 0 1.15rem; }
ul, ol { margin: 0 0 1.15rem; padding-left: 1.25rem; }
li { margin-bottom: .5rem; }
strong { color: var(--ink); font-weight: 650; }

:focus-visible {
  outline: none;
  box-shadow: var(--ring-navy);
  border-radius: 6px;
}

/* ------------------------------ Layout helpers -------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--space-section); position: relative; }
.section--tight { padding-block: var(--space-section-sm); }
.section--grey { background: var(--surface-2); }
.section--navy {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-900) 100%);
  color: #c8cfe0;
}
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
/* Hairline separators between stacked light sections */
.section + .section:not(.section--grey):not(.section--navy)::before,
.section--grey + .section--grey::before {
  content: "";
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(100% - 2 * var(--gutter), var(--maxw)); height: 1px;
  background: var(--line);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  font-weight: 650;
  letter-spacing: .02em;
  color: var(--red);
  margin-bottom: 1.1rem;
  padding: .4rem .8rem .4rem .7rem;
  background: var(--tint-red);
  border-radius: var(--radius-pill);
  line-height: 1;
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); flex-shrink: 0;
}
.section--navy .eyebrow {
  color: var(--gold);
  background: rgba(240, 180, 41, .12);
}
.section--navy .eyebrow::before { background: var(--gold); }

.lead {
  font-size: clamp(1.125rem, 2.2vw, 1.375rem);
  line-height: 1.55;
  color: var(--muted);
  max-width: 60ch;
  letter-spacing: -0.01em;
}
.section--navy .lead { color: #aab3ca; }

.section-head { max-width: 42rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.text-center { margin-inline: auto; }

.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.measure { max-width: 68ch; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--navy); color: #fff;
  padding: .75rem 1.25rem; z-index: 200;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

/* ------------------------------ Buttons --------------------------------- */
.btn {
  --btn-shadow: var(--shadow-xs);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: inherit;
  font-size: .975rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  line-height: 1;
  padding: .9rem 1.4rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  max-width: 100%;
  box-shadow: var(--btn-shadow);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  min-height: 48px;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--red); color: #fff; --btn-shadow: 0 6px 18px rgba(216,31,42,.28); }
.btn--primary:hover { background: var(--red-600); color: #fff; box-shadow: 0 10px 28px rgba(216,31,42,.34); }

.btn--navy { background: var(--navy); color: #fff; --btn-shadow: 0 6px 18px rgba(16,27,56,.24); }
.btn--navy:hover { background: var(--navy-800); color: #fff; box-shadow: 0 10px 26px rgba(16,27,56,.3); }

.btn--ghost { background: var(--surface); color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { background: var(--surface); color: var(--ink); border-color: var(--navy); box-shadow: var(--shadow-sm); }

.btn--on-dark { background: #fff; color: var(--navy); --btn-shadow: 0 8px 24px rgba(0,0,0,.22); }
.btn--on-dark:hover { background: #fff; color: var(--navy); box-shadow: 0 12px 30px rgba(0,0,0,.28); }

.btn--ghost-light { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.28); box-shadow: none; }
.btn--ghost-light:hover { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.5); }

.btn--block { width: 100%; }
.btn--lg { font-size: 1.05rem; padding: 1.05rem 1.9rem; min-height: 56px; }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }

/* ------------------------------ Header / Nav ---------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
/* Blur lives on a pseudo-element so the header does NOT become the containing
   block for the position:fixed mobile drawer (which would break sticky + overflow). */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, .72);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  backdrop-filter: saturate(180%) blur(16px);
}
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .site-header::before { background: rgba(255, 255, 255, .96); }
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(16,27,56,.04), 0 8px 30px rgba(16,27,56,.06);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h); gap: 1rem;
}
.brand { display: inline-flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.brand:hover { text-decoration: none; }
.brand__logo { height: 46px; width: auto; display: block; }
@media (min-width: 1024px) { .brand__logo { height: 56px; } }

.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; padding: 11px;
  background: var(--surface); border: 1px solid var(--line-strong);
  border-radius: 12px; cursor: pointer;
  transition: border-color var(--dur) var(--ease);
}
.nav-toggle:hover { border-color: var(--navy); }
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-menu { list-style: none; margin: 0; padding: 0; }
.nav-menu a { color: var(--body); font-weight: 550; display: block; }
.nav-menu > li > a[aria-current="page"]:not(.nav-cta) { color: var(--ink); }
.nav-cta { display: none; }
/* Keep the CTA button text legible: the nav link color must not override white button text. */
.nav-menu a.nav-cta.btn--primary,
.nav-menu a.nav-cta.btn--primary:hover { color: #fff; }

.has-submenu > .submenu-toggle {
  display: flex; align-items: center; justify-content: space-between; gap: .35rem;
  width: 100%; background: none; border: 0; font: inherit; font-weight: 550;
  color: var(--body); padding: 0; cursor: pointer;
}
.submenu-toggle svg { width: 15px; height: 15px; transition: transform var(--dur) var(--ease); flex-shrink: 0; opacity: .7; }
.has-submenu[data-open="true"] .submenu-toggle svg { transform: rotate(180deg); }
.submenu { list-style: none; margin: .4rem 0 0; padding: 0 0 0 .9rem; border-left: 1px solid var(--line); }

/* Mobile menu (drawer shown until the full nav + larger logo comfortably fit) */
@media (max-width: 1239px) {
  .nav-menu {
    position: fixed; inset: var(--header-h) 0 0 auto;
    width: min(360px, 88vw); background: var(--surface);
    box-shadow: var(--shadow-lg); padding: 1.5rem var(--gutter) 2.5rem;
    transform: translateX(105%); transition: transform var(--dur-slow) var(--ease);
    overflow-y: auto; display: flex; flex-direction: column; gap: 1.15rem;
    border-left: 1px solid var(--line);
  }
  .nav-menu.is-open { transform: translateX(0); }
  .nav-menu > li { border-bottom: 1px solid var(--line); padding-bottom: 1.15rem; }
  .nav-menu > li:last-child { border-bottom: 0; padding-bottom: 0; }
  .nav-menu a { padding: .35rem 0; }
  .submenu a { font-weight: 450; color: var(--muted); }
  .nav-cta.btn {
    display: flex; width: 100%; justify-content: center;
    border-radius: var(--radius); min-height: 52px;
    margin-top: .6rem; padding: .9rem 1.4rem;
  }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(12, 21, 48, .5);
    opacity: 0; visibility: hidden; transition: opacity var(--dur-slow) var(--ease), visibility var(--dur-slow) var(--ease);
    z-index: 90; -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  }
  .nav-backdrop.is-open { opacity: 1; visibility: visible; }
}

/* Desktop menu */
@media (min-width: 1240px) {
  .nav-toggle { display: none; }
  .nav-backdrop { display: none; }
  .nav-menu { display: flex; align-items: center; gap: .05rem; font-size: .9375rem; }
  .nav-menu > li { position: relative; }
  .nav-menu > li > a,
  .has-submenu > .submenu-toggle {
    padding: .5rem .58rem; border-radius: var(--radius-pill); white-space: nowrap;
    transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
  }
  .nav-menu > li > a:hover,
  .has-submenu:hover > .submenu-toggle { color: var(--ink); background: var(--surface-3); }
  .nav-menu > li > a[aria-current="page"]:not(.nav-cta) { background: var(--surface-3); color: var(--ink); }
  .nav-cta { display: inline-flex; margin-left: .4rem; white-space: nowrap; }
  .nav-cta.btn { padding: .65rem 1.05rem; min-height: 44px; font-size: .9375rem; }

  .submenu {
    position: absolute; top: calc(100% + 8px); left: -.5rem; margin: 0; padding: .5rem;
    border-left: 0; background: var(--surface); border: 1px solid var(--line);
    box-shadow: var(--shadow-md); border-radius: var(--radius); min-width: 264px;
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur) var(--ease);
    z-index: 50;
  }
  .has-submenu:hover .submenu,
  .has-submenu[data-open="true"] .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
  .submenu a { padding: .6rem .8rem; border-radius: 10px; font-weight: 500; color: var(--muted); }
  .submenu a:hover { background: var(--surface-2); color: var(--ink); }
}
@media (min-width: 1240px) {
  .nav-menu { gap: .15rem; }
  .nav-menu > li > a, .has-submenu > .submenu-toggle { padding: .5rem .75rem; }
}

/* ------------------------------ Hero ------------------------------------ */
.hero {
  position: relative;
  background: radial-gradient(120% 120% at 80% -10%, #1b2c55 0%, var(--navy) 45%, var(--navy-900) 100%);
  color: #c8cfe0;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 75%);
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 75%);
}
.hero::after {
  content: ""; position: absolute; right: -10%; top: -25%;
  width: 55%; height: 150%; z-index: -1;
  background: radial-gradient(closest-side, rgba(216,31,42,.28), transparent 70%);
  filter: blur(10px); pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 2; display: grid; gap: 2.5rem;
  padding-block: clamp(4rem, 9vw, 7.5rem);
}
.hero h1 { color: #fff; margin-bottom: .4em; }
.hero > .container > div > p,
.hero p { color: #b7c0d8; font-size: clamp(1.125rem, 2.3vw, 1.4rem); line-height: 1.55; max-width: 34ch; }
.hero .btn-row { margin-top: 2rem; }

@media (min-width: 1024px) {
  .hero__inner { grid-template-columns: 1.1fr .9fr; align-items: center; gap: 3.5rem; }
}

.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg); padding: 1.75rem;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
}
.hero-card h2 {
  color: #fff; font-size: .8125rem; font-weight: 650; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 1.35rem; color: #9aa6c6;
}
.hero-stat { display: flex; align-items: baseline; gap: .75rem; padding: .85rem 0; border-top: 1px solid rgba(255,255,255,.1); }
.hero-stat:first-of-type { border-top: 0; padding-top: 0; }
.hero-stat b { color: #fff; font-size: 1.9rem; line-height: 1; letter-spacing: var(--tracking-tight); font-variant-numeric: tabular-nums; }
.hero-stat span { color: #97a1bc; font-size: .925rem; line-height: 1.3; }
/* On narrow screens, stack the value over its label so long values (e.g. "RC 1123828") don't wrap awkwardly beside the label */
@media (max-width: 600px) {
  .hero-stat { flex-direction: column; align-items: flex-start; gap: .25rem; }
  .hero-stat b { font-size: 1.6rem; }
  .hero-stat span { font-size: .875rem; }
}
.hero-card > p { color: #97a1bc !important; font-size: .875rem !important; margin: 1.35rem 0 0 !important; padding-top: 1.35rem; border-top: 1px solid rgba(255,255,255,.1); }

/* ------------------------------ Trust bar ------------------------------- */
.trust-bar {
  background: var(--navy-900); color: #aab4d0; text-align: center;
  font-size: .95rem; padding: 1rem var(--gutter); margin: 0;
  letter-spacing: -0.01em;
}
.trust-bar strong { color: #fff; font-weight: 600; }

/* ------------------------------ Social proof band ----------------------- */
.partners {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(1.75rem, 4vw, 2.75rem);
}
.partners .container {
  display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center;
}
@media (min-width: 760px) {
  .partners .container { flex-direction: row; justify-content: center; gap: 2.5rem; text-align: left; }
}
.partners__label {
  margin: 0; font-size: .75rem; font-weight: 650; letter-spacing: .12em;
  text-transform: uppercase; color: var(--faint); flex-shrink: 0;
}
.partners__logo { height: clamp(52px, 8vw, 68px); width: auto; display: block; }
.partners__text { margin: 0; color: var(--muted); font-size: .95rem; max-width: 46ch; line-height: 1.5; }
.partners__text strong { color: var(--ink); }
.partners__divider { width: 1px; align-self: stretch; background: var(--line); display: none; }
@media (min-width: 760px) { .partners__divider { display: block; } }

/* ------------------------------ Partnership feature --------------------- */
.partnership-img {
  width: 100%; height: auto; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.14);
}
.section--navy .partnership-img { border-color: rgba(255,255,255,.14); }
.partnership-band { background: var(--surface-2); }
.partnership-band .partnership-img { border-color: var(--line); box-shadow: var(--shadow-md); }

/* ------------------------------ Grids / cards --------------------------- */
.grid { display: grid; gap: 1.5rem; }
.grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.card h3 { margin-bottom: .5rem; }
.card p:last-child { margin-bottom: 0; }
.card p { color: var(--body); }
a.card { color: inherit; display: block; }
a.card:hover { text-decoration: none; transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }

.card__tag {
  display: inline-block; font-size: .75rem; font-weight: 650; letter-spacing: .01em;
  color: var(--red); background: var(--tint-red);
  padding: .3rem .7rem; border-radius: var(--radius-pill); margin-bottom: .9rem;
}
.card__link { font-weight: 650; color: var(--red); display: inline-flex; align-items: center; gap: .4rem; margin-top: .85rem; }
.card__link::after {
  content: ""; width: 16px; height: 16px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform var(--dur) var(--ease);
}
a.card:hover .card__link::after { transform: translateX(4px); }

.icon-badge {
  width: 52px; height: 52px; display: grid; place-items: center;
  border-radius: 14px; background: var(--surface-3); color: var(--navy);
  margin-bottom: 1.1rem; border: 1px solid var(--line);
}
.icon-badge svg { width: 24px; height: 24px; stroke-width: 1.75; }

/* Feature list with checks */
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { position: relative; padding-left: 2.25rem; margin-bottom: 1.05rem; color: var(--body); }
.check-list li:last-child { margin-bottom: 0; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .05rem;
  width: 24px; height: 24px; border-radius: var(--radius-pill);
  background: var(--tint-red);
  -webkit-mask: none;
}
.check-list li::after {
  content: ""; position: absolute; left: 5px; top: .35rem;
  width: 14px; height: 14px;
  background: var(--red);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}
.check-list li strong { color: var(--ink); }
.section--navy .check-list li { color: #b7c0d8; }
.section--navy .check-list li strong { color: #fff; }
.section--navy .check-list li::before { background: rgba(240,180,41,.16); }
.section--navy .check-list li::after { background: var(--gold); }

/* Steps -> connected timeline */
.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; display: grid; gap: 0; }
.steps li {
  position: relative; padding-left: 4.25rem; padding-bottom: 2rem; min-height: 3rem;
}
.steps li:last-child { padding-bottom: 0; }
.steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0; width: 2.75rem; height: 2.75rem;
  display: grid; place-items: center; z-index: 1;
  background: var(--surface); color: var(--navy); font-weight: 700; font-size: 1.05rem;
  border: 1.5px solid var(--line-strong); border-radius: var(--radius-pill);
  box-shadow: var(--shadow-xs); font-variant-numeric: tabular-nums;
}
.steps li:not(:last-child)::after {
  content: ""; position: absolute; left: calc(1.375rem - 1px); top: 2.75rem; bottom: -.25rem;
  width: 2px; background: linear-gradient(var(--line-strong), var(--line));
}
.steps li strong { display: block; color: var(--ink); font-size: 1.075rem; margin-bottom: .25rem; }
.section--navy .steps li::before { background: var(--navy-800); color: #fff; border-color: rgba(255,255,255,.2); }
.section--navy .steps li:not(:last-child)::after { background: rgba(255,255,255,.16); }
.section--navy .steps li strong { color: #fff; }

/* Horizontal timeline variant (4 across on desktop) */
@media (min-width: 1024px) {
  .steps--row { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
  .steps--row li { padding-left: 0; padding-top: 4rem; padding-bottom: 0; }
  .steps--row li::before { top: 0; left: 0; }
  .steps--row li:not(:last-child)::after {
    left: 2.75rem; right: -2rem; top: calc(1.375rem - 1px); bottom: auto; width: auto; height: 2px;
    background: linear-gradient(90deg, var(--line-strong), var(--line));
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .steps--row { grid-template-columns: repeat(2, 1fr); gap: 1.75rem 2.5rem; }
}

/* Split content */
.split { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split--reverse .split__media { order: 2; } }

/* Stat row -> bold data callouts */
.stat-row { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .stat-row { grid-template-columns: repeat(3, 1fr); } }
.stat {
  text-align: left; padding: 1.75rem;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-card); box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.stat:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.stat b {
  display: block; color: var(--ink);
  font-size: clamp(2.5rem, 5vw, 3.5rem); line-height: 1; margin-bottom: .5rem;
  letter-spacing: var(--tracking-tighter); font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, var(--navy-700), var(--navy));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat span { color: var(--muted); font-size: .95rem; line-height: 1.4; }
.section--navy .stat { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); box-shadow: none; }
.section--navy .stat b { background: linear-gradient(180deg, #fff, #c9d2e8); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.section--navy .stat span { color: #97a1bc; }
.text-center .stat { text-align: center; }

/* ------------------------------ CTA strip ------------------------------- */
.cta-strip {
  background: radial-gradient(120% 140% at 50% 0%, var(--red) 0%, var(--red-700) 100%);
  color: #fff; text-align: center; border-radius: 0;
  position: relative; overflow: hidden;
  padding-block: clamp(3.5rem, 6vw, 5.5rem);   /* tighter than a full content section */
}
.cta-strip::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(80% 100% at 50% 0%, #000, transparent 70%);
  mask-image: radial-gradient(80% 100% at 50% 0%, #000, transparent 70%);
}
.cta-strip .container { position: relative; z-index: 1; }
.cta-strip h2 { color: #fff; }
.cta-strip p, .cta-strip .lead { color: #ffdcdc; }
.cta-strip .btn--on-dark { color: var(--red-700); }
.cta-strip .btn-row { justify-content: center; }

/* ------------------------------ Map ------------------------------------- */
.map-wrap {
  position: relative; background:
    radial-gradient(100% 100% at 0% 0%, #eef3fb, var(--surface-2));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 2rem); overflow: hidden; box-shadow: var(--shadow-sm);
}
.map-svg { width: 100%; height: auto; }

/* ------------------------------ FAQ / accordion ------------------------- */
.accordion { border-top: 1px solid var(--line); max-width: 52rem; margin-inline: auto; }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__item h3 { margin: 0; }
.accordion__btn {
  width: 100%; text-align: left; background: none; border: 0; font: inherit;
  font-weight: 650; color: var(--ink); font-size: clamp(1.05rem, 2vw, 1.2rem);
  letter-spacing: -0.01em; padding: 1.5rem 3rem 1.5rem 0;
  position: relative; cursor: pointer; display: block;
  transition: color var(--dur) var(--ease);
}
.accordion__btn:hover { color: var(--red); }
.accordion__btn::after {
  content: ""; position: absolute; right: 0; top: 1.55rem;
  width: 26px; height: 26px; border-radius: 50%; background: var(--surface-3);
  transition: background var(--dur) var(--ease);
}
.accordion__btn::before {
  content: ""; position: absolute; right: 5px; top: calc(1.55rem + 5px);
  width: 16px; height: 16px; z-index: 1;
  background: var(--navy);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.accordion__btn[aria-expanded="true"]::before { transform: rotate(180deg); background: var(--red); }
.accordion__btn[aria-expanded="true"]::after { background: var(--tint-red); }
.accordion__panel { overflow: hidden; max-height: 0; transition: max-height var(--dur-slow) var(--ease); }
.accordion__panel-inner { padding: 0 3rem 1.6rem 0; color: var(--body); font-size: 1.03rem; line-height: 1.65; }
.accordion__panel-inner p:last-child { margin-bottom: 0; }

/* ------------------------------ Forms ----------------------------------- */
.form-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  padding: clamp(1.5rem, 4vw, 3rem);
}
.form-progress {
  display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.25rem;
  list-style: none; padding: 0;
}
.form-progress li {
  flex: 1 1 auto; min-width: 84px; font-size: .8rem; font-weight: 600;
  color: var(--faint); text-align: left; padding-top: .75rem;
  border-top: 3px solid var(--line); margin: 0; letter-spacing: -0.01em;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.form-progress li[data-active="true"] { color: var(--red); border-top-color: var(--red); }
.form-progress li[data-done="true"] { color: var(--navy); border-top-color: var(--navy); }

.form-step { display: none; }
.form-step.is-active { display: block; animation: stepIn var(--dur-slow) var(--ease); }
@keyframes stepIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.field { margin-bottom: 1.25rem; }
.field label { display: block; font-weight: 600; color: var(--ink); margin-bottom: .5rem; font-size: .95rem; letter-spacing: -0.01em; }
.field .hint { font-weight: 400; color: var(--muted); font-size: .85rem; }
.field .req { color: var(--red); }
.field-note { display: block; margin-top: .4rem; color: var(--muted); font-size: .8rem; line-height: 1.4; }
.input, .select, .textarea {
  width: 100%; font: inherit; font-size: 1rem;
  padding: 0 1rem; height: 56px;
  border: 1px solid var(--line-strong); border-radius: 14px;
  background: var(--surface); color: var(--ink);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
.textarea { height: auto; min-height: 128px; padding: .85rem 1rem; resize: vertical; line-height: 1.5; }
.select { appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7286' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; background-size: 18px; padding-right: 2.75rem;
}
.input::placeholder, .textarea::placeholder { color: var(--faint); }
.input:hover, .select:hover, .textarea:hover { border-color: var(--muted); }
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--red); box-shadow: var(--ring); background: #fff;
}
.field-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .field-grid--2 { grid-template-columns: 1fr 1fr; } }

.checkbox-row {
  display: flex; gap: .85rem; align-items: flex-start;
  padding: 1.1rem 1.15rem; border: 1px solid var(--line); border-radius: 14px;
  background: var(--surface-2); transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.checkbox-row:hover { border-color: var(--line-strong); }
.checkbox-row:focus-within { border-color: var(--red); box-shadow: var(--ring); }
.checkbox-row input { width: 22px; height: 22px; margin-top: .1rem; flex-shrink: 0; accent-color: var(--red); cursor: pointer; }
.checkbox-row label { font-weight: 400; color: var(--body); margin: 0; }

fieldset.equip { border: 1px solid var(--line); border-radius: var(--radius-card); padding: 1.5rem; margin-bottom: 1.25rem; background: var(--surface-2); }
fieldset.equip legend { font-weight: 650; color: var(--ink); padding: 0 .5rem; font-size: 1rem; }

.form-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.form-nav .btn { flex: 1 1 auto; }
@media (min-width: 640px) { .form-nav .btn { flex: 0 0 auto; min-width: 150px; } .form-nav .btn[data-prev] { margin-right: auto; } }

.form-success { display: none; text-align: center; padding: 1.5rem 1rem; }
.form-success.is-visible { display: block; animation: stepIn var(--dur-slow) var(--ease); }
.form-success .icon-badge { margin: 0 auto 1.5rem; background: #e6f6ed; color: #1a8a4f; width: 76px; height: 76px; border-color: #c7ecd6; border-radius: var(--radius-pill); }
.form-success .icon-badge svg { width: 38px; height: 38px; stroke-width: 2.5; }

.field-error { color: var(--red); font-size: .85rem; margin-top: .4rem; display: none; font-weight: 500; }
.field.has-error .input, .field.has-error .select, .field.has-error .textarea { border-color: var(--red); box-shadow: var(--ring); }
.field.has-error .field-error, .checkbox-row.has-error + .field-error, .has-error > .field-error { display: block; }

/* Calculator -> live results card */
.calc {
  display: grid; gap: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}
@media (min-width: 860px) { .calc { grid-template-columns: 1fr 1fr; align-items: center; } }
.calc__result {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-900) 100%);
  color: #fff; border-radius: var(--radius-card); padding: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center; box-shadow: var(--shadow-md); align-self: stretch;
  display: flex; flex-direction: column; justify-content: center;
}
.calc__result .calc-eyebrow { color: #9aa6c6; font-size: .8125rem; font-weight: 650; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
.calc__result b {
  color: var(--gold); font-size: clamp(2rem, 6vw, 3rem); display: flex; flex-wrap: wrap;
  align-items: baseline; justify-content: center; gap: .1rem .5rem; line-height: 1.04;
  letter-spacing: var(--tracking-tight); font-variant-numeric: tabular-nums;
}
.calc__result .calc-to {
  flex-basis: 100%; color: #9aa6c6; font-size: .3em; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; margin: .15rem 0;
}
.calc__result .calc-annual { color: #9aa6c6; font-size: .95rem; margin: .9rem 0 0; }
.calc__result .calc-annual span { color: #fff; font-weight: 700; font-variant-numeric: tabular-nums; }
.calc__result:not(.is-active) .calc-annual { display: none; }
.calc__result small {
  color: #97a1bc; display: block; margin-top: 1.25rem; padding-top: 1.25rem;
  font-size: .85rem; line-height: 1.5; border-top: 1px solid rgba(255, 255, 255, .12);
}
.calc__result .calc-spend-line { color: #9aa6c6; font-size: .9rem; margin: .9rem 0 0; }
.calc__result .calc-spend-line span { color: #fff; font-weight: 600; font-variant-numeric: tabular-nums; }
.calc__form h2 { font-size: clamp(1.35rem, 2.5vw, 1.6rem); }
.calc__form > p:first-of-type { color: var(--muted); }

/* ------------------------------ Contact --------------------------------- */
.contact-grid { display: grid; gap: clamp(1.5rem, 4vw, 3rem); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.info-list { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; gap: 1rem; }
.info-list li {
  display: flex; gap: 1rem; margin: 0; align-items: flex-start;
  padding: 1.25rem; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-card); box-shadow: var(--shadow-xs);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.info-list li:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.info-list li { min-width: 0; overflow-wrap: anywhere; }
.info-list li > * { min-width: 0; }
.info-list .icon-badge { margin: 0; flex-shrink: 0; width: 46px; height: 46px; }
.info-list a { color: var(--ink); font-weight: 600; }
.info-list a:hover { color: var(--red); }

.embed-map { border: 0; width: 100%; aspect-ratio: 4 / 3; border-radius: var(--radius-lg); min-height: 320px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }

/* ------------------------------ Breadcrumb ------------------------------ */
.breadcrumb { font-size: .875rem; color: var(--muted); padding-block: 1.25rem; }
.breadcrumb a { color: var(--muted); font-weight: 500; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span { color: var(--line-strong); margin: 0 .5rem; }

/* ------------------------------ Footer ---------------------------------- */
.site-footer {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-900) 100%);
  color: #99a3be; padding-block: clamp(3rem, 6vw, 4.5rem) 1.75rem; font-size: .95rem;
}
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; } }
.site-footer h4 { color: #fff; font-size: .8125rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1.15rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .65rem; }
.footer-links a { color: #99a3be; transition: color var(--dur) var(--ease); }
.footer-links a:hover { color: #fff; }
.site-footer .brand { margin-bottom: 1.25rem; }
.site-footer .brand__logo { height: 54px; background: #fff; padding: 9px 13px; border-radius: 12px; }
.footer-about { max-width: 34ch; color: #8b95b2; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); margin-top: 3rem; padding-top: 1.75rem;
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
  color: #7f89a8; font-size: .85rem;
}

/* ------------------------------ Motion / reveal ------------------------- */
.js-reveal [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); will-change: opacity, transform; }
.js-reveal [data-reveal].is-visible { opacity: 1; transform: none; }
.js-reveal [data-reveal][data-reveal-delay="1"] { transition-delay: .06s; }
.js-reveal [data-reveal][data-reveal-delay="2"] { transition-delay: .12s; }
.js-reveal [data-reveal][data-reveal-delay="3"] { transition-delay: .18s; }

/* ------------------------------ Status chips ---------------------------- */
.status-chip {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: .35rem .7rem; border-radius: var(--radius-pill); line-height: 1;
}
.status-chip::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.status-chip--active { color: var(--red-600); background: var(--tint-red); }
.status-chip--planned { color: #96710d; background: #fcf3d8; }
.status-chip--future { color: #4b5468; background: #eceef4; }
.section--navy .status-chip--active { background: rgba(216,31,42,.18); color: #ff9299; }
.section--navy .status-chip--planned { background: rgba(240,180,41,.16); color: var(--gold); }
.section--navy .status-chip--future { background: rgba(255,255,255,.1); color: #c8cfe0; }
.card__tag.status-chip { margin-bottom: .9rem; }

/* Area-hero tag row: eyebrow + status chip as a matched, equal-height pair */
.area-tags { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; margin-bottom: 1.1rem; }
.area-tags .eyebrow { margin-bottom: 0; }
.area-tags .eyebrow,
.area-tags .status-chip {
  font-size: .75rem;
  padding-top: .45rem; padding-bottom: .45rem;
  line-height: 1;
}

/* ------------------------------ Area hero (2-col intro) ----------------- */
.area-hero { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
@media (min-width: 900px) { .area-hero { grid-template-columns: 1.05fr .95fr; } }
.area-hero__panel {
  background: var(--surface); border-radius: var(--radius-lg);
  padding: clamp(1.1rem, 2.5vw, 1.6rem); box-shadow: 0 24px 60px rgba(0,0,0,.3);
  border: 1px solid rgba(255,255,255,.14);
}
.area-map { width: 100%; height: auto; display: block; border-radius: var(--radius); overflow: hidden; }
.area-hero__cap {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  margin-top: .9rem; padding-top: .9rem; border-top: 1px solid var(--line);
}
.area-hero__cap span { font-size: .8rem; color: var(--muted); font-weight: 600; }
.area-hero__cap b { font-size: .9rem; color: var(--ink); }

/* Navy intro with supporting stat panel (About / Investors) */
.intro-split { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
@media (min-width: 900px) { .intro-split { grid-template-columns: 1.1fr .9fr; } }

/* ------------------------------ Fact strip ------------------------------ */
.facts {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: var(--radius-card); overflow: hidden;
}
@media (min-width: 760px) { .facts { grid-template-columns: repeat(4, 1fr); } }
.fact { background: var(--surface); padding: 1.35rem 1.4rem; }
.fact b { display: block; font-size: 1.4rem; color: var(--ink); letter-spacing: -0.02em; line-height: 1.1; margin-bottom: .2rem; font-variant-numeric: tabular-nums; }
.fact span { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; font-weight: 650; }
.section--navy .facts { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.12); }
.section--navy .fact { background: transparent; }
.section--navy .fact b { color: #fff; }
.section--navy .fact span { color: #9aa6c6; }

/* ------------------------------ FAQ 2-col ------------------------------- */
@media (min-width: 960px) {
  .faq-grid { display: grid; grid-template-columns: 1fr 320px; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
  .faq-grid .accordion { margin: 0; max-width: none; }
}
.faq-aside {
  background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius-card);
  padding: 1.75rem; position: sticky; top: calc(var(--header-h) + 20px);
}
.faq-aside h3 { font-size: 1.15rem; }
.faq-aside p { color: var(--muted); font-size: .95rem; }

/* ------------------------------ Section spacing helpers ----------------- */
.section--compact { padding-block: clamp(3rem, 5vw, 4.5rem); }

/* ------------------------------ Utilities ------------------------------- */
.stack > * + * { margin-top: 1rem; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.hidden { display: none !important; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .js-reveal [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ------------------------------ WhatsApp float -------------------------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.28);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.wa-float:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 12px 30px rgba(0,0,0,.34); }
.wa-float svg { width: 30px; height: 30px; fill: currentColor; }
.btn--whatsapp { background: #25D366; color: #fff; --btn-shadow: 0 6px 18px rgba(37,211,102,.3); }
.btn--whatsapp:hover { background: #1ebe5a; color: #fff; box-shadow: 0 10px 28px rgba(37,211,102,.36); }
@media print { .wa-float { display: none; } }

/* ------------------------------ Press-release quote --------------------- */
.pr-quote { margin: 2.25rem 0; padding: .25rem 0 .25rem 1.5rem; border-left: 3px solid var(--red); }
.pr-quote p { font-size: 1.3rem; line-height: 1.5; color: var(--ink); font-weight: 500; margin-bottom: .8rem; }
.pr-quote cite { font-style: normal; font-weight: 650; color: var(--muted); font-size: .95rem; }
