/* =================================================================
   DevelopsLy — LIGHT brand theme
   Brand: Poppins · primary blue #0046A0 · gold #FFC670 · navy ink #100739
   Layout/structure inspired by a cinematic reference, re-skinned to the
   real developsly.com brand (font, color, style).
   ================================================================= */

/* ---------- TOKENS ---------- */
:root {
  /* color */
  --bg:           #ffffff;
  --bg-tint:      #f3f7fd;   /* light-blue section wash */
  --bg-tint-2:    #e9f1fc;
  --surface:      #ffffff;
  --ink:          #100739;   /* headings — deep navy */
  --text:         #333333;   /* body */
  --muted:        #5a5666;   /* secondary text (7.1:1 on white) */
  --primary:      #0046a0;   /* brand blue */
  --primary-strong:#00367d;
  --primary-bright:#0058cc;
  --gold:         #ffc670;   /* brand gold — FILLS only (fails as text on white) */
  --gold-strong:  #ffb84d;
  --orange:       #f68749;   /* warm accent — decorative / on dark only */
  --navy:         #0c1230;   /* dark band (footer/CTA) */
  --navy-2:       #14193c;
  --border:       #e4eaf3;
  --border-strong:rgba(0,70,160,0.20);
  --ring:         #0058cc;

  /* type */
  --font-display: "Poppins", system-ui, -apple-system, sans-serif;
  --font-body:    "Poppins", system-ui, -apple-system, sans-serif;

  --step--1: clamp(0.82rem, 0.8rem + 0.1vw, 0.9rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.1rem);
  --step-1:  clamp(1.15rem, 1.08rem + 0.36vw, 1.35rem);
  --step-2:  clamp(1.5rem, 1.3rem + 0.95vw, 2.05rem);
  --step-3:  clamp(1.9rem, 1.55rem + 1.7vw, 2.85rem);
  --step-4:  clamp(2.4rem, 1.85rem + 2.9vw, 4rem);
  --step-hero: clamp(2.6rem, 1.9rem + 4.2vw, 5.1rem);

  /* spacing */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px; --s-10: 128px;

  /* radius / shadow / motion */
  --radius:    16px;
  --radius-sm: 12px;
  --radius-lg: 26px;
  --shadow:      0 16px 38px -22px rgba(16,7,57,0.30);
  --shadow-lg:   0 34px 70px -30px rgba(16,7,57,0.32);
  --shadow-blue: 0 18px 44px -18px rgba(0,70,160,0.34);
  --shadow-gold: 0 16px 40px -16px rgba(255,170,40,0.55);
  --ease:   cubic-bezier(.2,.7,.2,1);
  --dur:    .55s;
  --dur-micro: .2s;

  --shell:  1200px;
}

/* ---------- RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* airy light atmosphere */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(80% 55% at 82% -10%, rgba(255,198,112,0.20), transparent 60%),
    radial-gradient(70% 50% at 0% 100%, rgba(0,70,160,0.07), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.08; letter-spacing: -0.015em; color: var(--ink); }
ul, ol { list-style: none; padding: 0; }

:where(a,button,input,select,textarea,[tabindex]):focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 3px;
  border-radius: 4px;
}

.shell { width: min(100% - 2.5rem, var(--shell)); margin-inline: auto; }

/* anchored sections clear the sticky nav */
.section, .hero { scroll-margin-top: 92px; }
#top, #main { scroll-margin-top: 92px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--primary); color: #fff; padding: 10px 16px;
  border-radius: 0 0 10px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

.grain { display: none; } /* not used in the light theme */

/* shared soft glow */
.hero__glow {
  position: absolute; z-index: 0; pointer-events: none;
  width: 78vw; max-width: 920px; aspect-ratio: 1; right: -6%; top: -16%;
  background: radial-gradient(closest-side, rgba(255,198,112,0.34), rgba(255,198,112,0.08) 56%, transparent 72%);
  filter: blur(10px);
  animation: pulse 7s var(--ease) infinite alternate;
}
@keyframes pulse { from { opacity: .75; transform: scale(.98);} to { opacity: 1; transform: scale(1.04);} }

/* =================================================================
   BUTTONS
   ================================================================= */
