/* TalkBeam — "On Air": warm charcoal broadcast studio, cream type, orange on-air accents,
   channel-readout eyebrows, speaker-grille textures and beam rings. No external requests. */

:root {
  --bg: #161513;
  --bg-2: #1c1b18;
  --surface: #201e1b;
  --surface-2: #26241f;
  --line: #3a362f;
  --line-2: #2c2a25;
  --cream: #f1e9da;
  --muted: #a89f8e;
  --orange: #ff6b1a;
  --orange-hi: #ff8233;
  --sos: #ff4b3e;
  --green: #8bd96b;
  --field-line: #6f685b; /* 3:1 against the page for form field edges */

  --f-display: ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI Variable Display", "Segoe UI", system-ui, sans-serif;
  --f-body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI Variable Text", "Segoe UI", system-ui, Roboto, "Helvetica Neue", Arial, sans-serif;
  --f-mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  --f-serif: ui-serif, "New York", "Iowan Old Style", Georgia, "Times New Roman", serif;

  --gutter: 16px;
  --maxw: 1200px;
  --r-lg: 28px;
  --r-md: 18px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --sec-pad: clamp(72px, 9vw, 128px);
}

@media (min-width: 600px) { :root { --gutter: 24px; } }
@media (min-width: 1024px) { :root { --gutter: 32px; } }

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: 84px;
  background: var(--bg);
}
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font: 400 17px/1.6 var(--f-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
h1, h2, h3 { margin: 0; font-family: var(--f-display); text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg { display: block; }
a { color: inherit; }
button, input { font: inherit; color: inherit; }
main:focus { outline: none; }

:focus-visible { outline: 3px solid var(--cream); outline-offset: 3px; }
::selection { background: rgba(255, 107, 26, .35); color: var(--cream); }

.wrap { width: 100%; max-width: calc(var(--maxw) + 2 * var(--gutter)); margin-inline: auto; padding-inline: var(--gutter); }
.sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  padding: 10px 16px; border-radius: 10px; background: var(--cream); color: var(--bg);
  font-weight: 700; text-decoration: none; transition: top .2s;
}
.skip:focus { top: 12px; }

.i { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 22px; border: 0; border-radius: 999px;
  background: var(--orange); color: #161513;
  font: 700 16px/1 var(--f-body); letter-spacing: -.01em; text-decoration: none; white-space: nowrap;
  cursor: pointer; transition: background-color .2s, transform .2s var(--ease), box-shadow .2s;
}
.btn:hover { background: var(--orange-hi); transform: translateY(-1px); box-shadow: 0 10px 26px -10px rgba(255, 107, 26, .7); }
.btn:active { transform: translateY(0); box-shadow: none; }
.btn[disabled] { cursor: progress; opacity: .75; transform: none; box-shadow: none; }
.btn--sm { min-height: 40px; padding: 0 16px; font-size: 15px; }
.btn--ghost { background: transparent; color: var(--cream); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn--ghost:hover { background: var(--surface); box-shadow: inset 0 0 0 1.5px var(--cream); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(22, 21, 19, .78);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background-color .3s;
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) { .nav { background: rgba(22, 21, 19, .97); } }
.nav.is-scrolled { border-bottom-color: rgba(58, 54, 47, .8); }
.nav__in { display: flex; align-items: center; gap: 16px; height: 64px; }
.brand {
  display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0;
  color: var(--cream); text-decoration: none;
  font: 800 20px/1 var(--f-display); letter-spacing: -.03em;
  border-radius: 10px;
}
.brand .mark, .brand img { width: 32px; height: 32px; }
.nav__links { display: none; gap: 2px; margin-left: auto; }
.nav__links a {
  padding: 8px 14px; border-radius: 999px; color: var(--muted);
  font-size: 15px; font-weight: 600; text-decoration: none; transition: color .2s, background-color .2s;
}
.nav__links a:hover { color: var(--cream); background: var(--surface); }
.nav__cta { margin-left: auto; }
.nav__cta .short { display: none; }
@media (max-width: 399px) {
  .nav__cta .long { display: none; }
  .nav__cta .short { display: inline; }
  .brand { font-size: 19px; gap: 8px; }
  .brand .mark { width: 30px; height: 30px; }
}
@media (min-width: 760px) {
  .nav__links { display: flex; }
  .nav__links + .nav__cta { margin-left: 8px; }
}

/* Logo waveform: a short "speech burst" every couple of seconds */
.mark__bars rect { transform-box: fill-box; transform-origin: center; animation: talk 2.6s ease-in-out infinite; }
.mark__bars rect:nth-child(2) { animation-delay: .12s; }
.mark__bars rect:nth-child(3) { animation-delay: .24s; }
.mark__bars rect:nth-child(4) { animation-delay: .36s; }
.mark__bars rect:nth-child(5) { animation-delay: .48s; }
@keyframes talk {
  0%, 55%, 100% { transform: scaleY(1); }
  15% { transform: scaleY(.55); }
  30% { transform: scaleY(1.1); }
  45% { transform: scaleY(.75); }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(40px, 7vw, 96px) 0 clamp(56px, 8vw, 104px); }
.hero__bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(46% 46% at 76% 46%, rgba(255, 107, 26, .20), rgba(255, 107, 26, 0) 70%),
    radial-gradient(circle, #34302a 1.2px, transparent 1.7px) 0 0 / 16px 16px;
  -webkit-mask-image: radial-gradient(75% 70% at 72% 45%, #000 20%, transparent 78%);
  mask-image: radial-gradient(75% 70% at 72% 45%, #000 20%, transparent 78%);
}
.hero__grid { position: relative; display: grid; gap: 56px; align-items: center; }
@media (min-width: 960px) { .hero__grid { grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: 40px; } }

.kicker {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px;
  font: 600 12.5px/1 var(--f-mono); letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
}
.led { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 0 rgba(255, 107, 26, .6); animation: led 2s ease-out infinite; }
@keyframes led { 0% { box-shadow: 0 0 0 0 rgba(255, 107, 26, .6); } 70%, 100% { box-shadow: 0 0 0 8px rgba(255, 107, 26, 0); } }

.hero h1 {
  font-size: clamp(2.5rem, 1.2rem + 5.4vw, 5.1rem);
  font-weight: 800; line-height: .98; letter-spacing: -.038em;
  max-width: 12ch;
}
.hl { color: var(--orange); }
.lede { margin-top: 24px; max-width: 34em; font-size: clamp(1.06rem, 1rem + .3vw, 1.2rem); color: var(--muted); }

.hero__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px; margin-top: 18px; }
.hero__note { font-size: 14px; color: var(--muted); }
.soon {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px 7px 10px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line);
  font-size: 14px; font-weight: 600; color: var(--cream);
}
.soon .i { width: 18px; height: 18px; color: var(--orange); }
.soon--center { margin: 28px auto 0; width: max-content; max-width: 100%; }

/* hero load-in */
.hero__copy > * { animation: rise .8s var(--ease) both; }
.hero__copy > :nth-child(2) { animation-delay: .06s; }
.hero__copy > :nth-child(3) { animation-delay: .12s; }
.hero__copy > :nth-child(4) { animation-delay: .18s; }
.hero__copy > :nth-child(5) { animation-delay: .24s; }
.hero__visual { animation: rise 1s var(--ease) .15s both; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.hero__visual { position: relative; display: grid; place-items: center; width: 100%; max-width: 540px; justify-self: center; min-height: 100%; padding: 12px 0; }
.beams { position: absolute; left: 50%; top: 50%; width: 0; height: 0; pointer-events: none; }
.beams span {
  position: absolute; left: -180px; top: -180px; width: 360px; height: 360px; border-radius: 50%;
  border: 1.5px solid rgba(255, 107, 26, .55); opacity: 0;
  animation: beam 5.4s cubic-bezier(.25, .6, .3, 1) infinite;
}
.beams span:nth-child(2) { animation-delay: 1.8s; }
.beams span:nth-child(3) { animation-delay: 3.6s; }
@keyframes beam { 0% { transform: scale(.55); opacity: 0; } 12% { opacity: .8; } 100% { transform: scale(1.9); opacity: 0; } }

.chip {
  position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px;
  max-width: min(64%, 250px); padding: 10px 14px 10px 10px; border-radius: 16px;
  background: rgba(32, 30, 27, .88); border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px -18px rgba(0, 0, 0, .8);
  font-size: 13.5px; line-height: 1.3; animation: bob 7s ease-in-out infinite;
}
.chip b { display: block; font-weight: 700; }
.chip small { display: block; color: var(--muted); font-size: 12.5px; margin-top: 2px; }
.chip__ic { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: rgba(255, 107, 26, .14); color: var(--orange); flex-shrink: 0; }
.chip__ic .i { width: 20px; height: 20px; }
.chip--a { left: 0; top: 45%; }
.chip--b { right: 0; top: 7%; animation-delay: -3.5s; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@media (max-width: 599px) {
  .chip { max-width: 196px; padding: 8px 12px 8px 8px; font-size: 12.5px; }
  .chip small { font-size: 11.5px; }
  .chip__ic { width: 30px; height: 30px; }
  .chip--a { top: 2%; left: 0; }
  .chip--b { top: auto; bottom: 4%; right: 0; }
}
@media (min-width: 960px) {
  .chip--a { left: -4%; top: 46%; }
  .chip--b { right: 0; top: 8%; }
}
@media (min-width: 1280px) { .chip--b { right: -4%; } }

/* ---------- Phone frame (screens are 390 x 844, scaled with --s) ---------- */
.phone {
  --s: .6; --bz: 10px;
  position: relative; flex-shrink: 0;
  width: calc(390px * var(--s) + 2 * var(--bz));
  height: calc(844px * var(--s) + 2 * var(--bz));
  padding: var(--bz);
  border-radius: calc(54px * var(--s) + var(--bz));
  background: linear-gradient(145deg, #2d2a25, #0c0b0a 40%, #1a1815);
  box-shadow:
    inset 0 0 0 1px rgba(241, 233, 218, .14),
    inset 0 0 0 3px #0a0908,
    0 40px 80px -30px rgba(0, 0, 0, .9),
    0 0 0 1px rgba(0, 0, 0, .6);
}
.phone__screen {
  position: relative; overflow: hidden; isolation: isolate;
  width: calc(390px * var(--s)); height: calc(844px * var(--s));
  border-radius: calc(54px * var(--s));
  background: #000;
}
.phone__screen::after { /* dynamic island */
  content: ""; position: absolute; z-index: 10; left: 50%; transform: translateX(-50%);
  top: calc(11px * var(--s)); width: calc(122px * var(--s)); height: calc(35px * var(--s));
  border-radius: 999px; background: #000;
}
.scr {
  position: absolute; left: 0; top: 0; width: 390px; height: 844px;
  transform: scale(var(--s)); transform-origin: 0 0; overflow: hidden;
}
.scr::before { /* status bar time */
  content: "9:41"; position: absolute; z-index: 5; top: 19px; left: 38px;
  font: 600 16px/1 var(--f-body); letter-spacing: -.01em;
}
.scr::after { /* battery */
  content: ""; position: absolute; z-index: 5; top: 20px; right: 34px;
  width: 25px; height: 12px; padding: 2px; border: 1.5px solid currentColor; border-radius: 4px; opacity: .85;
  background: linear-gradient(90deg, currentColor 75%, transparent 75%) content-box;
}
.phone--hero { --s: .6; }
@media (min-width: 400px) { .phone--hero { --s: .64; } }
@media (min-width: 960px) { .phone--hero { --s: .7; --bz: 11px; } }
@media (min-width: 1200px) { .phone--hero { --s: .74; } }

/* ---------- Works with ---------- */
.works { border-block: 1px solid var(--line-2); background: var(--bg-2); }
.works__in { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 28px; padding-block: 22px; text-align: center; }
.works__lbl { font: 600 12.5px/1 var(--f-mono); letter-spacing: .16em; text-transform: uppercase; color: var(--orange); }
.works__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 0; }
.works__list li { display: inline-flex; align-items: center; font-weight: 650; font-size: 16px; }
.works__list li + li::before { content: ""; width: 5px; height: 5px; margin: 0 14px; border-radius: 50%; background: var(--line); }
.works__note { width: 100%; font-size: 14px; color: var(--muted); }
@media (max-width: 899px) {
  .works__list { gap: 8px; }
  .works__list li { padding: 6px 12px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface); font-size: 14.5px; }
  .works__list li + li::before { display: none; }
}
@media (min-width: 1100px) { .works__note { width: auto; } }

/* ---------- Sections ---------- */
.sec { padding-block: var(--sec-pad); }
.sec--alt { background: var(--bg-2); border-block: 1px solid var(--line-2); }
.sec__head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 64px); }
.sec__head--center { margin-inline: auto; text-align: center; }
.sec h2 { font-size: clamp(2rem, 1.25rem + 3.1vw, 3.5rem); font-weight: 800; line-height: 1.03; letter-spacing: -.04em; }
.soft { color: var(--muted); }
.sec__lede { margin-top: 18px; max-width: 38em; font-size: clamp(1.03rem, 1rem + .25vw, 1.15rem); color: var(--muted); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px;
  font: 600 12.5px/1 var(--f-mono); letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
}
.eyebrow span {
  padding: 6px 8px; border-radius: 6px; color: var(--orange);
  background: rgba(255, 107, 26, .08); border: 1px solid rgba(255, 107, 26, .35);
}
.eyebrow--sos span { color: var(--sos); background: rgba(255, 75, 62, .1); border-color: rgba(255, 75, 62, .45); }

.ico {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 13px; flex-shrink: 0;
  color: var(--orange); background: rgba(255, 107, 26, .1); border: 1px solid rgba(255, 107, 26, .25);
}

/* ---------- Feature bento ---------- */
.bento { display: grid; gap: 16px; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 720px) {
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card--ptt { grid-column: span 2; }
}
@media (min-width: 1024px) {
  .bento { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .card--feed { grid-column: span 2; }
}
.card {
  position: relative; display: flex; flex-direction: column; gap: 12px;
  padding: clamp(22px, 3vw, 30px); border-radius: var(--r-lg); overflow: hidden;
  background: linear-gradient(180deg, #221f1c, #1b1a17);
  border: 1px solid var(--line-2);
  transition: border-color .3s, transform .3s var(--ease);
}
.card::before { /* top highlight */
  content: ""; position: absolute; left: 24px; right: 24px; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241, 233, 218, .18), transparent);
}
.card:hover { border-color: var(--line); }
.card .ico { margin-bottom: 6px; }
.card h3 { font-size: 1.3rem; font-weight: 750; line-height: 1.2; letter-spacing: -.02em; }
.card > p { color: var(--muted); font-size: 1rem; max-width: 36em; }

.ways { display: grid; gap: 10px; margin-top: auto; padding-top: 10px; }
@media (min-width: 560px) { .ways { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.ways li {
  display: flex; align-items: center; gap: 12px; padding: 14px;
  border-radius: 16px; background: var(--bg); border: 1px solid var(--line-2);
  font-weight: 650; font-size: 15px; line-height: 1.3;
}
.ways__ic { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--surface-2); color: var(--cream); flex-shrink: 0; }
.ways__ic .i { width: 20px; height: 20px; }

.beamline {
  display: flex; align-items: center; gap: 12px; margin-top: 6px;
  font: 600 12px/1 var(--f-mono); letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}
.beamline__track {
  position: relative; flex: 1; height: 2px; border-radius: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 6px, transparent 6px 11px);
}
.beamline__track i {
  position: absolute; top: 50%; left: 0; width: 44px; height: 6px; margin-top: -3px; border-radius: 6px;
  background: linear-gradient(90deg, rgba(255, 107, 26, 0), var(--orange));
  box-shadow: 0 0 14px rgba(255, 107, 26, .8);
  animation: travel 2.4s cubic-bezier(.6, 0, .3, 1) infinite;
}
@keyframes travel { 0% { left: 0; opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { left: calc(100% - 44px); opacity: 0; } }

.cmds { display: grid; gap: 8px; margin-top: auto; padding-top: 8px; }
.cmds li {
  padding: 10px 12px; border-radius: 12px; border: 1px solid var(--line-2);
  font: 500 14px/1.35 var(--f-mono); color: var(--muted);
  animation: cmd 8s ease-in-out infinite;
}
.cmds li:nth-child(2) { animation-delay: -6s; }
.cmds li:nth-child(3) { animation-delay: -4s; }
.cmds li:nth-child(4) { animation-delay: -2s; }
@keyframes cmd {
  0%, 22% { color: var(--cream); background: rgba(255, 107, 26, .1); border-color: rgba(255, 107, 26, .45); }
  28%, 100% { color: var(--muted); background: transparent; border-color: var(--line-2); }
}

.code { display: flex; gap: 6px; margin-top: auto; padding-top: 10px; }
.code span {
  flex: 1; max-width: 46px; display: grid; place-items: center; height: 54px;
  border-radius: 12px; background: var(--bg); border: 1px solid var(--line);
  font: 700 22px/1 var(--f-mono); color: var(--cream);
}
.code span:nth-child(-n+3) { color: var(--orange); }

.av {
  display: inline-grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  font: 800 13px/1 var(--f-display); color: #161513;
}
.av--m { background: linear-gradient(135deg, #3ddc97, #27b5ff); }
.av--s { background: linear-gradient(135deg, #ff4fd8, #ff8a5b); }
.av--d { background: linear-gradient(135deg, #ffb23f, #ff5a36); }
.av--l { background: linear-gradient(135deg, #7c5cff, #b9a6ff); }

.pres { display: grid; gap: 8px; margin-top: auto; padding-top: 10px; }
.pres li { display: flex; align-items: center; gap: 10px; padding: 8px 12px 8px 8px; border-radius: 14px; background: var(--bg); border: 1px solid var(--line-2); font-size: 15px; }
.pres b { font-weight: 650; }
.st { display: inline-flex; align-items: center; gap: 7px; margin-left: auto; font-size: 13.5px; font-weight: 600; }
.st .i { width: 16px; height: 16px; }
.st--speak { color: var(--orange); }
.st--listen { color: var(--cream); }
.st--on { color: var(--green); }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.eq { display: inline-flex; align-items: center; gap: 2px; height: 14px; }
.eq i { width: 3px; height: 14px; border-radius: 2px; background: currentColor; animation: eq .9s ease-in-out infinite; }
.eq i:nth-child(2) { animation-delay: .15s; }
.eq i:nth-child(3) { animation-delay: .3s; }
@keyframes eq { 0%, 100% { transform: scaleY(.35); } 50% { transform: scaleY(1); } }

.duck { display: grid; gap: 12px; margin-top: auto; padding: 16px; border-radius: 16px; background: var(--bg); border: 1px solid var(--line-2); }
.duck__row { display: grid; grid-template-columns: 56px 1fr; align-items: center; gap: 12px; font: 600 12px/1 var(--f-mono); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.meter { position: relative; height: 10px; border-radius: 10px; background: var(--surface-2); overflow: hidden; }
.meter i { position: absolute; inset: 0 auto 0 0; border-radius: 10px; }
.meter__v { width: 78%; background: var(--orange); animation: voice 6s ease-in-out infinite; }
.meter__m { width: 80%; background: #6d665a; animation: music 6s ease-in-out infinite; }
@keyframes voice { 0%, 18% { width: 0; } 28%, 70% { width: 78%; } 80%, 100% { width: 0; } }
@keyframes music { 0%, 18% { width: 80%; } 28%, 70% { width: 24%; } 80%, 100% { width: 80%; } }

.near { display: grid; gap: 8px; margin-top: auto; padding-top: 10px; }
.near li { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 14px; background: var(--bg); border: 1px solid var(--line-2); font-size: 15px; font-weight: 600; }
.near .i { width: 18px; height: 18px; color: var(--orange); }
.near span { margin-left: auto; padding: 3px 8px; border-radius: 999px; border: 1px solid var(--line); font: 600 11px/1.3 var(--f-mono); letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

.feed { display: grid; gap: 8px; margin-top: auto; padding-top: 10px; }
.feed__search {
  display: flex; align-items: center; gap: 10px; height: 44px; padding: 0 14px;
  border-radius: 12px; background: var(--bg); border: 1px solid var(--line);
  font-size: 15px;
}
.feed__search .i { width: 18px; height: 18px; color: var(--muted); }
.caret { width: 2px; height: 18px; margin-left: -8px; background: var(--orange); animation: blink 1s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.feed__row { display: flex; gap: 12px; padding: 10px 12px; border-radius: 14px; border: 1px solid transparent; }
.feed__row.is-hit { opacity: 1; background: var(--bg); border-color: rgba(255, 107, 26, .35); }
.feed__row b { display: block; font-size: 14px; font-weight: 700; }
.feed__row small { font-weight: 400; color: var(--muted); font-size: 12.5px; }
.feed__row span:not(.av) { display: block; font-size: 14.5px; line-height: 1.45; margin-top: 2px; color: var(--muted); }
.feed__row.is-hit span:not(.av) { color: var(--cream); }
mark { background: rgba(255, 107, 26, .28); color: var(--cream); border-radius: 4px; padding: 0 3px; }

/* ---------- Modes ---------- */
.modes { display: grid; gap: 16px; }
@media (min-width: 900px) { .modes { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.mode {
  padding: clamp(22px, 3vw, 30px); border-radius: var(--r-lg);
  background: var(--bg); border: 1px solid var(--line-2);
}
.mode h3 { font-size: 1.5rem; font-weight: 800; letter-spacing: -.025em; margin-top: 26px; }
.mode__sub { margin-top: 4px; font-weight: 650; color: var(--orange); }
.mode p:last-child { margin-top: 10px; color: var(--muted); font-size: 1rem; }

.tl {
  position: relative; display: grid; grid-template-columns: 48px minmax(0, 1fr); align-items: center; row-gap: 14px;
  padding: 18px 16px; border-radius: 18px; background: var(--surface); border: 1px solid var(--line-2);
}
.tl__who { font: 600 11.5px/1 var(--f-mono); letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.tl__track { position: relative; height: 12px; background: linear-gradient(var(--line-2), var(--line-2)) center / 100% 2px no-repeat; }
.sg { position: absolute; top: 0; bottom: 0; border-radius: 6px; background: var(--orange); }
.tl__play { position: absolute; top: 12px; bottom: 12px; left: calc(16px + 48px); right: 16px; pointer-events: none; }
.tl__play i {
  position: absolute; top: 0; bottom: 0; left: 0; width: 2px; border-radius: 2px;
  background: var(--cream); box-shadow: 0 0 10px rgba(241, 233, 218, .6);
  animation: play 6s linear infinite;
}
@keyframes play { from { left: 0; } to { left: 100%; } }
/* Walkie: strictly one at a time, with chirp ticks */
.tl--walkie .tl__track:nth-of-type(2) .sg { left: 3%; width: 29%; }
.tl--walkie .tl__track:nth-of-type(4) .sg { left: 36%; width: 27%; }
.tl--walkie .tl__track:nth-of-type(6) .sg { left: 67%; width: 30%; }
.tl--walkie .sg { box-shadow: -4px 0 0 -2px var(--cream), 4px 0 0 -2px var(--cream); }
/* Open Mic: voice-activated, free-form, textured */
.tl--open .sg { background: repeating-linear-gradient(90deg, var(--orange) 0 3px, rgba(255, 107, 26, .45) 3px 5px); }
.tl--open .tl__track:nth-of-type(2) .sg:nth-child(1) { left: 2%; width: 26%; }
.tl--open .tl__track:nth-of-type(2) .sg:nth-child(2) { left: 55%; width: 18%; }
.tl--open .tl__track:nth-of-type(4) .sg:nth-child(1) { left: 20%; width: 22%; }
.tl--open .tl__track:nth-of-type(4) .sg:nth-child(2) { left: 70%; width: 26%; }
.tl--open .tl__track:nth-of-type(6) .sg:nth-child(1) { left: 36%; width: 24%; }
.tl--open .tl__track:nth-of-type(6) .sg:nth-child(2) { left: 84%; width: 12%; }
/* Hybrid: press to talk, overlaps allowed; dark cap = the press */
.tl--hybrid .sg { border-left: 6px solid var(--cream); }
.tl--hybrid .tl__track:nth-of-type(2) .sg { left: 3%; width: 38%; }
.tl--hybrid .tl__track:nth-of-type(4) .sg { left: 26%; width: 36%; }
.tl--hybrid .tl__track:nth-of-type(6) .sg { left: 50%; width: 42%; }

/* ---------- Themes gallery ---------- */
.themes { display: grid; gap: 40px 24px; grid-template-columns: repeat(2, minmax(0, 1fr)); justify-items: center; }
.themes:focus-visible { outline-offset: 6px; border-radius: 12px; }
.theme { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.theme .phone { --s: .6; }
.theme figcaption { width: calc(390px * var(--cap-s, .6) + 20px); max-width: 100%; text-align: center; font-size: 15px; color: var(--muted); line-height: 1.45; }
.theme figcaption b { display: block; margin: 10px 0 4px; font: 750 1.15rem/1.2 var(--f-display); letter-spacing: -.02em; color: var(--cream); }
.theme__tag { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 9px; font: 800 14px/1 var(--f-mono); }
.tag--a { background: linear-gradient(135deg, #7c5cff, #27e1ff); color: #0b0a14; }
.tag--b { background: var(--orange); color: #161513; }
.tag--c { background: #ff5a36; color: #1b1a1f; box-shadow: inset 0 0 0 2px #1b1a1f, 2px 2px 0 #f1e9da; }
.tag--d { background: #ccff4d; color: #000; }
.swipe-hint { display: none; margin-top: 4px; text-align: center; font: 600 12px/1 var(--f-mono); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

@media (min-width: 1024px) {
  .themes { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
  .theme .phone { --s: .52; --bz: 9px; }
  .theme figcaption { --cap-s: .52; }
}
@media (min-width: 1240px) {
  .theme .phone { --s: .6; --bz: 10px; }
  .theme figcaption { --cap-s: .6; }
}
@media (max-width: 639px) {
  .themes {
    display: flex; gap: 16px; overflow-x: auto; overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter);
    margin-inline: calc(-1 * var(--gutter)); padding: 6px var(--gutter) 20px;
    scrollbar-width: thin; scrollbar-color: var(--line) transparent;
  }
  .theme { flex: 0 0 auto; scroll-snap-align: start; }
  .theme .phone { --s: .58; }
  .theme figcaption { --cap-s: .58; }
  .swipe-hint { display: block; }
}

/* ---------- Emergency ---------- */
.sos {
  position: relative;
  background:
    radial-gradient(50% 70% at 82% 50%, rgba(255, 75, 62, .13), rgba(255, 75, 62, 0) 70%),
    #1a1413;
  border-block: 1px solid rgba(255, 75, 62, .22);
}
.sos__grid { display: grid; gap: 56px; align-items: center; }
@media (min-width: 960px) { .sos__grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 64px; } }
.sos h2 { max-width: 12ch; }
.steps { display: grid; gap: 14px; margin-top: 32px; counter-reset: s; }
.steps li { position: relative; padding-left: 48px; color: var(--muted); counter-increment: s; }
.steps li::before {
  content: counter(s); position: absolute; left: 0; top: -2px;
  display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid rgba(255, 75, 62, .6); color: var(--sos); font: 700 14px/1 var(--f-mono);
}
.steps b { color: var(--cream); font-weight: 650; }
.who { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.who li { padding: 7px 14px; border-radius: 999px; border: 1px solid rgba(255, 75, 62, .35); background: rgba(255, 75, 62, .07); font-size: 14px; font-weight: 600; }
.fine { margin-top: 24px; font-size: 13.5px; color: var(--muted); max-width: 40em; }

.sos__viz { position: relative; display: flex; justify-content: center; padding: 10px 0 30px; }
.alert {
  width: 100%; max-width: 380px; border-radius: 26px; overflow: hidden;
  background: #221816; border: 1px solid rgba(255, 75, 62, .35);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .9), 0 0 0 6px rgba(255, 75, 62, .05);
}
.alert__bar {
  display: flex; align-items: center; gap: 10px; padding: 14px 18px;
  background: var(--sos); color: #1a0f0e; font: 700 12.5px/1 var(--f-mono); letter-spacing: .14em;
}
.alert__pulse { width: 10px; height: 10px; border-radius: 50%; background: #1a0f0e; animation: sosb 1.1s steps(2) infinite; }
@keyframes sosb { 50% { opacity: .2; } }
.alert__ch { margin-left: auto; padding: 4px 8px; border-radius: 6px; background: rgba(26, 15, 14, .18); letter-spacing: .08em; text-transform: uppercase; }
.alert__body { display: grid; gap: 14px; padding: 18px; }
.alert__who { display: flex; align-items: center; gap: 12px; }
.alert__who .av { width: 40px; height: 40px; font-size: 16px; }
.alert__who b { display: block; font-size: 17px; font-weight: 700; }
.alert__who div span { display: block; font-size: 13.5px; color: var(--muted); }
.alert__map {
  position: relative; height: 150px; border-radius: 16px; overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px) 0 0 / 22px 22px,
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px) 0 0 / 22px 22px,
    #1a1211;
  border: 1px solid rgba(255, 75, 62, .2);
}
.road { position: absolute; background: #3a2a27; border-radius: 4px; }
.r1 { left: -10%; top: 58%; width: 120%; height: 9px; transform: rotate(-8deg); }
.r2 { left: 34%; top: -10%; width: 9px; height: 120%; transform: rotate(12deg); }
.r3 { left: 60%; top: 20%; width: 60%; height: 6px; transform: rotate(24deg); }
.pin { position: absolute; left: 50%; top: 50%; width: 18px; height: 18px; margin: -9px; border-radius: 50%; background: var(--sos); box-shadow: 0 0 0 4px #1a1211; }
.pin i { position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--sos); animation: ping 1.8s ease-out infinite; }
@keyframes ping { from { transform: scale(.6); opacity: 1; } to { transform: scale(3.2); opacity: 0; } }
.alert__btn { display: grid; place-items: center; height: 50px; border-radius: 14px; background: var(--cream); color: #1a0f0e; font-weight: 750; font-size: 16px; }
.alert__acks { display: grid; gap: 8px; }
.alert__acks li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 650; }
.alert__acks .av { width: 28px; height: 28px; font-size: 12px; }
.alert__acks span:last-child { margin-left: auto; color: var(--green); font-size: 13.5px; font-weight: 600; }

.hold {
  position: absolute; top: 158px; left: calc(50% - 190px - 58px);
  display: grid; place-items: center; width: 116px; height: 116px; border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #ff8175, #ff4b3e 70%); color: #1a0f0e;
  box-shadow: 0 20px 40px -12px rgba(255, 75, 62, .6), 0 0 0 6px #1a1413;
}
.hold svg { position: absolute; inset: -12px; width: calc(100% + 24px); height: calc(100% + 24px); transform: rotate(-90deg); }
.hold circle { fill: none; stroke-width: 4; }
.hold__bg { stroke: rgba(255, 75, 62, .2); }
.hold__fg { stroke: var(--sos); stroke-linecap: round; stroke-dasharray: 340; stroke-dashoffset: 340; animation: holdfill 3.2s ease-in-out infinite; }
@keyframes holdfill { 0% { stroke-dashoffset: 340; } 60%, 85% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: 0; opacity: 0; } }
.hold span { font: 800 26px/1 var(--f-display); letter-spacing: .02em; margin-top: 10px; color: #1a0f0e; }
.hold small { position: absolute; bottom: 24px; font: 700 10.5px/1 var(--f-mono); letter-spacing: .16em; text-transform: uppercase; color: #1a0f0e; }
@media (max-width: 599px) { .hold { top: 176px; left: auto; right: 30px; width: 84px; height: 84px; } .hold svg { inset: -9px; width: calc(100% + 18px); height: calc(100% + 18px); } .hold span { font-size: 19px; margin-top: 6px; } .hold small { bottom: 15px; font-size: 9px; } }

/* ---------- AI ---------- */
.ai__grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 960px) { .ai__grid { grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 64px; } }
.ai__feat { display: flex; gap: 16px; margin-top: 28px; }
.ai__feat h3 { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 1.25rem; font-weight: 750; letter-spacing: -.02em; }
.ai__feat p { margin-top: 6px; color: var(--muted); }
.pro { padding: 3px 8px; border-radius: 6px; background: var(--orange); color: #161513; font: 700 11px/1.3 var(--f-mono); letter-spacing: .1em; text-transform: uppercase; }

.console {
  border-radius: 24px; overflow: hidden; background: #0f0e0d; border: 1px solid var(--line);
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, .9);
  font-family: var(--f-mono);
}
.console__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 18px;
  background: var(--surface); border-bottom: 1px solid var(--line);
  font-size: 12px; font-weight: 700; letter-spacing: .14em; color: var(--muted);
}
.console__live { display: inline-flex; align-items: center; gap: 8px; color: var(--orange); }
.console__live i { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); animation: sosb 1.2s steps(2) infinite; }
.console__log { display: grid; gap: 18px; padding: clamp(18px, 3vw, 28px); font-size: 14.5px; line-height: 1.55; }
.ln { display: grid; grid-template-columns: auto 1fr; column-gap: 12px; row-gap: 4px; align-items: baseline; transition: opacity .3s; }
.ln__who { font-size: 11.5px; font-weight: 700; letter-spacing: .12em; color: var(--orange); }
.ln__tag { justify-self: start; padding: 1px 6px; border-radius: 5px; border: 1px solid var(--line); font-size: 11px; font-weight: 700; letter-spacing: .08em; color: var(--muted); }
.ln__txt { grid-column: 1 / -1; position: relative; color: var(--cream); font-family: var(--f-body); font-size: 16px; }
.ln--tr { margin-top: -8px; padding-left: 14px; border-left: 2px solid var(--orange); }
.ln--tr .ln__who { color: var(--cream); }
.ln--you .ln__who { color: var(--muted); }
.ln--you .ln__txt { color: var(--muted); font-style: italic; }
.ln--ai { padding: 14px 16px; border-radius: 14px; background: rgba(255, 107, 26, .08); border: 1px solid rgba(255, 107, 26, .3); }
.ln .ghost { visibility: hidden; }
.ln .typed { position: absolute; inset: 0; }
.is-typing .ln:not(.show) { opacity: 0; }
.ln.cur .typed::after { content: ""; display: inline-block; width: .5em; height: 1.05em; margin-left: 2px; vertical-align: -.18em; background: var(--orange); animation: blink 1s steps(2) infinite; }

/* ---------- Use cases ---------- */
.uses { display: grid; gap: 14px; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 520px) { .uses { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .uses { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.use {
  display: flex; flex-direction: column; gap: 8px; padding: 24px; border-radius: 22px;
  background: var(--bg-2); border: 1px solid var(--line-2);
  transition: border-color .3s, transform .3s var(--ease), background-color .3s;
}
.use:hover { border-color: rgba(255, 107, 26, .45); background: var(--surface); transform: translateY(-3px); }
.use .ico { width: 42px; height: 42px; border-radius: 12px; margin-bottom: 8px; }
.use .ico .i { width: 22px; height: 22px; }
.use h3 { font-size: 1.15rem; font-weight: 750; letter-spacing: -.02em; }
.use p { font-size: 15px; color: var(--muted); }

/* ---------- Pricing ---------- */
.plans { display: grid; gap: 16px; max-width: 1080px; margin-inline: auto; align-items: stretch; }
@media (min-width: 900px) { .plans { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.plan {
  display: flex; flex-direction: column; gap: 14px; padding: 30px; border-radius: var(--r-lg);
  background: var(--bg); border: 1px solid var(--line-2);
}
.plan h3 { font: 700 13px/1 var(--f-mono); letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px; min-height: 56px; }
.price b { font: 800 clamp(2.4rem, 2rem + 1.4vw, 3rem)/1 var(--f-display); letter-spacing: -.04em; }
.price small { font-size: 15px; color: var(--muted); font-weight: 600; }
.plan__for { color: var(--muted); font-size: 15px; }
.ticks { display: grid; gap: 10px; margin: 6px 0 22px; }
.ticks li { position: relative; padding-left: 30px; font-weight: 600; font-size: 15.5px; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(255, 107, 26, .14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF6B1A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 12.5 4 4 8-8.5'/%3E%3C/svg%3E") center / 13px no-repeat;
}
.plan .btn { margin-top: auto; width: 100%; }
.plan--pro {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 107, 26, .13), rgba(255, 107, 26, 0) 45%), var(--surface);
  border: 1.5px solid rgba(255, 107, 26, .65);
  box-shadow: 0 30px 70px -40px rgba(255, 107, 26, .55);
}
.plan--pro h3 { color: var(--orange); }
.plans__note { margin-top: 24px; text-align: center; font-size: 14px; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq__grid { display: grid; gap: 8px; }
@media (min-width: 960px) {
  .faq__grid { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 64px; align-items: start; }
  .faq__grid .sec__head { position: sticky; top: 104px; }
}
.faq { border-top: 1px solid var(--line-2); }
.faq details { border-bottom: 1px solid var(--line-2); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px; cursor: pointer; list-style: none;
  font: 700 clamp(1.05rem, 1rem + .3vw, 1.2rem)/1.35 var(--f-display); letter-spacing: -.015em;
  border-radius: 8px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--line);
  background:
    linear-gradient(var(--orange), var(--orange)) center / 12px 2px no-repeat,
    linear-gradient(var(--orange), var(--orange)) center / 2px 12px no-repeat;
  transition: transform .3s var(--ease), border-color .3s;
}
.faq summary:hover::after { border-color: var(--orange); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq__a { padding: 0 44px 24px 4px; color: var(--muted); }

/* ---------- Final CTA ---------- */
.cta { padding-top: 0; }
.cta__card {
  position: relative; overflow: hidden; text-align: center;
  padding: clamp(44px, 7vw, 88px) clamp(20px, 5vw, 64px);
  border-radius: clamp(28px, 4vw, 40px);
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(255, 107, 26, .22), rgba(255, 107, 26, 0) 70%),
    radial-gradient(circle, rgba(241, 233, 218, .07) 1.2px, transparent 1.7px) 0 0 / 16px 16px,
    var(--surface);
  border: 1px solid var(--line);
}
.mark--lg { width: 72px; height: 72px; margin: 0 auto 26px; filter: drop-shadow(0 16px 30px rgba(255, 107, 26, .45)); }
.cta h2 { font-size: clamp(2.1rem, 1.3rem + 3.4vw, 3.8rem); max-width: 14ch; margin-inline: auto; }
.cta__lede { margin: 16px auto 0; max-width: 32em; color: var(--muted); font-size: clamp(1.03rem, 1rem + .25vw, 1.15rem); }

/* ---------- Waitlist form ---------- */
.wl { margin-top: 32px; max-width: 540px; }
.wl--center { margin-inline: auto; }
.wl__row {
  display: flex; gap: 6px; padding: 6px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--field-line);
  transition: border-color .2s, box-shadow .2s;
}
.cta .wl__row { background: var(--bg); }
.wl__row:focus-within { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255, 107, 26, .22); }
.wl input[type="email"] {
  flex: 1; min-width: 0; height: 48px; padding: 0 18px; border: 0; border-radius: 999px;
  background: transparent; color: var(--cream); font-size: 16px; outline: none;
}
.wl input[type="email"]::placeholder { color: var(--muted); opacity: 1; }
.wl.is-error .wl__row { border-color: var(--sos); box-shadow: 0 0 0 4px rgba(255, 75, 62, .18); }
.wl__status { min-height: 1.5em; margin-top: 12px; font-size: 15px; color: var(--muted); }
.wl__status:empty { margin-top: 0; min-height: 0; }
.wl__status:focus { outline: none; }
.wl.is-error .wl__status { color: #ff8d84; }
.wl.is-done .wl__row, .wl.is-done .check { display: none; }
.wl.is-done .wl__status {
  display: flex; align-items: center; gap: 12px; margin-top: 0; padding: 16px 18px; border-radius: 18px;
  background: rgba(139, 217, 107, .08); border: 1px solid rgba(139, 217, 107, .35);
  color: var(--cream); font-weight: 650; font-size: 16px; text-align: left;
}
.wl.is-done .wl__status::before {
  content: ""; flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23161513' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 12.5 4 4 8-8.5'/%3E%3C/svg%3E") center / 15px no-repeat;
}
.hp { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
@media (max-width: 439px) {
  .wl__row { flex-direction: column; border-radius: 22px; }
  .wl input[type="email"] { flex: none; width: 100%; height: 50px; padding: 0 14px; }
  .wl .btn { width: 100%; min-height: 50px; border-radius: 16px; }
}

.check { position: relative; display: inline-flex; align-items: center; gap: 12px; margin-top: 18px; cursor: pointer; font-size: 15px; color: var(--cream); text-align: left; }
.check input { position: absolute; opacity: 0; width: 22px; height: 22px; margin: 0; cursor: pointer; }
.check__box {
  display: grid; place-items: center; width: 22px; height: 22px; flex-shrink: 0; border-radius: 7px;
  border: 1.5px solid var(--muted); background: var(--bg); transition: background-color .2s, border-color .2s;
}
.check__box svg { width: 15px; height: 15px; fill: none; stroke: #161513; stroke-width: 3.2; stroke-linecap: round; stroke-linejoin: round; opacity: 0; transition: opacity .15s; }
.check input:checked + .check__box { background: var(--orange); border-color: var(--orange); }
.check input:checked + .check__box svg { opacity: 1; }
.check input:focus-visible + .check__box { outline: 3px solid var(--cream); outline-offset: 3px; }

/* ---------- Footer ---------- */
.foot { padding: 48px 0 40px; border-top: 1px solid var(--line-2); }
.foot__top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px 32px; }
.foot__nav { display: flex; flex-wrap: wrap; gap: 4px 6px; margin-left: -10px; }
.foot__nav a { padding: 8px 10px; border-radius: 8px; color: var(--muted); font-size: 15px; font-weight: 600; text-decoration: none; }
.foot__nav a:hover { color: var(--cream); }
@media (min-width: 720px) { .foot__nav { margin-left: 0; } }
.foot__legal { display: grid; gap: 8px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line-2); font-size: 13.5px; color: var(--muted); }
.foot__legal p { max-width: 820px; }

/* ---------- Scroll reveal (only when JS is running) ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js [data-reveal].is-in { opacity: 1; transform: none; }
.bento > :nth-child(3n+2), .uses > :nth-child(4n+2), .plans > :nth-child(2), .modes > :nth-child(2), .themes > :nth-child(2) { transition-delay: .08s; }
.bento > :nth-child(3n), .uses > :nth-child(4n+3), .plans > :nth-child(3), .modes > :nth-child(3), .themes > :nth-child(3) { transition-delay: .16s; }
.uses > :nth-child(4n), .themes > :nth-child(4) { transition-delay: .24s; }

/* Offscreen animation pause (toggled by main.js) */
.is-paused, .is-paused * { animation-play-state: paused !important; }

/* =====================================================================
   App theme mockups (390 x 844, adapted from the design references)
   ===================================================================== */

/* --- A · Aurora Glass --- */
.tA { background: #0b0a14; color: #f4f2ff; font-family: var(--f-display); }
.a-glow { position: absolute; border-radius: 50%; animation: a-float 9s ease-in-out infinite; }
.a-g1 { left: -90px; top: 90px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(124, 92, 255, .55), rgba(124, 92, 255, 0) 70%); }
.a-g2 { right: -120px; top: 330px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(39, 225, 255, .32), rgba(39, 225, 255, 0) 70%); animation-delay: -3s; }
.a-g3 { left: 40px; bottom: -140px; width: 340px; height: 300px; background: radial-gradient(circle, rgba(255, 79, 216, .28), rgba(255, 79, 216, 0) 70%); animation-delay: -6s; }
.a-in { position: relative; height: 100%; padding: 56px 20px 22px; display: flex; flex-direction: column; gap: 14px; }
.a-top { display: flex; align-items: center; gap: 12px; }
.a-ib { width: 44px; height: 44px; flex-shrink: 0; border-radius: 22px; border: 1px solid rgba(255, 255, 255, .16); background: rgba(255, 255, 255, .08); display: flex; align-items: center; justify-content: center; }
.a-ttl { flex-grow: 1; text-align: center; }
.a-ttl b { display: block; font-size: 20px; font-weight: 700; letter-spacing: -.02em; }
.a-ttl span { display: block; font-size: 12px; color: rgba(244, 242, 255, .62); margin-top: 2px; }
.a-dev { align-self: center; display: flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .14); font-size: 12px; font-weight: 500; }
.a-dot { width: 6px; height: 6px; border-radius: 3px; background: #b6ff3b; }
.a-mut { color: rgba(244, 242, 255, .62); }
.a-seg { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 4px; padding: 4px; border-radius: 999px; background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .12); }
.a-seg span { height: 38px; border-radius: 999px; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; color: rgba(244, 242, 255, .7); }
.a-seg .on { background: #f4f2ff; color: #14112a; font-weight: 700; }
.a-stage { position: relative; height: 300px; flex-shrink: 0; }
.a-ring { position: absolute; left: 50%; top: 50%; width: 230px; height: 230px; margin: -115px 0 0 -115px; border-radius: 50%; border: 2px solid rgba(124, 92, 255, .7); animation: a-ring 2.4s ease-out infinite; }
.a-r2 { animation-delay: .8s; }
.a-r3 { animation-delay: 1.6s; }
.a-orb { position: absolute; left: 50%; top: 50%; width: 176px; height: 176px; margin: -88px 0 0 -88px; border-radius: 50%; box-shadow: 0 0 60px rgba(124, 92, 255, .65); }
.a-spin { position: absolute; inset: 0; border-radius: 50%; background: conic-gradient(#27e1ff, #7c5cff, #ff4fd8, #27e1ff); animation: a-spin 6s linear infinite; }
.a-orb-in { position: absolute; inset: 7px; border-radius: 50%; background: radial-gradient(circle at 35% 28%, #3a2f7a, #120f26 70%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
.a-orb-in small { font-size: 13px; font-weight: 600; }
.a-av { display: flex; align-items: center; justify-content: center; border-radius: 50%; font-weight: 700; color: #0b0a14; }
.a-av-lg { width: 64px; height: 64px; font-size: 26px; font-weight: 800; background: linear-gradient(135deg, #3ddc97, #27b5ff); }
.a-m { position: absolute; width: 46px; height: 46px; border: 2px solid rgba(255, 255, 255, .2); }
.a-m1 { left: 8px; top: 34px; background: linear-gradient(135deg, #ff4fd8, #ff8a5b); }
.a-m2 { right: 10px; top: 28px; background: linear-gradient(135deg, #ffb23f, #ff5a36); }
.a-m3 { left: 22px; bottom: 30px; background: linear-gradient(135deg, #7c5cff, #b9a6ff); }
.a-m4 { right: 18px; bottom: 36px; background: rgba(255, 255, 255, .1); color: rgba(244, 242, 255, .55); border-color: rgba(255, 255, 255, .12); }
.a-talk { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.a-talk-l { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 700; }
.a-bars { display: flex; align-items: center; gap: 3px; height: 18px; }
.a-bars i { display: block; width: 4px; height: 18px; border-radius: 2px; background: #27e1ff; animation: a-bar .9s ease-in-out infinite; }
.a-bars i:nth-child(2) { animation-delay: .15s; }
.a-bars i:nth-child(3) { animation-delay: .3s; }
.a-bars i:nth-child(4) { animation-delay: .45s; }
.a-hint { font-size: 12px; color: rgba(244, 242, 255, .55); }
.a-catch { align-self: center; display: flex; align-items: center; gap: 8px; height: 40px; padding: 0 16px; border-radius: 999px; border: 1px solid rgba(182, 255, 59, .35); background: rgba(182, 255, 59, .1); color: #d8ff8f; font-size: 13px; font-weight: 600; }
.a-feed { margin-top: auto; border-radius: 26px; background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .12); padding: 14px 16px; display: flex; flex-direction: column; gap: 12px; }
.a-msg { display: flex; gap: 10px; }
.a-av-sm { width: 30px; height: 30px; flex-shrink: 0; font-size: 13px; }
.a-c1 { background: linear-gradient(135deg, #ff4fd8, #ff8a5b); }
.a-c3 { background: linear-gradient(135deg, #7c5cff, #b9a6ff); }
.a-msg b { display: block; font-size: 12px; font-weight: 700; }
.a-msg b span { font-weight: 400; color: rgba(244, 242, 255, .5); }
.a-msg p { margin: 2px 0 0; font-size: 13px; color: rgba(244, 242, 255, .86); line-height: 1.4; }
@keyframes a-ring { 0% { transform: scale(.72); opacity: .75; } 100% { transform: scale(1.35); opacity: 0; } }
@keyframes a-spin { to { transform: rotate(360deg); } }
@keyframes a-bar { 0%, 100% { transform: scaleY(.35); } 50% { transform: scaleY(1); } }
@keyframes a-float { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(18px, -14px); } }

/* --- B · Signal Radio --- */
.tB { background: #161513; color: #f1e9da; font-family: var(--f-body); padding: 54px 18px 22px; display: flex; flex-direction: column; gap: 14px; }
.b-m { font-family: var(--f-mono); }
.b-top { display: flex; align-items: center; justify-content: space-between; }
.b-btn { height: 36px; padding: 0 12px; border-radius: 8px; border: 1px solid #3a362f; background: #201e1b; font-size: 12px; font-weight: 700; display: flex; align-items: center; gap: 6px; }
.b-brand { font-size: 12px; letter-spacing: .2em; color: #a89f8e; }
.b-lcd { border-radius: 14px; background: #0f1410; border: 2px solid #2c2a25; padding: 14px 16px; display: flex; flex-direction: column; gap: 10px; }
.b-lcd-r { display: flex; align-items: flex-end; justify-content: space-between; }
.b-ch { font-size: 54px; line-height: 1; font-weight: 700; color: #ff6b1a; }
.b-sig { display: flex; align-items: flex-end; gap: 3px; height: 26px; padding-bottom: 4px; }
.b-sig i { width: 5px; background: #ff6b1a; }
.b-sig i:nth-child(1) { height: 8px; }
.b-sig i:nth-child(2) { height: 13px; }
.b-sig i:nth-child(3) { height: 18px; }
.b-sig i:nth-child(4) { height: 24px; background: #5a3620; }
.b-name { font-size: 22px; font-weight: 900; letter-spacing: .02em; }
.b-meta { display: flex; justify-content: space-between; font-size: 11px; color: #a89f8e; }
.b-blink { display: inline-block; width: 8px; height: 8px; margin: 0 2px; border-radius: 50%; background: #9de36b; vertical-align: 0; animation: b-blink 1s steps(2) infinite; }
.b-seg { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 2px solid #3a362f; border-radius: 10px; overflow: hidden; }
.b-seg span { height: 40px; display: flex; align-items: center; justify-content: center; background: #201e1b; color: #a89f8e; font-size: 12px; font-weight: 700; letter-spacing: .08em; }
.b-seg span + span { border-left: 2px solid #3a362f; }
.b-seg .on { background: #ff6b1a; color: #161513; }
.b-stage { position: relative; height: 236px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.b-grille { position: absolute; width: 230px; height: 230px; border-radius: 50%; background-color: #1e1c19; background-image: radial-gradient(#3a362f 2.2px, transparent 2.6px); background-size: 12px 12px; border: 2px solid #2c2a25; }
.b-ptt { position: relative; width: 150px; height: 150px; border-radius: 50%; border: 6px solid #2c2a25; background: #ff6b1a; color: #161513; font-size: 13px; font-weight: 700; letter-spacing: .08em; line-height: 1.35; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; animation: b-press 1.8s ease-out infinite; }
.b-rx { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px; background: #201e1b; border: 1px solid #3a362f; }
.b-rx-l { font-size: 12px; font-weight: 700; color: #ff6b1a; min-width: 74px; }
.b-vu { display: flex; gap: 3px; flex-grow: 1; }
.b-vu i { width: 9px; height: 14px; border-radius: 2px; background: #ff6b1a; animation: b-vu 1.1s ease-in-out infinite; }
.b-vu i:nth-child(2) { animation-delay: .1s; }
.b-vu i:nth-child(3) { animation-delay: .2s; }
.b-vu i:nth-child(4) { animation-delay: .3s; }
.b-vu i:nth-child(5) { animation-delay: .4s; }
.b-vu i:nth-child(6) { animation-delay: .5s; }
.b-vu i:nth-child(7) { animation-delay: .6s; }
.b-vu i:nth-child(8) { animation-delay: .7s; }
.b-vu i:nth-child(9) { animation-delay: .8s; background: #f1e9da; }
.b-vu i:nth-child(10) { animation-delay: .9s; background: #f1e9da; }
.b-t { font-size: 12px; color: #a89f8e; }
.b-log { flex: 1 1 0; min-height: 0; overflow: hidden; border-radius: 12px; background: #0f1410; border: 2px solid #2c2a25; padding: 12px 14px; display: flex; flex-direction: column; gap: 9px; font-size: 12px; line-height: 1.45; }
.b-log p { margin: 0; }
.b-log-h { display: flex; justify-content: space-between; color: #a89f8e; font-size: 11px; }
.b-ts { color: #a89f8e; }
.b-log b { color: #ff6b1a; font-weight: 700; }
.b-recap { height: 46px; flex-shrink: 0; border-radius: 10px; border: 2px solid #f1e9da; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; letter-spacing: .1em; }
@keyframes b-vu { 0%, 100% { opacity: .18; } 50% { opacity: 1; } }
@keyframes b-blink { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }
@keyframes b-press { 0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 26, .55); } 50% { box-shadow: 0 0 0 14px rgba(255, 107, 26, 0); } }

/* --- C · Pop Sticker --- */
.tC { background: #fff4e4; color: #1b1a1f; font-family: var(--f-display); padding: 54px 18px 22px; display: flex; flex-direction: column; gap: 14px; }
.c-top { display: flex; align-items: center; gap: 12px; }
.c-ib { width: 46px; height: 46px; flex-shrink: 0; border-radius: 14px; border: 2px solid #1b1a1f; background: #fff; box-shadow: 3px 3px 0 #1b1a1f; display: flex; align-items: center; justify-content: center; }
.c-y { background: #ffc53d; }
.c-ttl { flex-grow: 1; }
.c-ttl b { display: block; font-size: 30px; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.c-ttl span { display: block; font-size: 13px; font-weight: 500; margin-top: 4px; color: #5b5560; }
.c-chips { display: flex; gap: 8px; }
.c-chip { display: flex; align-items: center; gap: 6px; padding: 7px 12px; border-radius: 999px; border: 2px solid #1b1a1f; background: #fff; font-size: 13px; font-weight: 700; }
.c-g { background: #3ddc97; }
.c-seg { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.c-seg span { height: 44px; border-radius: 14px; border: 2px solid #1b1a1f; background: #fff; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; }
.c-seg .on { background: #2e4bff; color: #fff; font-weight: 800; box-shadow: 3px 3px 0 #1b1a1f; }
.c-stage { position: relative; height: 270px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.c-blob { border-radius: 58% 42% 55% 45% / 48% 58% 42% 52%; animation: c-wobble 4s ease-in-out infinite; }
.c-blob-bg { position: absolute; width: 214px; height: 214px; background: #ffc53d; border: 2px solid #1b1a1f; }
.c-ptt { position: relative; width: 168px; height: 168px; border: 3px solid #1b1a1f; background: #ff5a36; box-shadow: 5px 5px 0 #1b1a1f; color: #fff; font-size: 17px; font-weight: 800; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
.c-av { position: absolute; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 2px solid #1b1a1f; font-weight: 800; box-shadow: 3px 3px 0 #1b1a1f; transform: rotate(var(--r)); animation: c-bob 3s ease-in-out infinite; }
.c-m1 { --r: -8deg; left: 6px; top: 22px; width: 58px; height: 58px; background: #3ddc97; font-size: 22px; }
.c-m2 { --r: 9deg; right: 10px; top: 36px; width: 52px; height: 52px; background: #b9a6ff; font-size: 20px; animation-delay: -1s; }
.c-m3 { --r: 6deg; left: 30px; bottom: 16px; width: 50px; height: 50px; background: #2e4bff; color: #fff; font-size: 19px; animation-delay: -2s; }
.c-m4 { --r: -6deg; right: 24px; bottom: 22px; width: 50px; height: 50px; background: #fff; font-size: 19px; animation-delay: -.5s; }
.c-now { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 18px; border: 2px solid #1b1a1f; background: #3ddc97; box-shadow: 4px 4px 0 #1b1a1f; }
.c-bars { display: flex; align-items: flex-end; gap: 3px; height: 24px; }
.c-bars i { display: block; width: 6px; height: 24px; border-radius: 3px; background: #1b1a1f; transform-origin: bottom; animation: c-bounce .7s ease-in-out infinite; }
.c-bars i:nth-child(2) { animation-delay: .1s; }
.c-bars i:nth-child(3) { animation-delay: .2s; }
.c-bars i:nth-child(4) { animation-delay: .3s; }
.c-now b { flex-grow: 1; font-size: 16px; font-weight: 800; }
.c-now span { font-size: 13px; font-weight: 700; }
.c-feed { display: flex; flex-direction: column; gap: 10px; flex-grow: 1; }
.c-bub { align-self: flex-start; max-width: 290px; margin: 0; padding: 10px 14px; border-radius: 18px 18px 18px 6px; border: 2px solid #1b1a1f; background: #fff; font-size: 14px; font-weight: 500; line-height: 1.35; }
.c-bub b { font-weight: 800; }
.c-bub small { font-size: 12px; }
.c-v { background: #b9a6ff; }
.c-cta { height: 52px; flex-shrink: 0; border-radius: 16px; border: 2px solid #1b1a1f; background: #1b1a1f; color: #fff4e4; font-size: 16px; font-weight: 800; box-shadow: 4px 4px 0 #ff5a36; display: flex; align-items: center; justify-content: center; }
@keyframes c-wobble {
  0%, 100% { border-radius: 58% 42% 55% 45% / 48% 58% 42% 52%; transform: rotate(0); }
  50% { border-radius: 44% 56% 46% 54% / 57% 43% 57% 43%; transform: rotate(6deg); }
}
@keyframes c-bounce { 0%, 100% { transform: scaleY(.3); } 50% { transform: scaleY(1); } }
@keyframes c-bob { 0%, 100% { transform: translateY(0) rotate(var(--r)); } 50% { transform: translateY(-7px) rotate(var(--r)); } }

/* --- D · Midnight Minimal --- */
.tD { background: #000; color: #f5f5f0; font-family: var(--f-body); padding: 56px 22px 24px; display: flex; flex-direction: column; gap: 18px; }
.d-serif { font-family: var(--f-serif); font-weight: 400; }
.d-top { display: flex; align-items: center; justify-content: space-between; }
.d-ib { width: 44px; height: 44px; border-radius: 22px; border: 1px solid #262624; display: flex; align-items: center; justify-content: center; }
.d-dev { display: flex; align-items: center; gap: 8px; font-size: 12px; color: #9a9a94; }
.d-dev i { width: 7px; height: 7px; border-radius: 4px; background: #ccff4d; animation: d-breathe 1.6s ease-in-out infinite; }
.d-lbl { font-size: 11px; letter-spacing: .18em; color: #9a9a94; }
.d-h { font-size: 52px; line-height: 1; margin-top: 6px; letter-spacing: -.01em; }
.d-sub { font-size: 13px; color: #9a9a94; margin-top: 8px; }
.d-tabs { display: flex; gap: 22px; border-bottom: 1px solid #1e1e1c; }
.d-tabs span { padding-bottom: 10px; font-size: 14px; font-weight: 500; color: #6e6e69; }
.d-tabs .on { margin-bottom: -1px; border-bottom: 2px solid #ccff4d; color: #f5f5f0; font-weight: 600; }
.d-spk { display: flex; flex-direction: column; gap: 10px; padding: 10px 0; }
.d-spk-h { display: flex; align-items: baseline; justify-content: space-between; }
.d-name { font-size: 30px; font-style: italic; }
.d-live { font-size: 12px; color: #ccff4d; }
.d-wave { transform-box: fill-box; transform-origin: center; animation: d-amp 1.3s ease-in-out infinite alternate; }
.d-avs { display: flex; gap: 10px; align-items: center; }
.d-avs span { width: 34px; height: 34px; border-radius: 17px; border: 1px solid #3a3a37; display: flex; align-items: center; justify-content: center; font-size: 13px; }
.d-avs .on { background: #ccff4d; border-color: #ccff4d; color: #000; font-weight: 600; }
.d-avs .dash { border-style: dashed; color: #6e6e69; }
.d-tr { flex-grow: 1; display: flex; flex-direction: column; }
.d-tr-h { display: flex; justify-content: space-between; align-items: center; padding-bottom: 10px; border-bottom: 1px solid #1e1e1c; }
.d-catch { color: #ccff4d; font-size: 13px; font-weight: 500; }
.d-row { display: flex; gap: 14px; padding: 12px 0; font-size: 14px; line-height: 1.45; }
.d-row + .d-row { border-top: 1px solid #1e1e1c; }
.d-row p { margin: 0; }
.d-row p span { color: #9a9a94; }
.d-ts { width: 38px; flex-shrink: 0; color: #6e6e69; font-size: 12px; padding-top: 2px; }
.d-ptt { height: 72px; flex-shrink: 0; border-radius: 36px; background: #ccff4d; color: #000; font-size: 17px; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 10px; }
@keyframes d-breathe { 0%, 100% { opacity: .35; } 50% { opacity: 1; } }
@keyframes d-amp { from { transform: scaleY(.45); } to { transform: scaleY(1); } }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .tl__play, .beamline__track i { display: none; }
  .hold__fg { stroke-dashoffset: 90; }
}

/* =====================================================================
   Privacy page
   ===================================================================== */
.doc { padding-block: clamp(48px, 7vw, 96px); }
.doc__in { max-width: 720px; }
.doc h1 { font-size: clamp(2.2rem, 1.5rem + 3vw, 3.4rem); font-weight: 800; letter-spacing: -.04em; line-height: 1.05; }
.doc__meta { margin-top: 12px; color: var(--muted); font-size: 15px; }
.doc__intro { margin-top: 24px; font-size: 1.12rem; color: var(--cream); }
.doc h2 { margin-top: 44px; font-size: 1.4rem; font-weight: 750; letter-spacing: -.02em; }
.doc p, .doc li { color: var(--muted); }
.doc p + p { margin-top: 12px; }
.doc h2 + p, .doc h2 + ul, .doc p + ul, .doc ul + p { margin-top: 12px; }
.doc ul { display: grid; gap: 10px; }
.doc ul li { position: relative; padding-left: 22px; }
.doc ul li::before { content: ""; position: absolute; left: 2px; top: .7em; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
.doc strong { color: var(--cream); font-weight: 650; }
.doc a { color: var(--cream); text-decoration-color: var(--orange); text-underline-offset: 3px; }
.back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 28px; color: var(--muted); font-weight: 600; font-size: 15px; text-decoration: none; border-radius: 8px; }
.back:hover { color: var(--cream); }
.back .i { width: 18px; height: 18px; }
