  :root {
    --bg:       #f0ece3;
    --bg2:      #e8e3d8;
    --border:   rgba(60,52,36,0.09);
    --green:    #6db33f;
    --green-hi: #7dc94a;
    --green-dk: #5a9e33;
    --amber:    #c8943a;
    --ink-2:    rgba(30,28,21,0.44);
    --ink-3:    rgba(30,28,21,0.20);
    --ink-nav:  rgba(30,28,21,0.58);
    --mono:     'DM Mono', monospace;
    --sans:     'DM Sans', sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html, body { width: 100%; height: 100%; overflow: hidden; }

  body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
  }

  /* ── PAGE SHELL ── */
  .page {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  /* ── MAP SIDE ── */
  .map-side {
    position: absolute;
    top: 0; right: 0;
    width: 78%;
    height: 100%;
    overflow: hidden;
  }

  #map-canvas {
    width: 100%;
    height: 100%;
    display: block;
  }

  .map-fade {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      linear-gradient(
        to right,
        var(--bg)        0%,
        var(--bg)        4%,
        rgba(240,236,227,0.92) 14%,
        rgba(240,236,227,0.70) 26%,
        rgba(240,236,227,0.38) 40%,
        rgba(240,236,227,0.10) 52%,
        transparent      66%
      ),
      linear-gradient(
        to bottom,
        rgba(240,236,227,0.55) 0%,
        transparent 12%,
        transparent 86%,
        rgba(240,236,227,0.55) 100%
      );
  }

  /* Subtle left-column wash — anchors the text against the map */
  .hero-wash {
    position: absolute;
    inset: 0 55% 0 0;
    pointer-events: none;
    z-index: 5;
    background: linear-gradient(
      to right,
      rgba(30, 25, 15, 0.045) 0%,
      rgba(30, 25, 15, 0.020) 55%,
      transparent 100%
    );
  }

  /* ── NAV ── */
  .site-nav {
    position: relative;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 52px;
    flex-shrink: 0;
  }

  .nav-brand {
    font-family: var(--mono);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--ink);
    text-decoration: none;
  }
  .nav-brand .accent { color: var(--green); }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
  }