.btn {
  --pad-y: 14px; --pad-x: 24px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: var(--step-0);
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; line-height: 1; white-space: nowrap;
  transition: transform var(--dur-micro) var(--ease), box-shadow var(--dur-micro) var(--ease),
              background var(--dur-micro) var(--ease), border-color var(--dur-micro) var(--ease), color var(--dur-micro) var(--ease);
}
.btn svg { transition: transform var(--dur-micro) var(--ease); }
.btn--sm { --pad-y: 12px; --pad-x: 18px; font-size: var(--step--1); }
.btn--lg { --pad-y: 17px; --pad-x: 32px; font-size: var(--step-1); }

/* primary = brand gold consultation pill (matches the real site) */
.btn--primary {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-strong) 100%);
  color: var(--ink);
  box-shadow: var(--shadow-gold);
  border-color: rgba(16,7,57,0.06);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 22px 54px -16px rgba(255,170,40,0.7); }
.btn--primary:hover svg { transform: translateX(4px); }

/* ghost = blue-outlined */
.btn--ghost {
  background: #fff; color: var(--primary);
  border-color: var(--border-strong);
}
.btn--ghost:hover { border-color: var(--primary); background: rgba(0,70,160,0.05); transform: translateY(-2px); }

/* blue solid (used on dark bands / secondary) */
.btn--blue { background: var(--primary); color: #fff; box-shadow: var(--shadow-blue); }
.btn--blue:hover { background: var(--primary-strong); transform: translateY(-2px); }

/* =================================================================
   NAV
   ================================================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
}
.nav[data-scrolled] {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px) saturate(1.1);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 30px -22px rgba(16,7,57,0.4);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s-5); height: 76px; }
.nav__brand { display: inline-flex; align-items: center; padding: 8px 0; }
.nav__logo { height: 30px; width: auto; }
.nav__links { display: flex; gap: var(--s-6); }
.nav__links a {
  font-size: var(--step--1); font-weight: 600; color: var(--muted);
  position: relative; padding: 6px 0; transition: color var(--dur-micro) var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--gold); transition: width var(--dur-micro) var(--ease);
}
.nav__links a:hover { color: var(--primary); }
.nav__links a:hover::after { width: 100%; }
.nav__links a[aria-current="page"] { color: var(--primary); font-weight: 700; }
.nav__links a[aria-current="page"]::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: var(--s-3); }

.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 10px; min-width: 44px; min-height: 44px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform var(--dur-micro) var(--ease), opacity var(--dur-micro) var(--ease); }
.nav__toggle span + span { margin-top: 5px; }
.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__drawer {
  display: flex; flex-direction: column; gap: var(--s-4);
  padding: var(--s-5) clamp(1.25rem, 5vw, 2rem) var(--s-6);
  background: #fff; border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.nav__drawer a { font-family: var(--font-display); font-size: var(--step-2); font-weight: 700; color: var(--ink); }
.nav__drawer .btn { font-family: var(--font-body); font-size: var(--step-0); margin-top: var(--s-2); }

/* =================================================================
   HERO
   ================================================================= */
.hero { position: relative; padding-top: clamp(2rem, 4vw, 3.5rem); padding-bottom: var(--s-7); overflow: hidden; }
.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1rem, 4vw, 3rem);
  align-items: center; min-height: min(76vh, 700px);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: var(--step--1); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary);
  padding: 8px 14px; border: 1px solid var(--border-strong); border-radius: 999px;
  background: rgba(0,70,160,0.05);
}
.eyebrow__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(255,198,112,0.3); }

.hero__title {
  font-size: var(--step-hero); text-transform: uppercase; letter-spacing: -0.02em; line-height: 1.0;
  margin-top: var(--s-5); margin-bottom: var(--s-5);
}
.hero__title span { display: block; }

/* emphasis — both on-brand (blue + gold) */
.hl { font-style: normal; position: relative; }
/* amber set → blue text + gold underline beam */
.hl--amber { color: var(--primary); }
.hl--amber::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0.02em; height: 0.12em;
  background: var(--gold); border-radius: 3px;
  transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease) .25s;
}
.is-revealed .hl--amber::after, .hero__title .hl--amber::after { transform: scaleX(1); }
/* red set → gold highlighter marker, navy text */
.hl--red {
  color: var(--ink);
  background-image: linear-gradient(var(--gold), var(--gold));
  background-repeat: no-repeat; background-position: 0 92%; background-size: 0% 40%;
  padding: 0 0.08em; border-radius: 2px;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
  transition: background-size .6s var(--ease) .25s;
}
.is-revealed .hl--red, .hero__title .hl--red { background-size: 100% 40%; }

