  :root{
    --ink: #17110F;
    --ink-soft: #241B17;
    --brick: #C1442D;
    --gold: #E8A93B;
    --teal: #1B6E7A;
    --magenta: #D6437A;
    --paper: #F2E9D8;
    --paper-dim: #E4D8BE;
    --line: rgba(242,233,216,0.18);
    --line-dark: rgba(23,17,15,0.14);
    --max: 1180px;
    --radius: 2px;
    --ease: cubic-bezier(.16,.84,.44,1);
  }

  *,*::before,*::after{ box-sizing: border-box; }
  html{ scroll-behavior: smooth; }
  body{
    margin:0;
    background: var(--ink);
    color: var(--paper);
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }
  img,svg{ display:block; max-width:100%; }
  a{ color: inherit; }
  h1,h2,h3{ margin:0; font-family:'Big Shoulders', sans-serif; text-transform: uppercase; letter-spacing: 0.01em; }
  p{ margin:0; }
  .wrap{ max-width: var(--max); margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px); }
  .eyebrow{
    font-family:'IBM Plex Mono', monospace;
    font-size: 12.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    display:flex; align-items:center; gap:10px;
  }
  .eyebrow::before{ content:""; width:22px; height:1px; background: currentColor; opacity:.55; }
  .btn{
    font-family:'IBM Plex Mono', monospace;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration:none;
    display:inline-flex; align-items:center; gap:10px;
    padding: 14px 22px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor:pointer;
    transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  }
  .btn:hover{ transform: translateY(-2px); }
  .btn-solid{ background: var(--gold); color: var(--ink); }
  .btn-solid:hover{ background: #f4bd5c; }
  .btn-outline{ border-color: var(--line); color: var(--paper); background: transparent; }
  .btn-outline:hover{ border-color: var(--paper); }
  .btn-outline-dark{ border-color: var(--line-dark); color: var(--ink); background: transparent; }
  .btn-outline-dark:hover{ border-color: var(--ink); }
  :focus-visible{ outline: 2px solid var(--gold); outline-offset: 3px; }

  section{ position: relative; }
  .section-pad{ padding: clamp(64px, 10vw, 128px) 0; }
  .on-paper{ background: var(--paper); color: var(--ink); }
  .grid-texture{
    background-image: radial-gradient(var(--line-dark) 1px, transparent 1px);
    background-size: 22px 22px;
  }

  /* ---------- NAV ---------- */
  header{
    position: sticky; top:0; z-index: 50;
    background: rgba(23,17,15,0.86);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
  }
  .nav{ display:flex; align-items:center; justify-content: space-between; padding: 16px clamp(20px,5vw,56px); max-width: var(--max); margin:0 auto; }
  .logo{ display:flex; align-items:center; gap:12px; text-decoration:none; color: var(--paper); }
  .logo-word{ font-family:'Big Shoulders', sans-serif; font-weight:800; font-size: 19px; letter-spacing: 0.03em; text-transform: uppercase; line-height:1; }
  .logo-word span{ display:block; font-family:'IBM Plex Mono', monospace; font-size:9.5px; letter-spacing:0.18em; font-weight:400; color: var(--gold); text-transform:uppercase; margin-top:3px; }
  .nav-links{ display:flex; align-items:center; gap: clamp(18px, 3vw, 34px); }
  .nav-links a{ text-decoration:none; font-size: 14.5px; font-weight:500; color: var(--paper-dim); position:relative; padding: 4px 0; }
  .nav-links a:hover{ color: var(--paper); }
  .nav-links a::after{ content:""; position:absolute; left:0; bottom:0; width:0; height:1px; background: var(--gold); transition: width .25s var(--ease); }
  .nav-links a:hover::after{ width:100%; }
  .nav-cta{ display:flex; align-items:center; gap:18px; }
  .nav-toggle{ display:none; background:none; border:1px solid var(--line); color:var(--paper); width:40px; height:40px; border-radius:var(--radius); cursor:pointer; }
  .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{ content:""; display:block; width:18px; height:1.5px; background: currentColor; margin:0 auto; position:relative; }
  .nav-toggle span::before{ position:absolute; top:-6px; }
  .nav-toggle span::after{ position:absolute; top:6px; }

  @media (max-width: 820px){
    .nav-links{ position:absolute; top:100%; left:0; right:0; background: var(--ink-soft); flex-direction:column; align-items:flex-start; padding: 22px clamp(20px,5vw,56px); gap:16px; border-bottom:1px solid var(--line); display:none; }
    .nav-links.open{ display:flex; }
    .nav-toggle{ display:block; }
    .nav-cta .btn-outline{ display:none; }
  }

  /* ---------- HERO ---------- */
  .hero{ padding: clamp(72px,12vw,140px) 0 clamp(56px,8vw,96px); overflow:hidden; }
  .weave-field{ position:absolute; inset:0; z-index:0; opacity:0.5; }
  .weave-field svg{ width:100%; height:100%; }
  .weft{ animation: drift 34s linear infinite; }
  .weft.b{ animation-duration: 46s; animation-direction: reverse; }
  .weft.c{ animation-duration: 58s; }
  @keyframes drift{
    from{ transform: translateX(0); }
    to{ transform: translateX(-320px); }
  }
  .hero-inner{ position:relative; z-index:1; }
  .hero h1{
    font-family:'Big Shoulders Stencil', sans-serif;
    font-weight: 800;
    font-size: clamp(48px, 9vw, 118px);
    line-height: 0.92;
    letter-spacing: 0.01em;
    margin: 22px 0 30px;
  }
  .hero h1 em{ font-style:normal; display:block; }
  .hero h1 .l1{ color: var(--gold); }
  .hero h1 .l2{ color: var(--paper); }
  .hero h1 .l3{ color: var(--magenta); }
  .hero h1 .l4{ color: var(--teal); -webkit-text-stroke: 2px var(--teal); }
  .hero-sub{ max-width: 560px; font-size: clamp(16px,2vw,19px); color: var(--paper-dim); margin-bottom: 38px; }
  .hero-actions{ display:flex; flex-wrap:wrap; gap:16px; margin-bottom: 56px; }
  .hero-meta{ display:flex; flex-wrap:wrap; gap: 28px; font-family:'IBM Plex Mono', monospace; font-size:12px; color: var(--paper-dim); letter-spacing:0.04em; border-top:1px solid var(--line); padding-top:22px; }
  .hero-meta strong{ color: var(--gold); font-weight:500; }

  /* ---------- MANIFESTO ---------- */
  .manifesto{ text-align:left; }
  .manifesto-grid{ display:grid; grid-template-columns: 1fr; gap: 40px; }
  .quote-mark{ font-family:'Big Shoulders Stencil', sans-serif; font-size: 90px; line-height:0.6; color: var(--brick); margin-bottom: 6px; }
  .manifesto blockquote{
    font-family:'Big Shoulders', sans-serif;
    font-weight:700;
    font-size: clamp(26px, 4vw, 42px);
    line-height:1.18;
    max-width: 820px;
    margin: 0 0 34px;
    text-transform: none;
    letter-spacing: 0;
  }
  .manifesto blockquote span{ color: var(--brick); }
  .goals-row{ display:flex; flex-wrap:wrap; gap: 14px; margin-top: 8px; }
  .goal-chip{
    font-family:'IBM Plex Mono', monospace; font-size: 13px; letter-spacing:0.02em;
    background: var(--ink); color: var(--paper);
    padding: 12px 18px; border-radius: var(--radius);
    display:flex; align-items:center; gap:10px;
  }
  .goal-chip::before{ content:""; width:7px; height:7px; background: var(--gold); flex:none; }
  .goal-chip:nth-child(2)::before{ background: var(--teal); }
  .goal-chip:nth-child(3)::before{ background: var(--magenta); }

  /* ---------- PLOTS ---------- */
  .section-head{ display:flex; justify-content:space-between; align-items:flex-end; gap:24px; flex-wrap:wrap; margin-bottom: 48px; }
  .section-head h2{ font-size: clamp(34px, 5vw, 56px); font-weight:800; line-height:0.95; }
  .section-head .eyebrow{ margin-bottom: 14px; color: var(--gold); }
  .on-paper .section-head .eyebrow{ color: var(--brick); }
  .section-head p{ max-width: 360px; color: var(--paper-dim); font-size:15px; }
  .on-paper .section-head p{ color: #6b5f52; }

  .plots-grid{ display:grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
  .plot-card{
    background: var(--ink); padding: 34px clamp(22px,3vw,34px); position:relative; overflow:hidden;
    transition: background .3s var(--ease);
  }
  .plot-card::before{ content:""; position:absolute; top:0; left:0; right:0; height:4px; background: var(--accent, var(--gold)); transform: scaleX(0); transform-origin:left; transition: transform .4s var(--ease); }
  .plot-card:hover::before{ transform: scaleX(1); }
  .plot-card:hover{ background: var(--ink-soft); }
  .plot-card:nth-child(1){ --accent: var(--brick); }
  .plot-card:nth-child(2){ --accent: var(--teal); }
  .plot-card:nth-child(3){ --accent: var(--gold); }
  .plot-card:nth-child(4){ --accent: var(--magenta); }
  .plot-top{ display:flex; justify-content:space-between; align-items:flex-start; gap:14px; margin-bottom: 22px; }
  .plot-ref{ font-family:'IBM Plex Mono', monospace; font-size: 12px; color: var(--accent, var(--gold)); letter-spacing:0.04em; }
  .plot-status{ font-family:'IBM Plex Mono', monospace; font-size: 10.5px; letter-spacing:0.08em; text-transform:uppercase; padding: 5px 10px; border: 1px solid var(--line); border-radius: var(--radius); color: var(--paper-dim); white-space:nowrap; }
  .plot-icon{ width:44px; height:44px; margin-bottom: 18px; color: var(--accent, var(--gold)); }
  .plot-card h3{ font-size: 24px; font-weight: 700; margin-bottom: 12px; letter-spacing:0.005em; }
  .plot-card p{ color: var(--paper-dim); font-size: 14.5px; }

  @media (max-width: 720px){ .plots-grid{ grid-template-columns: 1fr; } }

  /* ---------- TRACKS ---------- */
  .tracks-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-dark); border:1px solid var(--line-dark); margin-top: 10px; }
  .track{ background: var(--paper); padding: clamp(30px,4vw,46px); }
  .track-tag{ font-family:'IBM Plex Mono', monospace; font-size:12px; letter-spacing:0.1em; text-transform:uppercase; padding: 6px 12px; display:inline-block; margin-bottom: 20px; color: var(--paper); }
  .track.creatives .track-tag{ background: var(--magenta); }
  .track.business .track-tag{ background: var(--teal); }
  .track h3{ font-size: clamp(26px,3vw,34px); font-weight:800; margin-bottom: 22px; }
  .track ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:14px; }
  .track li{ display:flex; gap:12px; font-size:15.5px; color:#4a4038; align-items:flex-start; }
  .track li::before{ content:""; width:7px; height:7px; margin-top:8px; flex:none; }
  .track.creatives li::before{ background: var(--magenta); }
  .track.business li::before{ background: var(--teal); }
  .track .btn{ margin-top: 26px; }
  @media (max-width: 720px){ .tracks-grid{ grid-template-columns: 1fr; } }

  /* ---------- TIMELINE ---------- */
  .timeline{ margin-top: 20px; position:relative; }
  .timeline::before{ content:""; position:absolute; left: 9px; top:6px; bottom:6px; width:1px; background: var(--line); }
  .t-item{ position:relative; padding: 0 0 44px 44px; }
  .t-item:last-child{ padding-bottom:0; }
  .t-item::before{ content:""; position:absolute; left:0; top:4px; width:19px; height:19px; border-radius:50%; background: var(--ink); border:2px solid var(--gold); }
  .t-item:nth-child(2n)::before{ border-color: var(--teal); }
  .t-item:nth-child(3n)::before{ border-color: var(--magenta); }
  .t-date{ font-family:'IBM Plex Mono', monospace; font-size:12.5px; letter-spacing:0.06em; color: var(--gold); margin-bottom:6px; display:block; }
  .t-item:nth-child(2n) .t-date{ color: var(--teal); }
  .t-item:nth-child(3n) .t-date{ color: var(--magenta); }
  .t-item h3{ font-size: 22px; font-weight:700; margin-bottom: 8px; }
  .t-item p{ color: var(--paper-dim); font-size:15px; max-width: 560px; }

  /* ---------- GET INVOLVED ---------- */
  .involved-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-bottom: 56px; }
  .involved-card{ border:1px solid var(--line-dark); padding: 28px 24px; border-radius: var(--radius); background: var(--paper); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
  .involved-card:hover{ transform: translateY(-4px); box-shadow: 0 14px 30px rgba(23,17,15,0.1); }
  .involved-card h3{ font-size: 20px; font-weight:700; margin-bottom:10px; }
  .involved-card p{ font-size: 14px; color:#6b5f52; margin-bottom: 18px; }
  .involved-card a{ font-family:'IBM Plex Mono', monospace; font-size:12.5px; text-decoration:none; letter-spacing:0.04em; border-bottom: 1px solid var(--ink); padding-bottom:2px; }
  @media (max-width: 780px){ .involved-grid{ grid-template-columns: 1fr; } }

  .signup{ background: var(--ink); color: var(--paper); border-radius: var(--radius); padding: clamp(30px,4vw,48px); display:flex; flex-wrap:wrap; gap: 28px; justify-content:space-between; align-items:center; }
  .signup h3{ font-size: clamp(22px,3vw,30px); font-weight:800; max-width: 380px; }
  .signup form{ display:flex; gap: 10px; flex:1; min-width: 280px; max-width: 460px; }
  .signup input{
    flex:1; background: transparent; border: 1px solid var(--line); color: var(--paper);
    padding: 14px 16px; font-family:'Work Sans',sans-serif; font-size:14.5px; border-radius: var(--radius);
  }
  .signup input::placeholder{ color: var(--paper-dim); }
  .signup input:focus{ outline:none; border-color: var(--gold); }
  .signup button{ background: var(--gold); color: var(--ink); border:none; font-family:'IBM Plex Mono', monospace; font-size:13px; letter-spacing:0.05em; text-transform:uppercase; padding: 0 20px; border-radius: var(--radius); cursor:pointer; }
  .signup button:hover{ background:#f4bd5c; }
  .signup-note{ width:100%; font-family:'IBM Plex Mono', monospace; font-size:11.5px; color: var(--paper-dim); }

  /* ---------- FOOTER ---------- */
  footer{ padding: 64px 0 34px; border-top: 1px solid var(--line); }
  .foot-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 56px; }
  .foot-brand p{ color: var(--paper-dim); font-size: 14.5px; margin-top: 14px; max-width: 280px; }
  .foot-col h4{ font-family:'IBM Plex Mono', monospace; font-size:11.5px; letter-spacing:0.1em; text-transform:uppercase; color: var(--gold); margin-bottom: 16px; }
  .foot-col ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap: 11px; }
  .foot-col a{ text-decoration:none; color: var(--paper-dim); font-size: 14.5px; }
  .foot-col a:hover{ color: var(--paper); }
  .foot-bottom{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px; padding-top: 28px; border-top: 1px solid var(--line); font-family:'IBM Plex Mono', monospace; font-size: 11.5px; color: var(--paper-dim); letter-spacing:0.03em; }
  @media (max-width: 820px){ .foot-grid{ grid-template-columns: 1fr 1fr; } }
  @media (max-width: 520px){ .foot-grid{ grid-template-columns: 1fr; } }

  @media (prefers-reduced-motion: reduce){
    .weft{ animation: none; }
    html{ scroll-behavior:auto; }
  }

  .reveal{ opacity:0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
  .reveal.in{ opacity:1; transform:none; }