/* ════════════════════════════════════════════════════════════
   EMERZONE PROPOSAL — STYLES
   Dark mode only. Bebas Neue + Inter. Matches mobile app brand.
   Responsive: mobile <768 / tablet 768–1023 / desktop ≥1024
   ════════════════════════════════════════════════════════════ */

/* ─── Reset & Tokens ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

:root {
  /* Backgrounds */
  --bg-primary: #000000;
  --bg-elev-1: #121212;
  --bg-elev-2: #1A1A1A;
  --bg-input: #1F1F1F;

  /* Text */
  --text-primary: #FFFFFF;
  --text-secondary: #A8A8A8;
  --text-muted: #6B6B6B;

  /* Concrete (dividers) */
  --concrete-light: #5C5C5C;
  --concrete-mid: #3A3A3A;
  --concrete-dark: #262626;

  /* Accent (use sparingly) */
  --gold: #C9A961;
  --gold-soft: rgba(201, 169, 97, 0.4);
  --gold-faint: rgba(201, 169, 97, 0.12);

  /* Status */
  --error: #E04545;
  --success: #3FCF8E;

  /* Spacing */
  --container: 1200px;
  --gap-xs: 8px;
  --gap-sm: 16px;
  --gap-md: 24px;
  --gap-lg: 48px;
  --gap-xl: 96px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-full: 999px;

  /* Fonts */
  --font-display: 'Bebas Neue', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--text-primary); }

/* ─── Container ─────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 767px) {
  .container { padding: 0 20px; }
}

/* ─── Header ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: padding 0.25s ease;
}
.site-header.scrolled { padding: 10px 32px; }
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark { width: 28px; height: 28px; }
.logo-word {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.12em;
  color: var(--text-primary);
}
.site-nav {
  display: flex;
  gap: 28px;
}
.site-nav a {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}
.site-nav a:hover { color: var(--text-primary); }

.nav-toggle { display: none; }
.scroll-progress {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--text-primary), var(--gold));
  width: 0;
  transition: width 0.1s linear;
}

/* ─── Mobile nav ─── */
@media (max-width: 767px) {
  .site-header { padding: 14px 20px; }
  .site-nav {
    position: fixed;
    inset: 64px 0 0 0;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(20px);
    padding: 40px 24px;
    gap: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .site-nav.open { transform: translateX(0); }
  .site-nav a { font-size: 18px; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
  }
  .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
}

/* ─── Sections ──────────────────────────────────────────── */
.section {
  padding: var(--gap-xl) 0;
  position: relative;
}
@media (max-width: 1023px) {
  .section { padding: 80px 0; }
}
@media (max-width: 767px) {
  .section { padding: 64px 0; }
}

.section__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.gold-label { color: var(--gold); }
.section__headline {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: 0.01em;
  margin: 0 0 24px 0;
  color: var(--text-primary);
}
.section__lead {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 0 56px 0;
  line-height: 1.65;
}
@media (max-width: 1023px) {
  .section__headline { font-size: 48px; }
  .section__lead { font-size: 17px; margin-bottom: 40px; }
}
@media (max-width: 767px) {
  .section__headline { font-size: 36px; }
  .section__lead { font-size: 16px; margin-bottom: 32px; }
}

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--text-primary);
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px 28px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

/* Visibility helpers */
.hide-mobile { display: inline; }
.show-mobile { display: none; }
@media (max-width: 767px) {
  .hide-mobile { display: none; }
  .show-mobile { display: inline; }
}

