/* ════════════════════════════════════════════════════════════════════════════
   LATTICE — alumni.css
   Stylesheet for the Alumni page.
   Built on the Liquid Glass design system. See assets/css/tokens.css.
   ════════════════════════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────────────────────────────
   TOKENS — Color, type, layout, and Liquid Glass tokens
   ────────────────────────────────────────────────────────────────── */
:root {
    --bg: #0a0908; --bg-soft: #12100e; --bg-card: #161310;
    --ink: #f5f1eb; --ink-soft: #a8a29a; --ink-mute: #9b9489;
    --line: rgba(245, 241, 235, 0.08);
    --line-strong: rgba(245, 241, 235, 0.18);
    --accent: #c4f542; --accent-glow: rgba(196, 245, 66, 0.35);
    --warn: #ff7849;
    --serif: 'Fraunces', 'Times New Roman', serif;
    --sans: 'Geist', ui-sans-serif, system-ui, -apple-system, sans-serif;
    --mono: 'JetBrains Mono', ui-monospace, monospace;
    --maxw: 1320px; --gutter: clamp(1.25rem, 3vw, 2.5rem);

    /* ====== Liquid Glass tokens ====== */
    --lg-radius-sm: 10px;
    --lg-radius: 18px;
    --lg-radius-lg: 26px;
    --lg-radius-pill: 999px;
    --lg-bg: rgba(20, 17, 15, 0.42);
    --lg-bg-light: rgba(245, 241, 235, 0.05);
    --lg-bg-strong: rgba(20, 17, 15, 0.62);
    --lg-border: rgba(245, 241, 235, 0.14);
    --lg-border-strong: rgba(245, 241, 235, 0.24);
    --lg-blur: blur(20px) saturate(180%);
    --lg-blur-lg: blur(28px) saturate(200%);
    --lg-shadow: inset 0 1px 0 rgba(245, 241, 235, 0.10), inset 0 -1px 0 rgba(0, 0, 0, 0.20), 0 8px 32px rgba(0, 0, 0, 0.40);
    --lg-shadow-lg: inset 0 1px 0 rgba(245, 241, 235, 0.12), inset 0 -1px 0 rgba(0, 0, 0, 0.25), 0 18px 50px rgba(0, 0, 0, 0.50);
    --lg-accent-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.15), 0 6px 22px rgba(196, 245, 66, 0.28);
    --lg-accent-shadow-hover: inset 0 1px 0 rgba(255, 255, 255, 0.30), inset 0 -1px 0 rgba(0, 0, 0, 0.15), 0 14px 44px rgba(196, 245, 66, 0.45);
  }

/* ──────────────────────────────────────────────────────────────────
   RESET — Universal box-sizing / margin / padding
   ────────────────────────────────────────────────────────────────── */
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg); color: var(--ink);
    font-family: var(--sans); line-height: 1.55;
    -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden; cursor: none;
  }
  body::before {
    content: ""; position: fixed; inset: 0;
    pointer-events: none; z-index: 100;
    opacity: 0.06; mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.55 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  }

/* ──────────────────────────────────────────────────────────────────
   SELECTION — Lime selection over warm-black
   ────────────────────────────────────────────────────────────────── */
  ::selection { background: var(--accent); color: var(--bg); }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; color: inherit; background: none; border: none; cursor: none; }
  .cursor-dot, .cursor-ring {
    position: fixed; pointer-events: none; z-index: 9999;
    top: 0; left: 0; transform: translate(-50%, -50%);
    transition: opacity 0.2s;
  }
  .cursor-dot { width: 4px; height: 4px; background: var(--accent); border-radius: 50%; }
  .cursor-ring {
    width: 32px; height: 32px;
    border: 1px solid rgba(245, 241, 235, 0.4);
    border-radius: 50%;
    transition: width 0.25s, height 0.25s, border-color 0.25s, background 0.25s;
  }
  .cursor-ring.hover {
    width: 56px; height: 56px;
    border-color: var(--accent);
    background: rgba(196, 245, 66, 0.06);
  }

  /* NAV — floating liquid glass pill */

/* ──────────────────────────────────────────────────────────────────
   NAVIGATION — Floating Liquid Glass pill nav
   ────────────────────────────────────────────────────────────────── */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    display: flex; justify-content: center;
    padding: 1rem var(--gutter);
    pointer-events: none;
  }
  .nav-pill {
    pointer-events: auto;
    display: flex; align-items: center; justify-content: space-between;
    gap: 1.5rem;
    width: 100%; max-width: 1100px;
    padding: 0.55rem 0.7rem 0.55rem 1.4rem;
    background: var(--lg-bg);
    backdrop-filter: var(--lg-blur);
    -webkit-backdrop-filter: var(--lg-blur);
    border: 1px solid var(--lg-border);
    border-radius: var(--lg-radius-pill);
    box-shadow: var(--lg-shadow);
    transition: padding 0.35s cubic-bezier(.2,.7,.2,1), background 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.4s;
  }
  .nav.scrolled .nav-pill {
    padding-top: 0.45rem; padding-bottom: 0.45rem;
    background: var(--lg-bg-strong);
    border-color: var(--lg-border-strong);
    box-shadow: var(--lg-shadow-lg);
    transform: translateY(-2px);
  }
  .nav-brand {
    display: flex; align-items: center; gap: 0.6rem;
    font-weight: 500; letter-spacing: 0.18em;
    font-size: 0.82rem; text-transform: uppercase;
  }
  .nav-mark { width: 22px; height: 22px; position: relative; }
  .nav-mark::before, .nav-mark::after {
    content: ""; position: absolute; inset: 0;
    border: 1.5px solid var(--ink);
    transition: transform 0.7s cubic-bezier(.2,.7,.2,1);
  }
  .nav-mark::after { transform: rotate(45deg) scale(0.7); border-color: var(--accent); }
  .nav-brand:hover .nav-mark::before { transform: rotate(45deg); }
  .nav-brand:hover .nav-mark::after { transform: rotate(0) scale(1); }
  .nav-links { display: flex; gap: 2.5rem; font-size: 0.85rem; color: var(--ink-soft); }
  .nav-link { position: relative; padding: 0.4rem 0; transition: color 0.3s; }
  .nav-link.active { color: var(--ink); }
  .nav-link::after {
    content: ""; position: absolute; bottom: 0; left: 0;
    height: 1px; width: 100%; background: var(--accent);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.45s cubic-bezier(.2,.7,.2,1);
  }
  .nav-link.active::after, .nav-link:hover::after { transform: scaleX(1); }
  .nav-link:hover { color: var(--ink); }
  .nav-cta {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 0.6rem 1.05rem;
    background: var(--accent); color: var(--bg);
    font-weight: 500; font-size: 0.82rem;
    letter-spacing: 0.04em;
    border: 1px solid rgba(196, 245, 66, 0.5);
    border-radius: 999px;
    box-shadow: var(--lg-accent-shadow);
    transition: transform 0.3s, box-shadow 0.4s;
  }
  .nav-cta:hover { transform: translateY(-1px); box-shadow: var(--lg-accent-shadow-hover); }
  .nav-cta-arrow { display: inline-block; transition: transform 0.4s; }
  .nav-cta:hover .nav-cta-arrow { transform: translateX(4px); }
  @media (max-width: 720px) { .nav-links { display: none; } }
/* ──────────────────────────────────────────────────────────────────
   HERO — 3D canvas slot, veil, headline, eyebrow, sub
   ────────────────────────────────────────────────────────────────── */
  .hero {
    position: relative;
    min-height: 95vh;
    padding: clamp(7rem, 12vh, 10rem) var(--gutter) 5rem;
    display: flex; flex-direction: column; justify-content: center;
    overflow: hidden;
  }
  #alumni-canvas {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%; z-index: 0;
  }
  .hero-veil {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background:
      radial-gradient(ellipse at 25% 50%, rgba(10,9,8,0.55) 0%, rgba(10,9,8,0) 55%),
      linear-gradient(180deg, rgba(10,9,8,0) 0%, rgba(10,9,8,0.4) 100%);
  }
  .hero-inner {
    position: relative; z-index: 2;
    max-width: var(--maxw); margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr auto;
    gap: 3rem; align-items: end;
  }
  @media (max-width: 920px) { .hero-inner { grid-template-columns: 1fr; } }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.75rem;
    padding: 0.55rem 0.95rem 0.55rem 0.85rem;
    background: var(--lg-bg);
    backdrop-filter: var(--lg-blur);
    -webkit-backdrop-filter: var(--lg-blur);
    border: 1px solid var(--lg-border);
    border-radius: var(--lg-radius-pill);
    box-shadow: var(--lg-shadow);
    font-family: var(--mono); font-size: 0.7rem;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--ink-soft); margin-bottom: 1.8rem;
    width: fit-content;
    opacity: 0; animation: fadeUp 0.9s 0.2s cubic-bezier(.2,.7,.2,1) forwards;
  }
  .hero-eyebrow .dot {
    width: 6px; height: 6px;
    background: var(--accent); border-radius: 50%;
    box-shadow: 0 0 14px var(--accent-glow);
    animation: pulse 2.4s ease-in-out infinite;
  }
  .hero-headline {
    font-family: var(--serif); font-weight: 300;
    font-size: clamp(2.8rem, 8vw, 7.6rem);
    line-height: 0.95; letter-spacing: -0.03em;
    max-width: 13ch;
  }
  .hero-headline .word {
    display: inline-block; opacity: 0; transform: translateY(40px);
    animation: fadeUp 1s cubic-bezier(.2,.7,.2,1) forwards;
  }
  .hero-headline .word:nth-child(1) { animation-delay: 0.30s; }
  .hero-headline .word:nth-child(2) { animation-delay: 0.40s; }
  .hero-headline .word:nth-child(3) { animation-delay: 0.50s; }
  .hero-headline .word:nth-child(4) { animation-delay: 0.60s; }
  .hero-headline .word:nth-child(5) { animation-delay: 0.70s; }
  .hero-headline em { font-style: italic; color: var(--accent); }
  .hero-sub {
    margin-top: 2rem; max-width: 50ch;
    color: var(--ink-soft); font-size: clamp(1rem, 1.2vw, 1.1rem);
    font-weight: 300;
    opacity: 0; animation: fadeUp 1s 0.95s cubic-bezier(.2,.7,.2,1) forwards;
  }

/* ──────────────────────────────────────────────────────────────────
   HERO STATS — Glass stats tile with serif numerals
   ────────────────────────────────────────────────────────────────── */
  .hero-stats {
    display: grid; grid-template-columns: repeat(2, auto);
    gap: 0.6rem;
    padding: 1.4rem;
    background: var(--lg-bg);
    backdrop-filter: var(--lg-blur);
    -webkit-backdrop-filter: var(--lg-blur);
    border: 1px solid var(--lg-border);
    border-radius: var(--lg-radius-lg);
    box-shadow: var(--lg-shadow);
    opacity: 0; animation: fadeUp 1.2s 1.2s cubic-bezier(.2,.7,.2,1) forwards;
  }
  .hero-stats > div { padding: 0.6rem 1rem; }
  .hero-stats .num {
    font-family: var(--serif); font-weight: 300;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1; letter-spacing: -0.02em;
  }
  .hero-stats .num em { font-style: italic; color: var(--accent); }
  .hero-stats .lab {
    font-family: var(--mono); font-size: 0.66rem;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--ink-mute); margin-top: 0.4rem;
  }

/* ──────────────────────────────────────────────────────────────────
   HERO META — Mono editorial signature line at the bottom
   ────────────────────────────────────────────────────────────────── */
  .hero-meta {
    position: absolute; left: var(--gutter); right: var(--gutter); bottom: 1.6rem;
    z-index: 2; display: flex; justify-content: space-between;
    font-family: var(--mono); font-size: 0.7rem;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--ink-mute);
    opacity: 0; animation: fadeUp 1.2s 1.5s cubic-bezier(.2,.7,.2,1) forwards;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* SECTION HEAD */

/* ──────────────────────────────────────────────────────────────────
   SECTION HEAD — Eyebrow + title + aside pattern
   ────────────────────────────────────────────────────────────────── */
  .section-head {
    max-width: var(--maxw); margin: 0 auto;
    padding: clamp(4rem, 8vh, 6rem) var(--gutter) 3.5rem;
    display: flex; align-items: baseline; justify-content: space-between;
    flex-wrap: wrap; gap: 2rem;
    border-bottom: 1px solid var(--line);
  }
  .section-label {
    font-family: var(--mono); font-size: 0.72rem;
    letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-mute);
  }
  .section-label::before { content: "§ "; color: var(--accent); }
  .section-title {
    font-family: var(--serif); font-weight: 300;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    letter-spacing: -0.02em; line-height: 1;
    max-width: 18ch; margin-top: 1rem;
  }
  .section-title em { font-style: italic; color: var(--accent); }
  .section-aside { max-width: 42ch; color: var(--ink-soft); font-size: 0.95rem; }

  /* FEATURED ALUMNI GRID — liquid glass cards */
  .featured-grid {
    max-width: var(--maxw); margin: 0 auto;
    padding: 3rem var(--gutter) 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }
  @media (max-width: 920px) { .featured-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) { .featured-grid { grid-template-columns: 1fr; } }
  .alum {
    background: var(--lg-bg-light);
    backdrop-filter: var(--lg-blur);
    -webkit-backdrop-filter: var(--lg-blur);
    border: 1px solid var(--lg-border);
    border-radius: var(--lg-radius-lg);
    box-shadow: var(--lg-shadow);
    padding: clamp(1.6rem, 2.5vw, 2.2rem);
    position: relative; overflow: hidden;
    transition: background 0.4s, transform 0.5s cubic-bezier(.2,.7,.2,1), border-color 0.4s, box-shadow 0.5s;
    cursor: none;
  }
  .alum:hover {
    transform: translateY(-4px);
    border-color: rgba(196, 245, 66, 0.35);
    background: rgba(196, 245, 66, 0.04);
    box-shadow: var(--lg-shadow-lg);
  }
  .alum-portrait { border-radius: var(--lg-radius); }
  .alum::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(196, 245, 66, 0.05), transparent 55%);
    opacity: 0; transition: opacity 0.5s; pointer-events: none;
  }
  .alum:hover::before { opacity: 1; }
  .alum-corner {
    position: absolute;
    width: 12px; height: 12px;
    border: 1px solid var(--accent);
    opacity: 0; transition: opacity 0.5s, transform 0.6s cubic-bezier(.2,.7,.2,1);
    pointer-events: none;
  }
  .alum-corner.tl { top: 14px; left: 14px; border-right: none; border-bottom: none; }
  .alum-corner.br { bottom: 14px; right: 14px; border-left: none; border-top: none; }
  .alum:hover .alum-corner { opacity: 1; }
  .alum:hover .alum-corner.tl { transform: translate(-3px, -3px); }
  .alum:hover .alum-corner.br { transform: translate(3px, 3px); }

  .alum-portrait {
    width: 100%; aspect-ratio: 1 / 1;
    background: var(--bg-soft);
    margin-bottom: 1.4rem;
    position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .alum-portrait::before {
    content: "";
    position: absolute; inset: 0; z-index: 0;
    background:
      radial-gradient(circle at 30% 30%, rgba(196, 245, 66, 0.16), transparent 50%),
      radial-gradient(circle at 70% 70%, rgba(255, 120, 73, 0.10), transparent 50%),
      linear-gradient(135deg, #1a1714 0%, #0c0a09 100%);
  }
  .alum-portrait img {
    position: absolute; inset: 0; z-index: 2;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center 22%;
    filter: grayscale(0.92) contrast(1.05) brightness(0.78) sepia(0.18);
    transition: filter 0.9s cubic-bezier(.2,.7,.2,1), transform 1.4s cubic-bezier(.2,.7,.2,1);
  }
  .alum:hover .alum-portrait img {
    filter: grayscale(0.25) contrast(1.05) brightness(0.95) sepia(0);
    transform: scale(1.04);
  }
  .alum-portrait::after {
    content: "";
    position: absolute; inset: 0; z-index: 3;
    pointer-events: none;
    background-image:
      linear-gradient(0deg, rgba(245, 241, 235, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(245, 241, 235, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    mix-blend-mode: overlay;
  }
  .alum-initials {
    position: absolute; inset: 0; z-index: 1;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-style: italic; font-weight: 300;
    font-size: clamp(2.4rem, 5vw, 4rem);
    color: var(--ink); letter-spacing: -0.04em;
  }
  .alum-cohort-tag {
    position: absolute;
    top: 0.8rem; left: 0.8rem; z-index: 4;
    font-family: var(--mono); font-size: 0.6rem;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--accent);
    padding: 0.35rem 0.7rem;
    background: rgba(10, 9, 8, 0.55);
    backdrop-filter: var(--lg-blur);
    -webkit-backdrop-filter: var(--lg-blur);
    border: 1px solid rgba(196, 245, 66, 0.35);
    border-radius: var(--lg-radius-pill);
    box-shadow:
      inset 0 1px 0 rgba(196, 245, 66, 0.18),
      0 4px 18px rgba(0, 0, 0, 0.4);
  }

  .alum-meta {
    display: flex; justify-content: space-between; align-items: baseline;
    font-family: var(--mono); font-size: 0.7rem;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--ink-mute); margin-bottom: 0.7rem;
  }
  .alum-name {
    font-family: var(--serif); font-weight: 400;
    font-size: 1.45rem; line-height: 1.15;
    letter-spacing: -0.01em; margin-bottom: 0.3rem;
    color: var(--ink); transition: color 0.4s;
  }
  .alum-name em { font-style: italic; color: var(--ink); transition: color 0.4s; }
  .alum:hover .alum-name em { color: var(--accent); }
  .alum-role {
    font-size: 0.85rem; color: var(--ink-soft);
    margin-bottom: 1rem;
  }
  .alum-quote {
    font-family: var(--serif); font-style: italic; font-weight: 300;
    font-size: 0.95rem; line-height: 1.4;
    color: var(--ink-soft);
    padding-top: 1rem; border-top: 1px solid var(--line);
    position: relative;
  }
  .alum-quote::before {
    content: "“";
    color: var(--accent);
    font-size: 1.6rem;
    line-height: 0;
    vertical-align: -0.4em;
    margin-right: 0.2rem;
    font-family: var(--serif);
  }
  .alum-quote em { font-style: normal; color: var(--ink); }

  /* DIRECTORY */
  .dir-wrap {
    max-width: var(--maxw); margin: 0 auto;
    padding: clamp(4rem, 7vh, 5rem) var(--gutter) 2rem;
  }
  .dir {
    border-top: 1px solid var(--line);
  }
  .dir-row {
    display: grid;
    grid-template-columns: 80px 1.5fr 1fr 1fr 60px;
    gap: 1.5rem;
    padding: 1.4rem 0;
    border-bottom: 1px solid var(--line);
    align-items: baseline;
    position: relative;
    transition: padding 0.4s cubic-bezier(.2,.7,.2,1);
    cursor: none;
  }
  .dir-row::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(196, 245, 66, 0.04) 50%, transparent);
    opacity: 0; transition: opacity 0.5s; pointer-events: none;
  }
  .dir-row:hover::before { opacity: 1; }
  .dir-row:hover { padding-left: 0.8rem; padding-right: 0.8rem; }

  .dir-num {
    font-family: var(--mono); font-size: 0.74rem;
    letter-spacing: 0.06em; color: var(--ink-mute);
  }
  .dir-name {
    font-family: var(--serif); font-weight: 400;
    font-size: 1.15rem;
    color: var(--ink); transition: color 0.4s;
  }
  .dir-row:hover .dir-name { color: var(--accent); }
  .dir-role {
    font-size: 0.88rem; color: var(--ink-soft);
  }
  .dir-cohort {
    font-family: var(--mono); font-size: 0.7rem;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--ink-mute);
  }
  .dir-cohort em { color: var(--accent); font-style: normal; }
  .dir-arrow {
    justify-self: end;
    color: var(--ink-mute);
    transition: color 0.4s, transform 0.4s;
  }
  .dir-row:hover .dir-arrow { color: var(--accent); transform: translate(6px, -6px); }
  @media (max-width: 720px) {
    .dir-row {
      grid-template-columns: 60px 1fr 40px;
      grid-template-rows: auto auto;
    }
    .dir-num { grid-row: 1; }
    .dir-name { grid-column: 2; grid-row: 1; }
    .dir-role { grid-column: 2; grid-row: 2; }
    .dir-cohort { grid-column: 2 / 3; grid-row: 3; }
    .dir-arrow { grid-column: 3; grid-row: 1 / -1; align-self: center; }
  }

  /* COMPANIES */
  .companies {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: clamp(3rem, 7vh, 5rem) 0;
  }
  .companies-head {
    max-width: var(--maxw); margin: 0 auto;
    padding: 0 var(--gutter) 2.5rem;
  }
  .companies-grid {
    max-width: var(--maxw); margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
  }
  @media (max-width: 820px) { .companies-grid { grid-template-columns: repeat(2, 1fr); } }
  .company {
    background: var(--lg-bg-light);
    backdrop-filter: var(--lg-blur);
    -webkit-backdrop-filter: var(--lg-blur);
    border: 1px solid var(--lg-border);
    border-radius: var(--lg-radius);
    box-shadow: var(--lg-shadow);
    padding: 1.6rem 1.3rem;
    display: flex; flex-direction: column;
    gap: 0.4rem;
    transition: background 0.4s, transform 0.4s, border-color 0.4s;
    position: relative; overflow: hidden;
  }
  .company:hover {
    transform: translateY(-2px);
    border-color: rgba(196, 245, 66, 0.35);
    background: rgba(196, 245, 66, 0.04);
  }
  .company::after {
    content: "";
    position: absolute; bottom: 0; left: 0;
    height: 2px; width: 0;
    background: var(--accent);
    transition: width 0.5s cubic-bezier(.2,.7,.2,1);
  }
  .company:hover::after { width: 100%; }
  .company-name {
    font-family: var(--serif); font-weight: 400;
    font-size: 1.2rem; letter-spacing: -0.01em;
    color: var(--ink); transition: color 0.4s;
  }
  .company:hover .company-name { color: var(--accent); }
  .company-meta {
    font-family: var(--mono); font-size: 0.68rem;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--ink-mute);
  }
  .company-meta em { color: var(--accent); font-style: normal; }

  /* PULL QUOTE */
  .pull-quote {
    max-width: 1080px; margin: 0 auto;
    padding: clamp(5rem, 10vh, 8rem) var(--gutter);
  }
  .pull-mark {
    font-family: var(--serif); font-style: italic; font-weight: 300;
    font-size: clamp(6rem, 13vw, 12rem);
    line-height: 0.6; color: var(--accent);
    margin-bottom: 0.5rem;
  }
  .pull-text {
    font-family: var(--serif); font-weight: 300; font-style: italic;
    font-size: clamp(1.4rem, 2.6vw, 2.4rem);
    line-height: 1.25; letter-spacing: -0.01em;
    color: var(--ink); max-width: 22ch;
  }
  .pull-text em { font-style: normal; color: var(--accent); }
  .pull-attr {
    margin-top: 2.5rem;
    display: flex; align-items: center; gap: 1rem;
    font-family: var(--mono); font-size: 0.78rem;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--ink-soft);
  }
  .pull-attr .dash {
    width: 28px; height: 1px; background: var(--accent);
  }
