/* Agent Glyph: white light on black glass. */

@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/inter-tight-latin.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("../fonts/jetbrains-mono-latin.woff2") format("woff2");
  font-weight: 400 500;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #000;
  --glass: #070708;
  --raise: #0d0d0f;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f4f4f5;
  --soft: #c9c9ce;
  --muted: #9b9ba3;          /* 7.4:1 on black */
  --faint: #83838b;          /* 5.4:1 on black */
  --accent: #8ef5cf;         /* the one accent: focus and small signals */
  --radius: 18px;
  --gutter: clamp(16px, 5vw, 40px);
  --section: clamp(88px, 13vw, 168px);
  --sans: "Inter Tight", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 72px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: clamp(16px, 0.35vw + 15px, 18px);
  line-height: 1.6;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, canvas, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration-color: var(--line-strong); text-underline-offset: 3px; }
a:hover { text-decoration-color: currentColor; }
p { margin: 0 0 1em; }
h1, h2, h3 { margin: 0; font-weight: 600; letter-spacing: -0.02em; line-height: 1.08; text-wrap: balance; }
h1 { font-size: clamp(42px, 9vw, 92px); letter-spacing: -0.02em; line-height: 1; }
h2 { font-size: clamp(34px, 6vw, 64px); letter-spacing: -0.02em; margin-bottom: 0.45em; }
h3 { font-size: clamp(18px, 1.2vw + 14px, 22px); letter-spacing: -0.01em; margin-bottom: 0.35em; }
code { font-family: var(--mono); font-size: 0.88em; }
strong { font-weight: 600; color: var(--text); }
em { font-style: normal; color: var(--text); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--text); color: #000; padding: 10px 14px; border-radius: 10px; font-weight: 600; text-decoration: none; }
.skip:focus { top: 12px; }
.js-only { display: none !important; }
.js .js-only { display: revert !important; }
.js td.js-only { display: table-cell !important; }
.js .stage__actions.js-only, .js .chips.js-only { display: flex !important; }

.wrap { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 var(--gutter); }
.muted { color: var(--muted); }
.small { font-size: 0.875rem; line-height: 1.55; }
.lede { color: var(--soft); font-size: clamp(17px, 0.6vw + 15px, 21px); line-height: 1.55; max-width: 38em; }

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  display: flex; gap: 12px; align-items: center;
}
.eyebrow .num { color: var(--text); }
.eyebrow .num::after { content: ""; display: inline-block; width: 28px; height: 1px; background: var(--line-strong); margin-left: 12px; vertical-align: middle; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 22px;
  border-radius: 999px; border: 1px solid var(--text);
  background: var(--text); color: #000;
  font: 600 16px/1 var(--sans); letter-spacing: 0;
  text-decoration: none; cursor: pointer;
  transition: background-color .2s, color .2s, border-color .2s, transform .2s;
}
.btn:hover { background: #fff; }
.btn:active { transform: scale(0.98); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn--ghost:hover { background: rgba(255,255,255,0.06); border-color: var(--text); }
.btn--small { min-height: 40px; padding: 0 16px; font-size: 14px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0 20px; }
.fine { font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: var(--faint); }

/* Header */
.top {
  position: sticky; top: 0; z-index: 50;
  background: rgba(0,0,0,0.72);
  -webkit-backdrop-filter: saturate(140%) blur(14px); backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.top.is-scrolled { border-bottom-color: var(--line); }
.top__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; letter-spacing: -0.01em; text-decoration: none; min-height: 44px; }
.brand__mark { width: 22px; height: 22px; }
.top__nav { display: none; gap: 28px; font-size: 15px; color: var(--muted); }
.top__nav a { text-decoration: none; padding: 10px 0; }
.top__nav a:hover { color: var(--text); }
@media (min-width: 960px) { .top__nav { display: flex; } }

/* The panel */
.panel {
  position: relative; display: block;
  width: 100%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 38%, #0c0c0e 0%, #050506 62%, #000 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06), inset 0 1px 0 rgba(255,255,255,0.05), 0 30px 80px -40px rgba(255,255,255,0.08);
}
.panel canvas, .panel img { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 50%; }
.panel.is-failed::after { content: "Frames failed to load"; position: absolute; inset: 0; display: grid; place-items: center; color: var(--faint); font-size: 13px; }

/* Hero */
.hero { padding: clamp(28px, 6vw, 80px) 0 var(--section); position: relative; }
.hero::before {
  content: ""; position: absolute; inset: -10% 0 auto; height: 900px; pointer-events: none;
  background: radial-gradient(40% 40% at 70% 40%, rgba(255,255,255,0.07), transparent 70%);
}
.hero__grid { display: grid; gap: 40px; align-items: center; position: relative; }
.hero__copy h1 { margin-bottom: 24px; }
.hero__panel { margin: 0 auto; width: min(80vw, 560px); order: -1; }
.panel--hero { box-shadow: inset 0 0 0 1px rgba(255,255,255,0.07), 0 40px 140px -40px rgba(255,255,255,0.14); }
.hero__states { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 28px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--faint); text-align: center; }
.hero__states span { position: relative; padding-top: 14px; transition: color .3s; white-space: nowrap; }
.hero__states span::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; border-radius: 2px; background: var(--line); transition: background-color .3s; }
.hero__states span.is-on { color: var(--text); }
.hero__states span.is-on::before { background: var(--text); }
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; gap: 64px; min-height: min(760px, calc(100vh - 64px)); }
  .hero__panel { order: 2; width: min(100%, 560px); }
}

