:root {
    /* neutral scale */
    --bg:        #0a0c0b;
    --bg-1:      #0e120f;
    --bg-2:      #12171400;
    --panel:     #101512;
    --panel-2:   #141a16;
    --line:      #1e2521;
    --line-2:    #283029;
    --text:      #eef2ee;
    --muted:     #9aa39c;
    --muted-2:   #6f7871;
    /* single accent — TEZ green */
    --accent:    #3fe08b;
    --accent-dim:#2bb873;
    --accent-ink:#04160d;

    --maxw: 1120px;
    --radius: 16px;
    --radius-sm: 10px;

    /* type scale — 1.25 modular */
    --t-xs: 0.78rem;
    --t-sm: 0.9rem;
    --t-base: 1rem;
    --t-lg: 1.25rem;
    --t-xl: 1.563rem;
    --t-2xl: 2.441rem;
    --t-3xl: 3.815rem;
    --t-4xl: 4.75rem;

    --ease: cubic-bezier(.22,.61,.36,1);
  }

  * { box-sizing: border-box; }
  html { -webkit-text-size-adjust: 100%; }
  body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
    font-size: var(--t-base);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
  }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }
  .mono { font-family: "JetBrains Mono", ui-monospace, monospace; }

  /* smooth in-page scrolling; offset so sections clear the sticky header */
  html { scroll-behavior: smooth; }
  #top, #drops, #about, #manifesto { scroll-margin-top: 90px; }
  @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

  /* account: suppress auth.js's fixed corner chip — we render it in the header */
  .tez-corner { display: none !important; }
  #acctSlot { display: inline-flex; align-items: center; }
  .acct-chip {
    display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
    font-family: inherit; font-size: 14px; font-weight: 600; color: #e8ece9;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14);
    border-radius: 10px; padding: 5px 12px 5px 5px; transition: background .18s ease, border-color .18s ease;
  }
  .acct-chip:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.24); }
  .acct-av {
    width: 26px; height: 26px; border-radius: 50%; flex: none;
    background: #3fe08b; color: #04160b; font-weight: 700; font-size: 13px;
    display: flex; align-items: center; justify-content: center;
  }
  .acct-nm { max-width: 130px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

  /* ambient background */
  .bg-field {
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
      radial-gradient(720px 480px at 78% -8%, rgba(63,224,139,0.10), transparent 60%),
      radial-gradient(560px 420px at 8% 4%, rgba(63,224,139,0.05), transparent 62%),
      linear-gradient(180deg, #0b0e0c, #090b0a 60%);
  }
  .bg-grid {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image:
      linear-gradient(to right, rgba(255,255,255,0.022) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(255,255,255,0.022) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 78%);
    -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 78%);
  }
  /* shooting stars streaking fast across the back */
  .glows { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
  .star {
    position: absolute; left: 0; height: 2px; border-radius: 2px;
    background: linear-gradient(90deg, rgba(63,224,139,0) 0%, rgba(63,224,139,0.55) 76%, rgba(63,224,139,1) 93%, #eafff2 100%);
    filter: drop-shadow(0 0 7px rgba(63,224,139,0.85));
    opacity: 0; transform: rotate(19deg) translateX(-16vw); will-change: transform, opacity;
  }
  .star.s1 { top: 10%; width: 170px; animation: shoot 6s   linear infinite; }
  .star.s2 { top: 26%; width: 210px; animation: shoot 7.6s linear infinite; animation-delay: -2.3s; }
  .star.s3 { top: 42%; width: 140px; animation: shoot 5.2s linear infinite; animation-delay: -3.9s; }
  .star.s4 { top: 60%; width: 190px; animation: shoot 8.4s linear infinite; animation-delay: -1.1s; }
  .star.s5 { top: 76%; width: 160px; animation: shoot 6.7s linear infinite; animation-delay: -5.2s; }
  @keyframes shoot {
    0%   { transform: rotate(19deg) translateX(-16vw); opacity: 0; }
    3%   { opacity: 1; }
    13%  { opacity: 1; }
    17%  { transform: rotate(19deg) translateX(132vw); opacity: 0; }
    100% { transform: rotate(19deg) translateX(132vw); opacity: 0; }
  }

  .container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ---------- header ---------- */
  header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(9,11,10,0.66);
    backdrop-filter: blur(14px) saturate(120%);
    -webkit-backdrop-filter: blur(14px) saturate(120%);
    border-bottom: 1px solid var(--line);
  }
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
  }
  .lockup { display: flex; align-items: center; gap: 12px; }
  .mark {
    width: 36px; height: 36px;
    border-radius: 9px;
    flex: none;
    position: relative;
    background:
      linear-gradient(160deg, #16211a, #0d1410);
    border: 1px solid var(--line-2);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 4px 16px rgba(0,0,0,0.4);
    display: grid;
    place-items: center;
  }
  /* geometric T monogram */
  .mark svg { width: 20px; height: 20px; display: block; }
  .wordmark { display: flex; flex-direction: column; line-height: 1; }
  .wordmark .name {
    font-weight: 700;
    font-size: 1.02rem;
    letter-spacing: 0.2px;
  }
  .wordmark .sub {
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin-top: 3px;
    font-weight: 500;
  }
  .nav-right { display: flex; align-items: center; gap: 28px; }
  .nav-links { display: flex; gap: 28px; }
  .nav-links a {
    font-size: var(--t-sm);
    color: var(--muted);
    font-weight: 500;
    transition: color .2s var(--ease);
  }
  .nav-links a:hover { color: var(--text); }
  .cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 38px;
    padding: 0 16px;
    border-radius: 10px;
    font-size: var(--t-sm);
    font-weight: 600;
    background: var(--accent);
    color: var(--accent-ink);
    border: 1px solid transparent;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
    box-shadow: 0 6px 20px rgba(63,224,139,0.18);
    white-space: nowrap;
  }
  .cta:hover { transform: translateY(-1px); box-shadow: 0 10px 26px rgba(63,224,139,0.28); }
  .cta.ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--line-2);
    box-shadow: none;
  }
  .cta.ghost:hover { border-color: var(--accent-dim); box-shadow: none; }

  /* ---------- hero ---------- */
  .hero { padding: 112px 0 64px; position: relative; }
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "JetBrains Mono", monospace;
    font-size: var(--t-xs);
    letter-spacing: 0.06em;
    color: var(--muted);
    padding: 6px 12px 6px 10px;
    border: 1px solid var(--line-2);
    border-radius: 999px;
    background: rgba(255,255,255,0.015);
    margin-bottom: 28px;
  }
  .eyebrow .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(63,224,139,0.15);
  }
  .eyebrow b { color: var(--text); font-weight: 600; }
  h1.display {
    font-size: var(--t-4xl);
    line-height: 1.02;
    letter-spacing: -0.03em;
    font-weight: 700;
    margin: 0 0 26px;
    max-width: 15ch;
  }
  h1.display .accent {
    background: linear-gradient(100deg, var(--accent), #7cf0b3 60%, var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
  .lede {
    font-size: var(--t-lg);
    color: var(--muted);
    max-width: 52ch;
    margin: 0 0 40px;
    line-height: 1.5;
  }
  .lede b { color: var(--text); font-weight: 500; }
  .hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
  .cta.lg { height: 48px; padding: 0 22px; font-size: var(--t-base); }
  .link-arrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: var(--t-sm); font-weight: 600; color: var(--text);
    height: 48px; padding: 0 8px;
  }
  .link-arrow svg { transition: transform .2s var(--ease); }
  .link-arrow:hover svg { transform: translateX(4px); }

  /* ---------- stat band ---------- */
  .band {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255,255,255,0.012);
  }
  .stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .stat {
    padding: 32px 24px;
    border-left: 1px solid var(--line);
  }
  .stat:first-child { border-left: none; padding-left: 0; }
  .stat .num {
    font-family: "JetBrains Mono", monospace;
    font-size: var(--t-2xl);
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--text);
    line-height: 1;
  }
  .stat .num .g { color: var(--accent); }
  .stat .lbl {
    margin-top: 10px;
    font-size: var(--t-sm);
    color: var(--muted-2);
    letter-spacing: 0.01em;
  }

  /* ---------- section header ---------- */
  section { position: relative; }
  .drops { padding: 88px 0 40px; }
  .sec-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
  }
  .sec-head .kicker {
    font-family: "JetBrains Mono", monospace;
    font-size: var(--t-xs);
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 14px;
  }
  .sec-head h2 {
    font-size: var(--t-2xl);
    letter-spacing: -0.025em;
    font-weight: 700;
    margin: 0;
    line-height: 1.05;
  }
  .sec-head p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: var(--t-base);
    max-width: 40ch;
  }

  /* category label rows */
  .cat-row {
    display: flex; align-items: center; gap: 16px;
    margin: 8px 0 20px;
  }
  .cat-row .cat-name {
    font-family: "JetBrains Mono", monospace;
    font-size: var(--t-xs);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .cat-row .cat-name b { color: var(--text); font-weight: 600; }
  .cat-row .cat-line { flex: 1; height: 1px; background: var(--line); }

  /* ---------- grid ---------- */
  .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 48px;
  }
  .card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
  }
  .card:hover {
    transform: translateY(-4px);
    border-color: var(--line-2);
    box-shadow: 0 20px 44px rgba(0,0,0,0.45);
  }
  .card:hover .cover img { transform: scale(1.04); }
  .card:hover .card-cta { color: var(--accent); }
  .card:hover .card-cta svg { transform: translateX(4px); }

  .cover {
    position: relative;
    aspect-ratio: 2 / 1;
    overflow: hidden;
    background: #0c110e;
    border-bottom: 1px solid var(--line);
  }
  .cover img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
  }
  .cover::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(8,10,9,0.55));
    pointer-events: none;
  }
  .badge {
    position: absolute;
    top: 12px; left: 12px;
    z-index: 2;
    font-family: "JetBrains Mono", monospace;
    font-size: var(--t-xs);
    font-weight: 500;
    color: var(--text);
    background: rgba(8,10,9,0.7);
    border: 1px solid var(--line-2);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 5px 10px;
    border-radius: 8px;
    letter-spacing: 0.02em;
  }

  /* designed tile for #006 (no cover) */
  .tile {
    position: relative;
    aspect-ratio: 2 / 1;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background:
      radial-gradient(120% 140% at 82% 12%, rgba(63,224,139,0.16), transparent 55%),
      linear-gradient(160deg, #10171300, #0c1210),
      #0b100d;
    display: flex;
    align-items: flex-end;
    padding: 22px;
  }
  .tile::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
      linear-gradient(to right, rgba(255,255,255,0.028) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(255,255,255,0.028) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: radial-gradient(80% 80% at 80% 20%, #000, transparent 75%);
    -webkit-mask-image: radial-gradient(80% 80% at 80% 20%, #000, transparent 75%);
  }
  .tile .tile-num {
    position: absolute;
    top: 6px; right: 14px;
    font-family: "JetBrains Mono", monospace;
    font-weight: 600;
    font-size: 5.4rem;
    letter-spacing: -0.04em;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.4px rgba(63,224,139,0.34);
    user-select: none;
  }
  .tile .tile-glyph {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "JetBrains Mono", monospace;
    font-size: var(--t-sm);
    color: var(--accent);
    letter-spacing: 0.04em;
  }
  .tile .tile-glyph svg { width: 18px; height: 18px; }

  .card-body {
    padding: 20px 20px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
  }
  .card-meta .n {
    font-family: "JetBrains Mono", monospace;
    font-size: var(--t-xs);
    color: var(--accent);
    font-weight: 500;
  }
  .card-meta .tag {
    font-size: var(--t-xs);
    color: var(--muted-2);
    border: 1px solid var(--line-2);
    padding: 2px 9px;
    border-radius: 999px;
    letter-spacing: 0.03em;
  }
  .card h3 {
    font-size: var(--t-xl);
    letter-spacing: -0.02em;
    font-weight: 600;
    margin: 0 0 10px;
    line-height: 1.1;
  }
  .card p {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: var(--t-sm);
    line-height: 1.55;
  }
  .card-cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--t-sm);
    font-weight: 600;
    color: var(--text);
    transition: color .2s var(--ease);
  }
  .card-cta svg { transition: transform .2s var(--ease); }

  /* ---------- manifesto ---------- */
  .manifesto { padding: 40px 0 96px; }
  .manifesto-inner {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
      radial-gradient(600px 300px at 90% 0%, rgba(63,224,139,0.07), transparent 60%),
      var(--panel);
    padding: 56px 48px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: center;
  }
  .manifesto-inner .m-kicker {
    font-family: "JetBrains Mono", monospace;
    font-size: var(--t-xs);
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 18px;
  }
  .manifesto-inner blockquote {
    margin: 0;
    font-size: var(--t-xl);
    line-height: 1.35;
    letter-spacing: -0.015em;
    color: var(--text);
    font-weight: 500;
  }
  .manifesto-inner blockquote b {
    background: linear-gradient(100deg, var(--accent), #7cf0b3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 600;
  }
  .m-side { display: flex; flex-direction: column; gap: 18px; }
  .m-point { display: flex; gap: 14px; align-items: flex-start; }
  .m-point .ic {
    flex: none;
    width: 34px; height: 34px;
    border-radius: 9px;
    display: grid; place-items: center;
    background: rgba(63,224,139,0.08);
    border: 1px solid rgba(63,224,139,0.2);
    color: var(--accent);
  }
  .m-point .ic svg { width: 16px; height: 16px; }
  .m-point .txt strong { display: block; font-size: var(--t-sm); font-weight: 600; }
  .m-point .txt span { font-size: var(--t-xs); color: var(--muted-2); }

  /* ---------- footer ---------- */
  footer {
    border-top: 1px solid var(--line);
    background: rgba(255,255,255,0.008);
    padding: 56px 0 40px;
  }
  .foot-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 48px;
  }
  .foot-brand { max-width: 32ch; }
  .foot-brand p {
    margin: 18px 0 0;
    color: var(--muted-2);
    font-size: var(--t-sm);
  }
  .foot-cols { display: flex; gap: 72px; flex-wrap: wrap; }
  .foot-col h4 {
    font-family: "JetBrains Mono", monospace;
    font-size: var(--t-xs);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin: 0 0 16px;
    font-weight: 500;
  }
  .foot-col a {
    display: block;
    font-size: var(--t-sm);
    color: var(--muted);
    padding: 5px 0;
    transition: color .2s var(--ease);
  }
  .foot-col a:hover { color: var(--text); }
  .foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 26px;
    border-top: 1px solid var(--line);
    font-size: var(--t-xs);
    color: var(--muted-2);
    font-family: "JetBrains Mono", monospace;
  }

  /* ---------- mobile nav (hamburger + slide-in menu) ---------- */
  .nav-burger { display: none; }
  .nav-mobile { display: none; }
  @media (max-width: 680px) {
    /* the desktop "Browse drops" CTA lives inside the menu on mobile */
    header .nav-right > a.cta { display: none; }
    .nav-burger {
      display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
      width: 42px; height: 42px; padding: 0 10px; cursor: pointer;
      background: rgba(255,255,255,0.04); border: 1px solid var(--line-2);
      border-radius: 11px; -webkit-tap-highlight-color: transparent;
      transition: background .2s var(--ease), border-color .2s var(--ease);
    }
    .nav-burger:hover { background: rgba(255,255,255,0.07); border-color: var(--accent-dim); }
    .nav-burger span {
      display: block; width: 100%; height: 2px; background: var(--text);
      border-radius: 2px; transition: transform .28s var(--ease), opacity .2s ease;
    }
    body.nav-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    body.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
    body.nav-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .nav-mobile {
      display: block; position: fixed; inset: 0; z-index: 40;
      background: rgba(6,8,7,0.92);
      -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
      padding: 92px 20px 28px;
      opacity: 0; visibility: hidden; transform: translateY(-8px);
      transition: opacity .32s var(--ease), transform .32s var(--ease), visibility .32s;
    }
    body.nav-open { overflow: hidden; }
    body.nav-open .nav-mobile { opacity: 1; visibility: visible; transform: none; }
    .nav-mobile-inner { display: flex; flex-direction: column; }
    .nav-mobile-inner a {
      display: block; padding: 18px 6px; text-decoration: none; color: var(--text);
      font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
      font-size: 1.5rem; font-weight: 600; letter-spacing: -0.01em;
      border-bottom: 1px solid var(--line);
      transition: color .18s var(--ease), padding-left .18s var(--ease);
    }
    .nav-mobile-inner a:hover, .nav-mobile-inner a:active { color: var(--accent); padding-left: 12px; }
    .nav-mobile-cta { color: var(--accent) !important; border-bottom: none !important; margin-top: 8px; }
  }

  /* ---------- responsive ---------- */
  @media (max-width: 900px) {
    :root { --t-4xl: 3.4rem; --t-3xl: 3rem; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .stat { border-left: none; padding-left: 0; padding-right: 24px; }
    .stat:nth-child(2), .stat:nth-child(4) { border-left: 1px solid var(--line); padding-left: 24px; }
    .manifesto-inner { grid-template-columns: 1fr; gap: 36px; padding: 40px 32px; }
  }
  @media (max-width: 680px) {
    :root { --t-4xl: 2.7rem; --t-2xl: 1.9rem; }
    .hero { padding: 72px 0 48px; }
    .nav-links { display: none; }
    /* section headers: the side-by-side CTA gets crushed at phone width */
    .sec-head { flex-direction: column; align-items: flex-start; gap: 20px; }
    .grid { grid-template-columns: 1fr; gap: 16px; }
    .wordmark .sub { display: none; }
    .tile .tile-num { font-size: 4rem; }
    .foot-cols { gap: 40px; }
    .container { padding: 0 18px; }
  }

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

  /* entrance (gated) */
  @media (prefers-reduced-motion: no-preference) {
    .reveal { opacity: 0; transform: translateY(14px); animation: rise .7s var(--ease) forwards; }
    .d1 { animation-delay: .05s; }
    .d2 { animation-delay: .13s; }
    .d3 { animation-delay: .21s; }
    .d4 { animation-delay: .29s; }
    @keyframes rise { to { opacity: 1; transform: none; } }
  }

  /* ==========================================================
     drop-detail page (drop.html) — added section
     ========================================================== */
  #detail { scroll-margin-top: 90px; }

  .hero-drop { padding: 56px 0 64px; }

  .back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "JetBrains Mono", monospace;
    font-size: var(--t-xs);
    letter-spacing: 0.04em;
    color: var(--muted);
    margin-bottom: 40px;
    transition: color .2s var(--ease);
  }
  .back-link:hover { color: var(--text); }
  .back-link svg { transition: transform .2s var(--ease); }
  .back-link:hover svg { transform: translateX(-3px); }

  /* two-column hero: info + media */
  .drop-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }
  .drop-info { min-width: 0; }

  .drop-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .drop-meta .n {
    font-family: "JetBrains Mono", monospace;
    font-size: var(--t-sm);
    color: var(--accent);
    font-weight: 500;
  }
  .drop-meta .tag {
    font-size: var(--t-xs);
    color: var(--muted-2);
    border: 1px solid var(--line-2);
    padding: 3px 11px;
    border-radius: 999px;
    letter-spacing: 0.03em;
  }
  .drop-meta .kind {
    font-size: var(--t-xs);
    color: var(--muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  h1.drop-title {
    font-size: var(--t-3xl);
    line-height: 1.03;
    letter-spacing: -0.03em;
    margin: 0 0 24px;
    max-width: 14ch;
  }
  .drop-info .lede {
    font-size: var(--t-lg);
    color: var(--muted);
    line-height: 1.5;
    max-width: 46ch;
    margin: 0 0 32px;
  }
  .drop-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 22px;
  }
  .drop-date {
    font-size: var(--t-xs);
    color: var(--muted-2);
    letter-spacing: 0.04em;
    margin: 0;
  }

  /* media column — framed cover / tile, larger than the card thumbs */
  .drop-media {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--panel);
    box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  }
  .drop-media .cover,
  .drop-media .tile {
    border-bottom: none;
    aspect-ratio: 16 / 10;
  }
  .drop-media .tile .tile-num { font-size: 7rem; }

  .more-drops { padding: 24px 0 96px; border-top: 1px solid var(--line); }

  @media (max-width: 900px) {
    .drop-grid { grid-template-columns: 1fr; gap: 32px; }
    .drop-media { order: -1; }
    h1.drop-title { max-width: none; }
  }
  @media (max-width: 680px) {
    .hero-drop { padding: 40px 0 48px; }
    .back-link { margin-bottom: 28px; }
    .drop-media .tile .tile-num { font-size: 4.6rem; }
  }

/* keep card descriptions tidy when built from full drops.js text */
.card-body p{display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
