/* © 2026 NovaCore. NovaCore Music. */
@layer reset, base, layout, components, motion, responsive;

@layer reset {
  *, *::before, *::after { box-sizing: border-box; }
  html { overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: var(--header); scroll-padding-bottom: calc(var(--player) + 16px); }
  body, h1, h2, h3, p, blockquote, dl, dd, ol { margin: 0; }
  ol { padding: 0; list-style: none; }
  button, input { font: inherit; }
  button, a { -webkit-tap-highlight-color: transparent; }
  img, canvas { display: block; max-width: 100%; }
  [hidden] { display: none !important; }
}

@layer base {
  :root {
    color-scheme: dark;
    --bg: #07070a;
    --bg-soft: #0b0b11;
    --panel: rgba(13, 13, 20, .78);
    --panel-strong: rgba(10, 10, 16, .94);
    --text: #f5f3fa;
    --muted: #a09cae;
    --muted-2: #706b7d;
    --line: rgba(255, 255, 255, .11);
    --line-soft: rgba(255, 255, 255, .065);
    --accent: #9d7cff;
    --accent-2: #36d8ff;
    --accent-rgb: 157, 124, 255;
    --accent-2-rgb: 54, 216, 255;
    --header: 76px;
    --player: 88px;
    --max: 1480px;
    --ease: cubic-bezier(.22, 1, .36, 1);
  }

  html[data-track-theme="neon"] {
    --accent: #ff5db8;
    --accent-2: #9b6cff;
    --accent-rgb: 255, 93, 184;
    --accent-2-rgb: 155, 108, 255;
  }

  html[data-track-theme="afterlight"] {
    --accent: #25d7b5;
    --accent-2: #3d8cff;
    --accent-rgb: 37, 215, 181;
    --accent-2-rgb: 61, 140, 255;
  }

  body {
    min-width: 320px;
    min-height: 100%;
    overflow-x: hidden;
    padding-bottom: var(--player);
    background:
      radial-gradient(circle at 15% 18%, rgba(var(--accent-2-rgb), .07), transparent 28rem),
      radial-gradient(circle at 88% 28%, rgba(var(--accent-rgb), .09), transparent 34rem),
      var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    transition: background-color .6s ease;
  }

  body.no-scroll { overflow: hidden; }
  body.menu-open { overflow: hidden; }
  a { color: inherit; text-decoration: none; }
  button { color: inherit; }
  ::selection { background: rgba(var(--accent-rgb), .35); color: #fff; }

  .sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }

  .skip-link {
    position: fixed;
    z-index: 1000;
    left: 16px;
    top: 14px;
    transform: translateY(-140%);
    padding: 10px 15px;
    border-radius: 999px;
    background: #fff;
    color: #08080c;
    font-weight: 800;
    transition: transform .2s;
  }
  .skip-link:focus { transform: none; }

  .eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .2em;
    line-height: 1.4;
  }

  .live-dot {
    width: 6px;
    height: 6px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--accent-2);
    box-shadow: 0 0 0 5px rgba(var(--accent-2-rgb), .08), 0 0 14px rgba(var(--accent-2-rgb), .85);
  }

  .ambient-canvas {
    position: fixed;
    z-index: -3;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: .62;
    pointer-events: none;
  }

  .ambient-glow {
    position: fixed;
    z-index: -2;
    inset: 0;
    pointer-events: none;
    background:
      radial-gradient(circle at var(--pointer-x, 70%) var(--pointer-y, 30%), rgba(var(--accent-rgb), .095), transparent 18rem),
      linear-gradient(125deg, transparent 0 40%, rgba(var(--accent-2-rgb), .025), transparent 70%);
    transition: background .45s ease;
  }

  .ambient-glow::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .22;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.24'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
  }

  :focus-visible { outline: 2px solid var(--accent-2); outline-offset: 4px; }
}

