/* ============================================================
   HIGHLANDS COLLECTIVE — PUBLIC LANDING PAGE
   hc-landing.css · v1.0
   Component styles for highlands-collective.com only.

   REQUIRES hc-styles.css loaded first — this file uses its
   color, type, and radius tokens (--night, --surface, --flare,
   --snow, --border, etc.) rather than redefining them. Do not
   add color/font values here; add them to hc-styles.css if
   they need to be shared, or as a one-off supplemental token
   in the block below if they're truly landing-page-only.
   ============================================================ */

/* ── LANDING-PAGE SUPPLEMENTAL TOKENS ──────────────────────
   Color, type, and radius tokens come from hc-styles.css.
   This block only adds what hc-styles.css doesn't define:
   a lighter gold for hover/em states, and layout sizing
   specific to the public marketing page. ──────────────────── */
:root {
  --flare-light:  #FFD86B;          /* lighter gold for hover/emphasis, hc-styles has no equivalent */
  --max-w:        1160px;            /* public page content width — Mission Control uses its own sidebar layout */
  --section-pad:  clamp(5rem, 10vw, 9rem) clamp(1.25rem, 5vw, 3rem);
}

    /* ── RESET ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--night);
      color: var(--snow);
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.25rem clamp(1.25rem, 5vw, 3rem);
      background: rgba(13, 22, 16, 0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-accent);
    }
    .nav-center {
      display: flex;
      align-items: center;
      gap: 0.15rem;
    }
    .nav-center a {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.6rem;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--snow-dim);
      text-decoration: none;
      padding: 0.4rem 0.65rem;
      border-radius: 2px;
      transition: color 0.2s, background 0.2s;
      white-space: nowrap;
    }
    .nav-center a:hover {
      color: var(--flare);
      background: rgba(254,200,68,0.06);
    }
    .nav-right {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .nav-hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 4px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
      width: 32px;
      height: 32px;
    }
    .nav-hamburger span {
      display: block;
      width: 20px;
      height: 1.5px;
      background: var(--snow);
      transition: transform 0.25s, opacity 0.25s;
      transform-origin: center;
    }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

    /* Mobile menu overlay */
    .nav-mobile-menu {
      display: none;
      position: fixed;
      top: 65px;
      left: 0; right: 0;
      background: rgba(13,22,16,0.97);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border-accent);
      z-index: 99;
      flex-direction: column;
      padding: 1rem 0 1.5rem;
    }
    .nav-mobile-menu.open { display: flex; }
    .nav-mobile-link {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.7rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--snow-dim);
      text-decoration: none;
      padding: 0.85rem clamp(1.25rem, 5vw, 3rem);
      border-bottom: 1px solid var(--border);
      transition: color 0.2s, background 0.2s;
    }
    .nav-mobile-link:hover { color: var(--flare); background: rgba(254,200,68,0.04); }
    .nav-mobile-cta {
      color: var(--flare) !important;
      border-bottom: none !important;
      margin-top: 0.5rem;
    }

    @media (max-width: 960px) {
      .nav-center { display: none; }
      .nav-hamburger { display: flex; }
    }

    .nav-logo {
      font-family: 'Oswald', sans-serif;
      font-size: 1.1rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: var(--flare);
    }
    .nav-logo span {
      display: block;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.7rem;
      font-weight: 300;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--snow);
      margin-top: 1px;
    }
    .nav-cta {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--night);
      background: var(--flare);
      border: 1px solid var(--flare);
      padding: 0.6rem 1.3rem;
      border-radius: 2px;
      transition: background 0.2s, transform 0.15s;
    }
    .nav-cta:hover {
      background: var(--flare-light);
      border-color: var(--flare-light);
      transform: translateY(-1px);
    }

    /* ── HERO ── */
    .hero {
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: clamp(6rem, 12vw, 10rem) clamp(1.25rem, 5vw, 3rem) clamp(4rem, 8vw, 7rem);
      position: relative;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(
          to bottom,
          rgba(13,22,16,0.05) 0%,
          rgba(13,22,16,0.05) 25%,
          rgba(13,22,16,0.15) 55%,
          rgba(13,22,16,0.62) 74%,
          rgba(13,22,16,0.96) 100%
        ),
        url('images/buffalo-mountain.jpg') center 40%/cover no-repeat;
    }
    .hero-eyebrow {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.72rem;
      font-weight: 300;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--flare);
      margin-bottom: 1.5rem;
      position: relative;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .hero-eyebrow::before {
      content: '';
      display: inline-block;
      width: 2rem;
      height: 1px;
      background: var(--flare);
      flex-shrink: 0;
    }
    .hero-headline {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(2.8rem, 7vw, 6.5rem);
      font-weight: 700;
      line-height: 1.0;
      letter-spacing: -0.01em;
      color: #FFFFFF;
      max-width: 820px;
      position: relative;
      margin-bottom: 2rem;
    }
    .hero-headline em {
      font-style: italic;
      color: var(--flare-light);
    }
    .hero-sub {
      font-size: clamp(1rem, 1.5vw, 1.15rem);
      font-weight: 300;
      color: var(--snow);
      max-width: 520px;
      line-height: 1.7;
      position: relative;
      margin-bottom: 3rem;
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      align-items: center;
      position: relative;
    }
    .btn-primary {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      background: var(--flare);
      color: var(--night);
      padding: 0.9rem 2rem;
      border-radius: 2px;
      font-weight: 500;
      transition: background 0.2s, transform 0.15s;
      border: none;
      cursor: pointer;
    }
    .btn-primary:hover { background: var(--flare-light); transform: translateY(-1px); }
    .btn-ghost {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--snow);
      padding: 0.9rem 0;
      border: none;
      background: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: color 0.2s;
    }
    .btn-ghost:hover { color: #FFFFFF; }
    .btn-ghost svg { transition: transform 0.2s; }
    .btn-ghost:hover svg { transform: translateX(4px); }

    /* Elevation strip */
    .hero-elevation {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent 0%, var(--flare) 40%, var(--flare-light) 60%, transparent 100%);
      opacity: 0.6;
    }

    .hero-bottom {
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 2.5rem;
      align-items: center;
      position: relative;
    }
    .hero-left { display: flex; flex-direction: column; }
    .hero-article-teaser {
      background: rgba(13,22,16,0.72);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(254,200,68,0.2);
      border-top: 2px solid var(--flare);
      border-radius: 3px;
      padding: 1.5rem 1.75rem;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
      transition: background 0.25s, border-color 0.25s;
      margin-bottom: 0.25rem;
    }
    .hero-article-teaser:hover {
      background: rgba(13,22,16,0.88);
      border-color: rgba(254,200,68,0.45);
    }
    .hero-teaser-label {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.62rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--flare);
      display: flex;
      align-items: center;
      gap: 0.45rem;
      margin: 0;
    }
    .hero-teaser-title {
      font-family: 'Oswald', sans-serif;
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--snow);
      line-height: 1.25;
      margin: 0;
    }
    .hero-teaser-body {
      font-size: 0.82rem;
      font-weight: 300;
      color: var(--snow-dim);
      line-height: 1.6;
      margin: 0;
    }
    .hero-teaser-read {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.62rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--flare);
      margin-top: 0.15rem;
      transition: letter-spacing 0.2s;
    }
    .hero-article-teaser:hover .hero-teaser-read {
      letter-spacing: 0.18em;
    }
    @media (max-width: 860px) {
      .hero-bottom { grid-template-columns: 1fr; gap: 2rem; }
      .hero-article-teaser { order: -1; }
    }

    /* ── MARQUEE ── */
    .marquee-wrap {
      background: var(--surface);
      border-top: 1px solid var(--border-accent);
      border-bottom: 1px solid var(--border-accent);
      overflow: hidden;
      padding: 0.85rem 0;
    }
    .marquee-track {
      display: flex;
      gap: 0;
      width: max-content;
      animation: marquee 28s linear infinite;
    }
    .marquee-track:hover { animation-play-state: paused; }
    .marquee-item {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--sage);
      padding: 0 2.5rem;
      display: flex;
      align-items: center;
      gap: 2.5rem;
      white-space: nowrap;
    }
    .marquee-item::after {
      content: '✦';
      color: var(--flare);
      font-size: 0.5rem;
    }
    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ── SECTIONS SHARED ── */
    .section-inner {
      max-width: var(--max-w);
      margin: 0 auto;
    }
    .eyebrow {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.75rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--flare);
      margin-bottom: 1.25rem;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }
    .eyebrow::before {
      content: '';
      display: inline-block;
      width: 1.5rem;
      height: 1px;
      background: var(--flare);
    }
    .section-title {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(2rem, 4.5vw, 3.5rem);
      font-weight: 600;
      line-height: 1.1;
      color: #FFFFFF;
      margin-bottom: 1.5rem;
    }
    .section-title em { color: var(--flare-light); font-style: italic; }
    .body-text {
      font-size: 1.05rem;
      font-weight: 300;
      color: var(--snow);
      line-height: 1.8;
    }

    /* ── ORIGIN SECTION ── */
    .origin {
      padding: var(--section-pad);
      background: var(--night);
    }
    .origin-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }
    .origin-stat-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      margin-top: 3.5rem;
      padding-top: 3rem;
      border-top: 1px solid rgba(122, 140, 110, 0.25);
    }
    .stat-item {}
    .stat-number {
      font-family: 'Oswald', sans-serif;
      font-size: 2.8rem;
      font-weight: 700;
      color: var(--flare);
      line-height: 1;
    }
    .stat-label {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--sage);
      margin-top: 0.4rem;
    }
    .origin-image-wrap {
      position: relative;
    }
    .origin-image {
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
      object-position: center 30%;
      border-radius: 3px;
    }
    .origin-image-label {
      position: absolute;
      bottom: -1px;
      left: -1px;
      right: -1px;
      background: linear-gradient(to top, rgba(13,22,16,0.92) 0%, transparent 100%);
      padding: 3rem 1.5rem 1.25rem;
      border-radius: 0 0 3px 3px;
    }
    .origin-image-label p {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.72rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--snow);
    }

    /* ── PILLARS ── */
    .pillars {
      padding: var(--section-pad);
      background: var(--surface);
    }
    .pillars-header {
      max-width: 600px;
      margin-bottom: 4rem;
    }
    .pillars-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 2px;
    }
    .pillar-card {
      background: var(--night);
      padding: 2.5rem 2rem;
      position: relative;
      overflow: hidden;
      transition: background 0.3s;
    }
    .pillar-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: var(--phase-3);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s ease;
    }
    .pillar-card:hover { background: var(--surface); }
    .pillar-card:hover::before { transform: scaleX(1); }
    .pillar-title-row {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      margin-bottom: 0.75rem;
    }
    .pillar-title-row svg { flex-shrink: 0; }
    .pillar-title {
      font-family: 'Oswald', sans-serif;
      font-size: 1.15rem;
      font-weight: 600;
      color: #FFFFFF;
      line-height: 1.2;
    }
    .pillar-body {
      font-size: 0.95rem;
      font-weight: 300;
      color: var(--snow-dim);
      line-height: 1.7;
    }

    /* ── BUFFALO HEMP TRUST CLOSER ── */
    .bhc-trust {
      margin-top: 4rem;
      padding: 3rem 3rem;
      background: var(--night);
      border: 1px solid var(--border-accent);
      border-radius: 3px;
      display: flex;
      align-items: center;
      gap: 3.5rem;
      flex-wrap: wrap;
    }
    .bhc-logo-wrap {
      flex-shrink: 0;
    }
    .bhc-logo {
      width: 160px;
      height: 160px;
      object-fit: contain;
    }
    .bhc-wordmark {
      font-family: 'Oswald', sans-serif;
      font-size: 1.1rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--snow);
      white-space: nowrap;
      width: 160px;
      text-align: center;
    }
    .bhc-statement {
      flex: 1;
      min-width: 260px;
      border-left: 2px solid var(--border-accent);
      padding-left: 3rem;
    }
    .bhc-tagline {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--flare);
      line-height: 1.25;
      margin-bottom: 1rem;
    }
    .bhc-bridge {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.72rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--snow-dim);
    }
    .bhc-rating {
      flex-shrink: 0;
      min-width: 160px;
      border-left: 1px solid var(--border-accent);
      padding-left: 3rem;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }
    .bhc-rating-logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .bhc-rating-google {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.65rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--snow-dim);
    }
    .bhc-rating-stars {
      display: flex;
      gap: 2px;
    }
    .bhc-star {
      color: #FEC844;
      font-size: 1.3rem;
      line-height: 1;
    }
    .bhc-star.empty { color: var(--surface-3); }
    .bhc-rating-score {
      display: flex;
      align-items: baseline;
      gap: 0.5rem;
    }
    .bhc-score {
      font-family: 'Oswald', sans-serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--snow);
      line-height: 1;
    }
    .bhc-review-count {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.65rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--snow-dim);
    }
    .bhc-rating-link {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.65rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--flare);
      text-decoration: none;
      margin-top: 0.25rem;
      transition: color 0.2s;
    }
    .bhc-rating-link:hover { color: var(--flare-light); }
    @media (max-width: 640px) {
      .bhc-trust { flex-direction: column; gap: 2rem; align-items: center; text-align: center; }
      .bhc-logo { width: 120px; height: 120px; }
      .bhc-wordmark { width: 120px; }
      .bhc-statement { border-left: none; border-top: 1px solid var(--border-accent); padding-left: 0; padding-top: 2rem; }
      .bhc-rating { border-left: none; border-top: 1px solid var(--border-accent); padding-left: 0; padding-top: 2rem; align-items: center; width: 100%; }
      .bhc-statement { border-left: none; border-top: 1px solid var(--border-accent); padding-left: 0; padding-top: 2rem; text-align: center; width: 100%; }
      .bhc-rating-logo { justify-content: center; }
      .bhc-rating-stars { justify-content: center; }
      .bhc-rating-score { justify-content: center; }
    }

    /* ── TERRAIN DIVIDER ── */
    .terrain-divider {
      position: relative;
      height: clamp(80px, 10vw, 140px);
      overflow: hidden;
      background: var(--night);
      margin-top: -1px;
    }
    .terrain-divider svg {
      position: absolute;
      bottom: 0; left: 0;
      width: 100%; height: 100%;
    }

    /* ── LEGACY ── */
    .legacy {
      padding: var(--section-pad);
      background: var(--surface);
    }
    .legacy-inner {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 6rem;
      align-items: center;
    }
    .legacy-sticky {
      position: sticky;
      top: 7rem;
    }
    .legacy-quote {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(1.4rem, 2.5vw, 2rem);
      font-weight: 400;
      font-style: italic;
      color: var(--snow);
      line-height: 1.45;
      border-left: 2px solid var(--flare);
      padding-left: 1.75rem;
      margin: 2rem 0;
    }
    .legacy-body p + p { margin-top: 1.5rem; }
    .legacy-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--flare);
      border: 1px solid var(--border-accent);
      padding: 0.4rem 0.9rem;
      border-radius: 2px;
      margin-top: 2rem;
    }

    /* ── NOTIFY ── */
    .notify {
      padding: var(--section-pad);
      background: var(--night);
      text-align: center;
    }
    .notify .section-inner {
      max-width: 640px;
    }
    .notify-form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-top: 2.5rem;
      align-items: center;
    }
    .notify-row {
      display: flex;
      width: 100%;
      max-width: 480px;
      gap: 0;
    }
    .notify-input {
      flex: 1;
      background: var(--surface);
      border: 1px solid rgba(239,242,234,0.18);
      border-right: none;
      color: var(--snow);
      font-family: 'Inter', sans-serif;
      font-size: 0.95rem;
      font-weight: 300;
      padding: 0.9rem 1.25rem;
      border-radius: 2px 0 0 2px;
      outline: none;
      transition: border-color 0.2s;
    }
    .notify-input::placeholder { color: var(--snow-faint); }
    .notify-input:focus { border-color: var(--flare-deep); }
    .notify-submit {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      background: var(--flare);
      color: var(--night);
      border: 1px solid var(--flare);
      padding: 0.9rem 1.5rem;
      border-radius: 0 2px 2px 0;
      cursor: pointer;
      font-weight: 500;
      transition: background 0.2s;
      white-space: nowrap;
    }
    .notify-submit:hover { background: var(--flare-light); }
    .notify-fine {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.7rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--snow-faint);
    }
    .notify-success {
      display: none;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.75rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--flare);
      margin-top: 1rem;
    }

    /* ── PRESS FEATURE ── */
    .press {
      padding: var(--section-pad);
      background: var(--night);
    }
    .press-feature {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 3rem;
      align-items: center;
      padding: 2.5rem 3rem;
      background: var(--surface);
      border: 1px solid var(--border);
      border-left: 4px solid var(--flare);
      border-radius: 3px;
      text-decoration: none;
      transition: background 0.25s, border-color 0.25s;
      margin-top: 2rem;
    }
    .press-feature:hover {
      background: var(--surface-2);
      border-left-color: var(--flare-light);
    }
    .press-source {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.4rem;
      min-width: 120px;
      padding-right: 3rem;
      border-right: 1px solid var(--border);
    }
    .press-outlet {
      font-family: 'Oswald', sans-serif;
      font-size: 2rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      color: var(--snow);
      line-height: 1;
      white-space: nowrap;
    }
    .press-source-sub {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.65rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--snow-dim);
      white-space: nowrap;
    }
    .press-content {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    .press-headline {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(1.2rem, 2vw, 1.6rem);
      font-weight: 600;
      color: var(--snow);
      line-height: 1.2;
    }
    .press-byline {
      font-size: 0.9rem;
      font-weight: 300;
      color: var(--snow-dim);
      line-height: 1.65;
      max-width: 640px;
    }
    .press-meta {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      margin-top: 0.25rem;
    }
    .press-date {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.68rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--sage);
    }
    .press-read {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.68rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--flare);
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      transition: gap 0.2s;
    }
    .press-feature:hover .press-read { gap: 0.55rem; }
    @media (max-width: 700px) {
      .press-feature {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem;
      }
      .press-source {
        flex-direction: row;
        align-items: center;
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding-right: 0;
        padding-bottom: 1.5rem;
        min-width: unset;
      }
    }

    /* ── LEGISLATION TIMELINE ── */
    .legislation-header-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: end;
      margin-bottom: 3.5rem;
    }
    @media (max-width: 860px) {
      .legislation-header-wrap { grid-template-columns: 1fr; gap: 2rem; }
    }
    .leg-notice {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1.25rem 1.5rem;
      background: var(--surface-2);
      border: 1px solid var(--border-accent);
      border-left: 3px solid var(--flare);
      border-radius: 3px;
      margin-top: 0.5rem;
    }
    .leg-notice-body {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      flex: 1;
    }
    .leg-notice p { margin: 0; }
    .leg-key-docs {
      border-top: 1px solid var(--border-accent);
      padding-top: 0.85rem;
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
    }
    .leg-key-docs-label {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.6rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--snow-faint);
      margin-bottom: 0.25rem;
    }
    .leg-key-doc {
      display: flex;
      align-items: baseline;
      gap: 0.5rem;
      font-size: 0.85rem;
      font-weight: 300;
      color: var(--snow-dim);
      text-decoration: none;
      line-height: 1.5;
      transition: color 0.2s;
    }
    .leg-key-doc:hover { color: var(--snow); }
    .leg-key-doc strong { color: var(--flare); font-weight: 500; }
    .leg-key-doc:hover strong { color: var(--flare-light); }
    .leg-key-doc-arrow {
      color: var(--flare);
      flex-shrink: 0;
      font-size: 0.8rem;
      transition: transform 0.2s;
    }
    .leg-key-doc:hover .leg-key-doc-arrow { transform: translateX(3px); }
    .leg-notice-icon {
      font-size: 1.1rem;
      color: var(--flare);
      flex-shrink: 0;
      margin-top: 1px;
      line-height: 1;
    }
    .leg-notice p {
      font-size: 0.88rem;
      font-weight: 300;
      color: var(--snow-dim);
      line-height: 1.7;
      margin: 0;
    }
    .leg-notice strong {
      color: var(--snow);
      font-weight: 500;
    }
    .leg-notice a {
      color: var(--flare);
      text-decoration: none;
      border-bottom: 1px solid rgba(254,200,68,0.35);
      transition: color 0.2s, border-color 0.2s;
    }
    .leg-notice a:hover {
      color: var(--flare-light);
      border-bottom-color: var(--flare-light);
    }
    .legislation {
      padding: var(--section-pad);
      background: var(--surface);
    }
    .legislation-header { max-width: 100%; }
    .leg-timeline {
      display: flex;
      flex-direction: column;
      gap: 0;
      border-left: 2px solid var(--border);
      margin-left: 1rem;
      padding-left: 0;
    }
    .leg-item {
      display: grid;
      grid-template-columns: 100px 1fr;
      gap: 2rem;
      padding: 2rem 0 2rem 2.5rem;
      position: relative;
      border-bottom: 1px solid var(--border);
      transition: background 0.25s;
    }
    .leg-item:last-child { border-bottom: none; }
    .leg-item::before {
      content: '';
      position: absolute;
      left: -6px;
      top: 2.25rem;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--surface-2);
      border: 2px solid var(--border-accent);
    }
    .leg-item--past::before {
      background: var(--sage);
      border-color: var(--sage);
    }
    .leg-item--critical::before {
      background: #C0392B;
      border-color: #C0392B;
      width: 14px;
      height: 14px;
      left: -8px;
    }
    .leg-item--future::before {
      background: var(--flare);
      border-color: var(--flare);
      width: 14px;
      height: 14px;
      left: -8px;
    }
    .leg-date {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding-top: 0.15rem;
      flex-shrink: 0;
    }
    .leg-month {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.65rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--snow-dim);
    }
    .leg-day {
      font-family: 'Oswald', sans-serif;
      font-size: 2.4rem;
      font-weight: 700;
      color: var(--snow);
      line-height: 1;
    }
    .leg-item--critical .leg-day { color: #E74C3C; }
    .leg-item--future .leg-day { color: var(--flare); }
    .leg-year {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.6rem;
      letter-spacing: 0.12em;
      color: var(--snow-faint);
    }
    .leg-content { padding-top: 0.1rem; }
    .leg-title {
      font-family: 'Oswald', sans-serif;
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--snow);
      margin-bottom: 0.6rem;
      line-height: 1.2;
    }
    .leg-item--critical .leg-title { color: #E74C3C; }
    .leg-item--future .leg-title { color: var(--flare); }
    .leg-body {
      font-size: 0.9rem;
      font-weight: 300;
      color: var(--snow-dim);
      line-height: 1.7;
      margin-bottom: 0.6rem;
    }
    .leg-body + .leg-body { margin-top: 0.5rem; }
    .leg-tag {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.6rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--snow-faint);
      margin-top: 0.5rem;
    }
    .leg-footnote {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.62rem;
      letter-spacing: 0.1em;
      color: var(--snow-faint);
      line-height: 1.8;
      margin-top: 2.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--border);
    }
    .leg-tag a {
      color: var(--sage);
      text-decoration: none;
      border-bottom: 1px solid rgba(74,140,111,0.35);
      transition: color 0.2s, border-color 0.2s;
    }
    .leg-tag a:hover {
      color: var(--flare);
      border-bottom-color: var(--flare);
    }
    .leg-footnote a {
      color: var(--sage);
      text-decoration: none;
      transition: color 0.2s;
    }
    .leg-footnote a:hover { color: var(--flare); }
    @media (max-width: 600px) {
      .leg-item {
        grid-template-columns: 70px 1fr;
        gap: 1.25rem;
        padding-left: 1.75rem;
      }
      .leg-day { font-size: 1.8rem; }
    }

    /* ── NEWS ── */
    .news {
      padding: var(--section-pad);
      background: var(--surface);
    }
    .news-header {
      max-width: 600px;
      margin-bottom: 3.5rem;
    }
    .news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1px;
      background: var(--border);
    }
    .news-card {
      background: var(--surface);
      padding: 2rem;
      display: flex;
      flex-direction: column;
      gap: 0.9rem;
      transition: background 0.3s;
    }
    .news-card:hover { background: var(--night); }
    .news-meta {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.65rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--flare);
      flex-wrap: wrap;
      row-gap: 0.2rem;
    }
    .news-meta > span:first-child {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      max-width: 55%;
    }
    .news-meta-dot {
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: var(--sage);
      flex-shrink: 0;
    }
    .news-meta-date { color: var(--sage); }
    .news-title {
      font-family: 'Oswald', sans-serif;
      font-size: 1.15rem;
      font-weight: 600;
      color: #FFFFFF;
      line-height: 1.35;
    }
    .news-summary {
      font-size: 0.92rem;
      font-weight: 300;
      color: var(--snow);
      line-height: 1.65;
      flex-grow: 1;
    }
    .news-link {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--flare);
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      margin-top: 0.25rem;
      transition: color 0.2s, gap 0.2s;
    }
    .news-link:hover { color: var(--flare-light); gap: 0.6rem; }
    .news-card--pinned {
      border-top: 2px solid var(--flare) !important;
      background: var(--surface-2) !important;
    }
    .news-state {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--snow-faint);
      padding: 2.5rem;
      text-align: center;
      grid-column: 1 / -1;
    }

    /* ── KIT FORM WRAP ── */
    .kit-form-wrap {
      max-width: 520px;
      margin: 2.5rem auto 0;
    }
    /* Suppress Kit's injected container background and padding */
    .kit-form-wrap .formkit-form,
    .kit-form-wrap [data-sv-form] {
      background: transparent !important;
      border: none !important;
      padding: 0 !important;
      margin: 0 !important;
      box-shadow: none !important;
    }
    /* Suppress Kit's default heading/subheading inside the form */
    .kit-form-wrap .formkit-header,
    .kit-form-wrap .formkit-subheader {
      display: none !important;
    }
    /* Fields layout */
    .kit-form-wrap .formkit-fields,
    .kit-form-wrap form {
      display: flex !important;
      flex-direction: column !important;
      gap: 0.85rem !important;
      background: transparent !important;
    }
    /* Input fields */
    .kit-form-wrap input[type="email"],
    .kit-form-wrap input[type="text"] {
      background: var(--surface) !important;
      border: 1px solid rgba(239,242,234,0.18) !important;
      color: var(--snow) !important;
      font-family: 'Inter', sans-serif !important;
      font-size: 0.95rem !important;
      font-weight: 300 !important;
      padding: 0.9rem 1.25rem !important;
      border-radius: 2px !important;
      outline: none !important;
      width: 100% !important;
      box-sizing: border-box !important;
    }
    .kit-form-wrap input::placeholder { color: var(--snow-faint) !important; }
    .kit-form-wrap input:focus {
      border-color: rgba(254,200,68,0.5) !important;
    }
    /* Submit button */
    .kit-form-wrap button[type="submit"],
    .kit-form-wrap .formkit-submit {
      font-family: 'IBM Plex Mono', monospace !important;
      font-size: 0.75rem !important;
      letter-spacing: 0.15em !important;
      text-transform: uppercase !important;
      background: var(--flare) !important;
      color: var(--night) !important;
      border: none !important;
      padding: 0.9rem 2rem !important;
      border-radius: 2px !important;
      font-weight: 500 !important;
      cursor: pointer !important;
      width: 100% !important;
      transition: background 0.2s !important;
    }
    .kit-form-wrap button[type="submit"]:hover,
    .kit-form-wrap .formkit-submit:hover {
      background: var(--flare-light) !important;
    }
    /* Success/confirmation message */
    .kit-form-wrap .formkit-alert-success,
    .kit-form-wrap [data-element="success"] {
      font-family: 'IBM Plex Mono', monospace !important;
      font-size: 0.72rem !important;
      letter-spacing: 0.14em !important;
      text-transform: uppercase !important;
      color: var(--flare) !important;
      background: transparent !important;
      border: none !important;
      text-align: center !important;
      padding: 1rem 0 !important;
    }
    /* GDPR / consent checkbox if present */
    .kit-form-wrap .formkit-consent {
      font-size: 0.78rem !important;
      color: var(--snow-dim) !important;
      font-family: 'Inter', sans-serif !important;
    }

    /* ── FOOTER HEART-LEAF ── */
    .footer-heart-leaf {
      display: flex;
      justify-content: center;
      padding: 2rem 0 2rem;
      border-top: 1px solid var(--border);
      margin-bottom: 1rem;
    }
    .footer-leaf-icon {
      width: 52px;
      height: 52px;
      object-fit: contain;
      opacity: 0.65;
      filter: brightness(1.2);
      transition: opacity 0.3s, filter 0.3s;
    }
    .footer-leaf-icon:hover { opacity: 0.9; filter: brightness(1.4); }

    /* ── FOOTER ── */
    footer {
      background: var(--surface);
      border-top: 1px solid var(--border);
      padding: 3rem clamp(1.25rem, 5vw, 3rem);
    }
    .footer-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 2rem;
    }
    .footer-brand .nav-logo { font-size: 1rem; }
    .footer-copy {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.7rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--snow-faint);
      margin-top: 0.5rem;
      line-height: 1.8;
    }
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-links a {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.72rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--sage);
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--flare); }
    .footer-legal {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--snow-faint);
      line-height: 1.9;
      max-width: 280px;
    }

    /* ── AGE GATE ── */
    .age-gate {
      position: fixed;
      inset: 0;
      background: var(--night);
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      text-align: center;
      padding: 2rem;
      gap: 2rem;
    }
    .age-gate-logo {
      font-family: 'Oswald', sans-serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--flare);
    }
    .age-gate-logo span {
      display: block;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--sage);
      margin-top: 4px;
    }
    .age-gate-line {
      width: 3rem;
      height: 1px;
      background: var(--flare-tint);
      margin: 0 auto;
    }
    .age-gate h2 {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(1.5rem, 3vw, 2.2rem);
      font-weight: 600;
      color: #FFFFFF;
      max-width: 420px;
    }
    .age-gate p {
      font-size: 0.9rem;
      font-weight: 300;
      color: var(--snow);
      max-width: 360px;
    }
    .age-gate-btns {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
    }
    .age-btn-yes {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      background: var(--flare);
      color: var(--night);
      border: none;
      padding: 0.9rem 2.5rem;
      border-radius: 2px;
      cursor: pointer;
      font-weight: 500;
      transition: background 0.2s;
    }
    .age-btn-yes:hover { background: var(--flare-light); }
    .age-btn-no {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      background: none;
      color: var(--sage);
      border: 1px solid rgba(239,242,234,0.18);
      padding: 0.9rem 2rem;
      border-radius: 2px;
      cursor: pointer;
      transition: color 0.2s, border-color 0.2s;
    }
    .age-btn-no:hover { color: var(--snow); border-color: var(--snow); }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .origin-grid { grid-template-columns: 1fr; gap: 3rem; }
      .origin-image-wrap { order: -1; }
      .origin-image { aspect-ratio: 16/9; }
      .legacy-inner { grid-template-columns: 1fr; gap: 2.5rem; }
      .legacy-sticky { position: static; }
    }
    @media (max-width: 600px) {
      .nav-cta { font-size: 0.62rem; padding: 0.5rem 0.85rem; }
      .origin-stat-row { grid-template-columns: 1fr 1fr; }
      .notify-row { flex-direction: column; }
      .notify-input { border-right: 1px solid rgba(239,242,234,0.18); border-bottom: none; border-radius: 2px 2px 0 0; }
      .notify-submit { border-radius: 0 0 2px 2px; text-align: center; }
      .footer-inner { flex-direction: column; }
      .news-grid { grid-template-columns: 1fr; }
    }

    @media (prefers-reduced-motion: reduce) {
      .marquee-track { animation: none; }
      * { transition: none !important; }
    }