/* ════════════════════════════════════════════════════════════
   §1 HERO — Building façade background
   ════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url('assets/building-facade.png') center/cover no-repeat;
  background-attachment: fixed;
  z-index: 0;
  will-change: transform;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.55) 40%,
    rgba(0, 0, 0, 0.9) 100%);
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 1100px;
}
.hero__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin: 0 0 32px 0;
  color: var(--text-primary);
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.6);
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(.2,.7,.2,1) 0.4s forwards;
}
.hero__tagline {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  margin: 0 auto 48px;
  max-width: 720px;
  opacity: 0;
  animation: fadeUp 1s ease 0.7s forwards;
}
.hero__cta {
  opacity: 0;
  animation: fadeUp 0.8s ease 1.0s forwards;
}
.hero__scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.6s ease 1.6s forwards;
}
.scroll-cue__chevron {
  display: block;
  width: 18px;
  height: 18px;
  border-right: 2px solid rgba(255, 255, 255, 0.6);
  border-bottom: 2px solid rgba(255, 255, 255, 0.6);
  transform: rotate(45deg);
  animation: bobble 2s ease-in-out infinite;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bobble {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

@media (max-width: 1023px) {
  .hero__headline { font-size: 64px; }
  .hero__tagline { font-size: 22px; }
}
@media (max-width: 767px) {
  .hero__bg {
    background-attachment: scroll;
    background-position: center right;
  }
  .hero__headline { font-size: 48px; }
  .hero__tagline { font-size: 18px; letter-spacing: 0.08em; }
  .hero__eyebrow { font-size: 11px; letter-spacing: 0.25em; }
}

/* ════════════════════════════════════════════════════════════
   §2 OPPORTUNITY
   ════════════════════════════════════════════════════════════ */
.section--opportunity .opportunity__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}
.opportunity__lead p,
.opportunity__body p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}
.opportunity__lead p { color: var(--text-primary); }

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.compare-col {
  background: var(--bg-elev-1);
  border-radius: var(--radius-sm);
  padding: 32px;
  border-top: 3px solid var(--concrete-mid);
}
.compare-col--tomorrow { border-top-color: var(--gold); }
.compare-col__head {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.compare-col__head span {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-left: 8px;
}
.compare-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.compare-col li {
  font-size: 15px;
  color: var(--text-secondary);
  padding: 14px 0;
  border-bottom: 1px solid var(--concrete-dark);
  position: relative;
  padding-left: 24px;
  line-height: 1.5;
}
.compare-col li:last-child { border-bottom: none; }
.compare-col li::before {
  content: '·';
  position: absolute;
  left: 8px;
  top: 14px;
  color: var(--concrete-light);
  font-weight: bold;
}
.compare-col--tomorrow li::before { content: '✓'; color: var(--gold); font-size: 12px; top: 16px; }

@media (max-width: 1023px) {
  .section--opportunity .opportunity__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .compare-grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════════════════════
   §3 TEAM
   ════════════════════════════════════════════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.team-card {
  background: var(--bg-elev-1);
  border-radius: var(--radius-sm);
  padding: 32px;
  border: 1px solid var(--concrete-dark);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--concrete-light);
}
.team-card--featured {
  border-color: var(--gold-soft);
  background: linear-gradient(180deg, var(--bg-elev-2), var(--bg-elev-1));
}
.team-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-elev-2);
  border: 1px solid var(--concrete-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.team-card--featured .team-card__avatar {
  border-color: var(--gold);
  color: var(--gold);
}
.team-card__name {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.04em;
  margin: 0 0 4px 0;
}
.team-card__role {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.team-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: rgba(201, 169, 97, 0.1);
  color: var(--gold);
  margin-bottom: 16px;
}
.team-card__bio {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.team-flow {
  text-align: center;
  padding: 40px;
  border-top: 1px solid var(--concrete-dark);
  border-bottom: 1px solid var(--concrete-dark);
}
.team-flow__diagram {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.08em;
  flex-wrap: wrap;
  justify-content: center;
}
.flow-node {
  padding: 10px 20px;
  border: 1px solid var(--concrete-mid);
  border-radius: var(--radius-sm);
  background: var(--bg-elev-1);
}
.flow-arrow {
  color: var(--gold);
  font-size: 24px;
}
.team-flow__caption {
  margin: 24px auto 0;
  max-width: 700px;
  color: var(--text-secondary);
  font-size: 15px;
}

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

/* ════════════════════════════════════════════════════════════
   §4 ABOUT MARK
   ════════════════════════════════════════════════════════════ */
.mark-card {
  background: linear-gradient(180deg, var(--bg-elev-2), var(--bg-elev-1));
  border: 1px solid var(--concrete-dark);
  border-radius: var(--radius-md);
  padding: 48px;
  position: relative;
}
.mark-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
}
.mark-card__head {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}
.mark-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-elev-2);
  border: 2px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}