.hero__sub { color: var(--muted); font-size: var(--step-1); max-width: 46ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-6); }
.hero__trust { display: flex; align-items: center; gap: 12px; margin-top: var(--s-5); color: var(--muted); font-size: var(--step--1); }
.stars { color: var(--gold-strong); letter-spacing: 2px; }
.hero__trust strong { color: var(--ink); }

/* portrait */
.hero__media { position: relative; display: flex; justify-content: center; }
.portrait { position: relative; width: min(100%, 460px); aspect-ratio: 900 / 1023; }
.portrait__halo {
  position: absolute; inset: -14% -10% -6%; z-index: 0; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255,198,112,0.55), rgba(0,70,160,0.10) 60%, transparent 74%);
  filter: blur(8px);
}
.portrait__img {
  position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover;
  border-radius: 220px 220px 28px 28px;
  background: var(--bg-tint);
  border: 6px solid #fff;
  box-shadow: var(--shadow-lg);
  -webkit-mask-image: linear-gradient(180deg, #000 86%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 86%, transparent 100%);
}
.portrait__scrim {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  border-radius: 220px 220px 28px 28px;
  background: radial-gradient(70% 55% at 50% 0%, rgba(255,198,112,0.20), transparent 60%);
}
.portrait__tag {
  position: absolute; z-index: 3; left: -6%; bottom: 13%;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 12px 16px; box-shadow: var(--shadow);
}
.portrait__tag figcaption { display: flex; flex-direction: column; line-height: 1.35; }
.portrait__tag strong { font-family: var(--font-display); font-size: var(--step-0); color: var(--ink); }
.portrait__tag span { font-size: var(--step--1); color: var(--primary); font-weight: 600; }

.portrait__chip {
  position: absolute; z-index: 3; right: -4%; top: 11%;
  display: flex; flex-direction: column; align-items: flex-start;
  background: linear-gradient(180deg, #fff, #fff);
  border: 1px solid var(--border); border-top: 3px solid var(--gold);
  border-radius: var(--radius-sm); padding: 12px 16px; box-shadow: var(--shadow);
}
.portrait__chip-num { font-family: var(--font-display); font-weight: 800; font-size: var(--step-2); color: var(--primary); line-height: 1; }
.portrait__chip-label { font-size: var(--step--1); color: var(--muted); }

/* channels strip */
.logos {
  position: relative; z-index: 1; margin-top: clamp(1.5rem, 4vw, 3rem);
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-4) var(--s-6);
  padding-top: var(--s-5); border-top: 1px solid var(--border);
}
.logos__label { font-size: var(--step--1); text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); font-weight: 600; }
.logos__row { display: flex; flex-wrap: wrap; gap: var(--s-4) var(--s-6); }
.logos__row li { font-family: var(--font-display); font-weight: 700; font-size: var(--step-1); color: var(--ink); opacity: .5; transition: opacity var(--dur-micro) var(--ease), color var(--dur-micro) var(--ease); }
.logos__row li:hover { opacity: 1; color: var(--primary); }

/* =================================================================
   STAT BAND
   ================================================================= */
.stats { padding: var(--s-7) 0; }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-3);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--bg-tint);
  padding: var(--s-6) var(--s-5); box-shadow: var(--shadow);
}
.stat { text-align: center; padding: var(--s-3) var(--s-2); position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 18%; bottom: 18%; width: 1px; background: var(--border); }
.stat__num { display: block; font-family: var(--font-display); font-weight: 800; font-size: var(--step-4); color: var(--primary); line-height: 1; letter-spacing: -0.02em; }
.stat__label { display: block; margin-top: var(--s-3); font-size: var(--step--1); color: var(--muted); }

/* =================================================================
   SECTION SCAFFOLD
   ================================================================= */
.section { padding: clamp(3.5rem, 8vw, 7rem) 0; position: relative; }
/* full-width sections (services/process/proof) get centered headers */
.section__head { max-width: 720px; margin: 0 auto clamp(2rem, 5vw, 3.5rem); text-align: center; }
.kicker { font-size: var(--step--1); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary); margin-bottom: var(--s-3); }
.kicker--center { text-align: center; }
.section__title { font-size: var(--step-3); letter-spacing: -0.02em; }
.section__lede { margin: var(--s-4) auto 0; color: var(--muted); font-size: var(--step-1); max-width: 56ch; }

