:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --panel: #161616;
  --panel-2: #1f1f1f;
  --panel-3: #262626;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --text: #f5f5f5;
  --muted: #a3a3a3;
  --faint: #6e6e6e;
  --mint: #5ef0a0;
  --mint-2: #3fd68a;
  --mint-soft: rgba(94, 240, 160, 0.1);
  --ink: #0a0a0a;
  --gold-1: #c08d18;
  --gold-2: #ecc964;
  --gold-soft: rgba(236, 201, 100, 0.1);
  --radius: 16px;
  --radius-lg: 28px;
  --font: "Segoe UI Variable Text", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --display: "Segoe UI Variable Display", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --mono: "Cascadia Code", "Consolas", ui-monospace, monospace;
  --wrap: 1180px;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--text); font: 400 16px/1.6 var(--font); -webkit-font-smoothing: antialiased; }
img, video, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--mint); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
:focus-visible { outline: 2px solid var(--mint); outline-offset: 3px; border-radius: 6px; }
.wrap { width: min(var(--wrap), 100% - 40px); margin-inline: auto; }
.skip { position: absolute; left: -999px; top: 8px; z-index: 50; padding: 8px 14px; border-radius: 8px; background: var(--text); color: var(--ink); }
.skip:focus { left: 12px; }
b, strong, th, summary, dt { font-weight: 500; }