/* Sections */
.section { padding: var(--section) 0 0; }
.section__head { max-width: 860px; margin-bottom: clamp(40px, 6vw, 72px); }
.split { display: grid; gap: 48px; align-items: start; }
.split__media { display: grid; gap: 24px; }
@media (max-width: 899px) { .split--media-first .split__media { order: -1; } }
.split > *, .gallery > *, .price > *, .hero__grid > *, .faq > * { min-width: 0; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: clamp(48px, 7vw, 112px); }
  .split__media { position: sticky; top: 96px; }
  .split--reverse .split__media { order: -1; }
}
.stage { background: var(--glass); border: 1px solid var(--line); border-radius: calc(var(--radius) + 10px); padding: clamp(24px, 6vw, 56px); display: grid; justify-items: center; gap: 20px; }
.stage .panel { width: min(100%, 440px); }
.stage__label { margin: 0; font-family: var(--mono); font-size: 13px; letter-spacing: 0.06em; color: var(--muted); min-height: 1.6em; text-align: center; }
.stage__actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 12px; }
.chip {
  min-height: 40px; padding: 0 16px; border-radius: 999px;
  border: 1px solid var(--line-strong); background: transparent; color: var(--soft);
  font: 500 15px/1 var(--sans); cursor: pointer; transition: background-color .2s, color .2s, border-color .2s;
}
.chip:hover { border-color: var(--text); color: var(--text); }
.chip[aria-pressed="true"] { background: var(--text); color: #000; border-color: var(--text); }
.chip-note { color: var(--muted); min-height: 3.2em; margin-bottom: 28px; }

.facts { margin: 0; border-top: 1px solid var(--line); }
.facts div { display: grid; grid-template-columns: 8.5em 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.facts dt { font-weight: 600; }
.facts dd { margin: 0; color: var(--muted); }

/* People */
.people__intro { max-width: 900px; margin-bottom: clamp(40px, 7vw, 88px); }
.people__intro h2 { font-size: clamp(40px, 8vw, 88px); }
.quote { font-size: clamp(20px, 1.6vw + 14px, 30px); color: var(--muted); letter-spacing: -0.015em; margin: 0; }
.quote::before { content: "\201C"; } .quote::after { content: "\201D"; }
.steps { list-style: none; padding: 0; margin: 0 0 32px; counter-reset: s; display: grid; gap: 4px; }
.steps li { counter-increment: s; position: relative; padding: 20px 0 16px 52px; border-top: 1px solid var(--line); }
.steps li::before { content: counter(s, decimal-leading-zero); position: absolute; left: 0; top: 23px; font-family: var(--mono); font-size: 13px; color: var(--faint); }
.steps p { color: var(--muted); margin: 0; }
.people-row { list-style: none; padding: 0; margin: clamp(56px, 8vw, 96px) 0 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(96px, 1fr)); gap: clamp(16px, 3vw, 32px); }
.people-row li { display: grid; gap: 12px; justify-items: center; text-align: center; color: var(--muted); font-size: 15px; }
.panel--small { width: min(100%, 160px); }

/* Music */
.styles { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 4vw, 40px) clamp(16px, 3vw, 32px); }
@media (min-width: 900px) { .styles { grid-template-columns: repeat(4, 1fr); } }
.styles .panel { margin-bottom: 20px; }
.styles p { color: var(--muted); font-size: 15px; margin: 0; }
.tag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--line-strong); border-radius: 99px; padding: 2px 7px; vertical-align: middle; margin-left: 6px; font-weight: 400; }
.notes { display: grid; gap: 8px 48px; margin-top: clamp(48px, 7vw, 80px); padding-top: 32px; border-top: 1px solid var(--line); color: var(--muted); }
@media (min-width: 900px) { .notes { grid-template-columns: 1fr 1fr; } }