/* =================================================================
   SERVICE CARDS
   ================================================================= */
.services { background: var(--bg-tint); }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-4); }
.card {
  position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: var(--s-5); transition: transform var(--dur-micro) var(--ease), border-color var(--dur-micro) var(--ease), box-shadow var(--dur-micro) var(--ease);
}
.card::after { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%; background: linear-gradient(90deg, var(--primary), var(--gold)); opacity: 0; transition: opacity var(--dur-micro) var(--ease); }
.card:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.card:hover::after { opacity: 1; }
.card__tag {
  position: absolute; top: var(--s-4); right: var(--s-4);
  font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700;
  color: var(--primary); background: rgba(0,70,160,0.07);
  border-radius: 999px; padding: 4px 9px;
}
.card__icon {
  display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 14px;
  background: rgba(0,70,160,0.08); color: var(--primary);
  margin-bottom: var(--s-4);
}
.card h3 { font-size: var(--step-1); margin-bottom: var(--s-3); letter-spacing: -0.01em; }
.card p { color: var(--muted); font-size: var(--step--1); line-height: 1.6; }

/* =================================================================
   PROCESS
   ================================================================= */
.process { overflow: hidden; }
.process__glow { right: auto; left: -12%; top: 30%; opacity: .7; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-4); position: relative; z-index: 1; }
.step {
  position: relative; padding: var(--s-6) var(--s-5) var(--s-5);
  border: 1px solid var(--border); border-radius: var(--radius);
  background: #fff; box-shadow: var(--shadow);
}
.step__num {
  font-family: var(--font-display); font-weight: 800; font-size: var(--step-3);
  color: transparent; -webkit-text-stroke: 1.5px var(--primary); display: block; margin-bottom: var(--s-3);
}
.step h3 { font-size: var(--step-1); margin-bottom: var(--s-3); }
.step p { color: var(--muted); font-size: var(--step--1); }

/* =================================================================
   PROOF / RESULTS / TESTIMONIALS
   ================================================================= */
.proof { background: var(--bg-tint); }
.results { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.result {
  text-align: center; padding: var(--s-7) var(--s-5);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: #fff; box-shadow: var(--shadow);
}
.result__metric { font-family: var(--font-display); font-weight: 800; font-size: var(--step-4); color: var(--primary); line-height: 1; letter-spacing: -0.02em; }
.result__desc { margin-top: var(--s-4); color: var(--muted); font-size: var(--step-0); max-width: 26ch; margin-inline: auto; }

.quotes { position: relative; }
.quotes__viewport { overflow: hidden; }
.quotes__track { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); transition: transform var(--dur) var(--ease); }
.quotes.is-slider .quotes__track { display: flex; }
.quotes.is-slider .quote { flex: 0 0 100%; min-width: 100%; }
.quotes.is-slider .quotes__nav { display: flex; }
.quote {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: #fff; padding: var(--s-6) var(--s-5); box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: var(--s-4);
}
.quote__stars { color: var(--gold-strong); letter-spacing: 3px; }
.quote blockquote { font-size: var(--step-1); line-height: 1.5; font-weight: 500; color: var(--ink); }
.quote__by { display: flex; flex-direction: column; margin-top: auto; }
.quote__by strong { font-family: var(--font-display); color: var(--ink); }
.quote__by span { font-size: var(--step--1); color: var(--muted); }

.quotes__nav { display: none; align-items: center; justify-content: center; gap: var(--s-4); margin-top: var(--s-5); }
.quotes__btn {
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer; color: var(--primary);
  background: #fff; border: 1px solid var(--border-strong);
  display: grid; place-items: center; transition: background var(--dur-micro) var(--ease);
}
.quotes__btn:hover { background: rgba(0,70,160,0.06); }
.quotes__dots { display: flex; gap: 2px; }
.quotes__dots button { width: 40px; height: 40px; border-radius: 50%; border: 0; background: transparent; cursor: pointer; padding: 0; position: relative; }
.quotes__dots button::before {
  content: ""; position: absolute; top: 50%; left: 50%; width: 9px; height: 9px; border-radius: 50%;
  background: #cdd6e6; transform: translate(-50%, -50%);
  transition: background var(--dur-micro) var(--ease), transform var(--dur-micro) var(--ease);
}
.quotes__dots button[aria-current="true"]::before { background: var(--gold-strong); transform: translate(-50%, -50%) scale(1.4); }