.mark-card__name {
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: 0.02em;
  margin: 0 0 6px 0;
  color: var(--text-primary);
}
.mark-card__role {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}
.mark-card__quote {
  font-family: var(--font-body);
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-primary);
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 24px;
  margin: 0 0 32px 0;
}
.mark-card__meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid var(--concrete-dark);
  border-bottom: 1px solid var(--concrete-dark);
  margin-bottom: 32px;
}
.mark-card__meta > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mark-card__meta span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.mark-card__meta strong {
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 500;
}
.mark-card__verticals-label,
.mark-card__stack-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}
.mark-card__verticals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.vertical {
  background: var(--bg-elev-2);
  border: 1px solid var(--concrete-dark);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.vertical span { font-size: 20px; }
.vertical strong {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--text-primary);
}
.vertical em {
  font-style: normal;
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
}
.mark-card__stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  background: var(--bg-elev-2);
  border: 1px solid var(--concrete-mid);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
}
.mark-card__contact {
  padding-top: 24px;
  border-top: 1px solid var(--concrete-dark);
  font-size: 14px;
  color: var(--gold);
}
.mark-card__contact strong { color: var(--text-primary); }
.mark-card__contact .dot { color: var(--concrete-light); margin: 0 4px; }

@media (max-width: 1023px) {
  .mark-card { padding: 32px; }
  .mark-card__name { font-size: 32px; }
  .mark-card__verticals { grid-template-columns: 1fr 1fr; }
  .mark-card__meta { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .mark-card { padding: 24px; }
  .mark-card__head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .mark-card__avatar { width: 64px; height: 64px; font-size: 24px; }
  .mark-card__name { font-size: 28px; }
  .mark-card__quote { font-size: 16px; padding-left: 16px; }
  .mark-card__verticals { grid-template-columns: 1fr; }
  .mark-card__contact { font-size: 12px; word-break: break-word; }
}

/* ════════════════════════════════════════════════════════════
   PHONE FRAME (used everywhere mockups appear)
   The iframe loads the mockup HTML which contains its own
   React IOSDevice component at 393×852 (iPhone 15 Pro design size).
   We render the iframe at native size so content is pixel-perfect,
   then scale it down with CSS transform to fit the layout.
   ════════════════════════════════════════════════════════════ */

/* Native design size of the IOSDevice React component */
:root {
  --iphone-w: 393px;
  --iphone-h: 852px;
}

/* When phone-frame is on a <figure> (with caption), it's just the outer wrapper */
figure.phone-frame {
  display: inline-block;
  margin: 0;
  position: relative;
  flex-shrink: 0;
  vertical-align: top;
}

/* The clipping container that holds the scaled iframe.
   Used by:
   - .phone-frame__screen (inside figures)
   - div.phone-frame (walkthrough phones — no figure wrapper)
*/
.phone-frame__screen,
div.phone-frame {
  --phone-scale: 0.78;
  width: calc(var(--iphone-w) * var(--phone-scale));
  height: calc(var(--iphone-h) * var(--phone-scale));
  position: relative;
  overflow: hidden;
  border-radius: calc(58px * var(--phone-scale));
  filter: drop-shadow(0 22px 50px rgba(0, 0, 0, 0.55))
          drop-shadow(0 0 70px rgba(255, 255, 255, 0.025));
  background: #000;
  margin: 0 auto;
}

.phone-frame__screen iframe,
div.phone-frame iframe {
  width: var(--iphone-w);
  height: var(--iphone-h);
  border: 0;
  display: block;
  transform: scale(var(--phone-scale));
  transform-origin: top left;
  background: #000;
}

/* Caption — sits OUTSIDE the clipped screen, beneath it */
figure.phone-frame figcaption {
  text-align: center;
  margin-top: 18px;
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.4;
  max-width: calc(var(--iphone-w) * var(--phone-scale, 0.55));
  margin-left: auto;
  margin-right: auto;
}

/* Featured variant — slightly bigger + gold halo (used on middle Vision phone) */
.phone-frame--featured .phone-frame__screen,
div.phone-frame.phone-frame--featured {
  --phone-scale: 0.85;
  filter: drop-shadow(0 25px 60px rgba(0, 0, 0, 0.6))
          drop-shadow(0 0 60px rgba(201, 169, 97, 0.12));
}

/* XL variant — used inside the MacBook walkthrough viewport */
.phone-frame--xl .phone-frame__screen,
div.phone-frame.phone-frame--xl {
  --phone-scale: 0.7;
}

/* Row of mockups — horizontal flex */
[data-mockup-row] {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-top: 8px;
  padding-bottom: 24px;
}

/* ─── Tablet (768–1023px) ─── */
@media (max-width: 1023px) {
  .phone-frame__screen,
  div.phone-frame {
    --phone-scale: 0.6;
  }
  .phone-frame--featured .phone-frame__screen,
  div.phone-frame.phone-frame--featured {
    --phone-scale: 0.65;
  }
  .phone-frame--xl .phone-frame__screen,
  div.phone-frame.phone-frame--xl {
    --phone-scale: 0.62;
  }
  [data-mockup-row] { gap: 28px; }
}

/* ─── Mobile (<768px) ─── */
@media (max-width: 767px) {
  .phone-frame__screen,
  div.phone-frame {
    --phone-scale: 0.85;
  }
  .phone-frame--featured .phone-frame__screen,
  div.phone-frame.phone-frame--featured {
    --phone-scale: 0.85;
  }
  .phone-frame--xl .phone-frame__screen,
  div.phone-frame.phone-frame--xl {
    --phone-scale: 0.85;
  }
  [data-mockup-row] {
    gap: 56px;
    padding-bottom: 8px;
  }
}

/* ════════════════════════════════════════════════════════════
   §5 VISION — 3 phones
   ════════════════════════════════════════════════════════════ */
.vision__headline { max-width: 1000px; }
.vision__phones {
  margin-top: 64px;
}

/* ════════════════════════════════════════════════════════════
   §6 WHAT'S INSIDE — 5 buckets
   ════════════════════════════════════════════════════════════ */
.buckets {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.bucket {
  background: var(--bg-elev-1);
  border-radius: var(--radius-sm);
  padding: 28px 20px;
  border: 1px solid var(--concrete-dark);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.bucket:hover {
  transform: translateY(-6px);
  border-color: var(--concrete-light);
  background: var(--bg-elev-2);
}
.bucket__icon {
  font-size: 32px;
  margin-bottom: 16px;
}
.bucket__title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.06em;
  margin: 0 0 8px 0;
  color: var(--text-primary);
}
.bucket__headline {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 12px 0;
  line-height: 1.4;
}
.bucket__body {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 1023px) {
  .buckets { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .buckets { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   §7 SCREEN WALKTHROUGH — MacBook frame (desktop)
   ════════════════════════════════════════════════════════════ */
.walkthrough__stage {
  position: relative;
  margin: 32px auto 48px;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── MacBook (desktop only) ─── */
.macbook {
  position: relative;
  width: 1100px;
  max-width: 100%;
  margin: 0 auto;
}
.macbook__bezel {
  background: linear-gradient(180deg, #2a2a2c 0%, #1a1a1c 100%);
  border-radius: 16px;
  padding: 14px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 120px rgba(255, 255, 255, 0.02);
  position: relative;
}
.macbook__notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 6px;
  background: #0a0a0a;
  border-radius: 0 0 8px 8px;
  z-index: 2;
}
.macbook__screen {
  background: #000;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  /* Dropped aspect-ratio: 16/10 — was forcing screen too short for the phone.
     Now sized by content + min-height. */
  min-height: 720px;
}
.macbook__chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #1a1a1c;
  padding: 8px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.macbook__dots {
  display: flex;
  gap: 6px;
}
.macbook__dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--concrete-mid);
}
.macbook__dots span:nth-child(1) { background: #ff5f57; }
.macbook__dots span:nth-child(2) { background: #febc2e; }
.macbook__dots span:nth-child(3) { background: #28c840; }
.macbook__url {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: var(--text-secondary);
  background: rgba(0, 0, 0, 0.4);
  padding: 4px 12px;
  border-radius: 6px;
  max-width: 280px;
  margin: 0 auto;
}
.macbook__spacer { width: 50px; }
.macbook__viewport {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 60%),
    linear-gradient(180deg, #0a0a0a, #050505);
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 680px;
  height: 100%;
}
.macbook__base {
  width: 100%;
  height: 12px;
  background: linear-gradient(180deg, #2a2a2c 0%, #1a1a1c 50%, #2a2a2c 100%);
  border-radius: 0 0 6px 6px;
  margin: 0 auto;
  position: relative;
}
.macbook__base::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #0a0a0a;
  border-radius: 0 0 8px 8px;
}
.macbook__shadow {
  position: absolute;
  bottom: -30px;
  left: 10%;
  right: 10%;
  height: 30px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.6) 0%, transparent 70%);
  filter: blur(10px);
}

/* Mobile-only phone (hidden on desktop) */
.walkthrough__phone-mobile {
  display: none;
}

/* Walkthrough stage gets enough vertical room for macbook + nav */
.walkthrough__stage {
  min-height: 780px;
}

/* When the section anchor (#walkthrough) is jumped to, account for the sticky header
   so the title isn't hidden underneath it. */
#walkthrough {
  scroll-margin-top: 80px;
}

/* The phone inside the macbook fades during screen swap for a smoother transition */
.walkthrough__phone,
.walkthrough__phone-mobile {
  transition: opacity 0.22s ease;
}

/* Walkthrough navigation */
.walkthrough__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(15, 15, 15, 0.85);
  border: 1px solid var(--concrete-mid);
  color: var(--text-primary);
  font-size: 30px;
  font-weight: 300;
  cursor: pointer;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background 0.22s ease, transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.03);
}
.walkthrough__nav:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.18), 0 0 40px rgba(201, 169, 97, 0.15);
}
.walkthrough__nav:active {
  transform: translateY(-50%) scale(0.96);
}
.walkthrough__nav--prev { left: 12px; }
.walkthrough__nav--next { right: 12px; }
@media (min-width: 1280px) {
  .walkthrough__nav--prev { left: -32px; }
  .walkthrough__nav--next { right: -32px; }
}

