
  :root{
    --turf:#001733;
    --turf-dark:#000E22;
    --chalk:#F7F5EF;
    --navy:#16233A;
    --amber:#7FAE35;
    --redline:#4F7A1F;
    --line:#FFFFFF;
    --ink:#16233A;
    --muted:#5B6B72;
  }
  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    font-family:'Work Sans',sans-serif;
    color:var(--ink);
    background:var(--chalk);
    -webkit-font-smoothing:antialiased;
  }
  h1,h2,h3,.display{
    font-family:'Anton',sans-serif;
    font-weight:400;
    letter-spacing:0.5px;
    text-transform:uppercase;
    line-height:1;
  }
  .mono{ font-family:'IBM Plex Mono',monospace; }
  a{ color:inherit; }
  .wrap{ max-width:1080px; margin:0 auto; padding:0 24px; }

  /* NAV */
  nav{
    position:sticky; top:0; z-index:50;
    background:var(--turf);
    border-bottom:3px solid var(--amber);
  }
  nav .wrap{ display:flex; align-items:center; justify-content:space-between; height:64px; }
  .brand{ display:flex; align-items:center; gap:10px; color:var(--chalk); font-family:'Anton',sans-serif; text-transform:uppercase; letter-spacing:0.5px; font-size:16px; }
  .brand img{ height:38px; width:38px; display:block; }
  .brand span{ color:var(--amber); }
  nav .links{ display:flex; gap:8px; }
  nav .links a{
    color:var(--chalk); text-decoration:none; font-size:13px; font-weight:600;
    letter-spacing:0.5px; text-transform:uppercase; padding:8px 12px; border-radius:2px;
  }
  nav .links a:hover{ background:rgba(255,255,255,0.08); }
  .nav-right{ display:flex; align-items:center; }
  nav .social-row{
    display:flex; gap:4px; margin-left:10px; padding-left:14px;
    border-left:1px solid rgba(255,255,255,0.18);
  }
  .social-icon{
    display:flex; align-items:center; justify-content:center;
    width:32px; height:32px; border-radius:50%;
    background:rgba(255,255,255,0.06); color:var(--chalk);
    text-decoration:none; transition:background .18s ease, color .18s ease, transform .18s ease;
  }
  .social-icon svg{ width:15px; height:15px; fill:currentColor; }
  .social-icon:hover{ background:var(--amber); color:var(--turf-dark); transform:translateY(-2px); }
  .footer-top{
    display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:20px;
    padding-bottom:24px; margin-bottom:18px; border-bottom:1px solid rgba(255,255,255,0.1);
  }
  .footer-social .lbl{
    font-family:'IBM Plex Mono',monospace; font-size:11px; letter-spacing:1.5px; text-transform:uppercase;
    color:#9FB3A8; margin-bottom:10px; text-align:left;
  }
  .footer-social .social-row{ display:flex; gap:10px; }
  .footer-social .social-icon{ width:40px; height:40px; background:rgba(255,255,255,0.08); }
  .footer-social .social-icon svg{ width:18px; height:18px; }
  @media(max-width:700px){
    nav .links{ display:none; }
    nav .social-row{ margin-left:auto; padding-left:0; border-left:none; }
    .footer-top{ flex-direction:column; align-items:flex-start; }
  }

  /* MASTHEAD — the project name gets its own dedicated space, separate from the hero */
  .masthead{
    background:var(--chalk);
    text-align:center;
    padding:60px 0 48px;
    border-bottom:1px solid #E3DFD2;
  }
  .masthead-logo{ width:180px; height:180px; margin:0 auto 24px; display:block; }
  .masthead-eyebrow{
    font-family:'IBM Plex Mono',monospace; font-size:12px; letter-spacing:3px;
    text-transform:uppercase; color:var(--redline); margin-bottom:16px; font-weight:600;
  }
  .masthead-title{
    font-family:'Anton',sans-serif; font-weight:400; text-transform:uppercase;
    font-size:clamp(32px,5.4vw,58px); color:var(--navy); margin:0; line-height:1.08; letter-spacing:0.5px;
  }
  .masthead-sub{
    font-family:'Work Sans',sans-serif; font-size:15px; color:var(--muted); margin:14px 0 0;
    letter-spacing:0.3px;
  }
  .masthead-rule{ width:60px; height:4px; background:var(--amber); margin:26px auto 0; border-radius:2px; }

  .full-banner{ background:var(--chalk); padding:28px 0; text-align:center; }
  .full-banner .scroll-wrap{ overflow-x:auto; -webkit-overflow-scrolling:touch; }
  .full-banner img{
    display:block; width:100%; height:auto; min-width:640px; max-width:1100px; margin:0 auto;
    border-radius:8px; box-shadow:0 10px 30px rgba(0,0,0,0.15);
  }
  .full-banner .hint{ font-size:11px; color:var(--muted); margin-top:8px; font-family:'IBM Plex Mono',monospace; display:none; }
  @media(max-width:700px){
    .full-banner .hint{ display:block; }
  }

  /* HERO */
  .hero{
    background:
      radial-gradient(1200px 500px at 15% -10%, rgba(255,182,39,0.12), transparent 60%),
      repeating-linear-gradient(180deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 64px),
      var(--turf);
    color:var(--chalk);
    padding:84px 0 72px;
    position:relative;
    overflow:hidden;
  }
  .hero-highlight{
    display:inline-block; font-family:'IBM Plex Mono',monospace; font-weight:600; font-size:14px;
    letter-spacing:1.5px; text-transform:uppercase; color:var(--turf-dark); background:var(--amber);
    padding:9px 18px; border-radius:2px; margin-bottom:26px;
  }
  .hero-headline{
    font-family:'Anton',sans-serif; font-weight:400; text-transform:uppercase;
    font-size:clamp(34px,5.6vw,60px); max-width:760px; color:var(--chalk); margin:0 0 22px; line-height:1.12;
  }
  .hero p.lede{ max-width:560px; font-size:18px; line-height:1.6; color:#DCE4DE; margin:0 0 36px; }

  .scoreboard{
    display:inline-flex; align-items:stretch; gap:1px; background:rgba(255,255,255,0.15);
    border:1px solid rgba(255,255,255,0.2); border-radius:4px; overflow:hidden; margin-bottom:40px;
  }
  .scoreboard .cell{
    background:var(--turf-dark); padding:18px 26px; text-align:center; min-width:120px;
  }
  .scoreboard .cell .num{
    font-family:'IBM Plex Mono',monospace; font-weight:600; font-size:38px; color:var(--amber);
    font-variant-numeric:tabular-nums;
  }
  .scoreboard .cell .lbl{
    font-size:10px; letter-spacing:1.5px; text-transform:uppercase; color:#9FB3A8; margin-top:6px;
  }

  .btn{
    display:inline-block; font-family:'IBM Plex Mono',monospace; font-weight:600; font-size:13px;
    letter-spacing:1px; text-transform:uppercase; text-decoration:none; cursor:pointer;
    padding:14px 26px; border-radius:2px; border:2px solid transparent;
  }
  .btn-primary{ background:var(--amber); color:var(--turf-dark); }
  .btn-primary:hover{ background:#ffc655; }
  .btn-ghost{ background:transparent; border-color:rgba(255,255,255,0.5); color:var(--chalk); margin-left:12px; }
  .btn-ghost:hover{ border-color:var(--chalk); }

  .hero-grid{ display:grid; grid-template-columns:1.15fr 0.85fr; gap:52px; align-items:center; }
  .hero-photo-wrap{ position:relative; border-radius:14px; overflow:hidden; box-shadow:0 24px 60px rgba(0,0,0,0.4); aspect-ratio:4/5; }
  .hero-photo-wrap::after{
    content:""; position:absolute; inset:0;
    background:linear-gradient(180deg, rgba(0,23,51,0) 55%, rgba(0,23,51,0.55) 100%);
  }
  .hero-photo{ display:block; width:100%; height:100%; object-fit:cover; }
  .hero-photo-rule{ position:absolute; left:0; top:0; bottom:0; width:6px; background:var(--amber); z-index:2; }
  @media(max-width:800px){
    .hero-grid{ grid-template-columns:1fr; }
    .hero-photo-wrap{ order:-1; aspect-ratio:16/9; }
  }

  /* YARD DIVIDER */
  .yardline{ position:relative; height:1px; background:repeating-linear-gradient(90deg,var(--navy) 0 10px, transparent 10px 20px); opacity:0.25; margin:0; }
  .yardline .marker{
    position:absolute; top:-9px; left:50%; transform:translateX(-50%);
    background:var(--chalk); padding:0 14px; font-family:'IBM Plex Mono',monospace;
    font-size:12px; letter-spacing:2px; color:var(--muted);
  }
  .yardline.goal .marker{ color:var(--redline); font-weight:600; }

  section{ padding:72px 0; }
  .section-head{ max-width:640px; margin:0 auto 44px; text-align:center; }
  .section-head .kicker{
    font-family:'IBM Plex Mono',monospace; font-size:12px; letter-spacing:2px; text-transform:uppercase;
    color:var(--redline); margin-bottom:10px; display:block;
  }
  .section-head h2{ font-size:clamp(26px,4vw,38px); margin:0 0 14px; color:var(--navy); }
  .section-head p{ color:var(--muted); font-size:16px; line-height:1.6; margin:0; }

  /* MISSION */
  .mission-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:8px; }
  .mission-card{ background:#fff; border:1px solid #E6E2D8; border-radius:6px; padding:26px; }
  .mission-card .tag{ font-family:'IBM Plex Mono',monospace; font-size:11px; letter-spacing:1.5px; color:var(--redline); text-transform:uppercase; }
  .mission-card h3{ font-size:19px; color:var(--navy); margin:10px 0 8px; text-transform:none; letter-spacing:0; }
  .mission-card p{ color:var(--muted); font-size:14.5px; line-height:1.55; margin:0; }

  /* SIGNUP */
  .signup{ background:var(--navy); color:var(--chalk); }
  .signup .grid{ display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; }
  .signup h2{ color:var(--chalk); font-size:clamp(24px,4vw,34px); text-align:left; }
  .signup p{ color:#C6CEDA; line-height:1.6; }
  .roster-sheet{ background:var(--chalk); border-radius:6px; padding:28px; color:var(--ink); }
  .roster-sheet .title{ font-family:'IBM Plex Mono',monospace; font-size:11px; letter-spacing:2px; text-transform:uppercase; color:var(--muted); margin-bottom:16px; border-bottom:1px dashed #cfc9ba; padding-bottom:10px;}
  .field{ margin-bottom:14px; }
  .field label{ display:block; font-size:12px; font-weight:600; letter-spacing:0.5px; text-transform:uppercase; color:var(--muted); margin-bottom:5px; }
  .field input, .field select, .field textarea{
    width:100%; padding:11px 12px; border:1px solid #D8D3C6; border-radius:3px; font-family:'Work Sans',sans-serif;
    font-size:14.5px; background:#fff; color:var(--ink);
  }
  .field textarea{ resize:vertical; min-height:90px; }
  .signup-submit{ width:100%; margin-top:6px; background:var(--turf); color:var(--chalk); border:none; padding:14px; }
  .signup-submit:hover{ background:var(--turf-dark); }
  .form-msg{ font-size:13px; margin-top:10px; font-family:'IBM Plex Mono',monospace; }
  .form-msg.ok{ color:#7FDDA0; }
  .form-msg.err{ color:#FF9B9B; }
  .roster-sheet .form-msg.ok{ color:#1B4332; }
  .roster-sheet .form-msg.err{ color:var(--redline); }

  /* STORIES */
  .tabs{ display:flex; gap:6px; justify-content:center; margin-bottom:28px; flex-wrap:wrap; }
  .tab-btn{
    font-family:'IBM Plex Mono',monospace; font-size:12px; letter-spacing:1px; text-transform:uppercase;
    padding:10px 18px; border-radius:20px; border:1px solid #D8D3C6; background:#fff; color:var(--muted); cursor:pointer;
  }
  .tab-btn.active{ background:var(--turf); color:var(--chalk); border-color:var(--turf); }
  .story-panel{ display:none; max-width:640px; margin:0 auto; background:#fff; border:1px solid #E6E2D8; border-radius:6px; padding:28px; }
  .story-panel.active{ display:block; }
  .slider-row{ margin-bottom:18px; }
  .slider-row .val{ font-family:'IBM Plex Mono',monospace; color:var(--redline); font-weight:600; }
  input[type=range]{ width:100%; accent-color:var(--turf); }
  .chip-group{ display:flex; flex-wrap:wrap; gap:8px; margin-top:8px; }
  .chip{ font-size:13px; padding:7px 12px; border:1px solid #D8D3C6; border-radius:16px; cursor:pointer; user-select:none; }
  .chip.selected{ background:var(--amber); border-color:var(--amber); color:var(--turf-dark); font-weight:600; }
  .story-submit{ margin-top:18px; width:100%; background:var(--redline); color:#fff; border:none; padding:14px; }
  .story-submit:hover{ background:#8f0f16; }

  .feed{ max-width:640px; margin:36px auto 0; }
  .feed-item{ border-left:3px solid var(--amber); padding:12px 16px; margin-bottom:10px; background:#fff; border-radius:0 4px 4px 0; }
  .feed-item .meta{ font-family:'IBM Plex Mono',monospace; font-size:11px; color:var(--muted); text-transform:uppercase; letter-spacing:1px; margin-bottom:4px; }
  .feed-item p{ margin:0; font-size:14.5px; color:var(--ink); line-height:1.5; }
  .feed-empty{ text-align:center; color:var(--muted); font-size:14px; font-style:italic; }

  /* DASHBOARD */
  .dashboard{ background:var(--turf-dark); color:var(--chalk); }
  .dashboard .section-head h2{ color:var(--chalk); }
  .dashboard .section-head p{ color:#9FB3A8; }
  .board-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
  .board-tile{ background:var(--turf); border:1px solid rgba(255,255,255,0.1); border-radius:6px; padding:24px; position:relative; }
  .board-tile .lbl{ font-size:11px; letter-spacing:1.5px; text-transform:uppercase; color:#9FB3A8; margin-bottom:10px; }
  .board-tile .val{ font-family:'IBM Plex Mono',monospace; font-weight:600; font-size:32px; color:var(--amber); font-variant-numeric:tabular-nums; }
  .board-tile .sub{ font-size:12px; color:#7E9186; margin-top:8px; }
  .board-tile.wide{ grid-column:span 3; }
  .progress-track{ height:10px; background:rgba(255,255,255,0.1); border-radius:5px; margin-top:14px; overflow:hidden; }
  .progress-fill{ height:100%; background:linear-gradient(90deg,var(--amber),#ffd27a); width:0%; transition:width 1.2s ease; }
  .edit-toggle{ position:absolute; top:20px; right:20px; background:none; border:none; color:#7E9186; cursor:pointer; font-size:16px; }
  .edit-toggle:hover{ color:var(--amber); }
  .admin-row{ display:none; margin-top:12px; gap:8px; }
  .admin-row.active{ display:flex; }
  .admin-row input{ flex:1; padding:8px; border-radius:3px; border:1px solid #3a5c4d; background:var(--turf-dark); color:var(--chalk); font-family:'IBM Plex Mono',monospace; }
  .admin-row button{ background:var(--amber); border:none; padding:8px 12px; border-radius:3px; font-family:'IBM Plex Mono',monospace; font-weight:600; cursor:pointer; }
  .dash-note{ text-align:center; font-size:12px; color:#7E9186; margin-top:24px; font-family:'IBM Plex Mono',monospace; }

  footer{ background:var(--turf); color:#9FB3A8; padding:36px 0; text-align:center; font-size:13px; }
  footer .brand{ justify-content:flex-start; font-size:16px; }
  footer .brand img{ height:44px; width:44px; }
  footer .brand{ margin-bottom:8px; }

  @media(max-width:800px){
    .mission-grid, .board-grid{ grid-template-columns:1fr; }
    .board-tile.wide{ grid-column:span 1; }
    .signup .grid{ grid-template-columns:1fr; }
    .scoreboard{ flex-wrap:wrap; }
  }
  @media (prefers-reduced-motion: reduce){
    html{ scroll-behavior:auto; }
    .progress-fill{ transition:none; }
  }