/* =================================================================
   FOUNDER / ABOUT
   ================================================================= */
.founder { overflow: hidden; }
.founder__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.founder__frame { position: relative; width: min(100%, 420px); aspect-ratio: 560/637; margin-inline: auto; }
.founder__halo { position: absolute; inset: -12%; border-radius: 50%; background: radial-gradient(closest-side, rgba(255,198,112,0.45), rgba(0,70,160,0.08) 62%, transparent 74%); filter: blur(8px); }
.founder__img {
  position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius-lg); border: 6px solid #fff; box-shadow: var(--shadow-lg);
}
.founder__copy p { color: var(--muted); margin-top: var(--s-4); max-width: 52ch; }
.founder__sign {
  font-family: var(--font-display); font-size: var(--step-2); font-weight: 700;
  color: var(--ink) !important; border-left: 3px solid var(--gold);
  padding-left: var(--s-4); margin-top: var(--s-5) !important;
}
.founder__copy .btn { margin-top: var(--s-6); }

/* =================================================================
   CTA  (deep-navy band, gold button)
   ================================================================= */
.cta { text-align: center; overflow: hidden; background: linear-gradient(160deg, var(--navy) 0%, #0a1840 60%, var(--primary-strong) 130%); }
.cta * { color: #fff; }
.cta__inner { position: relative; z-index: 2; max-width: 760px; margin-inline: auto; }
.cta .kicker { color: var(--gold); }
.cta__glow {
  position: absolute; z-index: 0; pointer-events: none; left: 50%; top: 40%; translate: -50% -50%;
  width: 70vw; max-width: 800px; aspect-ratio: 1;
  background: radial-gradient(closest-side, rgba(255,198,112,0.28), transparent 66%); filter: blur(12px);
}
.cta__mark { position: absolute; z-index: 1; right: -4%; bottom: -18%; width: clamp(280px, 38vw, 520px); height: auto; color: rgba(255,198,112,0.16); }
.cta__title { font-size: var(--step-4); margin-top: var(--s-3); letter-spacing: -0.02em; }
.cta__title .hl--amber { color: var(--gold); }
.cta__title .hl--amber::after { background: rgba(255,255,255,0.5); }
.cta__sub { color: rgba(255,255,255,0.82) !important; font-size: var(--step-1); margin: var(--s-5) auto 0; max-width: 52ch; }
.cta__actions { display: flex; flex-wrap: wrap; gap: var(--s-3); justify-content: center; margin-top: var(--s-6); }
.cta__actions .btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.cta__actions .btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.cta__fine { color: rgba(255,255,255,0.7) !important; font-size: var(--step--1); margin-top: var(--s-5); }

/* =================================================================
   FOOTER (deep navy)
   ================================================================= */
.footer { border-top: 1px solid var(--border); padding-top: var(--s-8); background: var(--navy); color: rgba(255,255,255,0.8); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: var(--s-6); padding-bottom: var(--s-7); }
.footer__logo { height: 30px; width: auto; margin-bottom: var(--s-4); }
.footer__brand p { color: rgba(255,255,255,0.7); font-size: var(--step--1); max-width: 34ch; }
.footer__col { display: flex; flex-direction: column; gap: 2px; }
.footer__col h4 { font-family: var(--font-body); font-size: var(--step--1); text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); font-weight: 700; margin-bottom: var(--s-2); }
.footer__col a { color: rgba(255,255,255,0.72); font-size: var(--step--1); transition: color var(--dur-micro) var(--ease); display: inline-flex; align-items: center; min-height: 40px; }
.footer__col a:hover { color: var(--gold); }
.footer__cta { width: fit-content; margin-top: var(--s-2); color: var(--ink); min-height: 40px; }
.footer__base {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--s-3);
  padding: var(--s-3) 0 var(--s-5); border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.55); font-size: var(--step--1);
}
.footer__legal { display: inline-flex; align-items: center; }
.footer__legal a { display: inline-flex; align-items: center; min-height: 40px; padding-inline: 8px; color: rgba(255,255,255,0.55); }
.footer__legal a:hover { color: var(--gold); }