/* Walkthrough meta */
.walkthrough__meta {
  text-align: center;
  margin: 40px auto 28px;
  max-width: 740px;
  transition: opacity 0.2s ease;
}
.walkthrough__name {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.walkthrough__narration {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 18px;
  line-height: 1.55;
}
.walkthrough__counter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  padding: 6px 14px;
  border: 1px solid var(--concrete-dark);
  border-radius: var(--radius-full);
  background: var(--bg-elev-1);
}
.walkthrough__counter span { color: var(--gold); font-weight: 600; }
.walkthrough__counter::after {
  content: '· USE ← → KEYS';
  color: var(--text-muted);
  font-size: 10px;
  opacity: 0.7;
}
@media (max-width: 767px) {
  .walkthrough__counter::after { content: '· SWIPE'; }
}

/* Thumbnails */
.walkthrough__thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 16px 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--concrete-mid) transparent;
  -webkit-overflow-scrolling: touch;
  mask-image: linear-gradient(90deg, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%);
}
.walkthrough__thumbs::-webkit-scrollbar { height: 5px; }
.walkthrough__thumbs::-webkit-scrollbar-thumb {
  background: var(--concrete-mid);
  border-radius: 3px;
}
.thumb {
  flex-shrink: 0;
  width: 76px;
  height: 138px;
  background: var(--bg-elev-1);
  border: 2px solid var(--concrete-dark);
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: var(--text-muted);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  padding: 10px 6px;
  text-align: center;
}
.thumb__num {
  font-size: 22px;
  color: var(--text-secondary);
  line-height: 1;
}
.thumb__label {
  font-family: var(--font-body);
  font-size: 9px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.25;
  margin-top: 6px;
  font-weight: 500;
}
.thumb:hover {
  border-color: var(--concrete-light);
  background: var(--bg-elev-2);
  transform: translateY(-2px);
}
.thumb:hover .thumb__num { color: var(--text-primary); }
.thumb.is-active {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201, 169, 97, 0.12), var(--bg-elev-2));
  box-shadow: 0 6px 20px rgba(201, 169, 97, 0.15);
  transform: translateY(-2px);
}
.thumb.is-active .thumb__num { color: var(--gold); }
.thumb.is-active .thumb__label { color: var(--text-primary); }