/* ──────────────────────────────────────────────────────────────────
   CTA — Bottom call-to-action section
   ────────────────────────────────────────────────────────────────── */
  .cta {
    border-top: 1px solid var(--line);
    padding: clamp(4rem, 10vh, 7rem) var(--gutter);
    background: var(--bg);
  }
  .cta-inner {
    max-width: var(--maxw); margin: 0 auto;
    display: grid; grid-template-columns: 1.4fr 1fr;
    gap: 3rem; align-items: end;
  }
  @media (max-width: 820px) { .cta-inner { grid-template-columns: 1fr; } }
  .cta-headline {
    font-family: var(--serif); font-weight: 300;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1; letter-spacing: -0.02em;
  }
  .cta-headline em { font-style: italic; color: var(--accent); }
  .cta-aside { color: var(--ink-soft); max-width: 36ch; font-size: 0.95rem; }

/* ──────────────────────────────────────────────────────────────────
   BUTTONS — Lime pill primary CTA + variants
   ────────────────────────────────────────────────────────────────── */
  .btn-primary {
    display: inline-flex; align-items: center; gap: 0.7rem;
    padding: 1.05rem 1.7rem;
    background: var(--accent); color: var(--bg);
    font-weight: 500; font-size: 0.9rem;
    letter-spacing: 0.02em;
    border: 1px solid rgba(196, 245, 66, 0.5);
    border-radius: var(--lg-radius-pill);
    box-shadow: var(--lg-accent-shadow);
    margin-top: 1.6rem;
    transition: transform 0.4s, box-shadow 0.4s;
  }
  .btn-primary:hover {
    box-shadow: var(--lg-accent-shadow-hover);
    transform: translateY(-2px);
  }
  .btn-primary svg { transition: transform 0.4s; }
  .btn-primary:hover svg { transform: translate(4px, -4px); }
/* ──────────────────────────────────────────────────────────────────
   FOOTER — Mono uppercase footer strip
   ────────────────────────────────────────────────────────────────── */
  footer {
    border-top: 1px solid var(--line);
    padding: 2.5rem var(--gutter) 1.6rem;
    font-family: var(--mono); font-size: 0.7rem;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--ink-mute);
  }
  .foot-inner {
    max-width: var(--maxw); margin: 0 auto;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  }

  @media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    body { cursor: auto; }
    .cursor-dot, .cursor-ring { display: none; }
    a, button, .alum, .dir-row { cursor: pointer; }
  }
