    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg: #090908;
      --bg2: #0f0f0d;
      --bg3: #141412;
      --fg: #edece4;
      --fg-dim: #9a988e;
      --fg-muted: #4d4d47;
      --accent: #e84c1e;
      --accent-dim: #a83716;
      --highlight: #d4f012;
      --mono: 'Space Mono', monospace;
      --sans: 'Space Grotesk', sans-serif;
      --border: rgba(237,236,228,0.08);
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--fg);
      font-family: var(--sans);
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    body.has-custom-cursor { cursor: none; }
    body:not(.has-custom-cursor) .cursor,
    body:not(.has-custom-cursor) .cursor-ring { display: none; }

    main { display: block; }
    section { scroll-margin-top: 88px; }

    .skip-link {
      position: absolute;
      top: -40px;
      left: 16px;
      background: #d4f012;
      color: #080808;
      padding: 8px 16px;
      font-family: var(--mono);
      font-size: 12px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      text-decoration: none;
      z-index: 200;
      transition: top 0.2s;
    }
    .skip-link:focus { top: 16px; outline: 2px solid #080808; }

    a:focus-visible,
    button:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 3px;
    }
    .cta-btn:focus-visible { outline-color: #d4f012; }
    #brands a:focus-visible,
    #brands button:focus-visible,
    #contact a:focus-visible,
    #contact button:focus-visible { outline-color: #080808; }

    /* ── CUSTOM CURSOR ── */
    .cursor {
      width: 10px; height: 10px;
      background: #d4f012;
      border-radius: 50%;
      position: fixed;
      top: 0; left: 0;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: transform 0.12s, background 0.2s, width 0.2s, height 0.2s;
      mix-blend-mode: difference;
    }
    .cursor-ring {
      width: 36px; height: 36px;
      border: 1px solid rgba(212,240,18,0.45);
      border-radius: 50%;
      position: fixed;
      top: 0; left: 0;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition: border-color 0.2s, width 0.3s, height 0.3s;
    }
    body.cursor-hover .cursor { width: 16px; height: 16px; background: #d4f012; }
    body.cursor-hover .cursor-ring { width: 56px; height: 56px; border-color: rgba(212,240,18,0.7); }

    /* ── SCROLL REVEAL ── */
    .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 28px 48px;
      mix-blend-mode: normal;
    }

    nav::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(9,9,8,0.9) 0%, transparent 100%);
      pointer-events: none;
    }

    .nav-logo {
      font-family: var(--mono);
      font-size: 13px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--fg);
      text-decoration: none;
      position: relative;
    }

    .nav-links {
      display: flex;
      gap: 40px;
      list-style: none;
      position: relative;
    }

    .nav-links a {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--fg-dim);
      text-decoration: none;
      transition: color 0.3s;
    }

    .nav-links a:hover { color: var(--fg); }

    .nav-toggle {
      display: none;
      width: 36px;
      height: 36px;
      background: none;
      border: none;
      padding: 0;
      position: relative;
      z-index: 101;
    }

    .nav-toggle span {
      display: block;
      width: 22px;
      height: 1px;
      margin: 5px auto;
      background: var(--fg);
      transition: transform 0.3s, opacity 0.2s;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(6px) rotate(45deg);
    }
    .nav-toggle[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
    }
    .nav-toggle[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-6px) rotate(-45deg);
    }

    /* ── HERO ── */
    #hero {
      position: relative;
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 72px 48px;
      overflow: hidden;
    }

    .hero-video-placeholder {
      position: absolute;
      inset: 0;
      background: var(--bg);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 16px;
    }

    .hero-video-placeholder::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        repeating-linear-gradient(
          0deg,
          transparent,
          transparent 3px,
          rgba(237,236,228,0.012) 3px,
          rgba(237,236,228,0.012) 4px
        );
      pointer-events: none;
    }

    .video-label {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: 0.3em;
      color: var(--fg-muted);
      text-transform: uppercase;
    }

    .play-ring {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      border: 1px solid var(--fg-muted);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .play-ring svg {
      width: 20px;
      height: 20px;
      fill: var(--fg-muted);
      margin-left: 4px;
    }

    /* Hero vignette overlay */
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(9,9,8,1) 0%,
        rgba(9,9,8,0.4) 40%,
        rgba(9,9,8,0.1) 100%
      );
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .hero-year {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.3em;
      color: var(--fg-dim);
      margin-bottom: 28px;
    }

    .hero-title {
      font-family: var(--mono);
      font-size: clamp(32px, 5vw, 68px);
      font-weight: 400;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      line-height: 1.15;
      max-width: 900px;
      text-wrap: pretty;
    }

    .hero-title span {
      color: var(--accent);
    }

    .hero-sub {
      margin-top: 28px;
      font-family: var(--sans);
      font-size: clamp(14px, 1.4vw, 17px);
      font-weight: 300;
      color: var(--fg-dim);
      max-width: 520px;
      line-height: 1.7;
    }

    .hero-arrow {
      position: absolute;
      bottom: 72px;
      right: 48px;
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.25em;
      color: var(--fg-dim);
      display: flex;
      align-items: center;
      gap: 12px;
      z-index: 2;
    }

    .hero-arrow .arr { font-size: 20px; color: var(--accent); }

    /* ── SECTION COMMON ── */
    section {
      padding: 120px 48px;
      border-top: 1px solid var(--border);
    }

    .section-label {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 56px;
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .section-label::after {
      content: '';
      display: block;
      height: 1px;
      width: 48px;
      background: var(--fg);
    }

    .section-heading {
      font-family: var(--mono);
      font-size: clamp(22px, 3.5vw, 44px);
      font-weight: 400;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      line-height: 1.2;
    }

    /* ── PHILOSOPHY ── */
    #philosophy {
      background: var(--bg2);
    }

    .philosophy-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
      margin-top: 64px;
    }

    .philosophy-text p {
      font-size: 18px;
      font-weight: 300;
      color: var(--fg-dim);
      line-height: 1.8;
      margin-bottom: 20px;
      text-wrap: pretty;
    }

    .philosophy-text p strong {
      color: var(--fg);
      font-weight: 500;
    }

    .services-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .service-item {
      padding: 28px 0;
      display: grid;
      grid-template-columns: 180px 1fr;
      gap: 24px;
      position: relative;
      overflow: hidden;
      transition: padding-left 0.3s ease;
    }

    .service-item::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 1px;
      background: #d4f012;
      transition: width 0.45s ease;
    }

    .service-item:hover::after { width: 100%; }
    .service-item:hover .service-name { color: #d4f012; }

    .service-item:last-child {}

    .service-name {
      font-family: var(--mono);
      font-size: 12px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--fg);
      padding-top: 2px;
    }

    .service-desc {
      font-size: 14px;
      color: var(--fg-dim);
      line-height: 1.7;
    }

    /* ── APPROACH ── */
    #approach {
      background: var(--bg);
    }

    .approach-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      margin-top: 72px;
    }

    .step {
      padding: 48px 36px;
      position: relative;
      overflow: hidden;
      transition: background 0.35s;
    }

    .step::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 2px;
      background: #d4f012;
      transition: width 0.45s ease;
    }

    .step:hover { background: rgba(212,240,18,0.03); }
    .step:hover::after { width: 100%; }
    .step:hover .step-name { color: #d4f012; }

    .step:last-child { border-right: none; }

    .step-num {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: 0.3em;
      color: var(--accent);
      margin-bottom: 32px;
    }

    .step-name {
      font-family: var(--mono);
      font-size: 14px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--fg);
      margin-bottom: 16px;
    }

    .step-arrow {
      position: absolute;
      top: 48px;
      right: -14px;
      color: var(--accent);
      font-size: 18px;
      z-index: 1;
    }

    .step:last-child .step-arrow { display: none; }

    .approach-footnote {
      margin-top: 48px;
      font-size: 14px;
      font-weight: 300;
      color: var(--fg-dim);
      max-width: 640px;
      line-height: 1.8;
      padding-left: 1px;
    }

    /* ── WHY ── */
    #why {
      background: var(--bg3);
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0;
      margin-top: 72px;
    }

    .why-card {
      background: var(--bg3);
      padding: 52px 48px;
      position: relative;
      overflow: hidden;
      transition: background 0.35s;
    }

    .why-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 2px;
      background: #d4f012;
      transition: width 0.45s ease;
    }

    .why-card:hover { background: rgba(212,240,18,0.03); }
    .why-card:hover::after { width: 100%; }
    .why-card:hover .why-title { color: #d4f012; }

    .why-card:nth-child(2n) { border-right: none; }
    .why-card:nth-child(3), .why-card:nth-child(4) { border-bottom: none; }

    .why-num {
      font-family: var(--mono);
      font-size: 42px;
      font-weight: 700;
      color: var(--fg-muted);
      line-height: 1;
      margin-bottom: 24px;
    }

    .why-title {
      font-family: var(--mono);
      font-size: 12px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--fg);
      margin-bottom: 16px;
    }

    .why-desc {
      font-size: 14px;
      color: var(--fg-dim);
      line-height: 1.75;
      font-weight: 300;
    }

    /* ── BRANDS ── */
    #brands {
      background: #e84c1e;
      padding: 80px 48px;
      border-top: none;
    }

    #brands .section-label {
      color: rgba(8,8,8,0.55);
      margin-bottom: 40px;
    }

    #brands .section-label::after {
      background: rgba(8,8,8,0.2);
    }

    #brands .section-heading {
      color: #080808;
      margin-bottom: 48px;
    }

    .brands-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .brand-tag {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(8,8,8,0.7);
      background: rgba(8,8,8,0.1);
      padding: 10px 22px;
      border: 1px solid rgba(8,8,8,0.15);
      position: relative;
      overflow: hidden;
      transition: background 0.2s, color 0.2s;
    }

    .brand-tag::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 2px;
      background: #080808;
      transition: width 0.4s ease;
    }

    .brand-tag:hover { background: rgba(8,8,8,0.18); color: #080808; }
    .brand-tag:hover::after { width: 100%; }

    /* ── ARTISTS ── */
    #artists {
      background: var(--bg2);
    }

    .artists-header {
      display: flex;
      align-items: baseline;
      gap: 48px;
      margin-top: 64px;
      margin-bottom: 48px;
    }

    .artists-tagline {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--fg-dim);
    }

    .roster-marquee {
      overflow: hidden;
      position: relative;
      padding: 8px 0;
      margin-top: 48px;
    }

    .roster-marquee + .roster-marquee { margin-top: 16px; }

    .roster-track {
      display: flex;
      gap: 48px;
      width: max-content;
      animation: marquee 60s linear infinite;
    }

    .roster-track:hover { animation-play-state: paused; }

    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    .roster-name {
      font-family: var(--mono);
      font-size: 13px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--fg-dim);
      white-space: nowrap;
      transition: color 0.2s;
    }

    .roster-name:hover { color: var(--fg); }

    .roster-sep {
      font-size: 13px;
      color: var(--fg-muted);
    }

    .roster-full {
      margin-top: 60px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px 24px;
    }

    .roster-tag {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--fg-dim);
      padding: 6px 14px;
      border: 1px solid var(--border);
      transition: border-color 0.2s, color 0.2s;
    }

    .roster-tag:hover {
      border-color: var(--accent-dim);
      color: var(--fg);
    }

    /* ── VENUES ── */
    #venues {
      background: var(--bg);
    }

    .venues-list {
      margin-top: 64px;
      display: flex;
      flex-direction: column;
      border-top: 1px solid var(--border);
    }

    .venue-item {
      display: grid;
      grid-template-columns: 64px 1fr auto;
      align-items: center;
      gap: 32px;
      padding: 24px 0;
      border-bottom: 1px solid var(--border);
      font-family: var(--mono);
      font-size: 13px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--fg-dim);
      position: relative;
      overflow: hidden;
      transition: color 0.2s, background 0.2s;
      cursor: default;
    }

    .venue-item::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 1px;
      background: #d4f012;
      transition: width 0.4s ease;
    }

    .venue-num {
      font-family: var(--mono);
      font-size: 11px;
      color: var(--fg-muted);
      letter-spacing: 0.2em;
    }

    .venue-arrow {
      font-size: 16px;
      color: var(--fg-muted);
      opacity: 0;
      transform: translateX(-8px);
      transition: opacity 0.25s, transform 0.25s, color 0.25s;
    }

    .venue-item:hover {
      color: var(--fg);
      background: rgba(212,240,18,0.03);
      padding-left: 8px;
    }
    .venue-item:hover::after { width: 100%; }
    .venue-item:hover .venue-num { color: #d4f012; }
    .venue-item:hover .venue-arrow { opacity: 1; transform: translateX(0); color: #d4f012; }

    .venue-item:nth-child(3n) { border-right: none; }

    .venues-etc {
      margin-top: 32px;
      font-family: var(--mono);
      font-size: 13px;
      letter-spacing: 0.2em;
      color: var(--fg-muted);
      font-style: italic;
    }

    /* ── SOFTWARE ── */
    #software {
      background: var(--bg3);
    }

    .software-grid {
      margin-top: 64px;
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
    }

    .sw-tag {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--fg-dim);
      padding: 12px 24px;
      border: 1px solid var(--border);
      position: relative;
      overflow: hidden;
      transition: color 0.25s, border-color 0.25s;
    }

    .sw-tag::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 2px;
      background: #d4f012;
      transition: width 0.4s ease;
    }

    .sw-tag:hover {
      color: #d4f012;
      border-color: rgba(212,240,18,0.3);
    }
    .sw-tag:hover::after { width: 100%; }

    #contact {
      background: #d4f012;
      min-height: 60vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

  #contact .section-label {
    color: rgba(8,8,8,0.55);
  }

  #contact .section-label::after {
    background: rgba(8,8,8,0.2);
  }

  #contact .contact-heading {
    color: #080808;
  }

  #contact .contact-heading em {
    color: #e84c1e;
  }

  #contact .contact-email {
    color: #080808;
    border-bottom-color: rgba(8,8,8,0.3);
  }

  #contact .contact-email:hover {
    color: #e84c1e;
    border-bottom-color: #e84c1e;
  }

  #contact .contact-meta,
  #contact .contact-meta a {
    color: rgba(8,8,8,0.72);
  }

  #contact .contact-meta a:hover { color: #080808; }

    .contact-inner {
      max-width: 720px;
    }

    .contact-heading {
      font-family: var(--mono);
      font-size: clamp(28px, 4.5vw, 60px);
      font-weight: 400;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      line-height: 1.15;
      margin-top: 48px;
      margin-bottom: 48px;
    }

    .contact-heading em {
      color: var(--accent);
      font-style: normal;
    }

    .contact-email {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      font-family: var(--mono);
      font-size: clamp(14px, 2vw, 22px);
      letter-spacing: 0.1em;
      color: var(--fg);
      text-decoration: none;
      border-bottom: 1px solid var(--fg-muted);
      padding-bottom: 8px;
      transition: border-color 0.3s, color 0.3s;
    }

    .contact-email:hover {
      border-color: var(--accent);
      color: var(--accent);
    }

    .contact-meta {
      margin-top: 64px;
      display: flex;
      gap: 48px;
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--fg-muted);
    }

    .contact-meta a {
      color: var(--fg-muted);
      text-decoration: none;
      transition: color 0.2s;
    }

    .contact-meta a:hover { color: var(--fg); }

    .contact-cta-row {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 48px;
    }

    .contact-left { flex: 1; }

    .contact-right {
      flex-shrink: 0;
      display: flex;
      align-items: center;
    }

    .contact-sub {
      font-size: 15px;
      font-weight: 300;
      color: rgba(8,8,8,0.6);
      max-width: 340px;
      line-height: 1.7;
      margin-top: 16px;
    }

    .cta-btn {
      display: inline-block;
      background: #080808;
      color: #d4f012;
      font-family: var(--mono);
      font-size: 12px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 16px 40px;
      border: 2px solid #080808;
      transition: background 0.2s, color 0.2s;
    }

    .cta-btn:hover { background: transparent; color: #080808; }

    /* ── FOOTER ── */
    footer {
      background: var(--bg);
      border-top: 1px solid var(--border);
      padding: 32px 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .footer-logo {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--fg-muted);
    }

    .footer-right {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.2em;
      color: var(--fg-muted);
    }

    /* ── BRAND DECORATIONS ── */
    .brand-deco {
      position: absolute;
      pointer-events: none;
      z-index: 1;
      overflow: visible;
    }
    @media (max-width: 900px) {
      .brand-deco { display: none; }
    }

    /* ── TICKER ── */
    .ticker-wrap {
      background: #d4f012;
      overflow: hidden;
      padding: 14px 0;
    }
    .ticker-inner {
      display: flex;
      align-items: center;
      gap: 80px;
      animation: tickerMove 20s linear infinite;
      white-space: nowrap;
      width: max-content;
    }
    .ticker-inner span {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #080808;
      flex-shrink: 0;
    }
    .ticker-dot-sep {
      color: #e84c1e;
      font-size: 16px !important;
      line-height: 1;
    }
    @keyframes tickerMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 24px; }
      .nav-toggle { display: block; }
      .nav-links {
        position: fixed;
        inset: 0 0 auto 0;
        flex-direction: column;
        gap: 0;
        padding: 88px 24px 32px;
        background: rgba(9,9,8,0.96);
        backdrop-filter: blur(12px);
        transform: translateY(-100%);
        transition: transform 0.35s ease;
        pointer-events: none;
        z-index: 99;
      }
      .nav-links li { padding: 16px 0; border-bottom: 1px solid var(--border); }
      .nav-links a { font-size: 14px; }
      body.nav-open .nav-links {
        transform: translateY(0);
        pointer-events: auto;
      }
      #hero { padding: 72px 24px; }
      section { padding: 80px 24px; }

      .philosophy-grid { grid-template-columns: 1fr; gap: 48px; }
      .approach-steps { grid-template-columns: 1fr 1fr; }
      .step:nth-child(2) { border-right: none; }
      .step:nth-child(2) .step-arrow { display: none; }
      .step:nth-child(3) .step-arrow { display: block; }
      .why-grid { grid-template-columns: 1fr; }
      .why-card { border-right: none; }
      .why-card:nth-child(3) { border-bottom: 1px solid var(--border); }
      .venue-item { padding: 20px 0; grid-template-columns: 48px 1fr auto; gap: 16px; }
      footer { flex-direction: column; gap: 12px; text-align: center; }
    }

    @media (max-width: 600px) {
      .approach-steps { grid-template-columns: 1fr; }
      .step { border-right: none; border-bottom: 1px solid var(--border); }
      .step:last-child { border-bottom: none; }
      .step-arrow { display: none !important; }

      .service-item { grid-template-columns: 1fr; }
    }

    /* ── KEYBOARD = HOVER ── */
    .service-item:focus-within::after,
    .step:focus-within::after,
    .why-card:focus-within::after,
    .brand-tag:focus-visible::after,
    .sw-tag:focus-visible::after,
    .venue-item:focus-within::after { width: 100%; }

    .service-item:focus-within .service-name,
    .step:focus-within .step-name,
    .why-card:focus-within .why-title { color: #d4f012; }

    .sw-tag:focus-visible { color: #d4f012; border-color: rgba(212,240,18,0.3); }
    .roster-name:focus-visible,
    .roster-tag:focus-visible { color: var(--fg); }
    .venue-item:focus-within { color: var(--fg); background: rgba(212,240,18,0.03); }

    /* ── PAUSE ON HIDDEN TAB ── */
    body.tab-hidden .roster-track,
    body.tab-hidden .ticker-inner { animation-play-state: paused; }

    /* ── REDUCED MOTION ── */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
      .reveal { opacity: 1; transform: none; }
      .roster-track, .ticker-inner { animation: none; transform: none; }
    }