/* ─── Walkthrough RESPONSIVE: hide MacBook on mobile, scale on tablet ─── */
@media (min-width: 768px) and (max-width: 1023px) {
  .macbook { transform: scale(0.72); transform-origin: center top; }
  .walkthrough__stage { min-height: 540px; }
}
@media (max-width: 767px) {
  .macbook { display: none; }
  .walkthrough__phone-mobile {
    display: block;
    margin: 0 auto;
  }
  .walkthrough__stage { min-height: auto; }
  .walkthrough__nav--prev { left: 8px; }
  .walkthrough__nav--next { right: 8px; }
  .walkthrough__nav { width: 44px; height: 44px; font-size: 22px; }
  .walkthrough__name { font-size: 22px; }
}

/* ════════════════════════════════════════════════════════════
   §8 AI COACHES
   ════════════════════════════════════════════════════════════ */
.section--ai-coaches {
  background: linear-gradient(180deg, var(--bg-primary), var(--bg-elev-1), var(--bg-primary));
  position: relative;
}
.section--ai-coaches::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
}
.ai-coaches__row {
  margin: 48px 0 64px;
}
.ai-coaches__body {
  max-width: 900px;
  margin: 0 auto;
}
.ai-coaches__body p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}
.ai-coaches__body strong { color: var(--gold); }