/* =================================================================
   REVEAL
   ================================================================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease); will-change: opacity, transform; }
.reveal.is-revealed { opacity: 1; transform: none; }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 1024px) {
  .cards, .stats__grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .stat + .stat:nth-child(odd)::before { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .nav__actions .btn--sm { display: none; }
  .hero__grid { grid-template-columns: 1fr; gap: var(--s-6); min-height: 0; }
  /* copy first, founder portrait second on mobile */
  .hero__media { order: 0; margin-top: var(--s-3); }
  .portrait { width: min(76%, 340px); }
  /* keep the founder's face clear: chip above the hairline, name tag at the very base */
  .portrait__chip { top: -3%; right: -4%; padding: 9px 13px; }
  .portrait__tag { left: -4%; bottom: 4%; padding: 10px 14px; }
  .founder__grid { grid-template-columns: 1fr; }
  .founder__media { max-width: 360px; margin-inline: auto; }
}
@media (max-width: 680px) {
  .results { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .cards, .stats__grid, .steps { grid-template-columns: 1fr; }
  .stat + .stat::before { display: none; }
  .stats__grid { gap: var(--s-5); }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__cta .btn, .cta__actions .btn { flex: 1 1 auto; }
}

/* =================================================================
   REDUCED MOTION
   ================================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__glow, .cta__glow, .portrait__halo { animation: none; }
  .hl--amber::after { transition: none; transform: scaleX(1); }
  .hl--red { transition: none; background-size: 100% 40%; }
}

/* =================================================================
   SUB-PAGES (Areas / About / Contact)
   ================================================================= */
.page-hero { position: relative; overflow: hidden; padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3.25rem); text-align: center; }
.page-hero .hero__glow { opacity: .85; }
.page-hero__inner { position: relative; z-index: 1; max-width: 780px; margin-inline: auto; }
.breadcrumb { font-size: var(--step--1); color: var(--muted); margin-bottom: var(--s-4); }
.breadcrumb a { color: var(--muted); display: inline-block; padding: 11px 6px; margin: -11px 0; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--ink); font-weight: 600; }
.page-hero h1 { font-size: var(--step-4); letter-spacing: -0.02em; margin-top: var(--s-2); }
.page-hero__lede { color: var(--muted); font-size: var(--step-1); margin: var(--s-5) auto 0; max-width: 56ch; }
.page-hero__cta { display: flex; flex-wrap: wrap; gap: var(--s-3); justify-content: center; margin-top: var(--s-6); }

/* area + value cards reuse .card; add a centered variant */
.card--center { text-align: center; }
.card--center .card__icon { margin-inline: auto; }
.card__pin { position: absolute; top: var(--s-4); right: var(--s-4); font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; color: var(--ink); background: var(--gold); border-radius: 999px; padding: 4px 9px; }

/* CONTACT */
.contact__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.methods { display: flex; flex-direction: column; gap: var(--s-4); }
.method { display: flex; gap: var(--s-4); align-items: flex-start; padding: var(--s-5); border: 1px solid var(--border); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.method__icon { flex: none; width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; background: rgba(0,70,160,0.08); color: var(--primary); }
.method h3 { font-size: var(--step-0); margin-bottom: 4px; }
.method a, .method p { color: var(--muted); font-size: var(--step--1); }
.method a { display: inline-flex; align-items: center; min-height: 40px; }
.method a:hover { color: var(--primary); }

.form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.5rem); box-shadow: var(--shadow); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
.field { display: flex; flex-direction: column; gap: var(--s-2); margin-bottom: var(--s-4); }
.field label { font-size: var(--step--1); font-weight: 600; color: var(--ink); }
.field input, .field textarea, .field select {
  font-family: var(--font-body); font-size: var(--step-0); color: var(--ink);
  padding: 13px 15px; border: 1px solid var(--border); border-radius: 12px; background: #fff; width: 100%;
  transition: border-color var(--dur-micro) var(--ease), box-shadow var(--dur-micro) var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #9aa3b4; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,70,160,0.15); }
.field textarea { resize: vertical; min-height: 140px; }
.form .btn { width: 100%; }
.form__note { font-size: var(--step--1); color: var(--muted); margin-top: var(--s-3); }
.form__note a { display: inline-block; padding-block: 11px; margin-block: -11px; }
.form__status { margin-top: var(--s-3); font-size: var(--step--1); font-weight: 600; color: var(--primary); min-height: 1.2em; }

@media (max-width: 880px) { .contact__grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }
