/*
 * Public landing page. Shared by all six locales; no build step. "Night radio": dark sections lit by the three
 * buttons' colours, warm paper sheets in between. Motion lives in site.js; without it (or with reduced motion)
 * everything is simply there.
 */
@font-face {
    font-family: 'DM Sans';
    src: url('/fonts/dm-sans-latin.woff2') format('woff2');
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}
@font-face {
    font-family: 'DM Sans';
    src: url('/fonts/dm-sans-latin-ext.woff2') format('woff2');
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    unicode-range: U+0100-02FF,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}
@property --angle { syntax: '<angle>'; inherits: false; initial-value: 0deg; }

:root {
    --night: #0c130f;
    --night-2: #121b16;
    --night-3: #19251e;
    --cream: #f3eee3;
    --cream-2: #ebe4d5;
    --paper: #fffdf8;
    --ink: #151c17;
    --ink-soft: #4a524c;
    --line: #e1dacb;
    --green: #1b7f3b;
    --green-light: #86e0a4;
    --yellow: #ffd60a;
    --red: #c62828;
    --red-light: #ff7b6b;
    --amber: #ffb547;
    --on-dark: #f1ecdf;
    --on-dark-soft: rgba(241, 236, 223, .66);
    --on-dark-line: rgba(241, 236, 223, .12);
    --app-ink: #1a1a1a;
    --font: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --device-font: var(--font);
    --mono: ui-monospace, 'SF Mono', 'Cascadia Mono', Menlo, Consolas, monospace;
    --ease: cubic-bezier(.16, .84, .24, 1);
    --spring: cubic-bezier(.34, 1.56, .64, 1);
    --nav-h: 90px;
    color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; -webkit-text-size-adjust: 100%; background: var(--night); }
body { margin: 0; background: var(--cream); color: var(--ink); font: 17px/1.6 var(--font); -webkit-font-smoothing: antialiased; overflow-x: clip; }
h1, h2, h3, p, figure, blockquote { margin: 0; }
h1, h2, h3 { font-weight: 650; line-height: 1.05; letter-spacing: -.04em; text-wrap: balance; }
h3 { font-size: 22px; letter-spacing: -.025em; line-height: 1.2; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; }
button, a, summary { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--green-light); outline-offset: 4px; border-radius: 6px; }
.light :focus-visible { outline-color: var(--green); }
::selection { background: var(--yellow); color: var(--ink); }

.wrap { width: 100%; max-width: 1320px; margin-inline: auto; padding-inline: 32px; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.skip { position: absolute; left: 16px; top: -60px; z-index: 100; padding: 10px 16px; background: var(--yellow); color: var(--ink); border-radius: 10px; font-weight: 600; }
.skip:focus { top: 16px; }

.ico { width: 1.25em; height: 1.25em; flex: none; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.ico-fill { fill: currentColor; stroke: none; }

.dark { --fg: var(--on-dark); --soft: var(--on-dark-soft); --rule: var(--on-dark-line); background: var(--night); color: var(--on-dark); }
.light { --fg: var(--ink); --soft: var(--ink-soft); --rule: var(--line); background: var(--cream); color: var(--ink); }
/* Paper and night slide over each other like sheets. */
.sheet { position: relative; z-index: 2; margin-top: -44px; border-radius: 44px 44px 0 0; }

.kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px; font: 600 13px/1 var(--mono); letter-spacing: .14em; text-transform: uppercase; color: var(--green); }
.kicker::before { content: ''; width: 22px; height: 2px; border-radius: 2px; background: currentColor; }
.dark .kicker { color: var(--amber); }
.display { font-size: clamp(38px, 5.2vw, 78px); line-height: .98; letter-spacing: -.05em; }
.section-head { max-width: 900px; margin-bottom: 64px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .kicker { justify-content: center; }
.section-lead { margin-top: 22px; font-size: 20px; color: var(--soft); }

/* Buttons */
.btn {
    position: relative; isolation: isolate; overflow: hidden;
    display: inline-flex; align-items: center; justify-content: center; gap: 12px; white-space: nowrap;
    min-height: 54px; padding: 0 26px; border: 0; border-radius: 999px;
    background: var(--ink); color: var(--cream); font-size: 16px; font-weight: 600; letter-spacing: -.01em; text-decoration: none; cursor: pointer;
    transition: transform .5s var(--ease), box-shadow .4s, background-color .3s;
}
.btn::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, .45) 50%, transparent 70%); transform: translateX(-110%); transition: transform .8s var(--ease); }
.btn:hover::after { transform: translateX(110%); }
.dark .btn, .nav[data-theme='dark'] .btn { background: var(--cream); color: var(--ink); }
.btn-small { min-height: 42px; padding: 0 18px; font-size: 15px; }
.btn-big { min-height: 66px; padding: 0 9px 0 30px; font-size: 18px; gap: 18px; }
.btn-arrow { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--green); color: #fff; transition: transform .5s var(--spring); }
.btn:hover .btn-arrow { transform: rotate(-35deg) scale(1.06); }
.btn-glow { box-shadow: 0 0 0 1px rgba(255, 255, 255, .12), 0 20px 60px -14px rgba(134, 224, 164, .6); }
.light .btn-glow { box-shadow: 0 20px 50px -18px rgba(21, 28, 23, .55); }
.btn-line { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn-line:hover { background: var(--ink); color: var(--cream); }
.text-link { display: inline-flex; align-items: center; gap: 12px; font-weight: 600; text-decoration: none; }
.play-ring { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; box-shadow: inset 0 0 0 1.5px var(--rule); transition: background .3s, box-shadow .3s; }
.play-ring .ico { width: 14px; height: 14px; margin-left: 2px; }
.text-link:hover .play-ring { background: rgba(255, 255, 255, .08); box-shadow: inset 0 0 0 1.5px var(--fg); }

/* Navigation: the whole page is a dial. */
.nav { position: fixed; inset: 0 0 auto; z-index: 60; color: var(--on-dark); transition: color .45s, background-color .45s, box-shadow .45s; }
.nav.is-scrolled { background: rgba(12, 19, 15, .72); backdrop-filter: blur(18px) saturate(1.5); -webkit-backdrop-filter: blur(18px) saturate(1.5); }
.nav[data-theme='light'] { color: var(--ink); }
html:not(.js) .nav { background: rgba(12, 19, 15, .94); }
.nav.is-scrolled[data-theme='light'] { background: rgba(243, 238, 227, .82); }
.nav-in { display: flex; align-items: center; gap: 24px; max-width: 1400px; height: 70px; margin-inline: auto; padding-inline: 32px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 19px; font-weight: 700; letter-spacing: -.035em; text-decoration: none; white-space: nowrap; }
.brand img { border-radius: 9px; }
.lcd { display: none; }
.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-links a { padding: 8px 14px; border-radius: 99px; font-size: 15px; font-weight: 500; text-decoration: none; opacity: .82; transition: opacity .2s, background-color .2s; }
.nav-links a:hover { opacity: 1; background: color-mix(in srgb, currentColor 10%, transparent); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-signin { font-size: 15px; font-weight: 500; text-decoration: none; opacity: .82; }
.nav-signin:hover { opacity: 1; }
.language-menu { position: relative; }
.language-menu summary { display: flex; align-items: center; gap: 6px; padding: 8px 10px; border-radius: 99px; font-size: 14px; font-weight: 600; list-style: none; cursor: pointer; }
.language-menu summary::-webkit-details-marker { display: none; }
.language-menu summary:hover { background: color-mix(in srgb, currentColor 10%, transparent); }
.language-menu .chevron { width: 14px; transition: transform .3s; }
.language-menu[open] .chevron { transform: rotate(180deg); }
.language-menu nav { position: absolute; right: 0; top: calc(100% + 10px); display: grid; min-width: 180px; padding: 8px; border-radius: 18px; background: var(--paper); color: var(--ink); box-shadow: 0 24px 60px -20px rgba(0, 0, 0, .45), 0 0 0 1px rgba(0, 0, 0, .06); animation: pop .3s var(--ease); }
.language-menu nav a { padding: 10px 14px; border-radius: 10px; font-weight: 500; text-decoration: none; }
.language-menu nav a:hover { background: var(--cream); }
.language-menu nav a[aria-current] { color: var(--green); font-weight: 700; }
.dial { position: relative; height: 20px; max-width: 1336px; margin-inline: auto; color: inherit; opacity: .9; }
.dial::before {
    content: ''; position: absolute; inset: auto 0 0; height: 9px; opacity: .3;
    background:
        repeating-linear-gradient(90deg, currentColor 0 1px, transparent 1px 1%) bottom / 100% 4px no-repeat,
        repeating-linear-gradient(90deg, currentColor 0 1px, transparent 1px 10%) bottom / 100% 9px no-repeat;
}
.dial-scale span { position: absolute; top: 0; left: calc(var(--at) * 100%); transform: translateX(-50%); font: 500 9px/1 var(--mono); opacity: .4; }
.dock { display: none; }
.dial-needle { position: absolute; top: 1px; bottom: -3px; left: calc(var(--progress, 0) * 100%); width: 2px; margin-left: -1px; border-radius: 2px; background: #ff5b47; box-shadow: 0 0 10px 2px rgba(255, 91, 71, .65); }

/* Hero */
.hero { position: relative; isolation: isolate; overflow: hidden; min-height: 100svh; padding: calc(var(--nav-h) + 36px) 0 90px; }
.hero-waves { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; }
.hero-grain { position: absolute; inset: 0; z-index: -1; opacity: .5; pointer-events: none; background: radial-gradient(rgba(241, 236, 223, .07) 1px, transparent 1.4px) 0 0 / 26px 26px; mask-image: radial-gradient(ellipse 70% 60% at 65% 45%, #000, transparent 80%); }
.hero-in { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr); gap: 40px; align-items: center; min-height: calc(100svh - var(--nav-h) - 126px); }
.hero-title { margin: 0 0 28px; font-size: clamp(46px, 6.3vw, 100px); line-height: .92; letter-spacing: -.058em; overflow-wrap: break-word; hyphens: manual; }
.hero-title .line { display: block; }
.line-accent { padding-bottom: .08em; background: linear-gradient(100deg, #8fe6ab 0%, #ffe07a 42%, #ff9f8e 78%, #8fe6ab 100%) 0 0 / 220% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; animation: sheen 9s ease-in-out infinite alternate; }
.lead { max-width: 33em; font-size: clamp(18px, 1.45vw, 21px); line-height: 1.55; color: var(--on-dark-soft); }
.cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 30px; margin-top: 38px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 34px; font-size: 15px; color: var(--on-dark-soft); }
.hero-points li { display: flex; align-items: center; gap: 8px; }
.hero-points .ico { color: var(--green-light); }

.hero-stage { position: relative; height: min(720px, calc(100svh - var(--nav-h) - 110px)); min-height: 600px; }
/* The room takes the colour of what's playing. */
.hero-glow { position: absolute; left: 32%; top: 50%; z-index: -1; width: 860px; aspect-ratio: 1; border-radius: 50%; color: #34c36a; background: radial-gradient(closest-side, currentColor, transparent); opacity: .3; transform: translate(-50%, -50%); transition: color 1.4s var(--ease), opacity 1.4s; pointer-events: none; }
.hero[data-color='yellow'] .hero-glow { color: #ffc93b; }
.hero[data-color='red'] .hero-glow { color: #ff5a4a; }
.hero[data-color='off'] .hero-glow { color: #56625a; opacity: .2; }
.device { position: absolute; }
.hero .device-them { --w: min(clamp(220px, 19vw, 280px), calc((100svh - 330px) * .46)); left: 10%; top: 0; z-index: 2; }
.hero .device-you { --w: min(clamp(160px, 13vw, 196px), calc((100svh - 330px) * .32)); right: 0; top: 30%; z-index: 3; }
.hero .device-you .phone { rotate: 5deg; animation: bob 7s ease-in-out infinite; }
.device-them .phone { transform: perspective(1500px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); rotate: -2.5deg; }
.device-tag { display: flex; align-items: center; gap: 8px; margin: 0 0 14px 6px; font: 600 12px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; color: var(--on-dark-soft); }
.device-tag span { width: 7px; height: 7px; border-radius: 50%; background: var(--green-light); box-shadow: 0 0 10px var(--green-light); }
.device-you .device-tag span { background: var(--amber); box-shadow: 0 0 10px var(--amber); }
.phone-cable { position: absolute; left: 50%; top: calc(100% - 4px); width: 60px; height: 240px; margin-left: -30px; fill: none; stroke: #262c28; stroke-width: 7; stroke-linecap: round; z-index: -1; }
.sound { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px 9px 12px; border: 0; border-radius: 99px; background: rgba(241, 236, 223, .08); box-shadow: inset 0 0 0 1px var(--on-dark-line); color: var(--on-dark-soft); font-size: 14px; font-weight: 600; cursor: pointer; transition: background .3s, color .3s, box-shadow .3s; }
.sound:hover { color: var(--on-dark); background: rgba(241, 236, 223, .14); }
.sound .sound-on, .sound[aria-pressed='true'] .sound-off { display: none; }
.sound[aria-pressed='true'] .sound-on { display: block; }
.sound[aria-pressed='true'] { background: var(--yellow); color: var(--ink); box-shadow: 0 0 30px -4px rgba(255, 214, 10, .6); }
.scroll-cue { position: absolute; left: 50%; bottom: 26px; width: 24px; height: 38px; margin-left: -12px; border-radius: 12px; box-shadow: inset 0 0 0 1.5px var(--on-dark-line); }
.scroll-cue i { position: absolute; left: 50%; top: 8px; width: 3px; height: 7px; margin-left: -1.5px; border-radius: 2px; background: var(--on-dark-soft); animation: cue 2s var(--ease) infinite; }

/* The link between the two phones: a signal that travels. */
.link { position: absolute; inset: 0; z-index: 4; pointer-events: none; }
.link svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.link .link-base { fill: none; stroke: currentColor; stroke-width: 1.5; stroke-dasharray: 2 7; stroke-linecap: round; opacity: .35; }
.link .link-flow { fill: none; stroke: #86e0a4; stroke-width: 3; stroke-linecap: round; }
.link .link-dot { fill: #fff; filter: drop-shadow(0 0 6px var(--dot, #86e0a4)) drop-shadow(0 0 14px var(--dot, #86e0a4)); }
.hero .link { color: var(--on-dark); }
.device.is-pinged .phone { box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .14), 0 0 0 3px rgba(134, 224, 164, .55), 0 0 60px rgba(134, 224, 164, .35), 0 50px 100px -30px rgba(0, 0, 0, .75); }

/* A phone. Everything inside is sized in em, from its width (--w). */
.phone {
    position: relative; width: var(--w, 280px); aspect-ratio: 9 / 19.2; padding: calc(var(--w, 280px) * .03);
    border-radius: calc(var(--w, 280px) * .155); font-size: calc(var(--w, 280px) * .053);
    background: linear-gradient(150deg, #454a47 0%, #151816 22%, #0b0d0c 60%, #202421 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16), inset 0 0 0 calc(var(--w, 280px) * .011) #1b1e1c, 0 50px 100px -30px rgba(0, 0, 0, .75), 0 30px 50px -30px rgba(0, 0, 0, .55);
    transition: box-shadow .5s var(--ease), transform .35s var(--ease);
}
.phone-small { font-size: calc(var(--w, 280px) * .064); }
.phone::before { content: ''; position: absolute; right: -2px; top: 22%; width: 3px; height: 13%; border-radius: 0 3px 3px 0; background: #2b302d; }
.phone-screen { position: relative; display: flex; flex-direction: column; height: 100%; overflow: hidden; border-radius: calc(var(--w, 280px) * .125); background: #fff; color: var(--app-ink); isolation: isolate; }
.phone-screen::before { content: ''; position: absolute; top: .62em; left: 50%; z-index: 9; width: .72em; height: .72em; margin-left: -.36em; border-radius: 50%; background: #0a0a0a; box-shadow: inset 0 0 0 .12em #1d1d1d; }
.phone-screen::after { content: ''; position: absolute; inset: 0; z-index: 8; pointer-events: none; background: linear-gradient(115deg, rgba(255, 255, 255, .22) 0%, rgba(255, 255, 255, 0) 34%); }
.phone-status { flex: none; display: flex; align-items: center; justify-content: space-between; height: 2em; padding: .25em 1.5em 0 1.6em; font: 600 .62em/1 var(--device-font); }
.phone-status > span:first-child { font-size: 1.05em; }
.phone-status-icons { display: flex; align-items: center; gap: .4em; }
.phone-status-icons i { display: block; height: .95em; background: currentColor; }
.ps-signal { width: 1.3em; clip-path: polygon(0 100%, 100% 0, 100% 100%); }
.ps-wifi { width: 1.25em; clip-path: polygon(50% 100%, 0 30%, 18% 12%, 50% 0, 82% 12%, 100% 30%); }
.ps-battery { width: 1.9em; border-radius: .25em; clip-path: inset(0 22% 0 0 round .25em); }

/* The parent's radio, like the app draws it (SeniorScreens.kt): night, lit by the button playing, with an amber display. */
.phone-screen:has(> .radio) { background: var(--night); color: var(--on-dark); }
.radio { position: relative; flex: 1; display: flex; flex-direction: column; gap: .45em; min-height: 0; padding: .1em .55em .6em; font-family: var(--device-font); isolation: isolate; }
.radio::before { content: ''; position: absolute; inset: -2em 0 0; z-index: -1; pointer-events: none; opacity: 0; transition: opacity .8s; }
.radio:has(.rb-green.is-on)::before { opacity: 1; background: radial-gradient(90% 45% at 50% 34%, rgba(27, 127, 59, .4), transparent 70%); }
.radio:has(.rb-yellow.is-on)::before { opacity: 1; background: radial-gradient(90% 45% at 50% 52%, rgba(255, 214, 10, .24), transparent 70%); }
.radio:has(.rb-red.is-on)::before { opacity: 1; background: radial-gradient(90% 45% at 50% 70%, rgba(198, 40, 40, .36), transparent 70%); }
.radio-lcd { flex: none; display: flex; flex-direction: column; gap: .15em; padding: .3em .6em .35em; border-radius: .85em; background: radial-gradient(130% 110% at 50% 0%, #2d2412, #120e07 72%); box-shadow: inset 0 0 1.6em rgba(0, 0, 0, .6), inset 0 0 0 1px rgba(255, 181, 71, .18); }
.radio-lcd-main { display: flex; align-items: center; justify-content: center; gap: .4em; height: 1.9em; min-width: 0; color: #ffd596; }
.radio-status { min-width: 0; overflow: hidden; font-size: 1.12em; font-weight: 700; letter-spacing: -.01em; text-align: center; white-space: nowrap; text-overflow: ellipsis; text-shadow: 0 0 .8em rgba(255, 181, 71, .55), 0 0 1px rgba(255, 226, 170, .7); transition: color .4s; }
.radio.is-stopped .radio-status { color: rgba(255, 213, 150, .6); text-shadow: none; }
.radio-eq, .rb-eq { flex: none; display: flex; align-items: flex-end; gap: .12em; width: .85em; height: .8em; }
.radio-eq i, .rb-eq i { flex: 1; height: 100%; border-radius: .08em; background: currentColor; transform-origin: bottom; animation: eq .9s ease-in-out infinite alternate; }
.radio-eq i:nth-child(2), .rb-eq i:nth-child(2) { animation-delay: -.3s; }
.radio-eq i:nth-child(3), .rb-eq i:nth-child(3) { animation-delay: -.55s; }
.radio.is-stopped .radio-eq { display: none; }
.radio-dial { position: relative; height: .55em; background: repeating-linear-gradient(90deg, rgba(255, 181, 71, .45) 0 1px, transparent 1px .36em) bottom / 100% 45% no-repeat, repeating-linear-gradient(90deg, rgba(255, 181, 71, .7) 0 1.5px, transparent 1.5px 1.8em) bottom / 100% 75% no-repeat; }
.radio-needle { position: absolute; top: 0; bottom: 0; left: 25%; width: 2px; margin-left: -1px; border-radius: 1px; background: #ff6b4a; box-shadow: 0 0 .4em #ff6b4a; transition: left 1s var(--ease); }
.radio:has(.rb-yellow.is-on) .radio-needle { left: 50%; }
.radio:has(.rb-red.is-on) .radio-needle { left: 75%; }
.radio.is-stopped .radio-needle { left: 3%; }
.radio-buttons { flex: 1; display: flex; flex-direction: column; gap: .5em; min-height: 0; padding-bottom: .25em; }
/* A key: it stands on an edge and sinks when pressed. */
.rb {
    position: relative; flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 0; padding: 0; border: 0; border-radius: 1.05em;
    background: linear-gradient(180deg, rgba(255, 255, 255, .08), transparent) var(--face); color: var(--text); font-family: var(--device-font); font-weight: 700; cursor: default;
    box-shadow: 0 .26em 0 var(--edge), 0 .5em 1em -.4em rgba(0, 0, 0, .7);
    transition: transform .35s var(--spring), box-shadow .3s var(--ease);
}
button.rb { cursor: pointer; }
button.rb:hover { transform: scale(1.015); }
button.rb:active { transform: translateY(.2em) scale(.985); box-shadow: 0 .06em 0 var(--edge), 0 .2em .4em -.2em rgba(0, 0, 0, .7); transition-duration: .08s; }
.rb-green { --face: #1b7f3b; --text: #fff; --edge: #0f4d23; --halo: rgba(40, 190, 90, .5); }
.rb-yellow { --face: #ffd60a; --text: var(--app-ink); --edge: #b89800; --halo: rgba(255, 214, 10, .45); }
.rb-red { --face: #c62828; --text: #fff; --edge: #7c1414; --halo: rgba(255, 90, 70, .45); }
.rb.is-on { box-shadow: inset 0 0 0 .2em var(--on-dark), 0 .26em 0 var(--edge), 0 0 1.6em .15em var(--halo); }
.rb-label { display: grid; font-size: 2.05em; line-height: 1.05; letter-spacing: -.03em; }
.rb-label > * { grid-area: 1 / 1; text-align: center; }
.rb-alt { opacity: 0; transform: translateY(40%) rotateX(-70deg); }
.rb-note, .rb-message { display: flex; align-items: center; gap: .35em; max-height: 0; overflow: hidden; font-size: .88em; opacity: 0; transition: max-height .35s var(--ease), opacity .3s; }
.rb.is-on .rb-note { max-height: 1.4em; opacity: 1; }
.rb-dot { flex: none; width: .55em; height: .55em; border-radius: 50%; background: currentColor; }
.radio-volume { flex: none; display: grid; grid-template-columns: 1fr .8fr 1fr; gap: .4em; height: 2.7em; padding-bottom: .15em; }
.radio-volume > span:not(.radio-bars) { display: grid; place-items: center; overflow: hidden; border-radius: 1em; background: var(--night-3); color: var(--on-dark); box-shadow: inset 0 0 0 1px rgba(241, 236, 223, .22), 0 .18em 0 #070b09; font-size: .68em; font-weight: 700; white-space: nowrap; }
.radio-bars { display: flex; align-items: flex-end; gap: .12em; padding: .3em 0; }
.radio-bars i { flex: 1; border-radius: .12em; background: #bdbdbd; transition: background-color .25s; }
.radio-bars i.on { background: var(--app-ink); }
.radio .radio-bars i { background: rgba(241, 236, 223, .16); }
.radio .radio-bars i.on { background: var(--green-light); }
.radio-bars i:nth-child(1) { height: 37%; } .radio-bars i:nth-child(2) { height: 44%; } .radio-bars i:nth-child(3) { height: 51%; }
.radio-bars i:nth-child(4) { height: 58%; } .radio-bars i:nth-child(5) { height: 65%; } .radio-bars i:nth-child(6) { height: 72%; }
.radio-bars i:nth-child(7) { height: 79%; } .radio-bars i:nth-child(8) { height: 86%; } .radio-bars i:nth-child(9) { height: 93%; }
.radio-bars i:nth-child(10) { height: 100%; }
.radio-stop { flex: none; display: flex; align-items: center; justify-content: center; gap: .5em; height: 2.8em; margin-bottom: .22em; border: 0; border-radius: 1.05em; background: var(--on-dark); color: var(--ink); box-shadow: 0 .22em 0 #a39c8b; font-family: var(--device-font); font-size: 1.1em; font-weight: 700; transition: opacity .3s, transform .3s var(--spring), box-shadow .3s; }
.radio-stop-icon { width: .75em; height: .75em; border-radius: .16em; background: currentColor; }
button.radio-stop { cursor: pointer; }
button.radio-stop:active { transform: translateY(.15em) scale(.985); box-shadow: 0 .05em 0 #a39c8b; transition-duration: .08s; }
.radio.is-stopped .radio-stop { opacity: .35; box-shadow: none; cursor: default; }
.radio-offline { position: absolute; inset: -2em 0 0; z-index: 3; display: grid; place-content: center; justify-items: center; gap: .6em; padding: 1.5em; background: rgba(12, 19, 15, .97); color: #ffb4a6; font-size: 1.1em; font-weight: 700; line-height: 1.25; text-align: center; opacity: 0; visibility: hidden; transition: opacity .4s, visibility .4s; }
.radio-offline .ico { width: 2em; height: 2em; color: #ffb4a6; }
.ghost { position: absolute; z-index: 7; width: 3em; height: 3em; margin: -1.5em 0 0 -1.5em; border-radius: 50%; background: rgba(255, 255, 255, .5); box-shadow: 0 0 0 2px rgba(255, 255, 255, .85), 0 4px 18px rgba(0, 0, 0, .3); pointer-events: none; animation: ghost 1s var(--ease) forwards; }

/* The family's phone: the helper web app. */
.fam { position: relative; flex: 1; display: flex; flex-direction: column; gap: .5em; min-height: 0; padding: .2em .7em .7em; overflow: hidden; background: #f5f6f7; font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif; line-height: 1.3; }
.fam small { display: block; color: #5f6368; font-size: .68em; font-weight: 500; }
.fam-bar { display: flex; align-items: center; gap: .4em; padding: .2em 0 .1em; color: var(--green); font-size: .72em; font-weight: 700; }
.fam-bar img { width: 1.35em; height: 1.35em; border-radius: .3em; }
.fam-head { display: flex; align-items: center; justify-content: space-between; gap: .4em; }
.fam-head > b { font-size: 1.08em; line-height: 1.15; letter-spacing: -.02em; }
.fam-online { flex: none; display: inline-flex; align-items: center; gap: .35em; padding: .25em .6em; border-radius: 99px; background: #e8f5e9; color: var(--green); font-size: .64em; font-weight: 700; transition: background-color .3s, color .3s; }
.fam-online i { width: .55em; height: .55em; border-radius: 50%; background: currentColor; animation: blink 1.6s ease-in-out infinite; }
.fam-is-off { display: none; }
.fam-card { padding: .6em .7em; border-radius: .85em; background: #fff; box-shadow: 0 0 0 1px #e6e8eb, 0 1px 2px rgba(0, 0, 0, .05); }
.fam-card b { display: flex; align-items: center; gap: .25em; font-size: .92em; }
.fam-card .ico { width: 1em; height: 1em; color: #e0a800; }
.fam-now { display: flex; align-items: center; gap: .65em; transition: box-shadow .4s; }
.fam-now.is-flash { box-shadow: 0 0 0 2px var(--green), 0 0 0 5px rgba(27, 127, 59, .15); }
.fam-now-text { min-width: 0; }
.fam-now-text b { display: block; font-size: 1.05em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.eq { flex: none; display: flex; align-items: flex-end; gap: .14em; width: 1.9em; height: 1.9em; padding: .4em; border-radius: .6em; background: var(--green); }
.eq i { flex: 1; height: 100%; border-radius: .1em; background: #fff; transform-origin: bottom; animation: eq .9s ease-in-out infinite alternate; }
.eq i:nth-child(2) { animation-delay: -.3s; } .eq i:nth-child(3) { animation-delay: -.55s; } .eq i:nth-child(4) { animation-delay: -.15s; }
.is-stopped .eq { background: #9aa39d; }
.is-stopped .eq i { animation: none; transform: scaleY(.25); }
.fam-panel { display: none; flex-direction: column; gap: .5em; }
.fam-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .45em; }
.fam-grid b { font-size: .82em; white-space: nowrap; }
.fam-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: .3em; }
.fam-slots span { overflow: hidden; padding: .55em .2em; border-radius: .55em; font-size: .64em; font-weight: 700; text-align: center; white-space: nowrap; text-overflow: ellipsis; }
.g { background: #1b7f3b; color: #fff; } .y { background: #ffd60a; color: var(--app-ink); } .r { background: #c62828; color: #fff; }
.fam-fix { display: flex; align-items: center; justify-content: center; gap: .4em; padding: .7em; border-radius: .8em; background: var(--green); color: #fff; font-size: .85em; font-weight: 700; transition: transform .3s var(--spring), box-shadow .3s; }
.fam-fix .ico { width: 1.1em; height: 1.1em; }
.fam-toast { position: absolute; left: .7em; right: .7em; bottom: .7em; z-index: 4; display: flex; align-items: center; gap: .45em; padding: .65em .75em; border-radius: .8em; background: var(--app-ink); color: #fff; font-size: .72em; font-weight: 600; line-height: 1.25; opacity: 0; transform: translateY(130%); transition: opacity .4s, transform .6s var(--spring); }
.fam-toast .ico { width: 1.2em; height: 1.2em; color: var(--green-light); }
.fam-push { position: absolute; left: .45em; right: .45em; top: .45em; z-index: 5; display: flex; align-items: center; gap: .55em; padding: .6em .65em; border-radius: 1em; background: rgba(255, 255, 255, .94); box-shadow: 0 .6em 1.8em -0.4em rgba(0, 0, 0, .35), 0 0 0 1px rgba(0, 0, 0, .06); font-size: .66em; line-height: 1.3; opacity: 0; transform: translateY(-130%); transition: opacity .35s, transform .6s var(--spring); backdrop-filter: blur(8px); }
.fam-push img { width: 2.3em; height: 2.3em; border-radius: .55em; }
.fam-push b { display: block; font-size: .9em; }
.fam-label { margin-top: .2em; }
.fam-row { display: flex; align-items: center; gap: .55em; padding: .6em .7em; border-radius: .8em; background: #fff; box-shadow: 0 0 0 1px #e6e8eb; font-size: .9em; font-weight: 700; }
.fam-row > i { width: 1.1em; height: 1.1em; border-radius: .35em; }
.fam-row.g, .fam-row.y, .fam-row.r { background: #fff; color: var(--app-ink); }
.fam-row.g > i { background: #1b7f3b; } .fam-row.y > i { background: #ffd60a; } .fam-row.r > i { background: #c62828; }
.fam-caret { width: 2px; height: 1.1em; margin-left: -.45em; background: var(--green); opacity: 0; }
.fam-voice { display: flex; align-items: center; gap: .55em; margin-top: .3em; }
.fam-mic { display: grid; place-items: center; flex: none; width: 2.2em; height: 2.2em; border-radius: 50%; background: var(--red); color: #fff; }
.fam-mic .ico { width: 1.1em; height: 1.1em; color: #fff; }
.fam-wave { flex: 1; display: flex; align-items: center; gap: .12em; height: 2em; }
.fam-wave i { flex: 1; height: var(--h, 40%); border-radius: 2em; background: #c9ced3; transform-origin: center; }
.fam-voice-state { display: grid; flex: none; font-size: .64em; font-weight: 700; }
.fam-voice-state > span { grid-area: 1 / 1; display: flex; align-items: center; gap: .2em; transition: opacity .3s; }
.fam-rec { color: var(--red); opacity: 0; }
.fam-sent { color: var(--green); opacity: 0; }
.fam-sent .ico, .fam-heard .ico { width: 1.2em; height: 1.2em; }
.fam-heard { color: var(--green); }
.fam-voice-heard { margin-top: 0; }
.fam-voice-heard .fam-mic { background: #5f6368; }
.fam-voice-heard .fam-wave i { background: var(--green); opacity: .55; }
/* The keyboard: up when the name is tapped, down on Save. It only ever slides then: when the scene starts over,
   everything is back in place at once. */
.fam-keys { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; display: grid; gap: .32em; padding: .55em .3em 1.1em; background: #d3d7dc; transform: translateY(105%); }
.fam-keys span { display: flex; justify-content: center; gap: .22em; }
.fam-keys i { width: 1.2em; height: 1.7em; border-radius: .3em; background: #fff; box-shadow: 0 .08em 0 rgba(0, 0, 0, .28); }
.fam-keys i.is-down { background: #9aa1a8; box-shadow: none; }
.fam-keys .fam-back { width: 1.9em; margin-left: .2em; background: #b5bbc2; }
.fam-keys .fam-space { width: 7.5em; }
.s-focus .fam-keys { transform: none; transition: transform .45s var(--ease); }
.s-saved .fam-keys { transition: transform .45s var(--ease); }

/* In the hero, the family's phone shows the status panel. */
.hero .fam-panel-status { display: flex; }
.hero .fam-toast-heard { animation: toast 10s 5s var(--ease) infinite; }

/* Ticker */
.ticker { overflow: hidden; padding: 22px 0; border-block: 1px solid var(--on-dark-line); background: var(--night); color: var(--on-dark); }
.ticker-track { display: flex; width: max-content; animation: marquee 48s linear infinite; }
.ticker ul { display: flex; gap: 64px; padding-right: 64px; }
.ticker li { display: flex; align-items: center; gap: 14px; font-size: clamp(18px, 1.9vw, 25px); font-weight: 500; letter-spacing: -.02em; white-space: nowrap; }
.ticker .ico { color: var(--green-light); }
.ticker:hover .ticker-track { animation-play-state: paused; }

/* Scroll stories: a sticky picture, steps that scroll past it. */
.scrolly { position: relative; display: grid; gap: 64px; }
.scrolly-stage { position: sticky; top: calc(var(--nav-h) + 10px); height: calc(100svh - var(--nav-h) - 30px); }
.scrolly-step { transition: opacity .6s var(--ease); }
.js .scrolly [data-scrolly-step] { opacity: .22; transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .scrolly [data-scrolly-step].is-active { opacity: 1; }
.story-bar { display: none; }

/* Sound familiar? The call. */
.pain { padding: 150px 0 60px; }
.pain .section-head { max-width: 820px; }
.pain-scrolly { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); }
.pain-scrolly .scrolly-stage { display: grid; place-items: center; }
.phone-call { --w: clamp(230px, 20vw, 290px); }
.phone-call .phone-screen { background: linear-gradient(180deg, #2b3a31 0%, #111814 70%); color: #fff; }
.call { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; transition: opacity .6s var(--ease), transform .8s var(--ease); }
.call .phone-status { align-self: stretch; }
.call-avatar { position: relative; display: grid; place-items: center; width: 4.6em; height: 4.6em; margin-top: 3.2em; border-radius: 50%; background: linear-gradient(145deg, #d9a567, #a8743e); font-size: 1.1em; font-weight: 700; }
.call-avatar span { font-size: 2em; }
.call-avatar::before, .call-avatar::after { content: ''; position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .45); animation: ring 2.6s var(--ease) infinite; }
.call-avatar::after { animation-delay: 1.3s; }
.call-name { margin-top: 1.1em; padding-inline: 1em; font-size: 1.15em; font-weight: 600; text-align: center; }
.call-timer { margin-top: .3em; font: 500 .8em var(--mono); opacity: .7; }
.call-wave { display: flex; align-items: center; gap: .16em; height: 3.4em; margin-top: auto; padding-inline: 1.4em; align-self: stretch; }
.call-wave i { flex: 1; height: 20%; border-radius: 1em; background: rgba(255, 255, 255, .8); animation: talk 1.1s ease-in-out infinite alternate; animation-delay: calc(var(--i) * -97ms); }
.call-actions { display: flex; gap: 1.2em; margin-top: 1.4em; }
.call-actions i { display: grid; place-items: center; width: 2.9em; height: 2.9em; border-radius: 50%; background: rgba(255, 255, 255, .13); }
.call-actions .ico { width: 1.25em; height: 1.25em; }
.call-hang { display: grid; place-items: center; width: 3.4em; height: 3.4em; margin: 1.3em 0 2em; border-radius: 50%; background: #e5382d; box-shadow: 0 0 30px rgba(229, 56, 45, .5); }
.call-hang .ico { width: 1.7em; height: 1.7em; }
.call-radio { position: absolute; inset: 0; display: flex; flex-direction: column; background: var(--night); color: var(--on-dark); opacity: 0; transform: translateY(8%) scale(.96); transition: opacity .6s var(--ease), transform .8s var(--ease); }
.pain-scrolly [data-scene='3'] .call { opacity: 0; transform: scale(.92); }
.pain-scrolly [data-scene='3'] .call-radio { opacity: 1; transform: none; }
.pain-scrolly [data-scene='3'] .phone-call { box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16), 0 0 0 3px rgba(134, 224, 164, .4), 0 0 90px rgba(134, 224, 164, .35), 0 50px 100px -30px rgba(0, 0, 0, .75); }
.pain-steps { padding-bottom: 4vh; }
.pain-step { display: flex; flex-direction: column; justify-content: center; min-height: 72svh; }
.pain-quote { font-size: clamp(32px, 3.9vw, 60px); font-weight: 650; line-height: 1.02; letter-spacing: -.045em; text-wrap: balance; }
.pain-step p { max-width: 30em; margin-top: 24px; font-size: 19px; color: var(--on-dark-soft); }
.pain-answer p { margin: 0; font-size: clamp(34px, 4.2vw, 64px); font-weight: 650; line-height: 1.02; letter-spacing: -.045em; color: var(--green-light); }

/* The photograph opens up. */
.interlude { position: relative; height: 200svh; }
/* Full height even when a phone's address bar slides away; the caption stays clear of the browser's bars. */
.interlude-sticky { position: sticky; top: 0; height: 100vh; height: 100lvh; overflow: hidden; }
.interlude-frame { --p: 1; position: absolute; inset: 0; clip-path: inset(calc((1 - var(--p)) * 20%) calc((1 - var(--p)) * 28%) round calc((1 - var(--p)) * 44px)); }
.js .interlude-frame { --p: 0; }
.interlude-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 40%; transform: scale(calc(1.28 - var(--p) * .28)); }
.interlude-frame::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12, 19, 15, .15) 30%, rgba(12, 19, 15, .8) 100%); }
.interlude-caption span { display: block; }
.interlude-caption { position: absolute; left: 50%; bottom: 14svh; bottom: calc(14svh + 100lvh - 100svh); z-index: 2; width: min(92vw, 1080px); color: #fff; font-size: clamp(36px, 5.6vw, 88px); font-weight: 650; line-height: .98; letter-spacing: -.05em; text-align: center; text-wrap: balance; opacity: clamp(0, calc(var(--p) * 2.2 - 1.2), 1); transform: translate(-50%, calc((1 - var(--p)) * 60px)); }

/* One radio. Two screens. */
.sides { padding: 150px 0 90px; }
.manifesto { max-width: 21em; margin: 0 auto 110px; font-size: clamp(28px, 3.5vw, 52px); font-weight: 600; line-height: 1.14; letter-spacing: -.035em; text-align: center; text-wrap: balance; }
.js .manifesto .mw { opacity: .14; transition: opacity .35s; }
.js .manifesto .mw.on { opacity: 1; }
.sides-scrolly { grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); }
.sides-step { display: flex; flex-direction: column; justify-content: center; min-height: 80svh; }
.sides-step h3 { font-size: clamp(28px, 2.9vw, 44px); line-height: 1.05; letter-spacing: -.04em; }
.sides-step > p:not(.who) { margin-top: 18px; font-size: 19px; color: var(--soft); }
.who { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; font: 600 13px/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.who span { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--ink); color: var(--cream); letter-spacing: 0; }
.who-them { color: var(--green); }
.who-you { color: #b36b00; }
.checks { display: grid; gap: 14px; margin-top: 28px; }
.checks li { display: flex; gap: 12px; font-size: 18px; color: var(--soft); }
.checks .ico { margin-top: 3px; color: var(--green); }
.sides-stage { display: grid; place-items: center; }
.sides-stage .device-them { --w: clamp(210px, 17.5vw, 270px); left: 6%; top: 50%; translate: 0 -50%; z-index: 2; transition: opacity .6s var(--ease), filter .6s, scale .6s var(--ease); }
.sides-stage .device-you { --w: clamp(190px, 15.5vw, 240px); right: 4%; top: 50%; translate: 0 -46%; z-index: 3; transition: opacity .6s var(--ease), filter .6s, scale .6s var(--ease); }
.sides-stage .device-them .phone { rotate: -3deg; }
.sides-stage .device-you .phone { rotate: 3deg; }
.sides-stage .link { color: var(--ink); }
.sides-stage .phone { box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16), inset 0 0 0 calc(var(--w) * .011) #1b1e1c, 0 60px 90px -40px rgba(21, 28, 23, .55), 0 24px 40px -24px rgba(21, 28, 23, .4); }
.sides-stage .device.is-pinged .phone { box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16), 0 0 0 3px rgba(27, 127, 59, .45), 0 0 60px rgba(27, 127, 59, .25), 0 60px 90px -40px rgba(21, 28, 23, .55); }
.sides-stage[data-scene='0'] .device-you { opacity: .35; filter: saturate(.3) blur(1px); scale: .94; }
.sides-stage:not([data-scene='0']) .device-them { scale: .97; }
.stage-dots { position: absolute; left: 50%; bottom: 0; display: flex; gap: 8px; transform: translateX(-50%); }
.stage-dots li { width: 8px; height: 8px; border-radius: 99px; background: var(--line); transition: width .5s var(--ease), background-color .5s; }
.sides-stage[data-scene='0'] .stage-dots li:nth-child(1), .sides-stage[data-scene='1'] .stage-dots li:nth-child(2), .sides-stage[data-scene='2'] .stage-dots li:nth-child(3),
.sides-stage[data-scene='3'] .stage-dots li:nth-child(4), .sides-stage[data-scene='4'] .stage-dots li:nth-child(5) { width: 28px; background: var(--ink); }
.sides-note { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 40px; color: var(--soft); font-weight: 500; }

/* The scenes on the family's phone. */
.sides-stage[data-scene='0'] .fam-panel-status, .sides-stage[data-scene='2'] .fam-panel-status, .sides-stage[data-scene='3'] .fam-panel-status { display: flex; animation: panel .5s var(--ease); }
.sides-stage[data-scene='1'] .fam-panel-buttons, .sides-stage[data-scene='4'] .fam-panel-fix { display: flex; animation: panel .5s var(--ease); }
.sides-stage[data-scene='1'] .fam-now { display: none; }
.s-focus .fam-row.y { box-shadow: 0 0 0 2px var(--green); }
.s-focus .fam-caret { opacity: 1; animation: blink 1s steps(1) infinite; }
.s-saved .fam-toast-saved, .s-fixed .fam-toast-fixed { opacity: 1; transform: none; }
.s-flip .rb-yellow .rb-label > * { transition: opacity .4s, transform .5s var(--spring); }
.s-flip .rb-yellow .rb-name { opacity: 0; transform: translateY(-40%) rotateX(70deg); }
.s-flip .rb-yellow .rb-alt { opacity: 1; transform: none; }
/* Starting over: both names fade out, and come back as they were. */
.sides-stage .rb-yellow .rb-label, .sides-stage [data-type-field] { transition: opacity .3s; }
.s-rewind .rb-yellow .rb-label, .s-rewind [data-type-field] { opacity: 0; }
.s-offline .radio-offline { opacity: 1; visibility: visible; }
.s-offline .fam-online { background: #fdecea; color: var(--red); }
.s-offline .fam-is-on { display: none; }
.s-offline .fam-is-off { display: inline; }
.s-offline .fam-now { opacity: .45; }
.s-push-off .fam-push-off, .s-push-back .fam-push-back { opacity: 1; transform: none; }
.s-fixpress .fam-fix-press { transform: scale(.95); box-shadow: 0 0 0 .4em rgba(27, 127, 59, .2); }
.s-quiet .device-them .radio-bars i:nth-child(n + 2) { background: rgba(241, 236, 223, .16); }
.s-rec .fam-rec, .s-sent .fam-sent { opacity: 1; }
.s-rec .fam-wave i { background: var(--red); animation: talk .6s ease-in-out infinite alternate; animation-delay: calc(var(--i) * -71ms); }
.s-sent .fam-wave i { background: var(--green); }
.s-msg .rb-red .rb-message { max-height: 1.4em; opacity: 1; animation: blink 1.2s ease-in-out infinite; }
.s-msg .rb-red { box-shadow: 0 .26em 0 var(--edge), 0 0 1.4em .15em var(--halo); }

/* How it works */
.how { padding: 90px 0 110px; }
.how-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.how-step { padding: 14px 14px 32px; border-radius: 30px; background: var(--paper); box-shadow: 0 0 0 1px var(--line); }
.how-step h3, .how-step p { padding-inline: 16px; }
.how-step p { margin-top: 12px; color: var(--soft); }
.how-n { display: block; margin: 26px 16px 10px; font: 600 13px/1 var(--mono); letter-spacing: .12em; color: var(--green); }
.how-art { position: relative; display: grid; place-items: center; height: 250px; overflow: hidden; border-radius: 20px; background: radial-gradient(rgba(21, 28, 23, .1) 1px, transparent 1.4px) 0 0 / 18px 18px, var(--cream-2); }
.how-note { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 36px; color: var(--soft); text-align: center; }
.how-note .ico { color: var(--green); }
.mini-phone { position: relative; z-index: 1; display: grid; gap: 6px; width: 92px; height: 170px; padding: 20px 10px 12px; border-radius: 20px; background: #fff; box-shadow: 0 0 0 5px #151816, 0 30px 50px -20px rgba(0, 0, 0, .5); transform: translateY(40px); }
.mini-phone i { border-radius: 8px; opacity: .25; transition: opacity .4s; }
.mini-cable { position: absolute; left: 50%; bottom: -8px; width: 120px; margin-left: -60px; fill: none; stroke: #151816; stroke-width: 5; stroke-linecap: round; }
.mini-bolt { position: absolute; top: 34px; right: calc(50% - 80px); display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--yellow); color: var(--ink); box-shadow: 0 10px 20px -8px rgba(0, 0, 0, .35); opacity: 0; scale: .4; }
.mini-bolt .ico { fill: currentColor; stroke: none; width: 20px; height: 20px; }
.qr { position: relative; width: 168px; padding: 14px; border-radius: 22px; background: #fff; box-shadow: 0 30px 50px -24px rgba(0, 0, 0, .45); }
.qr svg path { fill: var(--app-ink); }
.qr-scan { position: absolute; left: 8px; right: 8px; top: 12px; height: 3px; border-radius: 3px; background: var(--green); box-shadow: 0 0 16px 3px rgba(27, 127, 59, .55); opacity: 0; }
.qr-ok { position: absolute; right: -14px; bottom: -14px; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--green); color: #fff; box-shadow: 0 10px 22px -8px rgba(27, 127, 59, .7); opacity: 0; scale: .3; }
.qr-ok .ico { width: 24px; height: 24px; stroke-width: 2.6; }
.mini-slots { display: grid; gap: 12px; width: min(78%, 250px); }
.mini-slots span { overflow: hidden; padding: 16px 18px; border-radius: 16px; background: #fff; color: #a8a293; box-shadow: 0 0 0 1px var(--line); font-weight: 700; font-size: 18px; white-space: nowrap; text-overflow: ellipsis; transition: background-color .4s, color .4s; }

/* Features */
.features { padding: 40px 0 150px; }
.bento { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 20px; }
.card { position: relative; grid-column: span 4; display: flex; flex-direction: column; overflow: hidden; border-radius: 30px; background: var(--paper); box-shadow: 0 0 0 1px var(--line); transition: transform .6s var(--ease), box-shadow .6s var(--ease); }
.card:hover { transform: translateY(-4px); box-shadow: 0 0 0 1px var(--line), 0 30px 60px -30px rgba(21, 28, 23, .35); }
.card::before { content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: 0; background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(27, 127, 59, .09), transparent 65%); transition: opacity .4s; }
.card:hover::before { opacity: 1; }
.card-status { grid-column: span 7; } .card-alert { grid-column: span 5; }
.card-family { grid-column: span 12; flex-direction: row-reverse; align-items: stretch; }
.card-family .card-art { flex: 1.3; height: auto; min-height: 220px; }
.card-family .card-copy { flex: 1; align-self: center; }
.card-art { position: relative; display: grid; place-items: center; height: 230px; overflow: hidden; background: radial-gradient(rgba(21, 28, 23, .09) 1px, transparent 1.4px) 0 0 / 18px 18px, var(--cream-2); }
.card-copy { padding: 26px 30px 32px; }
.card-copy p { margin-top: 10px; color: var(--soft); font-size: 16px; }
.card-icon { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 18px; border-radius: 13px; background: var(--ink); color: var(--cream); }
.art-status { position: relative; display: grid; grid-template-columns: auto auto; align-items: center; gap: 18px 34px; }
.pill-online { display: inline-flex; align-items: center; gap: 8px; justify-self: start; padding: 8px 14px; border-radius: 99px; background: #e8f5e9; color: var(--green); font-weight: 700; font-size: 15px; box-shadow: 0 10px 20px -12px rgba(27, 127, 59, .5); }
.pill-online i { width: 9px; height: 9px; border-radius: 50%; background: currentColor; animation: blink 1.6s ease-in-out infinite; }
.gauge { grid-row: span 2; width: 130px; height: 130px; rotate: -90deg; }
.gauge circle { fill: none; stroke: rgba(21, 28, 23, .1); stroke-width: 11; }
.gauge .gauge-fill { stroke: var(--green); stroke-linecap: round; stroke-dasharray: 100; stroke-dashoffset: 100; transition: stroke-dashoffset 1.8s var(--ease) .3s; }
.is-in .gauge-fill { stroke-dashoffset: 18; }
.gauge-value { position: absolute; right: 0; top: 50%; display: flex; align-items: center; justify-content: center; width: 130px; margin-top: -14px; font-size: 24px; letter-spacing: -.03em; }
.gauge-value .ico { width: 18px; height: 18px; fill: #e0a800; stroke: none; }
.art-now { display: inline-flex; align-items: center; gap: 12px; padding: 10px 16px 10px 10px; border-radius: 16px; background: #fff; box-shadow: 0 0 0 1px var(--line), 0 14px 30px -18px rgba(0, 0, 0, .3); font: 700 17px var(--device-font); }
.art-now .eq { font-size: 15px; }
.art-alerts { position: relative; width: min(86%, 360px); height: 150px; }
.note { position: absolute; left: 0; right: 0; display: flex; align-items: center; gap: 12px; padding: 13px 15px; border-radius: 18px; background: rgba(255, 255, 255, .96); box-shadow: 0 18px 40px -18px rgba(0, 0, 0, .35), 0 0 0 1px rgba(0, 0, 0, .05); font-size: 14px; line-height: 1.3; }
.note img { border-radius: 7px; }
.note b { display: block; font-size: 13px; }
.note-bad { top: 12px; }
.note-bad span::after { content: ''; display: inline-block; width: 8px; height: 8px; margin-left: 8px; border-radius: 50%; background: var(--red); }
.note-good { top: 74px; }
.note-good span::after { content: ''; display: inline-block; width: 8px; height: 8px; margin-left: 8px; border-radius: 50%; background: var(--green); }
.art-fix { display: flex; align-items: center; gap: 28px; }
.fix-button { position: relative; display: inline-flex; align-items: center; gap: 10px; padding: 16px 24px; border-radius: 18px; background: var(--green); color: #fff; font-weight: 700; font-size: 18px; box-shadow: 0 16px 30px -14px rgba(27, 127, 59, .8); }
.fix-button::before, .fix-button::after { content: ''; position: absolute; inset: 0; border-radius: inherit; border: 2px solid var(--green); opacity: 0; }
.art-fix .radio-bars { width: 110px; height: 72px; gap: 4px; }
.art-fix .radio-bars i { border-radius: 3px; }
.art-voice { display: flex; flex-direction: column; align-items: center; gap: 22px; width: 78%; }
.art-voice .fam-wave { width: 100%; height: 64px; gap: 5px; }
.art-voice .fam-wave i { background: var(--red); }
.heard { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; border-radius: 99px; background: #e8f5e9; color: var(--green); font-weight: 700; font-size: 15px; }
.art-heal { position: relative; width: 88%; }
.art-heal svg { width: 100%; overflow: visible; }
.stream { fill: none; stroke-width: 4; stroke-linecap: round; }
.stream-a { stroke: rgba(21, 28, 23, .2); stroke-dasharray: 6 8; }
.stream-b { stroke: var(--green); stroke-dasharray: 400; stroke-dashoffset: 400; }
.break path { fill: none; stroke: var(--red); stroke-width: 4; stroke-linecap: round; }
.packet { fill: var(--green); filter: drop-shadow(0 0 6px rgba(27, 127, 59, .6)); offset-path: path('M20 60C90 60 110 98 160 98s70-38 120-38'); offset-rotate: 0deg; }
.heal-from, .heal-to { position: absolute; top: 50%; translate: 0 -50%; display: grid; place-items: center; }
.heal-from { left: -8px; padding: 7px 12px; border-radius: 12px; background: var(--green); color: #fff; font-weight: 700; font-size: 14px; }
.heal-to { right: -10px; width: 46px; height: 46px; border-radius: 14px; background: var(--ink); color: var(--cream); }
.art-family { display: flex; align-items: center; padding-left: 18px; }
.avatar { display: grid; place-items: center; width: 84px; height: 84px; margin-left: -18px; border-radius: 50%; border: 4px solid var(--cream-2); font-size: 30px; font-weight: 700; color: #fff; box-shadow: 0 14px 30px -14px rgba(0, 0, 0, .5); }
.avatar:nth-child(1) { background: linear-gradient(145deg, #2c9a52, #1b7f3b); }
.avatar:nth-child(2) { background: linear-gradient(145deg, #ffe156, #f5c400); color: var(--ink); }
.avatar:nth-child(3) { background: linear-gradient(145deg, #e0473e, #b71f1f); }
.avatar:nth-child(4) { background: linear-gradient(145deg, #4b5a52, #26302a); }
.avatar-add { background: var(--paper); color: var(--ink); box-shadow: 0 0 0 1.5px var(--line) inset; border-style: dashed; border-color: rgba(21, 28, 23, .25); }

/* Radio from home: the tuner. */
.home { padding: 150px 0 110px; background: radial-gradient(900px 600px at 78% 45%, rgba(255, 181, 71, .1), transparent 70%), var(--night); }
.home-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 72px; align-items: center; }
.home-lead { margin-top: 26px; font-size: 20px; color: var(--on-dark-soft); }
.home-stat { margin-top: 44px; }
.home-stat b { display: block; font-size: clamp(64px, 7.5vw, 118px); font-weight: 650; line-height: .9; letter-spacing: -.06em; color: var(--amber); text-shadow: 0 0 50px rgba(255, 181, 71, .35); font-variant-numeric: tabular-nums; }
.home-stat span { display: block; max-width: 22em; margin-top: 14px; color: var(--on-dark-soft); }
.home-note { display: flex; align-items: flex-start; gap: 12px; max-width: 760px; margin-top: 70px; font-size: 15px; color: var(--on-dark-soft); }
.home-note .ico { margin-top: 2px; color: var(--amber); }
.tuner { padding: 16px; border-radius: 34px; background: linear-gradient(180deg, #1c241f, #111713); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .09), 0 0 0 1px rgba(255, 255, 255, .05), 0 50px 90px -40px rgba(0, 0, 0, .8); }
.tuner-screen { position: relative; display: flex; flex-direction: column; justify-content: space-between; gap: 18px; min-height: 300px; padding: 26px 30px 28px; overflow: hidden; border-radius: 22px; background: radial-gradient(130% 100% at 50% 0%, #2d2412, #120e07 72%); color: var(--amber); box-shadow: inset 0 0 70px rgba(0, 0, 0, .65), inset 0 0 0 1px rgba(255, 181, 71, .16); }
.tuner-screen::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: repeating-linear-gradient(0deg, rgba(0, 0, 0, .22) 0 1px, transparent 1px 3px); }
.tuner-noise { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; transition: opacity .2s; mix-blend-mode: screen; }
.tuner-freq { position: relative; display: flex; align-items: baseline; gap: 10px; font: 500 14px var(--mono); letter-spacing: .12em; }
.tuner-freq b { font-size: 34px; font-weight: 500; letter-spacing: .02em; text-shadow: 0 0 16px rgba(255, 181, 71, .6); font-variant-numeric: tabular-nums; }
.tuner-greeting { position: relative; font-size: clamp(42px, 5.2vw, 82px); font-weight: 650; line-height: 1.02; letter-spacing: -.035em; color: #ffd596; text-shadow: 0 0 28px rgba(255, 181, 71, .55), 0 0 2px rgba(255, 226, 170, .8); transition: filter .25s, opacity .25s, transform .4s var(--ease); }
.tuner-name { position: relative; font: 500 15px var(--mono); letter-spacing: .12em; opacity: .8; }
.tuner-screen.is-tuning .tuner-noise { opacity: .55; }
.tuner-screen.is-tuning .tuner-greeting { filter: blur(6px); opacity: .35; transform: translateX(-6px) skewX(-6deg); }
.tuner-dial { position: relative; margin-top: 14px; overflow: hidden; border-radius: 18px; background: #0a0e0b; box-shadow: inset 0 3px 10px rgba(0, 0, 0, .6), inset 0 0 0 1px rgba(255, 255, 255, .05); }
.tuner-dial::before, .tuner-dial::after { content: ''; position: absolute; top: 0; bottom: 0; z-index: 2; width: 22%; pointer-events: none; }
.tuner-dial::before { left: 0; background: linear-gradient(90deg, #0a0e0b, transparent); }
.tuner-dial::after { right: 0; background: linear-gradient(-90deg, #0a0e0b, transparent); }
.tuner-track { display: flex; overflow-x: auto; padding-inline: calc(50% - 60px); scroll-snap-type: x mandatory; scrollbar-width: none; overscroll-behavior-x: contain; cursor: grab; }
.tuner-track::-webkit-scrollbar { display: none; }
.tuner-track.is-dragging { scroll-snap-type: none; cursor: grabbing; }
.tuner-track li { flex: 0 0 120px; scroll-snap-align: center; }
.tuner-track button { position: relative; display: flex; flex-direction: column; align-items: center; gap: 6px; width: 100%; padding: 38px 6px 16px; border: 0; background: none; color: var(--on-dark-soft); font-size: 15px; font-weight: 500; cursor: pointer; white-space: nowrap; transition: color .3s; }
.tuner-track button::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 22px; background: repeating-linear-gradient(90deg, rgba(241, 236, 223, .28) 0 1px, transparent 1px 12px) 0 0 / 100% 12px no-repeat; }
.tuner-track button::after { content: ''; position: absolute; top: 0; left: 50%; width: 2px; height: 26px; margin-left: -1px; background: rgba(241, 236, 223, .5); }
.tuner-track button > span:last-child { max-width: 100%; overflow: hidden; text-overflow: ellipsis; }
.tuner-track button.is-active { color: var(--amber); }
.tuner-mhz { font: 500 12px var(--mono); opacity: .7; }
.tuner-needle { position: absolute; left: 50%; top: 0; bottom: 0; z-index: 3; width: 2px; margin-left: -1px; background: #ff5b47; box-shadow: 0 0 14px 2px rgba(255, 91, 71, .7); pointer-events: none; }
.tuner-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 6px 2px; }
.tuner-hint { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--on-dark-soft); }

/* Compare */
.compare { padding: 150px 0 60px; }
.compare-wrap { overflow-x: auto; border-radius: 30px; background: var(--paper); box-shadow: 0 0 0 1px var(--line); }
.compare-table { width: 100%; min-width: 640px; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 20px 22px; border-bottom: 1px solid var(--line); text-align: center; }
.compare-table tr:last-child > * { border-bottom: 0; }
.compare-table thead th { padding-block: 26px; font-size: 15px; font-weight: 700; color: var(--soft); vertical-align: bottom; }
.compare-table thead th.us { color: var(--ink); font-size: 16px; }
.compare-table thead th.us img { margin: 0 auto 8px; border-radius: 8px; }
.compare-table th[scope='row'] { font-weight: 500; text-align: left; }
.compare-table .us { background: rgba(27, 127, 59, .07); }
.compare-table .ico { margin: 0 auto; width: 24px; height: 24px; }
.compare-table .yes { color: var(--green); stroke-width: 2.6; }
.compare-table .no { color: #bdb6a6; }
.js .compare-table .yes { stroke-dasharray: 22; stroke-dashoffset: 22; transition: stroke-dashoffset .6s var(--ease) calc(var(--r) * 90ms + .2s); }
.js .compare-wrap.is-in .yes { stroke-dashoffset: 0; }
.compare-note { margin-top: 18px; font-size: 14px; color: var(--soft); text-align: center; }

/* Pricing */
.pricing { padding: 110px 0 130px; }
.plans { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; max-width: 1120px; margin: 0 auto; align-items: stretch; }
.plan { position: relative; display: flex; flex-direction: column; padding: 34px 32px 32px; border-radius: 30px; background: var(--paper); box-shadow: 0 0 0 1px var(--line); }
.plan h3 { font-size: 18px; font-weight: 600; letter-spacing: -.01em; color: var(--soft); }
.plan-price { margin: 20px 0 12px; font-size: clamp(52px, 5vw, 68px); font-weight: 650; line-height: 1; letter-spacing: -.055em; }
.plan-price span { font-size: 17px; font-weight: 500; letter-spacing: -.01em; color: var(--soft); }
.plan-note { flex: 1; margin-bottom: 30px; color: var(--soft); }
.plan-best { --soft: var(--on-dark-soft); background: var(--night); color: var(--on-dark); box-shadow: 0 50px 90px -40px rgba(12, 19, 15, .8); }
.plan-best::before { content: ''; position: absolute; inset: 0; padding: 1.5px; border-radius: inherit; background: conic-gradient(from var(--angle), transparent 0 55%, #86e0a4 70%, #ffd60a 82%, #ff7b6b 90%, transparent 100%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; animation: spin 5s linear infinite; }
.plan-best .btn { background: var(--cream); color: var(--ink); }
.plan-badge { position: absolute; top: 26px; right: 26px; padding: 6px 13px; border-radius: 99px; background: var(--yellow); color: var(--ink); font-size: 13px; font-weight: 700; }
.includes { max-width: 1120px; margin: 44px auto 0; text-align: center; }
.includes h3 { font-size: 16px; font-weight: 600; letter-spacing: 0; color: var(--soft); }
.includes ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 18px; }
.includes li { display: flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 99px; background: var(--paper); box-shadow: 0 0 0 1px var(--line); font-size: 15px; font-weight: 500; }
.includes .ico { color: var(--green); }
.promise { display: flex; align-items: center; justify-content: center; gap: 12px; max-width: 760px; margin: 36px auto 0; color: var(--soft); text-align: center; }
.promise .ico { color: var(--green); width: 26px; height: 26px; }

/* FAQ */
.faq-section { padding: 60px 0 150px; }
.faq-layout { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 80px; }
.faq-side { position: sticky; top: calc(var(--nav-h) + 40px); align-self: start; }
.faq-side .btn { margin-top: 36px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 26px 0; font-size: 20px; font-weight: 600; letter-spacing: -.015em; line-height: 1.3; list-style: none; cursor: pointer; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { position: relative; flex: none; width: 36px; height: 36px; border-radius: 50%; box-shadow: inset 0 0 0 1.5px var(--line); transition: background-color .3s, box-shadow .3s; }
.faq summary i::before, .faq summary i::after { content: ''; position: absolute; left: 50%; top: 50%; width: 14px; height: 2px; margin: -1px 0 0 -7px; border-radius: 2px; background: currentColor; transition: transform .4s var(--ease); }
.faq summary i::after { transform: rotate(90deg); }
.faq details[open] summary i { background: var(--ink); color: var(--cream); box-shadow: none; }
.faq details[open] summary i::after { transform: rotate(0); }
.faq details.is-closing summary i { background: transparent; color: inherit; box-shadow: inset 0 0 0 1.5px var(--line); }
.faq details.is-closing summary i::after { transform: rotate(90deg); }
.faq summary:hover i { box-shadow: inset 0 0 0 1.5px var(--ink); }
.faq-answer { overflow: hidden; }
.faq-answer p { padding: 0 64px 28px 0; font-size: 17px; color: var(--soft); }

/* The last word */
.final { position: relative; overflow: hidden; padding: 190px 0 170px; text-align: center; }
.final-rings { position: absolute; left: 50%; top: 58%; width: 0; height: 0; }
.final-rings i { position: absolute; left: 0; top: 0; width: 320px; height: 320px; margin: -160px 0 0 -160px; border-radius: 50%; border: 1px solid rgba(134, 224, 164, .35); opacity: 0; animation: ripple 9s linear infinite; }
.final-rings i:nth-child(2) { animation-delay: -2.25s; border-color: rgba(255, 214, 10, .3); }
.final-rings i:nth-child(3) { animation-delay: -4.5s; border-color: rgba(255, 123, 107, .3); }
.final-rings i:nth-child(4) { animation-delay: -6.75s; }
.final-in { position: relative; display: flex; flex-direction: column; align-items: center; }
.final-title { max-width: 11em; font-size: clamp(52px, 8.4vw, 138px); line-height: .9; letter-spacing: -.06em; }
.final-lead { max-width: 32em; margin: 30px 0 44px; font-size: 21px; color: var(--on-dark-soft); }
.final-note { margin-top: 20px; font-size: 15px; color: var(--on-dark-soft); }

/* Footer */
.footer { padding: 90px 0 34px; border-top: 1px solid var(--on-dark-line); }
.footer-in { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 40px; }
.footer-brand p { max-width: 22em; margin-top: 16px; color: var(--on-dark-soft); font-size: 15px; }
.footer-links { display: grid; gap: 10px; align-content: start; font-size: 15px; }
.footer-links a { color: var(--on-dark-soft); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--on-dark); }
.foot-title { margin-bottom: 12px; font: 600 12px/1 var(--mono); letter-spacing: .14em; text-transform: uppercase; color: var(--amber); }
.langs .footer-links { grid-template-columns: 1fr 1fr; column-gap: 20px; }
.wordmark { margin: 90px 0 26px; font-size: clamp(48px, 13.6vw, 200px); font-weight: 700; line-height: .78; letter-spacing: -.07em; text-align: center; white-space: nowrap; background: linear-gradient(180deg, rgba(241, 236, 223, .95) 10%, rgba(241, 236, 223, .06) 95%); -webkit-background-clip: text; background-clip: text; color: transparent; user-select: none; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 30px; padding-top: 26px; border-top: 1px solid var(--on-dark-line); font-size: 13px; color: var(--on-dark-soft); }

/* Entrances (JS only: without it, everything shows as it is) */
.js [data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1.1s var(--ease); transition-delay: calc(var(--d, 0) * 110ms); }
.js [data-reveal].is-in { opacity: 1; transform: none; }
.js [data-rise] { opacity: 0; transform: translateY(24px); }
.js .is-ready [data-rise] { opacity: 1; transform: none; transition: opacity 1s var(--ease), transform 1.2s var(--ease); }
.js .is-ready .lead { transition-delay: .55s; }
.js .is-ready .cta-row { transition-delay: .7s; }
.js .is-ready .hero-points { transition-delay: .85s; }
.w { display: inline-block; overflow: hidden; margin-bottom: -.12em; padding-bottom: .12em; vertical-align: top; }
.wi { display: inline-block; }
.js [data-split] .wi { transform: translateY(108%); transition: transform 1.1s var(--ease); transition-delay: calc(var(--i) * 60ms + var(--split-delay, 0ms)); }
.js [data-split].is-in .wi { transform: none; }
.js .line-accent { clip-path: inset(0 100% 0 0); transition: clip-path 1.4s var(--ease) .45s; }
.js .is-ready .line-accent { clip-path: inset(-10% -5% -20% 0); }
.js .hero-stage .device-them { opacity: 0; transform: translateY(60px) scale(.94); transition: opacity 1.2s var(--ease) .3s, transform 1.4s var(--ease) .3s; }
.js .hero-stage .device-you { opacity: 0; transform: translate(40px, 30px) scale(.9); transition: opacity 1.2s var(--ease) .75s, transform 1.4s var(--ease) .75s; }
.js .is-ready .hero-stage .device-them, .js .is-ready .hero-stage .device-you { opacity: 1; transform: none; }

/* Loops that run only while on screen */
.js [data-loop] * { animation-play-state: paused; }
.js [data-loop].is-live * { animation-play-state: running; }
.js .how-step.is-in .mini-phone { transform: none; transition: transform 1.2s var(--ease) .2s; }
.how-step.is-in .mini-phone i { opacity: 1; }
.how-step.is-in .mini-phone i:nth-child(2) { transition-delay: .9s; } .how-step.is-in .mini-phone i:nth-child(3) { transition-delay: 1.1s; }
.how-step.is-in .mini-phone i:nth-child(1) { transition-delay: .7s; }
.how-step.is-in .mini-bolt { animation: pop .6s var(--spring) 1.3s forwards, glow 2s ease-in-out 2s infinite; }
.how-step.is-in .qr-scan { animation: scan 3.6s var(--ease) infinite; }
.how-step.is-in .qr-ok { animation: ok 3.6s var(--ease) infinite; }
.how-step.is-in .mini-slots span { animation: fill-g 6s var(--ease) infinite; }
.how-step.is-in .mini-slots .y { animation-name: fill-y; animation-delay: .5s; }
.how-step.is-in .mini-slots .r { animation-name: fill-r; animation-delay: 1s; }
.card.is-live .note-bad { animation: note-bad 6s var(--ease) infinite; }
.card.is-live .note-good { animation: note-good 6s var(--ease) infinite; }
.card.is-live .fix-button::before { animation: ripple-sm 2.4s var(--ease) infinite; }
.card.is-live .fix-button::after { animation: ripple-sm 2.4s var(--ease) 1.2s infinite; }
.card.is-live .art-fix .radio-bars i { animation: vol 4.8s var(--ease) infinite; animation-delay: calc(var(--i) * 90ms); }
.card.is-live .art-voice .fam-wave i { animation: talk .7s ease-in-out infinite alternate; animation-delay: calc(var(--i) * -83ms); }
.card.is-live .stream-b { animation: stream 4s var(--ease) infinite; }
.card.is-live .break { animation: break 4s var(--ease) infinite; }
.card.is-live .packet { animation: packet 4s var(--ease) infinite; }
.card.is-live .avatar { animation: hop 4s var(--ease) infinite; animation-delay: calc(var(--i) * 160ms); }
.art-fix .radio-bars i:nth-child(-n + 6) { background: var(--app-ink); }
.js .card:not(.is-live) .note { opacity: 1; }

@keyframes sheen { to { background-position: 100% 0; } }
@keyframes ring { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.9); opacity: 0; } }
@keyframes ripple { 0% { transform: scale(.3); opacity: 0; } 12% { opacity: 1; } 100% { transform: scale(4.6); opacity: 0; } }
@keyframes ripple-sm { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.5, 1.9); opacity: 0; } }
@keyframes bob { 50% { translate: 0 -12px; } }
@keyframes cue { 0% { transform: translateY(0); opacity: 0; } 30% { opacity: 1; } 100% { transform: translateY(14px); opacity: 0; } }
@keyframes blink { 50% { opacity: .35; } }
@keyframes eq { 0% { transform: scaleY(.25); } 100% { transform: scaleY(1); } }
@keyframes talk { 0% { transform: scaleY(.25); } 100% { transform: scaleY(1.9); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes pop { from { opacity: 0; scale: .4; } to { opacity: 1; scale: 1; } }
@keyframes glow { 50% { box-shadow: 0 0 0 10px rgba(255, 214, 10, .25), 0 10px 20px -8px rgba(0, 0, 0, .35); } }
@keyframes panel { from { opacity: 0; transform: translateY(10px); } }
@keyframes ghost { 0% { transform: scale(1.8); opacity: 0; } 35% { transform: scale(1); opacity: 1; } 55% { transform: scale(.8); } 100% { transform: scale(1.3); opacity: 0; } }
@keyframes toast { 0%, 4% { opacity: 0; transform: translateY(130%); } 9%, 38% { opacity: 1; transform: none; } 44%, 100% { opacity: 0; transform: translateY(130%); } }
@keyframes spin { to { --angle: 360deg; } }
@keyframes scan { 0% { top: 12px; opacity: 0; } 8% { opacity: 1; } 55% { top: calc(100% - 15px); opacity: 1; } 62%, 100% { top: calc(100% - 15px); opacity: 0; } }
@keyframes ok { 0%, 58% { opacity: 0; scale: .3; } 66%, 92% { opacity: 1; scale: 1; } 100% { opacity: 0; scale: 1; } }
@keyframes fill-g { 0%, 10% { background: #fff; color: #a8a293; } 18%, 88% { background: #1b7f3b; color: #fff; } 96%, 100% { background: #fff; color: #a8a293; } }
@keyframes fill-y { 0%, 10% { background: #fff; color: #a8a293; } 18%, 80% { background: #ffd60a; color: var(--ink); } 88%, 100% { background: #fff; color: #a8a293; } }
@keyframes fill-r { 0%, 10% { background: #fff; color: #a8a293; } 18%, 72% { background: #c62828; color: #fff; } 80%, 100% { background: #fff; color: #a8a293; } }
@keyframes note-bad { 0% { opacity: 0; transform: translateY(-30px) scale(.96); } 8%, 45% { opacity: 1; transform: none; } 55%, 100% { opacity: .45; transform: translateY(0) scale(.94); } }
@keyframes note-good { 0%, 45% { opacity: 0; transform: translateY(-30px) scale(.96); } 55%, 92% { opacity: 1; transform: none; } 100% { opacity: 0; transform: none; } }
@keyframes vol { 0%, 25% { background: #cfc9bb; } 40%, 90% { background: var(--app-ink); } 100% { background: #cfc9bb; } }
@keyframes stream { 0%, 30% { stroke-dashoffset: 400; } 70%, 100% { stroke-dashoffset: 0; } }
@keyframes break { 0%, 12% { opacity: 0; transform: scale(.4); transform-origin: 160px 22px; } 22%, 90% { opacity: 1; transform: none; transform-origin: 160px 22px; } 100% { opacity: 0; } }
@keyframes packet { 0%, 30% { offset-distance: 0%; opacity: 0; } 35% { opacity: 1; } 75% { offset-distance: 100%; opacity: 1; } 85%, 100% { offset-distance: 100%; opacity: 0; } }
@keyframes hop { 0%, 20%, 100% { transform: none; } 10% { transform: translateY(-12px); } }

/* Large laptops */
@media (min-width: 1180px) {
    .lcd { display: flex; align-items: baseline; gap: 9px; min-width: 250px; margin: 0 auto 0 12px; padding: 7px 14px; border-radius: 10px; background: #0d110e; color: var(--amber); box-shadow: inset 0 0 0 1px rgba(255, 181, 71, .2), inset 0 0 18px rgba(0, 0, 0, .8); font: 500 12px/1.2 var(--mono); letter-spacing: .08em; text-shadow: 0 0 8px rgba(255, 181, 71, .55); white-space: nowrap; }
    .lcd-freq { font-size: 15px; font-variant-numeric: tabular-nums; }
    .lcd-name { overflow: hidden; max-width: 190px; text-overflow: ellipsis; text-transform: uppercase; opacity: .85; }
    .lcd + .nav-links { margin-left: 0; }
}

@media (max-width: 1100px) {
    .nav-links { display: none; }
    .nav-actions { margin-left: auto; }
    .hero-in { grid-template-columns: minmax(0, 1fr); gap: 30px; }
    .hero-copy { max-width: 760px; }
    .hero-stage { height: 640px; min-height: 0; max-width: 720px; width: 100%; margin-inline: auto; }
    .home-grid { grid-template-columns: minmax(0, 1fr); gap: 56px; }
    .footer-in { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Tablets and phones: the stories stack, the picture sticks on top. */
@media (max-width: 900px) {
    :root { --nav-h: 76px; }
    .wrap { padding-inline: 22px; }
    .nav-in { height: 60px; padding-inline: 20px; gap: 12px; }
    .dial { height: 14px; margin-inline: 20px; }
    .dial-scale { display: none; }
    .display { font-size: clamp(36px, 9vw, 58px); }
    .section-head { margin-bottom: 44px; }
    .sheet { margin-top: -30px; border-radius: 30px 30px 0 0; }
    /* Stacked: the picture once, then the steps. Phones in portrait pin it instead (below). */
    .scrolly { grid-template-columns: minmax(0, 1fr) !important; gap: 0; }
    .scrolly-stage { position: relative; top: auto; height: auto; order: -1; }
    .pain-scrolly .scrolly-stage { padding: 8px 0 12px; }
    .sides-stage { height: calc(min(40vw, 220px) * 2.13 + 40px); }
    .js .scrolly [data-scrolly-step] { opacity: 1; }
    .pain-step, .sides-step { min-height: 0; padding: 34px 0 0; }
    .phone-call { --w: min(50vw, 230px); }
    .pain-quote { font-size: clamp(28px, 7.4vw, 44px); }
    .pain-step p { font-size: 17px; margin-top: 14px; }
    .pain-answer p { font-size: clamp(30px, 8vw, 46px); }
    .sides-stage .device-them { --w: min(40vw, 220px); left: 3%; }
    .sides-stage .device-you { --w: min(36vw, 200px); right: 2%; }
    .sides-step h3 { font-size: clamp(26px, 6.6vw, 36px); }
    .manifesto { margin-bottom: 64px; }
    .stage-dots { display: none; }
    .how-steps { grid-template-columns: minmax(0, 1fr); max-width: 560px; margin-inline: auto; }
    .card, .card-status, .card-alert { grid-column: span 12; }
    .card-family { flex-direction: column; }
    .card-family .card-art { min-height: 200px; }
    .plans { grid-template-columns: minmax(0, 1fr); max-width: 480px; }
    .plan-best { order: -1; }
    .faq-layout { grid-template-columns: minmax(0, 1fr); gap: 30px; }
    .faq-side { position: static; }
    .faq-side .btn { display: none; }
    .interlude { height: 160svh; }
}
@media (min-width: 640px) and (max-width: 900px) {
    .card-fix, .card-voice { grid-column: span 6; }
    .card-heal { grid-column: span 12; }
}

@media (max-width: 640px) {
    body { font-size: 16px; }
    .wrap { padding-inline: 18px; }
    .nav-in { gap: 10px; padding-inline: 16px; }
    .nav-actions { gap: 10px; }
    .nav-signin { display: none; }
    .js .nav-signin { display: inline; font-size: 14.5px; white-space: nowrap; }
    .js .nav-cta { display: none; }
    .language-menu summary { padding-inline: 8px; }
    .language-menu summary > .ico:first-child { display: none; }
    .js .dock {
        position: fixed; left: 14px; right: 14px; bottom: max(14px, env(safe-area-inset-bottom)); z-index: 55;
        display: flex; justify-content: space-between; gap: 14px; min-height: 58px; padding: 7px 7px 7px 22px;
        background: var(--green); color: #fff; font-size: 16px; white-space: normal; text-align: left; line-height: 1.2; text-wrap: balance;
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .14), 0 18px 40px -12px rgba(0, 0, 0, .55);
        opacity: 0; visibility: hidden; transform: translateY(calc(100% + 24px));
        transition: transform .6s var(--ease), opacity .35s, visibility 0s .6s;
    }
    .js .dock.is-shown { opacity: 1; visibility: visible; transform: none; transition: transform .6s var(--ease), opacity .35s, visibility 0s; }
    .dock .btn-arrow { flex: none; width: 44px; height: 44px; background: #fff; color: var(--green); }
    .brand { flex: none; gap: 9px; font-size: 16px; }
    .brand img { width: 28px; height: 28px; }
    .hero { padding-top: calc(var(--nav-h) + 26px); padding-bottom: 60px; }
    .hero-title { margin: 0 0 22px; font-size: clamp(42px, 11.4vw, 60px); }
    .lead { font-size: 17px; }
    .cta-row { margin-top: 30px; }
    .cta-row .btn-big { width: 100%; justify-content: space-between; font-size: 17px; }
    .hero-points { gap: 8px 18px; font-size: 14px; }
    .hero-stage { height: calc(min(54vw, 232px) * 2.13 + 64px); }
    .hero .device-them { --w: min(54vw, 232px); left: 0; top: 0; }
    .hero .device-you { --w: min(33vw, 142px); right: 0; top: 20%; }
    .sound { font-size: 14px; }
    .scroll-cue { display: none; }
    .ticker { padding: 16px 0; }
    /* One rhythm between sections: 88px, a little more where a sheet slides over. */
    .section-head { margin-bottom: 36px; }
    .section-head.center { text-align: left; }
    .section-head.center .kicker { justify-content: flex-start; }
    .pain { padding: 88px 0 40px; }
    .sides { padding: 84px 0 64px; }
    .how { padding: 24px 0 72px; }
    .features { padding: 16px 0 96px; }
    .home { padding: 96px 0 80px; }
    .compare { padding: 96px 0 40px; }
    .pricing { padding: 48px 0 72px; }
    .faq-section { padding: 16px 0 96px; }
    .manifesto { font-size: 25px; line-height: 1.22; text-align: left; }
    .sides-note, .how-note { align-items: flex-start; justify-content: flex-start; text-align: left; }
    .sides-note .ico, .how-note .ico { margin-top: 3px; }
    .how-steps, .bento { gap: 14px; }
    .how-art { height: 220px; }
    .card-art { height: 190px; }
    .card-copy { padding: 22px 22px 26px; }
    .art-status { gap: 14px 18px; }
    .gauge { width: 110px; height: 110px; }
    .gauge-value { width: 110px; font-size: 20px; }
    .art-fix { gap: 18px; }
    .tuner { padding: 12px; border-radius: 28px; }
    .tuner-screen { min-height: 240px; padding: 22px; }
    .tuner-track li { flex-basis: 108px; }
    .tuner-track { padding-inline: calc(50% - 54px); }
    .home-note { margin-top: 50px; }
    .plan { padding: 30px 26px 26px; }
    .faq summary { font-size: 18px; padding: 22px 0; }
    .faq-answer p { padding-right: 0; font-size: 16px; }
    .final { padding: 112px 0 104px; }
    .footer { padding-top: 72px; }
    .includes { text-align: left; }
    .includes ul { display: grid; gap: 0; padding: 4px 20px; border-radius: 24px; background: var(--paper); box-shadow: 0 0 0 1px var(--line); }
    .includes li { padding: 13px 0; border-radius: 0; background: none; box-shadow: none; }
    .includes li + li { border-top: 1px solid var(--line); }
    .avatar { width: 66px; height: 66px; margin-left: -14px; font-size: 24px; }
    .art-family { padding-left: 14px; }
    .promise { align-items: flex-start; justify-content: flex-start; text-align: left; }
    .final-lead { font-size: 18px; }
    .final .btn-big { width: 100%; justify-content: space-between; }
    .footer-in { grid-template-columns: minmax(0, 1fr); gap: 30px; }
    .compare-wrap { border-radius: 24px; }
    .compare-table { min-width: 0; table-layout: fixed; }
    .compare-table thead td { width: 43%; }
    .compare-table th, .compare-table td { padding: 14px 4px; }
    .compare-table th[scope='row'] { padding-left: 16px; font-size: 14px; line-height: 1.35; }
    .compare-table thead th { padding: 18px 4px 12px; font-size: 11.5px; line-height: 1.2; }
    .compare-table thead th.us { font-size: 12px; }
    .compare-table thead th.us img { width: 24px; height: 24px; }
    .compare-table .ico { width: 20px; height: 20px; }
    .wordmark { margin-top: 60px; }
}

/* Phones and tablets held upright: each story pins to the screen, with a bar that fills as you scroll. The picture
   stays on top and the words under it change in place, so nothing slides under the picture. */
@media (max-width: 900px) and (min-height: 560px) {
    .js .scrolly-track::after { content: ''; display: block; height: calc(var(--steps) * 62svh); }
    .js .scrolly { position: sticky; top: var(--nav-h); display: flex; flex-direction: column; gap: 16px; height: calc(100svh - var(--nav-h)); padding: 14px 0 24px; }
    .js .story-bar { display: flex; flex: none; gap: 5px; }
    .js .story-bar li { flex: 1; height: 3px; overflow: hidden; border-radius: 3px; background: var(--rule); }
    .js .story-bar i { display: block; height: 100%; border-radius: inherit; background: var(--fg); transform: scaleX(0); transform-origin: left; }
    .js .scrolly-stage { flex: 1 1 0; min-height: 0; height: auto; padding: 0; container-type: size; }
    .js .scrolly-steps { display: grid; flex: none; padding: 0; }
    .js .scrolly [data-scrolly-step] { grid-area: 1 / 1; justify-content: flex-start; min-height: 0; padding: 0; opacity: 0; transform: translateY(24px); transition: opacity .4s var(--ease), transform .7s var(--ease); }
    .js .scrolly [data-scrolly-step].is-past { transform: translateY(-24px); }
    .js .scrolly [data-scrolly-step].is-active { opacity: 1; transform: none; transition-delay: .08s; }
    .js .phone-call { --w: min(62cqw, calc(100cqh * .46), 260px); }
    .js .sides-stage .device-them { --w: min(47cqw, calc(100cqh * .44), 250px); left: 2%; }
    .js .sides-stage .device-you { --w: min(43cqw, calc(100cqh * .4), 230px); right: 1%; }
    .js .pain-quote { font-size: clamp(26px, 7.2vw, 38px); }
    .js .pain-step p { margin-top: 12px; font-size: 16px; line-height: 1.5; }
    .js .pain-answer p { margin: 0; font-size: clamp(28px, 7.8vw, 42px); line-height: 1.04; }
    .js .sides-step h3 { font-size: clamp(24px, 6.4vw, 34px); }
    .js .sides-step > p:not(.who) { margin-top: 10px; font-size: 16px; }
    .js .who { margin-bottom: 12px; }
    .js .checks { gap: 8px; margin-top: 16px; }
    .js .checks li { font-size: 16px; line-height: 1.45; }
}
@media (max-width: 900px) and (min-height: 560px) and (max-height: 760px) {
    .js .scrolly { gap: 12px; padding-bottom: 16px; }
    .js .pain-quote { font-size: 24px; }
    .js .pain-step p, .js .checks li, .js .sides-step > p:not(.who) { font-size: 15px; }
    .js .pain-answer p { font-size: 27px; }
    .js .sides-step h3 { font-size: 23px; }
    .js .who { margin-bottom: 8px; }
    .js .who span { width: 28px; height: 28px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 1ms !important; animation-iteration-count: 1 !important; transition-duration: 1ms !important; transition-delay: 0s !important; }
    .ticker-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
    .ticker ul[aria-hidden] { display: none; }
    .ticker ul { flex-wrap: wrap; justify-content: center; gap: 12px 40px; padding: 0 20px; }
    .interlude { height: auto; }
    .interlude-sticky { position: relative; height: 80svh; }
    .js .interlude-frame { --p: 1; }
}
