:root {
      --bg: #0b0b0a;
      --card: rgba(255,255,255,.052);
      --card-strong: rgba(255,207,64,.085);
      --text: #f6f0db;
      --muted: #beb69d;
      --muted-2: #8e856c;
      --yellow: #ffcf40;
      --yellow-2: #f4b400;
      --line: rgba(255,207,64,.24);
      --line-soft: rgba(255,255,255,.09);
      --shadow: 0 28px 90px rgba(0,0,0,.42);
      --radius-xl: 30px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      min-height: 100vh;
      color: var(--text);
      background:
        radial-gradient(circle at 16% 8%, rgba(255,207,64,.14), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(255,207,64,.08), transparent 30%),
        linear-gradient(180deg, #0b0b0a 0%, #080807 54%, #0d0c09 100%);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.55;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -2;
      pointer-events: none;
      opacity: .2;
      background-image:
        linear-gradient(to right, rgba(255,207,64,.18) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,207,64,.12) 1px, transparent 1px);
      background-size: 64px 64px;
      mask-image: linear-gradient(to bottom, black, transparent 82%);
    }

    body::after {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      opacity: .15;
      background:
        linear-gradient(90deg, transparent 0 10px, rgba(255,207,64,.12) 10px 11px, transparent 11px 20px),
        linear-gradient(180deg, rgba(255,255,255,.045), transparent 34%);
      background-size: 220px 100%, 100% 100%;
    }

    a { color: inherit; text-decoration: none; }
    .wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 50;
      border-bottom: 1px solid var(--line-soft);
      background: rgba(11,11,10,.72);
      backdrop-filter: blur(18px);
    }

    .nav {
      height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      letter-spacing: -.035em;
      white-space: nowrap;
    }

    .brand-mark {
      width: 40px;
      height: 40px;
      border-radius: 14px;
      border: 1px solid rgba(255,207,64,.42);
      background:
        linear-gradient(135deg, rgba(255,207,64,.95), rgba(244,180,0,.36)),
        repeating-linear-gradient(90deg, transparent 0 7px, rgba(0,0,0,.46) 7px 8px);
      box-shadow: 0 16px 42px rgba(255,207,64,.16);
      position: relative;
      overflow: hidden;
    }

    .brand-mark::after {
      content: "";
      position: absolute;
      width: 86%;
      height: 2px;
      left: 7%;
      top: 50%;
      transform: rotate(-28deg);
      background: rgba(11,11,10,.58);
      border-radius: 99px;
    }

    .brand-text { display: flex; flex-direction: column; line-height: 1.05; }
    .brand-text strong { font-size: 18px; }
    .brand-text span {
      margin-top: 3px;
      font-size: 11px;
      color: var(--muted);
      letter-spacing: .08em;
      text-transform: uppercase;
      font-weight: 800;
    }

    .nav-links { display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: 14px; }
    .nav-links a { padding: 10px 11px; border-radius: 999px; transition: .18s ease; }
    .nav-links a:hover { color: var(--text); background: rgba(255,255,255,.07); }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 14px;
      border-radius: 999px;
      border: 1px solid rgba(255,207,64,.7);
      color: #171307;
      background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
      font-weight: 900;
      box-shadow: 0 18px 42px rgba(255,207,64,.16);
      white-space: nowrap;
    }

    .hero { padding: 64px 0 44px; }
    .hero-grid { display: grid; grid-template-columns: minmax(0,1.06fr) minmax(320px,.74fr); gap: 36px; align-items: stretch; }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 12px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255,207,64,.055);
      color: #ffdf75;
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .pulse {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--yellow);
      box-shadow: 0 0 0 0 rgba(255,207,64,.58);
      animation: pulse 2.2s infinite;
    }

    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(255,207,64,.48); }
      70% { box-shadow: 0 0 0 10px rgba(255,207,64,0); }
      100% { box-shadow: 0 0 0 0 rgba(255,207,64,0); }
    }

    h1 {
      margin: 28px 0 0;
      max-width: 900px;
      font-size: clamp(52px, 7.2vw, 104px);
      line-height: .88;
      letter-spacing: -.085em;
      font-weight: 950;
    }

    h1 span { display: block; color: var(--yellow); text-shadow: 0 18px 70px rgba(255,207,64,.18); }

    .lead {
      max-width: 790px;
      margin: 24px 0 0;
      font-size: clamp(20px, 2vw, 28px);
      line-height: 1.2;
      letter-spacing: -.04em;
      color: #f8f1d6;
      font-weight: 760;
    }

    .sublead {
      max-width: 760px;
      margin: 14px 0 0;
      color: var(--muted);
      font-size: 16px;
    }

    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 13px 18px;
      border-radius: 999px;
      border: 1px solid var(--line-soft);
      background: rgba(255,255,255,.06);
      color: var(--text);
      font-weight: 900;
      transition: transform .18s ease, background .18s ease, border-color .18s ease;
    }

    .btn:hover { transform: translateY(-2px); background: rgba(255,255,255,.09); border-color: rgba(255,207,64,.34); }
    .btn.primary { color: #161105; border-color: rgba(255,207,64,.82); background: linear-gradient(135deg, var(--yellow), var(--yellow-2)); box-shadow: 0 20px 50px rgba(255,207,64,.17); }

    .hero-card {
      min-height: 500px;
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background:
        radial-gradient(circle at 30% 20%, rgba(255,207,64,.18), transparent 32%),
        linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 28px;
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: 24px;
      border-radius: 22px;
      border: 1px solid rgba(255,207,64,.16);
      pointer-events: none;
    }

    .ruler {
      position: absolute;
      right: -38px;
      top: 34px;
      width: 112px;
      height: 430px;
      border-radius: 24px;
      background:
        repeating-linear-gradient(180deg, rgba(20,15,4,.8) 0 2px, transparent 2px 16px),
        linear-gradient(180deg, #ffcf40, #d89a00);
      transform: rotate(14deg);
      box-shadow: 0 30px 80px rgba(255,207,64,.18);
      opacity: .92;
    }

    .ruler::before { content: ""; position: absolute; inset: 18px 51px; width: 2px; border-radius: 999px; background: rgba(20,15,4,.28); }
    .hero-card-content, .hero-card-footer { position: relative; z-index: 2; }

    .card-label { color: var(--muted); font-size: 13px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
    .hero-quote { margin-top: 62px; max-width: 345px; font-size: 27px; line-height: 1.04; letter-spacing: -.05em; font-weight: 950; }
    .hero-quote span { color: var(--yellow); }

    .hero-card-footer { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .hero-card-footer .mini-stat:first-child { grid-column: 1 / -1; }

    .mini-stat { padding: 16px; border: 1px solid var(--line-soft); border-radius: 18px; background: rgba(0,0,0,.18); }
    .mini-stat strong { display: block; color: var(--yellow); font-size: 15px; }
    .mini-stat span { display: block; margin-top: 5px; color: var(--muted); font-size: 13px; }

    section { padding: 72px 0; scroll-margin-top: 92px; }

    .section-head { display: grid; grid-template-columns: minmax(0,.75fr) minmax(280px,.45fr); gap: 28px; align-items: end; margin-bottom: 28px; }
    .kicker { color: var(--yellow); font-size: 13px; font-weight: 950; letter-spacing: .14em; text-transform: uppercase; }
    h2 { margin: 10px 0 0; font-size: clamp(34px, 5vw, 64px); line-height: .96; letter-spacing: -.065em; }
    .section-text { color: var(--muted); font-size: 17px; margin: 0; }

    .panel {
      border: 1px solid var(--line-soft);
      border-radius: var(--radius-xl);
      background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.026));
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .definition { display: grid; grid-template-columns: 1fr 1fr; }
    .definition-copy { padding: 34px; }
    .definition-copy p { margin: 0; color: var(--muted); font-size: 18px; }
    .definition-copy p + p { margin-top: 18px; }
    .definition-copy strong { color: var(--text); }

    .definition-grid { display: grid; grid-template-columns: 1fr 1fr; border-left: 1px solid var(--line-soft); }
    .principle { min-height: 190px; padding: 24px; border-bottom: 1px solid var(--line-soft); border-right: 1px solid var(--line-soft); background: rgba(255,255,255,.025); }
    .principle:nth-child(2n) { border-right: 0; }
    .principle:nth-last-child(-n + 2) { border-bottom: 0; }

    .num { color: var(--yellow); font-size: 13px; font-weight: 950; letter-spacing: .12em; text-transform: uppercase; }
    .principle h3, .manifesto-card h3, .map-card h3, .note-card h3 { margin: 12px 0 8px; font-size: 22px; line-height: 1.06; letter-spacing: -.04em; }
    .principle p, .manifesto-card p, .map-card p, .note-card p { margin: 0; color: var(--muted); font-size: 15px; }

    .why { display: grid; grid-template-columns: .78fr 1fr; gap: 24px; align-items: stretch; }
    .why-main { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: var(--card-strong); }
    .why-main h2 { font-size: clamp(36px, 4.4vw, 58px); }
    .why-main p { color: var(--muted); font-size: 18px; margin: 18px 0 0; }
    .why-list { display: grid; gap: 12px; }
    .why-item { padding: 22px; border: 1px solid var(--line-soft); border-radius: 20px; background: rgba(255,255,255,.045); display: grid; grid-template-columns: 34px 1fr; gap: 14px; align-items: start; }
    .why-icon { width: 34px; height: 34px; border-radius: 12px; background: rgba(255,207,64,.13); border: 1px solid rgba(255,207,64,.24); color: var(--yellow); display: grid; place-items: center; font-weight: 950; }
    .why-item strong { display: block; letter-spacing: -.02em; }
    .why-item span { display: block; margin-top: 4px; color: var(--muted); font-size: 15px; }

    .manifesto-grid, .notes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
    .map-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }

    .manifesto-card, .map-card, .note-card {
      position: relative;
      padding: 24px;
      border: 1px solid var(--line-soft);
      border-radius: 22px;
      background: rgba(255,255,255,.045);
      overflow: hidden;
      min-height: 210px;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }

    .manifesto-card::after, .map-card::after, .note-card::after {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, var(--yellow), transparent);
      opacity: .78;
    }

    .manifesto-card:hover, .map-card:hover, .note-card:hover { transform: translateY(-4px); border-color: rgba(255,207,64,.32); background: rgba(255,255,255,.062); }

    .statement {
      margin-top: 18px;
      padding: 30px;
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background: linear-gradient(135deg, rgba(255,207,64,.12), rgba(255,255,255,.035));
      font-size: clamp(24px, 3vw, 40px);
      line-height: 1.1;
      letter-spacing: -.055em;
      font-weight: 950;
    }

    .statement span { color: var(--yellow); }
    .map-card { min-height: 275px; display: flex; flex-direction: column; justify-content: space-between; }
    .tag { display: inline-flex; width: fit-content; padding: 7px 10px; border-radius: 999px; border: 1px solid rgba(255,207,64,.24); background: rgba(255,207,64,.08); color: var(--yellow); font-size: 12px; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; }
    .map-card a { margin-top: 24px; color: var(--yellow); font-weight: 900; font-size: 14px; }
    .note-card { min-height: 180px; }

    .timeline { display: grid; grid-template-columns: repeat(7,1fr); gap: 10px; margin-top: 18px; }
    .time-item { padding: 18px; border: 1px solid var(--line-soft); border-radius: 18px; background: rgba(255,255,255,.035); }
    .time-item strong { display: block; color: var(--yellow); font-size: 18px; letter-spacing: -.03em; }
    .time-item span { display: block; margin-top: 7px; color: var(--muted); font-size: 13px; }

    .final-cta {
      padding: 44px;
      border: 1px solid var(--line);
      border-radius: 34px;
      background:
        radial-gradient(circle at 12% 20%, rgba(255,207,64,.18), transparent 34%),
        linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.028));
      box-shadow: var(--shadow);
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: center;
    }

    .final-cta h2 { margin: 0; }
    .final-cta p { margin: 16px 0 0; max-width: 740px; color: var(--muted); font-size: 17px; }
    .cta-links { display: flex; flex-direction: column; gap: 10px; min-width: 220px; }

    footer { padding: 38px 0 48px; border-top: 1px solid var(--line-soft); color: var(--muted-2); }
    .footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: center; font-size: 14px; }
    .footer-links { display: flex; flex-wrap: wrap; gap: 10px 16px; }
    .footer-links a:hover { color: var(--text); }

    .mobile-dock { display: none; }
    .to-top { position: fixed; right: 18px; bottom: 18px; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 16px; border: 1px solid rgba(255,207,64,.3); background: rgba(11,11,10,.72); backdrop-filter: blur(12px); color: var(--yellow); font-weight: 950; box-shadow: 0 16px 40px rgba(0,0,0,.28); opacity: 0; pointer-events: none; transform: translateY(8px); transition: .18s ease; }
    .to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

    @media (max-width: 1100px) {
      .nav-links { display: none; }
      .hero-grid, .section-head, .definition, .why, .final-cta, .footer-grid { grid-template-columns: 1fr; }
      .hero-card { min-height: 430px; }
      .definition-grid { border-left: 0; border-top: 1px solid var(--line-soft); }
      .manifesto-grid, .notes-grid { grid-template-columns: repeat(2,1fr); }
      .map-grid { grid-template-columns: repeat(2,1fr); }
      .timeline { grid-template-columns: repeat(3,1fr); }
      .cta-links { min-width: 0; }
    }

    @media (max-width: 700px) {
      body { padding-bottom: 82px; }
      section { padding: 54px 0; scroll-margin-top: 82px; }
      .wrap { width: min(var(--max), calc(100% - 26px)); }
      .nav { height: 68px; }
      .brand-mark { width: 36px; height: 36px; border-radius: 12px; }
      .brand-text strong { font-size: 16px; }
      .brand-text span { display: none; }
      .nav-cta { display: none; }
      .hero { padding: 56px 0 40px; }
      h1 { font-size: clamp(52px, 18vw, 74px); }
      .lead { font-size: 20px; }
      .sublead { font-size: 15px; }
      .hero-actions { flex-direction: column; }
      .btn { width: 100%; }
      .hero-card { min-height: 390px; padding: 22px; }
      .hero-quote { margin-top: 58px; font-size: 25px; }
      .hero-card-footer, .definition-grid, .manifesto-grid, .map-grid, .notes-grid, .timeline { grid-template-columns: 1fr; }
      .hero-card-footer .mini-stat:first-child { grid-column: auto; }
      .principle, .principle:nth-child(2n), .principle:nth-last-child(-n + 2) { border-right: 0; border-bottom: 1px solid var(--line-soft); }
      .principle:last-child { border-bottom: 0; }
      .definition-copy, .why-main, .final-cta { padding: 24px; }
      .statement { padding: 24px; font-size: 25px; }
      .footer-grid { gap: 18px; }

      .mobile-dock {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 80;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 6px;
        padding: 8px;
        border: 1px solid rgba(255,207,64,.24);
        border-radius: 24px;
        background: rgba(11,11,10,.86);
        backdrop-filter: blur(18px);
        box-shadow: 0 18px 55px rgba(0,0,0,.48);
      }

      .mobile-dock a {
        min-height: 48px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        border-radius: 17px;
        color: var(--muted);
        font-size: 10px;
        font-weight: 900;
        letter-spacing: -.02em;
        background: rgba(255,255,255,.035);
        border: 1px solid rgba(255,255,255,.06);
      }

      .mobile-dock a strong { font-size: 15px; line-height: 1; color: var(--yellow); }
      .mobile-dock a.primary-tab { color: #181105; background: linear-gradient(135deg, var(--yellow), var(--yellow-2)); border-color: rgba(255,207,64,.78); }
      .mobile-dock a.primary-tab strong { color: #181105; }
      .to-top.show { opacity: 0; pointer-events: none; }
    }

/* v1.0.3 — Hero Fit + Balanced Section Rhythm */
@media (min-width: 1101px) {
  .hero {
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    padding: 40px 0 40px;
  }

  .hero-grid {
    align-items: center;
  }

  h1 {
    margin-top: 22px;
    font-size: clamp(50px, 6.8vw, 96px);
  }

  .lead {
    margin-top: 22px;
    font-size: clamp(20px, 1.85vw, 26px);
  }

  .sublead {
    margin-top: 12px;
    font-size: 15.5px;
    max-width: 720px;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-card {
    min-height: 468px;
    padding: 24px;
  }

  .hero-card::before {
    inset: 20px;
  }

  .ruler {
    height: 400px;
    width: 100px;
    right: -34px;
    top: 30px;
  }

  .hero-quote {
    margin-top: 50px;
    max-width: 330px;
    font-size: 25px;
  }

  .mini-stat {
    padding: 13px 14px;
  }

  .mini-stat strong {
    font-size: 14px;
  }

  .mini-stat span {
    font-size: 12.5px;
  }
}

/* Keep all main content modules visually balanced after the first screen */
@media (min-width: 701px) {
  main > section:not(.hero) {
    padding: 68px 0;
  }

  .section-head {
    margin-bottom: 26px;
  }
}

@media (max-width: 700px) {
  .hero {
    min-height: calc(100svh - 68px);
    display: flex;
    align-items: center;
    padding: 28px 0 30px;
  }

  h1 {
    margin-top: 18px;
  }

  .lead {
    margin-top: 18px;
  }

  .sublead {
    margin-top: 11px;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .hero-card {
    min-height: 350px;
  }

  main > section:not(.hero) {
    padding: 54px 0;
  }
}