/* Tables */
.table-wrap { margin-top: 32px; overflow-x: auto; }
.table-wrap--flush { margin-top: 0; }
.stats { margin-top: 32px !important; }
.stats + .small { margin-top: 20px; }
table { width: 100%; border-collapse: collapse; font-size: 15px; }
th, td { text-align: left; padding: 14px 12px 14px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
thead th { font-family: var(--mono); font-weight: 400; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); border-bottom-color: var(--line-strong); }
tbody th { font-weight: 600; white-space: nowrap; }
tbody td { color: var(--muted); }
.gesture-table td:last-child { text-align: right; padding-right: 0; }
.try { min-height: 36px; padding: 0 14px; border-radius: 99px; border: 1px solid var(--line-strong); background: transparent; color: var(--text); font: 500 13px/1 var(--sans); cursor: pointer; }
.try:hover, .try[aria-pressed="true"] { background: var(--text); color: #000; border-color: var(--text); }

.stats { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; color: var(--muted); font-size: 13px; line-height: 1.4; }
.stat { display: block; font-size: clamp(30px, 5vw, 44px); font-weight: 600; color: var(--text); letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 6px; }
.stat small { font-size: 0.5em; color: var(--muted); font-weight: 500; }

/* Faces */
.gallery { display: grid; gap: 40px; }
@media (min-width: 900px) { .gallery { grid-template-columns: minmax(320px, 440px) 1fr; gap: clamp(48px, 6vw, 96px); align-items: start; } .gallery__stage { position: sticky; top: 96px; } }
.gallery__stage { display: grid; justify-items: center; text-align: center; gap: 6px; }
.panel-button { display: block; width: min(100%, 400px); padding: 0; border: 0; background: none; border-radius: 50%; cursor: pointer; margin-bottom: 20px; -webkit-tap-highlight-color: transparent; }
.panel-button:active .panel { transform: scale(0.99); }
.panel-button:focus-visible { border-radius: 50%; outline-offset: 6px; }
.gallery__name { font-size: 22px; font-weight: 600; margin: 0; letter-spacing: -0.01em; }
.gallery__about { color: var(--muted); margin: 0 0 16px; min-height: 3.2em; max-width: 26em; }
.gallery__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); gap: 18px 12px; }
@media (min-width: 600px) { .gallery__grid { grid-template-columns: repeat(auto-fill, minmax(104px, 1fr)); } }
.thumb { display: grid; gap: 8px; justify-items: center; padding: 8px 4px; border: 1px solid transparent; border-radius: 16px; background: none; color: var(--muted); font: 500 13px/1.2 var(--sans); cursor: pointer; transition: border-color .2s, color .2s, background-color .2s; }
.thumb .panel { width: 100%; max-width: 104px; }
.thumb:hover { color: var(--text); background: var(--glass); }
.thumb[aria-current="true"] { border-color: var(--line-strong); color: var(--text); background: var(--glass); }
.gallery__static { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; text-align: center; color: var(--muted); font-size: 14px; }
.face-groups { display: grid; gap: 0 48px; margin-top: clamp(56px, 8vw, 96px); border-top: 1px solid var(--line); }
@media (min-width: 700px) { .face-groups { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .face-groups { grid-template-columns: repeat(3, 1fr); } }
.face-groups > div { padding: 24px 0; border-bottom: 1px solid var(--line); }
.face-groups p { color: var(--muted); font-size: 15px; margin: 0; }

/* Privacy */
.principles { list-style: none; padding: 0; margin: 0; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
@media (min-width: 700px) { .principles { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .principles { grid-template-columns: repeat(3, 1fr); } }
.principles li { background: var(--bg); padding: clamp(24px, 3vw, 36px); }
.principles li::before { content: ""; display: block; width: 7px; height: 7px; border-radius: 50%; background: #fff; box-shadow: 0 0 10px 1px rgba(255,255,255,0.55); margin-bottom: 22px; }
.principles p { color: var(--muted); margin: 0; font-size: 15px; }
.table-title { margin-top: clamp(56px, 8vw, 88px); }
@media (max-width: 699px) {
  .perm-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .perm-table tr { display: block; padding: 16px 0; border-bottom: 1px solid var(--line); }
  .perm-table th, .perm-table td { display: block; border: 0; padding: 2px 0; white-space: normal; }
  .perm-table td::before { content: attr(data-label) ": "; color: var(--faint); font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
}

/* Developers */
.code { margin: 24px 0 36px; background: var(--glass); border: 1px solid var(--line); border-radius: var(--radius); overflow-x: auto; }
.code pre { margin: 0; padding: 20px 22px; font-family: var(--mono); font-size: 13.5px; line-height: 1.7; color: var(--soft); }
.code code { font-size: inherit; }
.code .c { color: var(--faint); }
.split__text > h3 { margin-top: 8px; }
.extras { list-style: none; padding: 0; margin: 8px 0 0; }
.extras li { padding: 20px 0; border-top: 1px solid var(--line); }
.extras p { color: var(--muted); font-size: 15px; margin: 0; }

/* Get started */
.setup { list-style: none; padding: 0; margin: 0; display: grid; gap: 1px; counter-reset: s; }
@media (min-width: 700px) { .setup { grid-template-columns: repeat(2, 1fr); gap: 0 48px; } }
@media (min-width: 1100px) { .setup { grid-template-columns: repeat(4, 1fr); } }
.setup li { counter-increment: s; padding: 28px 0; border-top: 1px solid var(--line-strong); }
.setup li::before { content: counter(s, decimal-leading-zero); display: block; font-family: var(--mono); font-size: 13px; color: var(--faint); margin-bottom: 18px; }
.setup p { color: var(--muted); margin: 0; font-size: 15px; }

/* Price */
.price { display: grid; gap: 24px; }
@media (min-width: 900px) { .price { grid-template-columns: 1fr 1fr; gap: 32px; } }
.price__card, .price__form { border: 1px solid var(--line); border-radius: calc(var(--radius) + 10px); padding: clamp(28px, 5vw, 56px); background: var(--glass); }
.price__form { background: linear-gradient(180deg, #0f0f11, #070708); }
.price__amount { font-size: clamp(56px, 10vw, 96px); letter-spacing: -0.04em; }
.price__note { font-size: 16px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.checks { list-style: none; padding: 0; margin: 28px 0; display: grid; gap: 10px; }
.checks li { position: relative; padding-left: 26px; color: var(--soft); }
.checks li::before { content: ""; position: absolute; left: 2px; top: 0.62em; width: 7px; height: 7px; border-radius: 50%; background: #fff; box-shadow: 0 0 8px rgba(255,255,255,0.6); }
.notify label { display: block; font-size: 14px; color: var(--muted); margin: 24px 0 8px; }
.notify__row { display: flex; flex-wrap: wrap; gap: 10px; }
.notify input { flex: 1 1 220px; min-height: 52px; padding: 0 18px; border-radius: 999px; border: 1px solid var(--line-strong); background: #000; color: var(--text); font: 16px var(--sans); }
.notify input::placeholder { color: var(--faint); }
.notify input:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.notify .btn { min-height: 52px; flex: 0 0 auto; }
.notify__status { min-height: 1.6em; margin: 14px 0 0; color: var(--soft); font-size: 15px; }
.notify__status.is-error { color: #ffb4b4; }

/* FAQ */
@media (min-width: 900px) { .faq { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; } }
.faq__list details { border-top: 1px solid var(--line); }
.faq__list details:last-child { border-bottom: 1px solid var(--line); }
.faq__list summary { list-style: none; cursor: pointer; padding: 22px 40px 22px 0; font-size: clamp(17px, 0.5vw + 15px, 20px); font-weight: 500; position: relative; }
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after { content: ""; position: absolute; right: 6px; top: 50%; width: 12px; height: 12px; margin-top: -8px; border-right: 1.5px solid var(--muted); border-bottom: 1.5px solid var(--muted); transform: rotate(45deg); transition: transform .2s; }
.faq__list details[open] summary::after { transform: rotate(225deg); margin-top: -2px; }
.faq__list details p { color: var(--muted); margin: 0 0 24px; max-width: 42em; }

/* Media slots (filled in by main.js when videos exist) */
.video-slot:empty { display: none; }
.video-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--glass); }
.video-card video { width: 100%; height: auto; background: #000; }
.video-card figcaption { padding: 12px 16px; font-size: 14px; color: var(--muted); }

/* Footer */
.footer { margin-top: var(--section); padding: 56px 0 calc(40px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); }
.footer__grid { display: grid; gap: 24px; }
@media (min-width: 900px) { .footer__grid { grid-template-columns: 1fr 2fr; column-gap: 64px; } .footer__meta { grid-column: 2; } }
.footer__legal { color: var(--muted); margin: 0; max-width: 46em; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* Explainer video cards */
.video-card { margin: 0; }
.video-card--tall { width: 100%; }
.video-card--tall .video-card__play { display: flex; align-items: center; }
.video-card--tall .video-card__play img { width: 76px; flex: none; aspect-ratio: 9 / 16; object-fit: cover; }
.video-card--tall .video-card__label { border-top: 0; }
.video-card--tall video { max-width: 360px; margin: 0 auto; }
.video-card__play { display: block; width: 100%; padding: 0; border: 0; background: #000; color: var(--text); cursor: pointer; text-align: left; font: inherit; position: relative; }
.video-card__play img { width: 100%; height: auto; opacity: 0.72; transition: opacity .2s; }
.video-card__play:hover img { opacity: 0.9; }
.video-card__label { display: flex; align-items: center; gap: 12px; padding: 14px 16px; font-size: 15px; font-weight: 500; border-top: 1px solid var(--line); }
.video-card__text small { display: block; font-size: 13px; font-weight: 400; color: var(--muted); }
.video-card__icon { flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--text); position: relative; }
.video-card__icon::after { content: ""; position: absolute; left: 13px; top: 10px; border-style: solid; border-width: 7px 0 7px 11px; border-color: transparent transparent transparent #000; }
.video-card video { width: 100%; display: block; }
.section > .wrap > .video-slot { margin-top: 48px; max-width: 760px; }

/* Try it */
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__head--center .eyebrow { justify-content: center; }
.section__head--center .lede { margin-left: auto; margin-right: auto; }
.trybox { display: grid; justify-items: center; border: 1px solid var(--line); border-radius: calc(var(--radius) + 14px); background: radial-gradient(60% 70% at 50% 35%, #111114, #050506 70%); padding: clamp(28px, 6vw, 72px) clamp(16px, 4vw, 48px); }
.trybox glyph-simulator { display: block; width: 100%; max-width: 720px; }
.trybox glyph-simulator:not(:defined) { display: none; }
.trybox.has-simulator .try__fallback { display: none; }
.try__fallback { display: grid; justify-items: center; gap: 12px; width: 100%; }
.panel-button--try { width: min(100%, 420px); }
.try__status { margin: 0; font-family: var(--mono); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); min-height: 1.6em; }
.js .try__controls.js-only { display: flex !important; flex-wrap: wrap; gap: 10px; justify-content: center; }
.try__controls .btn[aria-pressed="true"] { background: var(--text); color: #000; border-color: var(--text); }