/* Header */
.top { position: sticky; top: 0; z-index: 30; background: rgba(10, 10, 10, 0.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid transparent; transition: border-color 200ms; }
.top.is-scrolled { border-bottom-color: var(--line); }
.top-in { display: flex; align-items: center; gap: 36px; height: 68px; }
.brand img { height: 26px; width: auto; }
.nav { display: flex; gap: 28px; }
.nav a { color: #d4d4d4; font-size: 14.5px; }
.nav a:hover { color: var(--text); text-decoration: none; }
.top .btn-sm { margin-left: auto; }
.nav-toggle { display: none; margin-left: auto; width: 40px; height: 40px; border: 0; border-radius: 999px; background: var(--panel-3); color: var(--text); cursor: pointer; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 12px 22px; border-radius: 999px; border: 0; background: var(--panel-3); color: var(--text); font: 400 16px/1.2 var(--font); cursor: pointer; transition: background 140ms; }
.btn:hover { text-decoration: none; background: #313131; }
.btn-primary { background: var(--text); color: var(--ink); }
.btn-primary:hover { background: #dcdcdc; }
.btn-sm { padding: 9px 18px; font-size: 14.5px; }
.btn svg { width: 17px; height: 17px; flex: none; }

/* Hero */
.hero { padding: 88px 0 24px; text-align: center; }
.hero-copy { display: flex; flex-direction: column; align-items: center; }
.announce { display: inline-flex; align-items: center; gap: 8px; padding: 5px 5px 5px 14px; border-radius: 999px; border: 1px solid var(--line); background: var(--panel); color: var(--muted); font-size: 13.5px; }
.announce:hover { text-decoration: none; border-color: var(--line-2); }
.announce b { color: var(--text); }
.announce span::before { content: "·"; margin-right: 8px; color: var(--faint); }
.announce i { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--panel-3); color: var(--text); }
h1 { margin: 28px 0 20px; font: 500 clamp(48px, 7.4vw, 92px)/1 var(--display); letter-spacing: -0.045em; }
.h1-mascot { display: inline-block; height: 0.86em; width: auto; margin: 0 0.04em; vertical-align: -0.1em; }
.lead { margin: 0 0 34px; max-width: 36em; color: var(--muted); font-size: clamp(17px, 1.6vw, 20px); line-height: 1.55; }
.cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.fineprint { margin: 18px 0 0; color: var(--faint); font-size: 13.5px; }
.hero-shot { position: relative; max-width: 1000px; margin: 64px auto 0; text-align: left; }
.hero-mascot { position: absolute; left: -40px; bottom: -36px; width: 118px; }
.window { border-radius: 22px; border: 1px solid var(--line-2); background: var(--panel); overflow: hidden; }
.window-bar { display: flex; align-items: center; gap: 7px; height: 36px; padding: 0 16px; background: var(--panel); border-bottom: 1px solid var(--line); }
.window-bar i { width: 11px; height: 11px; border-radius: 50%; background: #3a3a3a; }
.window-bar i:nth-child(1) { background: #ff5f57; }
.window-bar i:nth-child(2) { background: #febc2e; }
.window-bar i:nth-child(3) { background: #28c840; }
.window-bar span { margin-left: 10px; color: var(--muted); font-size: 12.5px; }

/* Sections */
section { padding: 112px 0; }
h2 { margin: 0 0 16px; font: 500 clamp(32px, 4.2vw, 54px)/1.06 var(--display); letter-spacing: -0.035em; }
h3 { margin: 0 0 6px; font: 500 18px/1.35 var(--display); letter-spacing: -0.01em; }
.section-lead { margin: 0 0 52px; max-width: 40em; color: var(--muted); font-size: 18px; }
.center { text-align: center; }
.center .section-lead, .section-lead.center { margin-inline: auto; }

/* Award */
.award { padding: 72px 0 40px; }
.award-card { display: grid; grid-template-columns: 1fr 1.25fr; border-radius: var(--radius-lg); overflow: hidden; background: #14120c; }
.award-gold { position: relative; display: grid; place-content: center; gap: 6px; padding: 44px 32px; text-align: center; color: #1b1606; background: var(--gold-2); }
.award-mascot { width: 190px; height: auto; margin: -8px auto 4px; }
.award-gold b { font: 500 clamp(44px, 5vw, 64px)/1 Georgia, "Times New Roman", serif; letter-spacing: -0.02em; }
.award-gold strong { font-size: 15px; letter-spacing: 0.28em; }
.award-gold span { font-size: 14px; font-weight: 500; }
.award-body { padding: 38px 40px; }
.award-body h3 { font-size: 22px; color: #f3dc98; }
.award-meta { margin: 0 0 22px; color: #c9bfa1; font-size: 15px; }
.scores { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; margin: 0 0 24px; padding: 0; list-style: none; }
.scores li { display: grid; gap: 6px; font-size: 14px; color: #d8cfb3; }
.scores li span { display: flex; justify-content: space-between; }
.scores li b { color: #fff4cf; font-variant-numeric: tabular-nums; }
.bar { height: 6px; border-radius: 3px; background: rgba(255, 255, 255, 0.08); overflow: hidden; }
.bar i { display: block; height: 100%; border-radius: 3px; background: var(--gold-2); }
.quote { margin: 0 0 18px; padding: 0 0 0 16px; border-left: 2px solid var(--gold-2); color: #e9e2cc; font-size: 15.5px; line-height: 1.6; }
.quote cite { display: block; margin-top: 6px; color: #b3a883; font-size: 13px; font-style: normal; }
.award-links { display: flex; flex-wrap: wrap; gap: 10px; }
.award-links .btn { background: rgba(236, 201, 100, 0.1); color: #f3dc98; }
.award-links .btn:hover { background: rgba(236, 201, 100, 0.18); }

/* Video */
.video-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: #000; aspect-ratio: 16 / 9; }
.video-frame video { width: 100%; height: 100%; object-fit: cover; }

/* Bento */
.bento { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.tile { display: flex; flex-direction: column; min-height: 440px; padding: 34px 32px 0; border-radius: var(--radius-lg); background: var(--panel); overflow: hidden; }
.tile-text p { margin: 0; color: var(--muted); font-size: 16px; }
.tile-art { position: relative; flex: 1; display: flex; margin-top: 30px; }

.mock { position: relative; flex: 1; min-height: 250px; padding: 12px 16px; border-radius: 16px 16px 0 0; border: 1px solid var(--line); border-bottom: 0; background: var(--bg-2); }
.mock-bar { display: flex; gap: 6px; margin-bottom: 16px; }
.mock-bar i { width: 8px; height: 8px; border-radius: 50%; background: #333; }
.mock-tools { display: flex; align-items: center; gap: 8px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.mock-tools > span { width: 46px; height: 24px; border-radius: 7px; background: var(--panel-2); }
.mock-tools > .mock-target { position: relative; display: grid; place-items: center; width: auto; padding: 0 12px; color: var(--text); font-size: 12.5px; }
.mock-ring { position: absolute; inset: -9px -12px; border: 2px solid var(--mint); border-radius: 50%; transform: rotate(-5deg); }
.mock-lines { display: grid; gap: 10px; padding-top: 18px; }
.mock-lines span { height: 9px; border-radius: 5px; background: var(--panel-2); }
.mock-lines span:nth-child(2n) { width: 72%; }
.mock-lines span:nth-child(3n) { width: 54%; }
.ptr { position: absolute; left: 78%; top: 78%; display: flex; align-items: flex-start; }
.ptr svg { width: 26px; height: 26px; overflow: visible; }
.ptr path { fill: var(--c); stroke: var(--ink); stroke-width: 1.6; stroke-linejoin: round; }
.ptr b { margin: 16px 0 0 -2px; padding: 1px 7px; border-radius: 6px; background: var(--c); color: var(--ink); font-size: 11.5px; white-space: nowrap; }
.bubble { position: absolute; left: 36%; top: 128px; max-width: 230px; padding: 9px 13px; border-radius: 14px; background: var(--panel-3); color: var(--text); font-size: 13.5px; line-height: 1.45; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }

.face { display: block; flex: none; width: 34px; height: 34px; object-fit: contain; }

.art-list { align-items: flex-end; }
.roster { flex: 1; margin: 0; padding: 10px; list-style: none; border-radius: 16px 16px 0 0; border: 1px solid var(--line); border-bottom: 0; background: var(--bg-2); }
.roster li { display: grid; grid-template-columns: auto 1fr auto; grid-template-rows: auto auto; column-gap: 12px; align-items: center; padding: 9px 10px; border-radius: 12px; }
.roster li.is-on { background: var(--panel-3); }
.roster .face { grid-row: span 2; width: 38px; height: 38px; }
.roster b { font-size: 14.5px; }
.roster span { grid-column: 2; color: var(--faint); font-size: 13px; }
.roster time { grid-column: 3; grid-row: 1; color: var(--faint); font-size: 12px; }

.art-memory { flex-direction: column; justify-content: flex-end; gap: 8px; padding-bottom: 30px; }
.thread-head { display: flex; align-items: center; gap: 10px; margin-bottom: auto; padding-bottom: 14px; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.thread-head span { color: var(--faint); font-size: 13px; }
.msg { align-self: flex-start; max-width: 86%; padding: 10px 14px; border-radius: 16px; background: var(--panel-3); font-size: 14.5px; line-height: 1.45; }
.msg b { display: block; margin-bottom: 2px; color: var(--c); font-size: 12.5px; }
.msg-me { align-self: flex-end; background: #ececec; color: #111; }
.memo { margin: 10px 0 0; color: var(--faint); font-size: 13px; text-align: center; }
.memo span { display: inline-flex; align-items: center; gap: 6px; margin-left: 4px; padding: 1px 9px 1px 7px; border-radius: 999px; background: rgba(245, 166, 35, 0.12); color: var(--c); }
.memo span::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--c); }

.mock-page { min-height: 290px; }
.mock-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 20px; }
.mock-cards span { height: 64px; border-radius: 10px; background: var(--panel-2); }
.asking { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 8px; padding: 5px 6px; border-radius: 999px; border: 1px solid rgba(106, 183, 255, 0.35); background: #0d1822; color: #9ccfff; font-size: 14.5px; white-space: nowrap; }
.asking .face { width: 24px; height: 24px; }
.faces { display: flex; margin-left: 6px; }
.faces .face { width: 24px; height: 24px; margin-left: -6px; }

.also { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 40px; margin-top: 72px; }
.also > div { padding-top: 20px; border-top: 1px solid var(--line); }
.also h3 { font-size: 16.5px; }
.also p { margin: 0; color: var(--muted); font-size: 15px; }

/* Showcase rows */
.show { display: grid; grid-template-columns: 1fr 1.25fr; gap: 64px; align-items: center; }
.show + .show { margin-top: 104px; }
.show.flip .show-text { order: 2; }
.show-text h3 { font-size: 24px; letter-spacing: -0.02em; }
.show-text p { color: var(--muted); font-size: 17px; }
.ticks { margin: 20px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.ticks li { position: relative; padding-left: 22px; color: #d4d4d4; font-size: 15.5px; }
.ticks li::before { content: ""; position: absolute; left: 2px; top: 10px; width: 7px; height: 7px; border-radius: 50%; background: var(--mint); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; counter-reset: step; }
.step { position: relative; padding: 30px 28px 28px; border-radius: 24px; background: var(--panel); }
.step::before { counter-increment: step; content: counter(step, decimal-leading-zero); display: block; margin-bottom: 26px; color: var(--faint); font: 400 14px/1 var(--mono); }
.step p { margin: 0; color: var(--muted); font-size: 15px; }
kbd { display: inline-block; padding: 1px 7px; border: 1px solid var(--line-2); border-bottom-width: 2px; border-radius: 6px; background: var(--panel-2); color: var(--text); font: 400 13px/1.5 var(--font); }

/* Brains */
.brains-in { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center; }
.brains-copy .section-lead { margin-bottom: 30px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px 7px 10px; border-radius: 999px; border: 1px solid var(--line-2); background: transparent; color: var(--muted); font: 400 14.5px/1.2 var(--font); cursor: pointer; transition: color 140ms, background 140ms, border-color 140ms; }
.chip:hover { color: var(--text); }
.chip span { width: 10px; height: 10px; border-radius: 50%; background: var(--c); }
.chip[aria-selected="true"] { border-color: rgba(94, 240, 160, 0.4); background: var(--mint-soft); color: var(--mint); }
.chip-detail { margin-top: 30px; min-height: 104px; }
.chip-detail p { margin: 0; color: var(--muted); font-size: 17px; }
.chip-detail b { color: var(--text); }
.chip-detail .chip-need { margin-top: 10px; color: var(--faint); font-size: 14.5px; }
.chip-need span { color: #d4d4d4; }

/* Privacy band */
.band { border-radius: var(--radius-lg); padding: 48px; background: var(--panel); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 44px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* Install */
.install { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: start; }
.dl-card { padding: 32px; border-radius: 24px; background: var(--panel); }
.dl-card h3 { display: flex; align-items: center; gap: 12px; font-size: 22px; }
.dl-card h3 img { width: 44px; height: 44px; border-radius: 10px; }
.dl-meta { margin: 6px 0 22px; color: var(--muted); font-size: 14.5px; }
.hash { display: flex; align-items: center; gap: 8px; margin-top: 20px; padding: 10px 12px; border-radius: 12px; border: 1px solid var(--line); background: var(--bg); font: 400 12.5px/1.4 var(--mono); color: var(--muted); word-break: break-all; }
.hash button { flex: none; padding: 5px 12px; border-radius: 999px; border: 0; background: var(--panel-3); color: var(--text); font: 400 12px var(--font); cursor: pointer; }
pre { margin: 12px 0 0; padding: 14px 16px; overflow-x: auto; border-radius: 12px; border: 1px solid var(--line); background: var(--bg-2); color: #cfe9dc; font: 400 13px/1.6 var(--mono); }
.req { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.req li { padding: 16px 18px; border-radius: 16px; background: var(--panel); color: var(--muted); font-size: 15px; }
.req b { color: var(--text); }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 8px; }
.faq details { border-radius: 18px; background: var(--panel); }
.faq summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; font-weight: 500; cursor: pointer; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; flex: none; width: 18px; height: 18px; background: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%20256%20256'%3E%3Cpath%20d%3D'M224%2C128a8%2C8%2C0%2C0%2C1-8%2C8H136v80a8%2C8%2C0%2C0%2C1-16%2C0V136H40a8%2C8%2C0%2C0%2C1%2C0-16h80V40a8%2C8%2C0%2C0%2C1%2C16%2C0v80h80A8%2C8%2C0%2C0%2C1%2C224%2C128Z'%20fill%3D'%23a3a3a3'%2F%3E%3C%2Fsvg%3E") center / 18px no-repeat; transition: transform 160ms; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0; padding: 0 24px 22px; color: var(--muted); }
.faq-mascot { display: block; width: 96px; height: auto; margin: 0 auto 10px; }

/* Team */
.team { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.person { min-width: 190px; padding: 24px 28px; border-radius: 22px; background: var(--panel); text-align: center; }
.person img { display: block; width: 76px; height: auto; margin: 0 auto 12px; }
.person span { display: block; color: var(--faint); font-size: 13.5px; }

.crew { max-width: 1000px; margin: 40px auto 0; }
.crew-photo { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--panel); }
.crew-photo img { width: 100%; }
.tag { position: absolute; left: var(--x); top: var(--y); transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; padding: 6px 11px 7px; border-radius: 10px; background: var(--ink); border: 1px solid var(--mint); color: var(--text); line-height: 1.2; white-space: nowrap; box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45); }
.tag::before { content: ""; position: absolute; left: 50%; top: -6px; width: 10px; height: 10px; background: var(--ink); border-left: 1px solid var(--mint); border-top: 1px solid var(--mint); transform: translateX(-50%) rotate(45deg); }
.tag b { font-size: 13.5px; }
.tag small { color: var(--mint); font-size: 11px; letter-spacing: 0.02em; }
.tag i { display: none; font-style: normal; }
.tag-amb, .tag-amb::before { border-color: var(--gold-2); }
.tag-amb small { color: var(--gold-2); }
.crew figcaption { margin-top: 16px; color: var(--faint); font-size: 14px; }
.crew figcaption p { margin: 10px 0 0; }
.crew-legend { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 22px; margin: 0; padding: 0; list-style: none; counter-reset: crew; }
.crew-legend li { counter-increment: crew; }
.crew-legend li::before { content: counter(crew); display: inline-grid; place-items: center; width: 18px; height: 18px; margin-right: 7px; border-radius: 50%; background: var(--mint-soft); color: var(--mint); font-size: 11px; vertical-align: 1px; }
.crew-legend li:first-child::before, .crew-legend li:last-child::before { background: var(--gold-soft); color: var(--gold-2); }
.crew-legend b { color: var(--text); margin-right: 4px; }

/* Final CTA */
.final { padding: 120px 0; text-align: center; }
.final .final-mascot { width: 170px; height: auto; margin: 0 auto 18px; }

/* Footer */
footer { padding: 44px 0 56px; border-top: 1px solid var(--line); color: var(--faint); font-size: 14px; }
.foot { display: flex; flex-wrap: wrap; gap: 20px 40px; justify-content: space-between; align-items: flex-start; }
.foot img { height: 24px; width: auto; margin-bottom: 10px; }
.foot nav { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.foot nav a { color: var(--muted); }

/* Legal pages */
.legal { padding: 60px 0 90px; }
.legal .wrap { max-width: 800px; }
.legal h1 { font-size: clamp(34px, 4vw, 48px); margin-top: 0; }
.legal h2 { margin: 44px 0 12px; font-size: 24px; }
.legal h3 { margin-top: 26px; }
.legal p, .legal li { color: #cfcfcf; }
.legal ul { padding-left: 22px; }
.legal li { margin: 6px 0; }
.updated { color: var(--faint); font-size: 14px; }
.note { padding: 16px 18px; border-radius: 14px; background: var(--panel); color: var(--muted); }
.license-text { white-space: pre-wrap; word-break: break-word; color: var(--text); font-size: 13px; }

/* Gleam cursor */
.has-gleam-cursor, .has-gleam-cursor * { cursor: none !important; }
.gleam-cursor { position: fixed; left: 0; top: 0; z-index: 1000; pointer-events: none; opacity: 0; transition: opacity 140ms; will-change: transform; }
.gleam-cursor.is-on { opacity: 1; }
.gc-pose { position: absolute; left: -45.13px; top: -17.89px; width: 46px; transform-origin: 45.13px 17.89px; }
.gc-pose svg { display: block; width: 46px; height: auto; overflow: visible; }
.gc-eye { transform-box: fill-box; transform-origin: 50% 50%; }

/* Motion start states */
.m .reveal, .m .hero-copy > *, .m .hero-mascot, .m .award-mascot, .m .faq-mascot, .m .final-mascot, .m .person img { opacity: 0; }
.m .bar i { transform: scaleX(0); transform-origin: left center; }

/* Scrollbar */
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { border: 3px solid var(--bg); border-radius: 999px; background: #3a3a3a; }
::-webkit-scrollbar-thumb:hover { background: var(--mint-2); }
::-webkit-scrollbar-thumb:active { background: var(--mint); }
::-webkit-scrollbar-corner { background: var(--bg); }
@supports not selector(::-webkit-scrollbar) {
  html { scrollbar-width: thin; scrollbar-color: #3a3a3a var(--bg); }
}

/* Responsive */
@media (max-width: 1100px) {
  .hero-mascot { left: -8px; bottom: -30px; width: 90px; }
}
@media (max-width: 980px) {
  .show, .install, .award-card, .brains-in { grid-template-columns: 1fr; }
  .show { gap: 36px; }
  .show.flip .show-text { order: 0; }
  .steps, .also, .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .bento { grid-template-columns: 1fr; }
  .tile { min-height: 0; }
}
@media (max-width: 760px) {
  .nav { display: none; position: absolute; left: 0; right: 0; top: 68px; flex-direction: column; gap: 0; padding: 8px 20px 16px; background: var(--bg); border-bottom: 1px solid var(--line); }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav-toggle { display: grid; place-items: center; }
  .top .btn-sm { display: none; }
  .steps, .also, .grid-2, .grid-3, .scores { grid-template-columns: 1fr; }
  section { padding: 72px 0; }
  .hero { padding-top: 56px; }
  .hero-shot { margin-top: 48px; }
  .award-body, .band { padding: 28px 22px; }
  .tile { padding: 26px 22px 0; }
  .announce span { display: none; }
}
@media (max-width: 720px) {
  .tag { padding: 0; width: 22px; height: 22px; border-radius: 50%; justify-content: center; }
  .tag::before, .tag b, .tag small { display: none; }
  .tag i { display: block; font-size: 11.5px; }
  .tag-amb i { color: var(--gold-2); }
}
@media (max-width: 480px) {
  .hero-mascot { width: 64px; bottom: -22px; }
  .bubble { left: 18%; }
}