.nav-links a {
    font-size: 11.5px;
    font-weight: 300;
    color: var(--ink-nav);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--ink); }

  .btn-signin {
    font-size: 10.5px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink);
    border: 0.5px solid rgba(30,28,21,0.18);
    background: rgba(255,255,255,0.55);
    padding: 9px 22px;
    border-radius: 2px;
    text-decoration: none;
    backdrop-filter: blur(4px);
    transition: background 0.2s, border-color 0.2s;
  }
  .btn-signin:hover {
    background: rgba(255,255,255,0.80);
    border-color: rgba(30,28,21,0.30);
    color: var(--ink);
  }

  /* ── HERO ── */
  .hero-body {
    position: relative;
    z-index: 20;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 52px;
  }

  .hero-col { max-width: 480px; }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--mono);
    font-size: 9.5px;
    font-weight: 300;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-bottom: 28px;
    opacity: 0;
    animation: up 0.65s ease 0.1s forwards;
  }

  .dot-live {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
    position: relative;
  }
  .dot-live::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 0.5px solid var(--green);
    animation: ring 2.6s ease-out infinite;
    opacity: 0;
  }
  @keyframes ring {
    0%   { opacity: 0.6; transform: scale(0.4); }
    100% { opacity: 0;   transform: scale(2.6); }
  }

  h1 {
    font-family: var(--sans);
    font-size: clamp(44px, 5.2vw, 76px);
    font-weight: 200;
    line-height: 1.04;
    letter-spacing: -0.04em;
    color: var(--ink);
    opacity: 0;
    animation: up 0.72s ease 0.22s forwards;
  }
  h1 em {
    font-style: italic;
    font-weight: 200;
    /* full ink — let the italic itself carry the voice */
  }

  .rule {
    width: 32px; height: 0.5px;
    background: var(--green);
    margin: 24px 0 28px;
    opacity: 0;
    animation: up 0.65s ease 0.36s forwards;
  }

  .sub {
    font-size: 13px;
    font-weight: 300;
    color: var(--ink-2);
    line-height: 1.82;
    max-width: 300px;
    margin-bottom: 36px;
    opacity: 0;
    animation: up 0.65s ease 0.46s forwards;
  }

  .cta-row {
    display: flex;
    align-items: center;
    gap: 28px;
    opacity: 0;
    animation: up 0.65s ease 0.56s forwards;
  }

  /* Outlined green CTA — fills on hover */
  .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: transparent;
    color: var(--green-dk);
    border: 0.5px solid var(--green);
    font-size: 10.5px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 13px 28px;
    border-radius: 2px;
    transition: background 0.22s, color 0.22s, gap 0.22s, border-color 0.22s;
  }
  .btn-cta:hover {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
    gap: 17px;
  }

  .link-ghost {
    font-size: 11px;
    font-weight: 300;
    color: var(--ink-3);
    text-decoration: none;
    letter-spacing: 0.03em;
    border-bottom: 0.5px solid transparent;
    transition: color 0.2s, border-color 0.2s;
  }
  .link-ghost:hover { color: var(--ink-2); border-bottom-color: var(--border); }

  /* ── STATS (hierarchy: hero stat + three supporting) ── */
  .stats-row {
    position: relative;
    border-top: 0.5px solid var(--border);
    margin-top: 52px;
    padding-top: 28px;
    display: flex;
    align-items: flex-start;
    gap: 44px;
    opacity: 0;
    animation: up 0.65s ease 0.68s forwards;
  }

  /* Green tab indicator — marks the primary stat */
  .stats-row::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 44px;
    height: 1.5px;
    background: var(--green);
  }

  .stat {
    display: flex;
    flex-direction: column;
  }

  .stat-hero .stat-val {
    font-family: var(--mono);
    font-size: 32px;
    font-weight: 300;
    color: var(--ink);
    letter-spacing: -0.035em;
    line-height: 1;
    margin-bottom: 10px;
  }
  .stat-hero .stat-lbl {
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--ink-3);
  }

  .stats-sub {
    display: flex;
    gap: 30px;
    padding-top: 6px;
  }
  .stats-sub .stat-val {
    font-family: var(--mono);
    font-size: 17px;
    font-weight: 300;
    color: var(--ink);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 6px;
  }
  .stats-sub .stat-lbl {
    font-size: 8.5px;
    font-weight: 300;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--ink-3);
  }

  /* ── FOOTER ── */
  .site-footer {
    position: relative;
    z-index: 20;
    border-top: 0.5px solid var(--border);
    padding: 20px 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    opacity: 0;
    animation: up 0.6s ease 0.82s forwards;
  }
.footer-copy {
    font-family: var(--mono);
    font-size: 9.5px;
    color: var(--ink-nav);
    letter-spacing: 0.06em;
  }
  .footer-links { display: flex; gap: 26px; }
.footer-link {
    font-size: 9.5px;
    color: var(--ink-nav);
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .footer-link:hover { color: var(--ink); }

  @keyframes up {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ── mobile layout fix ── */
@media (max-width: 720px) {
  html, body, .page {
    height: auto;
    overflow: visible;
  }
  .page { min-height: 100vh; }

  .site-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 24px 16px;
  }

  .nav-links {
    width: 100%;
    gap: 22px;
    flex-wrap: wrap;
  }

  .nav-links .btn-signin {
    margin-left: auto;
    padding: 7px 16px;
  }

  .hero-body   { padding: 0 24px; }
  .site-footer { padding: 16px 24px; }
}

@media (max-width: 380px) {
  .nav-links { gap: 16px; }
  .nav-links .btn-signin { margin-left: 0; }
}