/* ════════════════════════════════════════════════════════════
   §9, §10 EXAMPLE SECTIONS
   ════════════════════════════════════════════════════════════ */
.example__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}
.example__poster {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.example__poster img {
  width: 100%;
  display: block;
}
.example__poster figcaption {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  padding: 12px;
  background: var(--bg-elev-1);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.example__phones {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.example__body {
  max-width: 900px;
  margin: 0 auto;
}
.example__body p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}
.example__result {
  background: var(--bg-elev-1);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.example__result strong { color: var(--gold); }

@media (max-width: 1023px) {
  .example__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ════════════════════════════════════════════════════════════
   §11 TIERS
   ════════════════════════════════════════════════════════════ */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.tier-card {
  position: relative;
  background: var(--bg-elev-1);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  border: 1px solid var(--concrete-dark);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}
.tier-card:hover { transform: translateY(-4px); }
.tier-card--elite {
  background: linear-gradient(180deg, #0a0a0a, var(--bg-elev-1));
  border: 1px solid var(--gold);
  box-shadow: 0 0 60px rgba(201, 169, 97, 0.08);
}
.tier-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg-primary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  white-space: nowrap;
}
.tier-card__rings {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
  height: 24px;
}
.ring {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid var(--concrete-light);
}
.tier-card--elite .ring { border-color: var(--gold); }
.tier-card__name {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.08em;
  text-align: center;
  margin: 0 0 8px 0;
}
.tier-card__price {
  text-align: center;
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--text-primary);
  margin-bottom: 24px;
  line-height: 1;
}
.tier-card--elite .tier-card__price { color: var(--gold); }
.tier-card__price span {
  font-size: 16px;
  color: var(--text-muted);
  font-family: var(--font-body);
}
.tier-card__includes {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  margin-bottom: 24px;
}
.tier-card__includes li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid var(--concrete-dark);
}
.tier-card__includes li:last-child { border-bottom: none; }
.tier-card--elite .tier-card__includes li:first-child {
  font-weight: 600;
  color: var(--text-primary);
}
.tier-card__for {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--concrete-dark);
}

@media (max-width: 1023px) {
  .tiers-grid { grid-template-columns: 1fr; gap: 32px; }
  .tier-card { padding: 32px 24px; }
}

/* ════════════════════════════════════════════════════════════
   §12 OWNER TOOLS
   ════════════════════════════════════════════════════════════ */
.owner__grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) auto auto;
  gap: 40px;
  align-items: center;
  justify-content: center;
}
.owner__story h3 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.04em;
  margin: 0 0 16px 0;
  color: var(--gold);
}
.owner__story p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}
.owner__story strong { color: var(--text-primary); }
/* display:contents promotes the 2 phones to direct children of the grid,
   so narrative + phone + phone sit in one row */
.owner__phones {
  display: contents;
}
.owner__phones .phone-frame__screen {
  --phone-scale: 0.62;
}

@media (max-width: 1023px) {
  .owner__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    justify-items: center;
  }
  .owner__phones {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ════════════════════════════════════════════════════════════
   §13 BRANDING COLLAGE
   ════════════════════════════════════════════════════════════ */
.branding__collage {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 48px;
}
.branding__photo--building {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.branding__photo--building img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.branding__photo--logo {
  background: var(--bg-elev-1);
  border-radius: var(--radius-md);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--concrete-dark);
}
.branding__phone {
  margin: 0 auto;
}
.branding__phone .phone-frame__screen {
  --phone-scale: 0.45;
}
@media (max-width: 767px) {
  .branding__phone .phone-frame__screen {
    --phone-scale: 0.55;
  }
}

@media (max-width: 1023px) {
  .branding__collage {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .branding__photo--building {
    grid-column: 1;
    grid-row: 1;
  }
}

/* ════════════════════════════════════════════════════════════
   §14 TECH STACK
   ════════════════════════════════════════════════════════════ */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tech-item {
  background: var(--bg-elev-1);
  border: 1px solid var(--concrete-dark);
  border-radius: var(--radius-sm);
  padding: 24px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.tech-item:hover {
  transform: translateY(-2px);
  border-color: var(--concrete-light);
}
.tech-item--ai {
  border-color: var(--gold-soft);
  background: linear-gradient(180deg, var(--bg-elev-2), var(--bg-elev-1));
}
.tech-item__name {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.tech-item--ai .tech-item__name { color: var(--gold); }
.tech-item__role {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.tech-item p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1023px) {
  .tech-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .tech-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   §15 TIMELINE / GANTT
   ════════════════════════════════════════════════════════════ */
.phases-summary {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.phase-chip {
  background: var(--bg-elev-1);
  border: 1px solid var(--concrete-dark);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.phase-chip strong {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.04em;
}
.phase-chip span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}

.gantt-legend {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--text-secondary);
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.swatch {
  width: 16px;
  height: 12px;
  border-radius: 3px;
  display: inline-block;
}
.swatch--mark { background: var(--text-primary); }
.swatch--ced { background: var(--gold); }
.swatch--pearl { background: var(--concrete-light); }
.swatch--milestone {
  color: var(--gold);
  font-size: 16px;
  width: auto;
  height: auto;
  background: transparent;
}

.gantt-wrap {
  overflow-x: auto;
  background: var(--bg-elev-1);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--concrete-dark);
  -webkit-overflow-scrolling: touch;
}
.gantt-wrap::-webkit-scrollbar { height: 8px; }
.gantt-wrap::-webkit-scrollbar-thumb { background: var(--concrete-mid); border-radius: 4px; }

.gantt {
  display: grid;
  min-width: 1000px;
  grid-template-columns: 220px repeat(12, minmax(60px, 1fr));
  gap: 0;
  position: relative;
}
.gantt__corner,
.gantt__week-header {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  padding: 12px 8px;
  border-bottom: 1px solid var(--concrete-mid);
  text-align: center;
  position: sticky;
  top: 0;
  background: var(--bg-elev-1);
  z-index: 2;
}
.gantt__corner {
  text-align: left;
  position: sticky;
  left: 0;
  z-index: 3;
}
.gantt__row-label {
  padding: 14px 8px;
  font-size: 13px;
  color: var(--text-primary);
  border-bottom: 1px solid var(--concrete-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  position: sticky;
  left: 0;
  background: var(--bg-elev-1);
  z-index: 1;
}
.gantt__row-label small {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.gantt__cell {
  border-bottom: 1px solid var(--concrete-dark);
  border-left: 1px dashed rgba(255, 255, 255, 0.04);
  min-height: 44px;
  position: relative;
}
.gantt__bar {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 22px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: var(--bg-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  cursor: default;
  transition: filter 0.2s ease, transform 0.2s ease;
}
.gantt__bar:hover {
  filter: brightness(1.15);
  transform: translateY(-50%) scale(1.02);
  z-index: 5;
}
.gantt__bar--mark { background: var(--text-primary); }
.gantt__bar--ced { background: var(--gold); }
.gantt__bar--pearl { background: var(--concrete-light); color: var(--bg-primary); }

.gantt__milestone {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold);
  font-size: 18px;
  z-index: 4;
  text-shadow: 0 0 8px rgba(201, 169, 97, 0.6);
}

.milestones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.milestone {
  display: flex;
  gap: 16px;
  background: var(--bg-elev-1);
  border-left: 3px solid var(--gold);
  padding: 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.milestone strong { color: var(--text-primary); }
.milestone--launch {
  background: linear-gradient(90deg, var(--gold-faint), var(--bg-elev-1));
  border-left-color: var(--gold);
}
.milestone__diamond {
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
}

@media (max-width: 1023px) {
  .milestones { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .milestones { grid-template-columns: 1fr; }
  .gantt-wrap { padding: 16px; }
  .gantt { grid-template-columns: 160px repeat(12, minmax(50px, 1fr)); min-width: 800px; }
  .gantt__row-label { font-size: 12px; }
}

/* ════════════════════════════════════════════════════════════
   §16 NEXT STEPS
   ════════════════════════════════════════════════════════════ */
.next-steps__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.next-steps__list li {
  display: flex;
  gap: 20px;
  background: var(--bg-elev-1);
  border: 1px solid var(--concrete-dark);
  border-radius: var(--radius-sm);
  padding: 28px;
  transition: border-color 0.2s ease;
}
.next-steps__list li:hover { border-color: var(--concrete-light); }
.step__num {
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: 0.04em;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}
.step__body strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.step__body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 767px) {
  .next-steps__list { grid-template-columns: 1fr; }
  .next-steps__list li { padding: 20px; }
}

/* ════════════════════════════════════════════════════════════
   §17 FOOTER / CONTACT
   ════════════════════════════════════════════════════════════ */
.site-footer {
  background: linear-gradient(180deg, var(--bg-primary), #050505);
  padding: var(--gap-xl) 0 48px;
  border-top: 1px solid var(--concrete-dark);
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
}
.footer__headline {
  font-family: var(--font-display);
  font-size: 56px;
  letter-spacing: 0.02em;
  margin: 0 0 56px 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--concrete-dark);
}
.footer__role {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.footer__name {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.footer__sub {
  font-size: 13px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer__contact {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}
.footer__contact a {
  color: var(--text-primary);
  border-bottom: 1px dotted var(--concrete-light);
  transition: border-color 0.2s ease;
}
.footer__contact a:hover { border-color: var(--gold); }

.footer__team,
.footer__project {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.footer__team strong,
.footer__project strong { color: var(--text-primary); }
.footer__date {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 48px;
}
.footer__emblem {
  width: 32px;
  height: 32px;
  opacity: 0.7;
}
.footer__tagline {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

@media (max-width: 1023px) {
  .footer__headline { font-size: 40px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 767px) {
  .footer__headline { font-size: 32px; }
  .footer__contact { font-size: 13px; word-break: break-word; }
}
