/* Single committed theme: a club's own brand, an arena at night, so it
     paints its own ground rather than inheriting the viewer's. */
  :root {
    --arena:  #12171F;
    --deep:   #0A0E14;
    --line:   #2E3846;
    --ink:    #F2F6FA;
    --soft:   #B4C1CF;
    --faint:  #7B8998;
    --gold:   #EFB532;
    --gold-hi:#FFC94A;
    --blue:   #5C9BE0;
  }

  * { box-sizing: border-box; }

  body {
    margin: 0;
    overflow-x: hidden;
    overflow-wrap: break-word;
    background: var(--arena);
    color: var(--ink);
    font-family: "Barlow", system-ui, -apple-system, sans-serif;
    font-size: 16.5px;
    line-height: 1.62;
    -webkit-font-smoothing: antialiased;
  }

  #bg { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; display: block; }

  a { color: var(--gold); }
  :is(a, button):focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

  .mono {
    font-family: "IBM Plex Mono", ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
  }

  /* ---------------- nav ---------------- */

  .nav {
    position: sticky; top: 0; z-index: 30;
    background: rgba(10, 14, 20, .9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
  }

  .nav-inner {
    max-width: 1040px; margin: 0 auto;
    padding: 11px 24px;
    display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  }

  .mark { display: flex; align-items: center; text-decoration: none; }
  .mark { gap: 12px; color: var(--gold); }
  .mark-glyph { display: block; height: 30px; width: auto; }
  .mark-type { display: flex; flex-direction: column; gap: 5px; line-height: 1; }
  .mt1 { font-family: "Big Shoulders Display", sans-serif; font-weight: 700; font-size: 13px;
         letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
  .mt2 { font-family: "Big Shoulders Display", sans-serif; font-weight: 800; font-size: 19px;
         letter-spacing: .02em; text-transform: uppercase; color: var(--ink); }

  .nav-links { margin-left: auto; display: flex; gap: 22px; list-style: none; padding: 0; margin-block: 0; }

  .nav-links a {
    font-family: "IBM Plex Mono", monospace;
    font-size: 11.5px; letter-spacing: .13em; text-transform: uppercase;
    color: var(--soft); text-decoration: none;
    padding-bottom: 3px; border-bottom: 1px solid transparent;
  }

  .nav-links a:hover { color: var(--ink); border-bottom-color: var(--line); }
  .nav-links a[aria-current="page"] { color: var(--gold); border-bottom-color: var(--gold); }

  /* ---------------- page shell ----------------
     The scrim is soft-edged and light, so the arena reads through it and
     down both margins instead of sitting behind a hard-edged panel. */

  .page { position: relative; z-index: 1; max-width: 1040px; margin: 0 auto; padding: 0 24px 90px; }

  .sheet {
    padding: 0 30px;
    background: linear-gradient(90deg,
      rgba(10, 14, 20, 0) 0%,
      rgba(10, 14, 20, .46) 9%,
      rgba(10, 14, 20, .46) 91%,
      rgba(10, 14, 20, 0) 100%);
  }

  .pagebody { animation: fade .34s ease both; }
  @keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

  /* ---------------- hero ---------------- */

  .hero { padding: 84px 0 60px; display: flex; flex-direction: column; gap: 20px; }

  h1 {
    font-family: "Big Shoulders Display", "Arial Narrow", sans-serif;
    font-weight: 800;
    font-size: clamp(44px, 8.6vw, 92px);
    line-height: .92;
    text-transform: uppercase;
    text-wrap: balance;
    margin: 0;
    max-width: min(15ch, 100%);
    text-shadow: 0 2px 18px rgba(10, 14, 20, .85);
  }

  h1 em { font-style: normal; color: var(--gold); }

  .lede {
    max-width: min(58ch, 100%); font-size: 19px; color: var(--soft); margin: 0;
    text-shadow: 0 1px 12px rgba(10, 14, 20, .9);
  }

  .cta-row { display: flex; flex-wrap: wrap; gap: 12px; padding-top: 8px; }

  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 22px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 12px; letter-spacing: .13em; text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--gold);
    transition: background .16s ease, transform .16s ease;
  }

  .btn-solid { background: var(--gold); color: var(--deep); font-weight: 500; }
  .btn-solid:hover { background: var(--gold-hi); transform: translateY(-2px); }
  .btn-ghost { background: rgba(10, 14, 20, .55); color: var(--gold); }
  .btn-ghost:hover { background: rgba(239, 181, 50, .16); transform: translateY(-2px); }

  /* ---------------- sections ---------------- */

  .sec { padding: 50px 0; border-top: 1px solid var(--line); }

  h2 {
    font-family: "Big Shoulders Display", sans-serif;
    font-weight: 700; font-size: 31px;
    text-transform: uppercase; letter-spacing: .03em; line-height: 1;
    margin: 0 0 16px;
    text-shadow: 0 1px 14px rgba(10, 14, 20, .8);
  }

  h3 {
    font-family: "Big Shoulders Display", sans-serif;
    font-weight: 700; font-size: 23px;
    text-transform: uppercase; letter-spacing: .04em; line-height: 1;
    margin: 0;
  }

  .body { max-width: min(60ch, 100%); }
  .body p { margin: 0 0 14px; color: var(--soft); text-shadow: 0 1px 10px rgba(10, 14, 20, .8); }
  .body p:last-child { margin-bottom: 0; }
  .body strong { color: var(--ink); font-weight: 600; }

  .season { margin: 26px 0 0; padding-top: 16px; border-top: 1px solid var(--line);
    font-family: "IBM Plex Mono", monospace; font-size: 12px; letter-spacing: .05em;
    color: var(--faint); }

  .more { display: inline-block; margin-top: 6px; font-family: "IBM Plex Mono", monospace; font-size: 11.5px; letter-spacing: .13em; text-transform: uppercase; text-decoration: none; }
  .more:hover { text-decoration: underline; }

  /* ---------------- data ---------------- */

  .rows { border: 1px solid var(--line); margin-top: 22px; }

  .row {
    display: flex; gap: 18px; align-items: baseline;
    padding: 12px 16px; border-bottom: 1px solid var(--line);
    background: rgba(20, 26, 35, .88);
  }

  .row:last-child { border-bottom: 0; }
  .row dt { flex: 0 0 148px; color: var(--faint); font-family: "IBM Plex Mono", monospace; font-size: 11px; letter-spacing: .13em; text-transform: uppercase; }
  .row dd { margin: 0; color: var(--ink); }

  .classes { display: flex; flex-direction: column; gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 22px; }
  .cls { background: rgba(20, 26, 35, .88); padding: 15px 17px; display: flex; gap: 16px; flex-wrap: wrap; align-items: baseline; }
  .cls b { font-family: "Big Shoulders Display", sans-serif; font-weight: 700; font-size: 20px; letter-spacing: .03em; text-transform: uppercase; flex: 0 0 130px; }
  .cls.us b { color: var(--gold); }
  .cls span { color: var(--soft); flex: 1; min-width: min(220px, 100%); }

  /* ---------------- cards ---------------- */

  .cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(258px, 100%), 1fr)); gap: 14px; }

  .card {
    display: flex; flex-direction: column; gap: 11px; padding: 24px;
    background: rgba(20, 26, 35, .9);
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
  }

  .card p { margin: 0; color: var(--soft); flex: 1; }
  .card .btn { align-self: flex-start; }

  .when {
    display: flex; flex-wrap: wrap; gap: 10px 30px;
    padding: 20px 22px; margin-top: 20px;
    background: rgba(20, 26, 35, .9);
    border: 1px solid var(--line);
    border-left: 3px solid var(--gold);
  }

  .when div { display: flex; flex-direction: column; gap: 2px; }
  .when b { font-family: "Big Shoulders Display", sans-serif; font-weight: 700; font-size: 25px; line-height: 1; }
  .when span { color: var(--faint); }


  /* ---------------- sponsorship ---------------- */
  .ask { border:1px solid var(--line); margin-top:20px; }
  .ask-row { display:flex; gap:20px; align-items:baseline; padding:14px 16px;
    border-bottom:1px solid var(--line); background:rgba(20,26,35,.88); }
  .ask-row:last-child { border-bottom:0; }
  .ask-row.top { background:rgba(239,181,50,.09); border-left:3px solid var(--gold); }
  .ask-amt { flex:0 0 88px; text-align:right; font-family:"Big Shoulders Display",sans-serif;
    font-weight:700; font-size:27px; line-height:1; color:var(--gold);
    font-variant-numeric:tabular-nums; }
  .ask-what { color:var(--soft); }
  .ask-what b { color:var(--ink); font-weight:600; }
  .ask-cap { margin-top:10px; font-size:14px; color:var(--faint); }

  .need { padding:20px 22px; margin-top:20px; background:rgba(20,26,35,.9);
    border:1px solid var(--line); border-left:3px solid var(--blue); }
  .need h4 { margin:0 0 10px; font-family:"IBM Plex Mono",monospace; font-size:11px;
    letter-spacing:.15em; text-transform:uppercase; color:var(--blue); }
  .need ul { margin:0; padding-left:19px; display:flex; flex-direction:column; gap:6px; }
  .need li { color:var(--soft); }

  @media (max-width:640px){ .ask-row{flex-direction:column;gap:4px} .ask-amt{flex:none;text-align:left} }

  /* ---------------- footer ---------------- */

  .footer { position: relative; z-index: 1; background: var(--deep); border-top: 1px solid var(--line); }
  .footer-inner { max-width: 1040px; margin: 0 auto; padding: 38px 24px 56px; display: flex; flex-wrap: wrap; gap: 28px; justify-content: space-between; }
  .footer p { margin: 0 0 8px; color: var(--faint); font-size: 14px; max-width: min(44ch, 100%); }
  .footer a { color: var(--soft); }
  .footer a:hover { color: var(--gold); }
  .disc { font-size: 12.5px; line-height: 1.5; }

  mark {
    background: rgba(92, 155, 224, .16);
    color: var(--blue);
    border-bottom: 1px dashed var(--blue);
    padding: 0 3px;
    font-family: "IBM Plex Mono", monospace;
    font-size: .82em;
    letter-spacing: .04em;
  }

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

  @media (max-width: 700px) {
    .sheet { padding: 0 16px; background: rgba(10, 14, 20, .62); }
    .hero { padding: 48px 0 40px; }
    h1 { font-size: clamp(34px, 11vw, 52px); max-width: 100%; }
    .lede { font-size: 17px; }
    .sec { padding: 38px 0; }
    h2 { font-size: 26px; }
    .nav-inner { padding: 10px 16px; gap: 10px; }
    .mark-glyph { height: 25px; }
    .mt2 { font-size: 17px; }
    .btn { padding: 11px 16px; font-size: 11px; }
    .ask-row { flex-direction: column; gap: 3px; }
    .ask-amt { flex: none; text-align: left; font-size: 23px; }
    .when { gap: 10px 20px; padding: 16px 18px; }
    .footer-inner { padding: 30px 16px 44px; gap: 20px; }
    .nav-links { gap: 14px; margin-left: 0; width: 100%; }
    .row { flex-direction: column; gap: 3px; }
    .row dt { flex: none; }
  }