@layer layout {
  .site-header {
    position: fixed;
    z-index: 200;
    inset: 0 0 auto;
    height: var(--header);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 0 max(24px, calc((100vw - var(--max)) / 2 + 34px));
    border-bottom: 1px solid var(--line-soft);
    background: rgba(7, 7, 10, .74);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    backdrop-filter: blur(18px) saturate(1.2);
  }

  .brand { min-height: 44px; display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
  .brand > span:last-child { display: grid; gap: 1px; }
  .brand strong { font-size: .82rem; letter-spacing: .17em; line-height: 1; }
  .brand em { color: var(--accent); font-size: .6rem; font-style: normal; letter-spacing: .2em; line-height: 1.25; }

  .brand-mark { position: relative; width: 29px; height: 38px; flex: 0 0 auto; }
  .brand-mark i, .brand-mark b { position: absolute; display: block; }
  .brand-mark i { inset: 0 7px 0 0; clip-path: polygon(0 27%, 36% 0, 100% 0, 36% 45%, 36% 100%, 0 73%); background: #fff; }
  .brand-mark b { inset: 8px 0 0 13px; clip-path: polygon(0 23%, 100% 0, 100% 100%, 0 70%); background: linear-gradient(180deg, var(--accent), var(--accent-2)); }

  .desktop-nav { justify-self: center; display: flex; align-items: center; gap: 34px; }
  .desktop-nav a { position: relative; padding: 28px 0 25px; color: #96919f; font-size: .76rem; transition: color .2s; }
  .desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 17px; height: 1px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); transition: right .35s var(--ease); }
  .desktop-nav a:hover, .desktop-nav a.active { color: #fff; }
  .desktop-nav a.active::after { right: 0; }

  .header-actions { display: flex; align-items: center; gap: 16px; }
  .header-status { display: inline-flex; align-items: center; gap: 7px; color: #777281; font-size: .56rem; font-weight: 750; letter-spacing: .13em; }
  .header-status i, .footer-status i { width: 5px; height: 5px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 10px rgba(var(--accent-2-rgb), .8); }
  .menu-toggle { display: none; }
  .mobile-nav, .mobile-progress { display: none; }

  main { position: relative; }
  .scene { position: relative; scroll-margin-top: 0; }
  .scene-inner { width: min(var(--max), 100%); margin: 0 auto; padding: clamp(72px, 10vh, 104px) clamp(28px, 6vw, 92px) clamp(92px, 13vh, 140px); }

  .hero { min-height: max(760px, calc(100svh - var(--player))); display: grid; align-items: center; padding-top: var(--header); }
  .hero-layout { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(390px, .97fr); align-items: center; gap: clamp(48px, 7vw, 112px); padding-top: clamp(70px, 7vh, 110px); padding-bottom: clamp(76px, 8vh, 120px); }
  .hero-copy { max-width: 730px; }
  .hero h1, .section-head h2, .direction h2, .manifesto h2 { letter-spacing: -.065em; line-height: .89; }
  .hero h1 { margin: 24px 0 30px; font-size: clamp(4.25rem, 7.25vw, 8.2rem); }
  .hero h1 span, .section-head h2 span, .direction h2 span, .manifesto h2 span { color: transparent; -webkit-text-stroke: 1px rgba(var(--accent-rgb), .9); text-shadow: 0 0 32px rgba(var(--accent-rgb), .08); }
  .hero-lead { max-width: 630px; color: #b0abba; font-size: clamp(1rem, 1.25vw, 1.2rem); line-height: 1.75; }
  .hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 34px; }
  .hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 48px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--line-soft); }
  .hero-facts div { display: grid; gap: 8px; min-width: 0; padding: 19px 18px; background: rgba(7, 7, 10, .85); }
  .hero-facts dt { color: #666170; font-size: .55rem; font-weight: 800; letter-spacing: .15em; }
  .hero-facts dd { color: #d2ceda; font-size: .74rem; line-height: 1.35; }

  .signals { border-top: 1px solid var(--line-soft); background: linear-gradient(180deg, rgba(255,255,255,.012), transparent 30%); }
  .signals .scene-inner { padding-top: clamp(72px, 10vh, 104px); padding-bottom: clamp(96px, 13vh, 140px); }
  .section-head { display: grid; grid-template-columns: 1fr minmax(280px, 430px); align-items: end; gap: 60px; margin-bottom: 58px; }
  .section-head h2, .direction h2, .manifesto h2 { margin-top: 18px; font-size: clamp(3.8rem, 6.8vw, 7rem); }
  .section-intro { display: grid; gap: 24px; }
  .section-intro p, .direction-copy > p, .manifesto-copy > p { color: #aaa5b3; line-height: 1.75; }
  .section-intro span { display: inline-flex; align-items: center; gap: 8px; color: #6f6a78; font-size: .56rem; font-weight: 800; letter-spacing: .14em; }
  .section-intro span i { width: 18px; height: 1px; background: var(--accent); }

  .release-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.1vw, 34px); }
  .transparency-note { margin-top: 30px; color: #716c79; font-size: .73rem; line-height: 1.6; }
  .transparency-note strong { color: #a49fac; }

  .direction { border-top: 1px solid var(--line-soft); }
  .direction-layout { display: grid; grid-template-columns: minmax(300px, .78fr) minmax(520px, 1.22fr); gap: clamp(60px, 9vw, 150px); align-items: start; min-height: 0; }
  .direction-copy { position: sticky; top: calc(var(--header) + 28px); align-self: start; padding-top: 0; }
  .direction-copy > p { max-width: 500px; margin-top: 30px; }
  .direction-pulse { position: relative; display: block; width: min(360px, 80%); height: 64px; margin-top: 48px; overflow: hidden; border-bottom: 1px solid var(--line); }
  .direction-pulse span { position: absolute; left: 0; right: 0; bottom: 13px; height: 1px; background: linear-gradient(90deg, transparent, var(--accent), var(--accent-2), transparent); }
  .direction-pulse i { position: absolute; left: 0; bottom: 8px; width: 9px; height: 9px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 16px rgba(var(--accent-2-rgb), .85); }
  .direction-stack { display: grid; gap: 16px; }

  .manifesto { border-top: 1px solid var(--line-soft); background: linear-gradient(145deg, rgba(var(--accent-rgb), .025), transparent 45%); }
  .manifesto-layout { display: grid; grid-template-columns: minmax(260px, .65fr) minmax(440px, 1.15fr) minmax(260px, .65fr); gap: clamp(40px, 6vw, 92px); align-items: center; min-height: 0; }
  .manifesto-copy > p { max-width: 630px; margin-top: 30px; }
  .manifesto-copy blockquote { max-width: 660px; margin-top: 36px; padding-left: 22px; border-left: 1px solid var(--accent); color: #d5d1dc; font-size: clamp(1.05rem, 1.7vw, 1.45rem); line-height: 1.55; }
  .manifesto-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 38px; }

  footer { min-height: 170px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 30px; padding: 40px max(28px, calc((100vw - var(--max)) / 2 + 58px)); border-top: 1px solid var(--line); background: #07070a; }
  footer p { justify-self: center; color: #777280; font-size: .74rem; }
  footer p strong { color: #bcb7c5; }
  footer small { grid-column: 1 / -1; color: #54505d; font-size: .62rem; }
  .footer-status { display: flex; align-items: center; gap: 8px; color: #706b78; font-size: .56rem; font-weight: 800; letter-spacing: .13em; }
}

@layer components {
  .button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-size: .75rem;
    font-weight: 800;
    transition: transform .25s var(--ease), border-color .25s, background .25s, color .25s, box-shadow .25s;
  }
  .button:hover { transform: translateY(-2px); }
  .button-primary { background: #f7f5fb; color: #07070a; box-shadow: 0 12px 38px rgba(var(--accent-rgb), .09); }
  .button-primary:hover { background: #fff; box-shadow: 0 15px 42px rgba(var(--accent-rgb), .16); }
  .button-quiet { border-color: var(--line); background: transparent; color: #aaa5b3; }
  .button-quiet:hover { border-color: rgba(var(--accent-rgb), .42); color: #fff; }
  .play-icon { font-size: .7rem; }
  .text-link { min-height: 40px; display: inline-flex; align-items: center; gap: 10px; color: #aaa5b3; font-size: .74rem; font-weight: 750; }
  .text-link span { color: var(--accent); transition: transform .25s var(--ease); }
  .text-link:hover { color: #fff; }
  .text-link:hover span { transform: translateY(3px); }

  .pulse {
    position: fixed;
    z-index: 900;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    transition: opacity .45s ease, visibility .45s ease;
  }
  .pulse.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
  .pulse-backdrop { position: absolute; inset: 0; background: rgba(4, 4, 7, .76); -webkit-backdrop-filter: blur(16px) saturate(.85); backdrop-filter: blur(16px) saturate(.85); }
  .pulse-panel {
    position: relative;
    width: min(590px, 100%);
    max-height: calc(100svh - 48px);
    overflow: auto;
    padding: clamp(28px, 5vw, 52px);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 30px;
    background:
      linear-gradient(145deg, rgba(var(--accent-rgb), .065), transparent 42%),
      rgba(9, 9, 14, .94);
    box-shadow: 0 36px 110px rgba(0,0,0,.58);
  }
  .pulse-topline { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
  .pulse-topline > span { color: #625d6a; font-size: .62rem; letter-spacing: .12em; }
  .pulse-visual { height: 44px; display: flex; align-items: center; gap: 7px; margin: 30px 0 20px; }
  .pulse-visual span { width: 3px; height: 8px; border-radius: 999px; background: linear-gradient(var(--accent), var(--accent-2)); box-shadow: 0 0 14px rgba(var(--accent-rgb), .25); }
  .pulse-greeting { margin-bottom: 10px; color: var(--accent-2); font-size: .7rem; font-weight: 750; letter-spacing: .08em; }
  .pulse-panel h2 { max-width: 500px; font-size: clamp(2.7rem, 6vw, 4.65rem); letter-spacing: -.06em; line-height: .94; }
  .pulse-panel > p#pulse-message { margin-top: 22px; color: #aaa5b4; font-size: .95rem; line-height: 1.72; }
  .pulse-update { display: grid; gap: 8px; margin-top: 28px; padding: 16px 18px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.025); }
  .pulse-update span { color: #676270; font-size: .55rem; font-weight: 800; letter-spacing: .15em; }
  .pulse-update strong { color: #c7c2ce; font-size: .76rem; line-height: 1.4; }
  .pulse-meta { display: flex; justify-content: space-between; gap: 20px; margin-top: 22px; color: #676270; font-size: .58rem; letter-spacing: .08em; line-height: 1.5; }
  .pulse-actions { display: flex; gap: 12px; margin-top: 28px; }
  .pulse-actions .button-primary { flex: 1; }
  .pulse-panel > small { display: block; margin-top: 16px; color: #5d5865; text-align: center; font-size: .62rem; }

  .scene-rail { position: fixed; z-index: 150; right: max(16px, calc((100vw - var(--max)) / 2 + 8px)); top: 50%; display: grid; justify-items: center; gap: 10px; transform: translateY(-50%); }
  .scene-rail > button { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; background: rgba(9,9,14,.72); color: #7b7684; cursor: pointer; -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); transition: color .2s, border-color .2s, transform .2s; }
  .scene-rail > button:hover:not(:disabled) { color: #fff; border-color: rgba(var(--accent-rgb), .45); transform: scale(1.05); }
  .scene-rail > button:disabled { opacity: .25; cursor: default; }
  .scene-rail ol { display: grid; gap: 9px; padding: 8px 0; }
  .scene-rail li { position: relative; }
  .scene-rail a { position: relative; display: flex; align-items: center; justify-content: center; width: 40px; height: 28px; }
  .scene-rail a span { width: 4px; height: 4px; border-radius: 50%; background: #56515f; transition: width .25s, height .25s, background .25s, box-shadow .25s; }
  .scene-rail a em { position: absolute; right: 30px; padding: 6px 9px; border: 1px solid var(--line); border-radius: 8px; background: rgba(9,9,14,.92); color: #aaa5b3; font-size: .6rem; font-style: normal; opacity: 0; transform: translateX(5px); pointer-events: none; transition: opacity .2s, transform .2s; }
  .scene-rail a:hover em { opacity: 1; transform: none; }
  .scene-rail a.active span { width: 7px; height: 7px; background: var(--accent); box-shadow: 0 0 12px rgba(var(--accent-rgb), .8); }
  .scene-count { display: grid; justify-items: center; color: #5e5967; font-size: .54rem; line-height: 1.05; }
  .scene-count b { color: #fff; font-size: .72rem; }
  .scene-count i { font-style: normal; }

  .signal-stage { position: relative; justify-self: end; width: min(100%, 590px); }
  .stage-orbit { position: absolute; border: 1px solid rgba(var(--accent-rgb), .18); border-radius: 50%; pointer-events: none; }
  .stage-orbit-a { width: 118%; aspect-ratio: 1; left: -20%; top: -16%; }
  .stage-orbit-b { width: 82%; aspect-ratio: 1; right: -14%; bottom: -20%; border-color: rgba(var(--accent-2-rgb), .13); }
  .stage-card { position: relative; overflow: hidden; padding: 14px 14px 18px; border: 1px solid rgba(255,255,255,.15); border-radius: 28px; background: rgba(11,11,17,.82); box-shadow: 0 35px 100px rgba(0,0,0,.28); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); }
  .stage-cover { position: relative; overflow: hidden; aspect-ratio: 1.55; border-radius: 20px; background: #111; }
  .stage-cover img { width: 100%; height: 100%; object-fit: cover; transition: opacity .28s ease, transform .8s var(--ease); }
  .stage-card:hover .stage-cover img { transform: scale(1.025); }
  .stage-cover-shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(5,5,8,.34)); }
  .stage-code, .stage-state { position: absolute; z-index: 2; top: 18px; padding: 7px 10px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(8,8,13,.28); color: rgba(255,255,255,.72); font-size: .54rem; font-weight: 800; letter-spacing: .12em; -webkit-backdrop-filter: blur(9px); backdrop-filter: blur(9px); }
  .stage-code { left: 18px; }
  .stage-state { right: 18px; display: flex; align-items: center; gap: 7px; }
  .stage-state i { width: 5px; height: 5px; border-radius: 50%; background: #fff; box-shadow: 0 0 10px #fff; }
  .stage-info { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 22px; padding: 24px 8px 13px; }
  .stage-info > div > span { color: #74707e; font-size: .56rem; font-weight: 800; letter-spacing: .15em; }
  .stage-info h3 { margin-top: 7px; font-size: clamp(1.5rem, 2.2vw, 2rem); letter-spacing: -.035em; }
  .stage-info p { max-width: 390px; margin-top: 7px; color: #817c8a; font-size: .7rem; line-height: 1.55; }
  .round-play { width: 52px; height: 52px; border: 0; border-radius: 50%; background: #fff; color: #08080c; cursor: pointer; font-size: .72rem; font-weight: 900; box-shadow: 0 12px 35px rgba(var(--accent-rgb), .13); transition: transform .25s var(--ease); }
  .round-play:hover { transform: scale(1.07); }
  #hero-wave { width: 100%; height: 62px; }
  .track-tags { display: flex; flex-wrap: wrap; gap: 7px; padding: 3px 8px 0; }
  .track-tags span { padding: 6px 9px; border: 1px solid var(--line); border-radius: 999px; color: #716c7a; font-size: .55rem; }

  .release-card { position: relative; display: grid; gap: 0; overflow: hidden; padding: 0; border: 0; background: transparent; text-align: left; cursor: pointer; }
  .release-cover { position: relative; overflow: hidden; aspect-ratio: 1; border: 1px solid var(--line); border-radius: 18px; background: var(--bg-soft); }
  .release-cover img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) brightness(.86); transition: transform .65s var(--ease), filter .4s; }
  .release-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 54%, rgba(5,5,8,.55)); opacity: .7; transition: opacity .3s; }
  .release-card:hover .release-cover img, .release-card.is-current .release-cover img { transform: scale(1.035); filter: saturate(1) brightness(1); }
  .release-card:hover .release-overlay, .release-card.is-current .release-overlay { opacity: .25; }
  .card-play { position: absolute; right: 17px; bottom: 17px; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: #fff; color: #08080c; font-size: .68rem; font-weight: 900; opacity: 0; transform: translateY(7px); transition: opacity .25s, transform .25s var(--ease); }
  .release-card:hover .card-play, .release-card.is-current .card-play { opacity: 1; transform: none; }
  .release-index { position: absolute; left: 17px; bottom: 17px; color: rgba(255,255,255,.64); font-size: .55rem; font-weight: 800; letter-spacing: .12em; }
  .release-info { display: flex; justify-content: space-between; align-items: start; gap: 20px; padding: 17px 3px 13px; }
  .release-info > span { display: grid; gap: 5px; }
  .release-info strong { font-size: .94rem; }
  .release-info small { color: #716c79; font-size: .65rem; }
  .release-info em { color: #66616f; font-size: .62rem; font-style: normal; }
  .release-line { height: 1px; overflow: hidden; background: var(--line-soft); }
  .release-line i { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); transition: width .4s var(--ease); }
  .release-card.is-current .release-line i { width: 100%; }
  .release-card.is-playing .release-line i { animation: track-progress 1.1s ease-in-out infinite alternate; }

  .direction-card { position: relative; min-height: 230px; display: grid; grid-template-columns: 48px 100px 1fr auto; align-items: center; gap: 28px; padding: 34px; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(135deg, rgba(255,255,255,.025), rgba(var(--accent-rgb), .018)); transition: transform .35s var(--ease), border-color .35s, background .35s; }
  .direction-card::before { content: ""; position: absolute; width: 240px; height: 240px; right: -160px; top: -160px; border-radius: 50%; background: rgba(var(--accent-rgb), .12); filter: blur(50px); opacity: 0; transition: opacity .4s; }
  .direction-card:hover { transform: translateX(-8px); border-color: rgba(var(--accent-rgb), .3); background: linear-gradient(135deg, rgba(255,255,255,.035), rgba(var(--accent-rgb), .035)); }
  .direction-card:hover::before { opacity: 1; }
  .card-number { align-self: start; color: #5e5966; font-size: .62rem; font-weight: 800; letter-spacing: .13em; }
  .direction-card h3 { font-size: clamp(1.2rem, 1.8vw, 1.65rem); letter-spacing: -.03em; }
  .direction-card p { max-width: 500px; margin-top: 10px; color: #8f8a98; font-size: .78rem; line-height: 1.65; }
  .card-status { align-self: start; padding: 7px 9px; border: 1px solid var(--line); border-radius: 999px; color: #6e6976; font-size: .49rem; font-weight: 800; letter-spacing: .11em; white-space: nowrap; }
  .direction-icon { position: relative; width: 96px; height: 96px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: radial-gradient(circle, rgba(var(--accent-rgb), .09), transparent 65%); }
  .waveform-icon { grid-template-columns: repeat(7, 3px); gap: 5px; }
  .waveform-icon i { width: 3px; height: 18px; border-radius: 99px; background: linear-gradient(var(--accent), var(--accent-2)); }
  .waveform-icon i:nth-child(2), .waveform-icon i:nth-child(6) { height: 34px; }
  .waveform-icon i:nth-child(3), .waveform-icon i:nth-child(5) { height: 52px; }
  .waveform-icon i:nth-child(4) { height: 68px; }
  .lens-icon i { width: 50px; height: 50px; border: 1px solid var(--accent); border-radius: 50%; }
  .lens-icon span { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 17px rgba(var(--accent-2-rgb), .8); }
  .archive-icon { gap: 7px; }
  .archive-icon i { width: 48px; height: 5px; border-radius: 99px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
  .archive-icon i:nth-child(2) { width: 62px; opacity: .7; }
  .archive-icon i:nth-child(3) { width: 34px; opacity: .4; }

  .manifesto-signal { position: relative; min-height: 390px; display: grid; place-items: center; }
  .manifesto-letter { position: relative; z-index: 2; color: transparent; font-size: clamp(8rem, 13vw, 13rem); font-weight: 900; line-height: 1; -webkit-text-stroke: 1px rgba(var(--accent-rgb), .55); }
  .manifesto-rings i { position: absolute; inset: 50% auto auto 50%; border: 1px solid rgba(var(--accent-rgb), .16); border-radius: 50%; transform: translate(-50%, -50%); }
  .manifesto-rings i:nth-child(1) { width: 210px; height: 210px; }
  .manifesto-rings i:nth-child(2) { width: 300px; height: 300px; }
  .manifesto-rings i:nth-child(3) { width: 390px; height: 390px; border-color: rgba(var(--accent-2-rgb), .09); }
  .manifesto-frequency { position: absolute; bottom: 5px; color: #57525f; font-size: .55rem; letter-spacing: .16em; }
  .next-signal { align-self: end; padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.018); }
  .next-signal > span { color: #676270; font-size: .53rem; font-weight: 800; letter-spacing: .14em; }
  .next-signal strong { display: block; margin-top: 11px; font-size: 1rem; }
  .next-signal p { margin-top: 10px; color: #777280; font-size: .7rem; line-height: 1.6; }
  .next-line { height: 1px; margin-top: 22px; overflow: hidden; background: var(--line-soft); }
  .next-line i { display: block; width: 36%; height: 100%; background: linear-gradient(90deg, var(--accent), transparent); }

  .global-player {
    position: fixed;
    z-index: 300;
    inset: auto 0 0;
    min-height: var(--player);
    display: grid;
    grid-template-columns: minmax(210px, 1fr) minmax(340px, 1.35fr) minmax(160px, 1fr);
    align-items: center;
    gap: 28px;
    padding: 0 max(24px, calc((100vw - var(--max)) / 2 + 34px));
    border-top: 1px solid rgba(255,255,255,.12);
    background: rgba(8, 8, 13, .92);
    box-shadow: 0 -18px 50px rgba(0,0,0,.22);
    -webkit-backdrop-filter: blur(22px) saturate(1.15);
    backdrop-filter: blur(22px) saturate(1.15);
  }
  .global-player::before { content: ""; position: absolute; left: 0; right: 0; top: -1px; height: 1px; background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), .45), rgba(var(--accent-2-rgb), .25), transparent); opacity: .48; }
  .player-expand { display: none; }
  .player-track { display: flex; align-items: center; gap: 13px; min-width: 0; }
  .player-track img { width: 52px; height: 52px; flex: 0 0 auto; border-radius: 9px; object-fit: cover; }
  .player-track div { display: grid; gap: 3px; min-width: 0; }
  .player-track span { color: #716c79; font-size: .54rem; letter-spacing: .12em; }
  .player-track strong { overflow: hidden; font-size: .78rem; text-overflow: ellipsis; white-space: nowrap; }
  .player-center { display: grid; gap: 5px; }
  .player-controls { display: flex; justify-content: center; align-items: center; gap: 14px; }
  .player-controls button { min-width: 40px; min-height: 40px; border: 0; background: transparent; color: #9994a2; cursor: pointer; font-size: 1.35rem; transition: color .2s, transform .2s; }
  .player-controls button:hover { color: #fff; transform: scale(1.08); }
  .player-controls .main-player-button { width: 40px; height: 40px; border-radius: 50%; background: #fff; color: #07070a; font-size: .68rem; }
  .progress-row { display: grid; grid-template-columns: 32px 1fr 32px; align-items: center; gap: 9px; color: #6c6775; font-size: .55rem; }
  .progress-row input, .player-volume input { width: 100%; height: 3px; accent-color: var(--accent); cursor: pointer; }
  .player-volume { justify-self: end; width: min(190px, 100%); display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 10px; color: #6c6775; font-size: .52rem; letter-spacing: .13em; }
  .noscript { position: fixed; z-index: 1000; inset: auto 0 var(--player); padding: 11px; background: #8a1d43; color: #fff; text-align: center; font-size: .78rem; }
}

@layer motion {
  @keyframes track-progress { from { width: 58%; } to { width: 100%; } }
  @keyframes pulse-bars {
    0%, 100% { height: 8px; opacity: .45; }
    50% { height: 38px; opacity: 1; }
  }
  @keyframes orbit { to { transform: rotate(360deg); } }
  @keyframes drift-dot { 50% { transform: translate3d(6px, -5px, 0); } }
  @keyframes scan { from { transform: translateX(-120%); } to { transform: translateX(320%); } }

  .pulse-visual span { animation: pulse-bars 1.7s ease-in-out infinite; }
  .pulse-visual span:nth-child(2), .pulse-visual span:nth-child(6) { animation-delay: -.25s; }
  .pulse-visual span:nth-child(3), .pulse-visual span:nth-child(5) { animation-delay: -.52s; }
  .pulse-visual span:nth-child(4) { animation-delay: -.78s; }
  .stage-orbit-a { animation: orbit 36s linear infinite; }
  .stage-orbit-b { animation: orbit 28s linear infinite reverse; }
  .direction-pulse i { animation: scan 4.4s var(--ease) infinite; }
  .header-status i, .footer-status i, .live-dot { animation: drift-dot 2.6s ease-in-out infinite; }
  .waveform-icon i { animation: pulse-bars 1.8s ease-in-out infinite; }
  .waveform-icon i:nth-child(2), .waveform-icon i:nth-child(6) { animation-delay: -.35s; }
  .waveform-icon i:nth-child(3), .waveform-icon i:nth-child(5) { animation-delay: -.7s; }

  .reveal-group > * { opacity: 0; transform: translateY(24px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
  .scene.is-visible .reveal-group > * { opacity: 1; transform: none; }
  .scene.is-visible .reveal-group > *:nth-child(2) { transition-delay: .07s; }
  .scene.is-visible .reveal-group > *:nth-child(3) { transition-delay: .14s; }
  .scene.is-visible .reveal-group > *:nth-child(4) { transition-delay: .21s; }
  .scene.is-visible .reveal-group > *:nth-child(5) { transition-delay: .28s; }
}

@layer responsive {
  @media (max-width: 1180px) {
    .header-status { display: none; }
    .scene-rail { right: 10px; }
    .hero-layout { grid-template-columns: minmax(0, 1fr) minmax(360px, .85fr); gap: 54px; }
    .direction-layout { grid-template-columns: .75fr 1.25fr; gap: 54px; }
    .direction-card { grid-template-columns: 38px 82px 1fr; }
    .direction-icon { width: 80px; height: 80px; }
    .card-status { grid-column: 3; justify-self: start; }
    .manifesto-layout { grid-template-columns: .55fr 1.2fr; }
    .next-signal { grid-column: 2; width: min(420px, 100%); }
    .global-player { grid-template-columns: 1fr 1.35fr; }
    .player-volume { display: none; }
  }

  @media (max-width: 980px) {
    :root { --header: 70px; }
    .desktop-nav { display: none; }
    .menu-toggle { width: 42px; height: 42px; display: grid; place-content: center; gap: 6px; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; }
    .menu-toggle span { width: 17px; height: 1px; background: #fff; transition: transform .25s var(--ease); }
    .site-header.menu-open .menu-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
    .site-header.menu-open .menu-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
    .mobile-nav { position: absolute; display: grid; inset: var(--header) 0 auto; padding: 12px max(22px, 5vw) 25px; border-bottom: 1px solid var(--line); background: rgba(7,7,10,.98); opacity: 0; visibility: hidden; transform: translateY(-14px); transition: opacity .28s, visibility .28s, transform .28s var(--ease); }
    .site-header.menu-open .mobile-nav { opacity: 1; visibility: visible; transform: none; }
    .mobile-nav a { display: grid; grid-template-columns: 34px 1fr; gap: 12px; padding: 15px 4px; border-bottom: 1px solid var(--line-soft); color: #b1acb9; font-size: .84rem; }
    .mobile-nav a span { color: #615c69; font-size: .58rem; letter-spacing: .12em; }
    .mobile-nav a.active { color: #fff; }
    .mobile-progress { position: absolute; display: block; left: 0; right: 0; bottom: -1px; height: 1px; overflow: hidden; background: rgba(255,255,255,.04); }
    .mobile-progress span { display: block; width: 25%; height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); transition: width .45s var(--ease); }
    .scene-rail { display: none; }
    .hero { min-height: auto; }
    .hero-layout { grid-template-columns: 1fr; gap: 70px; padding-top: 125px; }
    .hero-copy { max-width: 760px; }
    .signal-stage { justify-self: center; }
    .direction-layout { grid-template-columns: 1fr; min-height: auto; }
    .direction-copy { position: static; padding-top: 0; }
    .direction-stack { max-width: 850px; }
    .manifesto-layout { grid-template-columns: minmax(230px, .55fr) 1.2fr; min-height: auto; }
  }

  @media (max-width: 720px) {
    :root { --header: 66px; --player: 72px; }
    html { scroll-padding-top: var(--header); scroll-padding-bottom: calc(var(--player) + 14px); }
    body { padding-bottom: var(--player); }
    .site-header { padding: 0 17px; }
    .brand { gap: 9px; }
    .brand-mark { width: 25px; height: 33px; }
    .brand strong { font-size: .75rem; }
    .brand em { font-size: .54rem; }
    .scene-inner { padding: 68px 20px 92px; }
    .hero-layout { padding-top: 118px; padding-bottom: 78px; gap: 56px; }
    .hero h1 { font-size: clamp(3.55rem, 17vw, 5.25rem); margin: 20px 0 26px; }
    .hero-lead { font-size: .96rem; line-height: 1.7; }
    .hero-actions { display: grid; grid-template-columns: 1fr; align-items: stretch; gap: 16px; margin-top: 30px; }
    .hero-actions .text-link { justify-content: center; min-height: 38px; }
    .hero-facts { grid-template-columns: 1fr; margin-top: 38px; }
    .hero-facts div { grid-template-columns: 94px 1fr; align-items: center; padding: 16px 4px; }
    .signal-stage { width: 100%; }
    .stage-card { padding: 10px 10px 15px; border-radius: 22px; }
    .stage-cover { aspect-ratio: 1.25; border-radius: 16px; }
    .stage-code, .stage-state { top: 13px; padding: 6px 8px; font-size: .48rem; }
    .stage-code { left: 13px; }
    .stage-state { right: 13px; }
    .stage-info { padding: 19px 5px 10px; }
    .stage-info p { font-size: .66rem; }
    .round-play { width: 48px; height: 48px; }
    #hero-wave { height: 48px; }
    .section-head { grid-template-columns: 1fr; gap: 28px; margin-bottom: 38px; }
    .section-head h2, .direction h2, .manifesto h2 { font-size: clamp(3.3rem, 15vw, 5.2rem); }
    .release-grid { grid-template-columns: 1fr 1fr; gap: 15px; }
    .release-card:first-child { grid-column: 1 / -1; }
    .release-card:first-child .release-cover { aspect-ratio: 1.35; }
    .card-play { width: 40px; height: 40px; right: 12px; bottom: 12px; opacity: 1; transform: none; }
    .release-index { left: 12px; bottom: 12px; }
    .release-info { padding: 13px 2px 10px; }
    .release-info strong { font-size: .82rem; }
    .release-info small { font-size: .58rem; }
    .release-info em { display: none; }
    .direction-layout { gap: 48px; }
    .direction-card { min-height: 0; grid-template-columns: 30px 66px 1fr; gap: 16px; padding: 24px 18px; border-radius: 19px; }
    .direction-card:hover { transform: none; }
    .direction-icon { width: 64px; height: 64px; }
    .direction-card h3 { font-size: 1.1rem; }
    .direction-card p { font-size: .7rem; }
    .card-status { grid-column: 3; font-size: .44rem; }
    .waveform-icon { grid-template-columns: repeat(7, 2px); gap: 3px; }
    .waveform-icon i { width: 2px; }
    .manifesto-layout { grid-template-columns: 1fr; gap: 44px; }
    .manifesto-signal { min-height: 270px; order: 2; }
    .manifesto-rings i:nth-child(1) { width: 160px; height: 160px; }
    .manifesto-rings i:nth-child(2) { width: 230px; height: 230px; }
    .manifesto-rings i:nth-child(3) { width: 290px; height: 290px; }
    .manifesto-actions { display: grid; grid-template-columns: 1fr; }
    .manifesto-actions .text-link { justify-content: center; }
    .next-signal { grid-column: auto; order: 3; width: 100%; }
    footer { grid-template-columns: 1fr auto; gap: 20px; padding: 36px 20px; }
    footer p { display: none; }
    footer small { grid-column: 1 / -1; }

    .pulse { padding: 14px; }
    .pulse-panel { padding: 28px 22px; border-radius: 24px; }
    .pulse-visual { height: 30px; margin: 22px 0 17px; }
    .pulse-panel h2 { font-size: clamp(2.45rem, 12vw, 3.3rem); }
    .pulse-panel > p#pulse-message { margin-top: 18px; font-size: .87rem; line-height: 1.62; }
    .pulse-update { margin-top: 22px; padding: 14px; }
    .pulse-meta { display: grid; gap: 4px; margin-top: 18px; }
    .pulse-actions { display: grid; gap: 9px; margin-top: 22px; }
    .pulse-panel > small { display: none; }

    .global-player { min-height: var(--player); grid-template-columns: 1fr auto; gap: 12px; padding: 0 14px; transition: min-height .35s var(--ease), padding .35s var(--ease); }
    .global-player.is-expanded { min-height: 178px; padding-top: 18px; padding-bottom: 18px; grid-template-columns: 1fr auto; align-content: center; }
    .player-expand { position: absolute; display: grid; place-items: center; top: 2px; left: 50%; width: 48px; height: 28px; padding: 0; border: 0; background: transparent; transform: translateX(-50%); cursor: pointer; }
    .player-expand span { width: 26px; height: 3px; border-radius: 99px; background: #4d4954; }
    .player-track { padding-top: 4px; }
    .player-track img { width: 42px; height: 42px; }
    .player-track strong { font-size: .72rem; }
    .player-center { display: flex; align-items: center; justify-content: end; }
    .player-controls button:not(.main-player-button), .progress-row { display: none; }
    .player-controls { gap: 0; }
    .player-controls .main-player-button { width: 42px; height: 42px; }
    .global-player.is-expanded .player-track { align-self: start; }
    .global-player.is-expanded .player-center { grid-column: 1 / -1; display: grid; width: 100%; gap: 10px; }
    .global-player.is-expanded .player-controls { gap: 18px; }
    .global-player.is-expanded .player-controls button:not(.main-player-button) { display: block; }
    .global-player.is-expanded .progress-row { display: grid; }
  }

  @media (max-width: 390px) {
    .header-actions { gap: 8px; }
    .hero h1 { font-size: clamp(3.22rem, 16.4vw, 4.15rem); }
    .hero-facts div { grid-template-columns: 82px 1fr; }
    .stage-state { display: none; }
    .release-grid { grid-template-columns: 1fr; }
    .release-card:first-child { grid-column: auto; }
    .release-card:first-child .release-cover { aspect-ratio: 1; }
    .direction-card { grid-template-columns: 26px 58px 1fr; gap: 12px; padding: 21px 14px; }
    .direction-icon { width: 56px; height: 56px; }
    .direction-card p { font-size: .66rem; }
    .pulse-topline .eyebrow { font-size: .56rem; letter-spacing: .13em; }
    .pulse-panel h2 { font-size: 2.55rem; }
    .pulse-update strong { font-size: .7rem; }
  }


  @media (max-width: 720px) and (max-height: 650px) {
    .pulse { padding: 9px; }
    .pulse-panel { max-height: calc(100svh - 18px); padding: 19px 18px; border-radius: 20px; }
    .pulse-topline > span { display: none; }
    .pulse-visual { display: none; }
    .pulse-greeting { margin: 10px 0 7px; font-size: .61rem; }
    .pulse-panel h2 { font-size: clamp(2rem, 10.5vw, 2.5rem); line-height: .92; }
    .pulse-panel > p#pulse-message { margin-top: 12px; font-size: .78rem; line-height: 1.48; }
    .pulse-update { margin-top: 13px; padding: 10px 12px; gap: 5px; }
    .pulse-update span { font-size: .48rem; }
    .pulse-update strong { font-size: .65rem; }
    .pulse-meta { margin-top: 11px; gap: 2px; font-size: .5rem; }
    .pulse-actions { margin-top: 13px; gap: 7px; }
    .pulse-actions .button { min-height: 42px; }
  }

  @media (max-height: 720px) and (min-width: 721px) {
    .pulse-panel { padding-top: 28px; padding-bottom: 28px; }
    .pulse-visual { height: 28px; margin: 18px 0 14px; }
    .pulse-panel h2 { font-size: clamp(2.5rem, 6.5vh, 3.5rem); }
    .pulse-panel > p#pulse-message { margin-top: 15px; }
    .pulse-update { margin-top: 17px; padding: 12px 15px; }
    .pulse-meta, .pulse-actions { margin-top: 16px; }
  }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .ambient-canvas { display: none; }
    .reveal-group > * { opacity: 1; transform: none; }
  }
}

/* v1.2.3 — enquadramento pela área útil real da janela */
@layer responsive {
  @media (min-width: 721px) {
    :root { --player: 76px; }
    .global-player { gap: 22px; }
    .player-track img { width: 46px; height: 46px; }
    .player-controls .main-player-button { width: 38px; height: 38px; }
  }

  @media (min-width: 981px) {
    :root { --scene-space: calc(100svh - var(--header) - var(--player)); }

    .scene:not(.hero) {
      min-height: var(--scene-space);
      display: grid;
      align-items: center;
    }

    .scene:not(.hero) > .scene-inner {
      min-height: var(--scene-space);
      display: grid;
      align-content: center;
      padding-top: clamp(28px, 4.2vh, 44px);
      padding-bottom: clamp(28px, 4.2vh, 44px);
    }

    .signals .scene-inner {
      padding-top: clamp(26px, 3.8vh, 40px);
      padding-bottom: clamp(24px, 3.4vh, 36px);
    }

    .section-head {
      gap: clamp(36px, 5vw, 70px);
      margin-bottom: clamp(24px, 3.6vh, 36px);
    }

    .section-head h2,
    .direction h2,
    .manifesto h2 {
      margin-top: 13px;
      font-size: clamp(4.25rem, min(6.1vw, 10.5vh), 6.35rem);
    }

    .section-intro { gap: 16px; }
    .section-intro p { line-height: 1.62; }

    .release-grid { gap: clamp(18px, 2vw, 30px); }
    .release-cover { aspect-ratio: 1.24; }
    .release-info { padding: 13px 3px 10px; }
    .transparency-note { margin-top: 18px; font-size: .68rem; }

    .direction-layout {
      align-items: center;
      gap: clamp(48px, 7vw, 108px);
    }
    .direction-copy { position: static; }
    .direction-copy > p { margin-top: 22px; line-height: 1.65; }
    .direction-pulse { height: 44px; margin-top: 28px; }
    .direction-stack { gap: 12px; }
    .direction-card {
      min-height: clamp(150px, 18.5vh, 174px);
      grid-template-columns: 38px 78px 1fr auto;
      gap: 22px;
      padding: clamp(20px, 2.8vh, 26px);
      border-radius: 21px;
    }
    .direction-icon { width: 74px; height: 74px; }
    .direction-card h3 { font-size: clamp(1.1rem, 1.45vw, 1.42rem); }
    .direction-card p { margin-top: 7px; font-size: .72rem; line-height: 1.52; }
    .waveform-icon { grid-template-columns: repeat(7, 2px); gap: 4px; }
    .waveform-icon i { width: 2px; transform: scaleY(.82); }
    .lens-icon i { width: 42px; height: 42px; }
    .archive-icon i { width: 42px; }
    .archive-icon i:nth-child(2) { width: 54px; }

    .manifesto-layout {
      grid-template-columns: minmax(250px, .55fr) minmax(0, 1.45fr);
      grid-template-areas:
        "signal copy"
        "signal next";
      column-gap: clamp(52px, 7vw, 110px);
      row-gap: clamp(18px, 2.8vh, 28px);
      align-items: center;
    }
    .manifesto-signal {
      grid-area: signal;
      min-height: clamp(300px, 48vh, 390px);
    }
    .manifesto-copy { grid-area: copy; }
    .manifesto-copy > p { margin-top: 22px; line-height: 1.62; }
    .manifesto-copy blockquote {
      margin-top: 24px;
      font-size: clamp(.98rem, 1.35vw, 1.2rem);
      line-height: 1.48;
    }
    .manifesto-actions { margin-top: 26px; }
    .next-signal {
      grid-area: next;
      align-self: start;
      width: min(720px, 100%);
      padding: 16px 20px;
      border-radius: 17px;
    }
    .next-signal strong { display: inline-block; margin: 0 0 0 12px; }
    .next-signal p { margin-top: 8px; }
    .next-line { margin-top: 14px; }

    footer {
      min-height: 150px;
      scroll-margin-top: var(--header);
      padding-top: 30px;
      padding-bottom: 30px;
    }
  }

  @media (min-width: 981px) and (max-height: 800px) {
    .scene:not(.hero) > .scene-inner {
      padding-top: 22px;
      padding-bottom: 22px;
    }
    .section-head { margin-bottom: 20px; }
    .section-head h2,
    .direction h2,
    .manifesto h2 {
      font-size: clamp(3.7rem, 9.3vh, 4.9rem);
    }
    .release-cover { aspect-ratio: 1.4; }
    .release-info { padding-top: 10px; }
    .transparency-note { margin-top: 13px; }

    .direction-layout { gap: 48px; }
    .direction-copy > p { margin-top: 18px; }
    .direction-pulse { display: none; }
    .direction-card {
      min-height: 142px;
      grid-template-columns: 34px 68px 1fr auto;
      gap: 18px;
      padding: 18px 20px;
    }
    .direction-icon { width: 64px; height: 64px; }
    .direction-card p { font-size: .68rem; }

    .manifesto-layout { row-gap: 14px; }
    .manifesto-signal { min-height: 270px; }
    .manifesto-letter { font-size: 9rem; }
    .manifesto-rings i:nth-child(1) { width: 150px; height: 150px; }
    .manifesto-rings i:nth-child(2) { width: 220px; height: 220px; }
    .manifesto-rings i:nth-child(3) { width: 280px; height: 280px; }
    .manifesto-copy > p { margin-top: 16px; }
    .manifesto-copy blockquote { margin-top: 17px; padding-left: 16px; }
    .manifesto-actions { margin-top: 18px; }
    .next-signal { padding: 13px 17px; }
    .next-signal p { line-height: 1.45; }
    footer { min-height: 132px; padding-top: 24px; padding-bottom: 24px; }
  }

  @media (max-width: 980px) {
    .scene-inner { padding-bottom: calc(92px + env(safe-area-inset-bottom)); }
    .signals .scene-inner,
    .direction .scene-inner,
    .manifesto .scene-inner { padding-top: 58px; }
    .direction-copy > p,
    .manifesto-copy > p { margin-top: 22px; }
    footer { scroll-margin-top: var(--header); }
  }

  @media (max-width: 720px) {
    .scene-inner { padding-bottom: calc(82px + env(safe-area-inset-bottom)); }
    .signals .scene-inner,
    .direction .scene-inner,
    .manifesto .scene-inner { padding-top: 48px; }
    .direction-layout { gap: 36px; }
    .manifesto-layout { gap: 34px; }
    .manifesto-copy blockquote { margin-top: 26px; }
    .manifesto-actions { margin-top: 28px; }
    footer { padding-bottom: calc(36px + env(safe-area-inset-bottom)); }
  }
}
