/* FAQ: a quiet reading surface within the shared audio-tech system. */
html:has(.faq-page) { scroll-behavior: auto; }
.faq-intro { padding: 64px 0 48px; max-width: 900px; }
.faq-eyebrow { color: var(--accent); font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.faq-intro h1 { font-size: clamp(40px, 4.5vw, 72px); font-weight: 500; margin: 18px 0 22px; animation: hero-enter .5s ease-out both; }
.faq-intro h1 span { color: var(--muted); }
.faq-intro > p:last-of-type { color: var(--muted); font-size: 19px; }
.faq-search { margin-top: 30px; }
.faq-search label { display: block; font-size: 14px; color: var(--muted); margin-bottom: 9px; }
.faq-search-row { display: flex; align-items: center; gap: 16px; padding: 8px 8px 8px 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); transition: border-color .2s; }
.faq-search-row:focus-within { border-color: var(--accent); }
.faq-search-row > svg { color: var(--accent); width: 22px; }
.faq-search input { flex: 1; width: 100%; min-width: 0; border: 0; padding: 10px 0; color: var(--ink); background: transparent; font: inherit; }
.faq-search input::placeholder { color: var(--muted); opacity: 1; }
.faq-search input:focus-visible, .faq-search select:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.faq-search button { flex: none; cursor: pointer; }
.faq-search .faq-select-label { display: inline-block; margin: 18px 12px 0 0; }
.faq-search select { color: var(--ink); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 10px 30px 10px 12px; max-width: 100%; font: inherit; font-size: 14px; }
.faq-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); column-gap: clamp(35px, 6vw, 110px); border-top: 1px solid var(--line); padding-top: 38px; }
.faq-sidebar { align-self: start; position: sticky; top: 28px; }
.faq-topics > p { margin: 0 0 18px; }
.faq-topics > a { display: flex; align-items: center; justify-content: space-between; gap: 10px; min-height: 48px; padding: 10px 12px; margin-left: -12px; color: var(--muted); border-left: 2px solid transparent; transition: color .2s, background .2s, border-color .2s; }
.faq-topics > a > span { opacity: 0; }
.faq-topics > a:hover, .faq-topics > a[aria-current] { color: var(--accent); background: var(--surface); border-color: var(--accent); }
.faq-topics > a[aria-current] > span { opacity: 1; }
.faq-sidebar-note { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }
.faq-sidebar-note a { margin-top: 10px; }
.faq-sidebar-note svg { width: 18px; }
.faq-result-heading { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px; padding-bottom: 28px; font-size: 14px; color: var(--muted); }
.faq-group { margin-bottom: 48px; }
.faq-group > h2 { font-size: 25px; font-weight: 500; margin-bottom: 20px; }
.faq-question { border-top: 1px solid var(--line); scroll-margin-top: 28px; }
.faq-question:last-child { border-bottom: 1px solid var(--line); }
.faq-question summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 4px; cursor: pointer; list-style: none; font-size: 18px; line-height: 1.5; transition: color .2s; }
.faq-question summary::-webkit-details-marker { display: none; }
.faq-question summary svg { width: 20px; color: var(--accent); }
.faq-question summary:hover, .faq-question[open] summary { color: var(--accent); }
.faq-plus { transform-origin: center; transition: transform .2s, opacity .2s; }
.faq-question[open] .faq-plus { transform: rotate(90deg); opacity: 0; }
.faq-answer { padding: 0 38px 26px 4px; color: var(--muted); overflow-wrap: anywhere; }
.faq-question[open] .faq-answer { animation: faq-answer-enter .2s ease-out; }
.faq-answer p { max-width: 78ch; }
.faq-answer > .text-link { margin-top: 18px; font-size: 15px; }
.faq-permalink { display: block; width: fit-content; margin-top: 18px; font-size: 12px; text-decoration: underline; text-underline-offset: 4px; }
.faq-permalink:hover { color: var(--accent); }
.faq-empty { padding: 32px 0 80px; }
.faq-empty h2 { font-size: 28px; margin-bottom: 18px; }
.faq-empty a { margin-top: 18px; }
.faq-support { border-top: 1px solid var(--line); padding: 50px 0 70px; display: flex; justify-content: space-between; align-items: center; gap: 32px; }
.faq-support h2 { font-size: clamp(30px, 3vw, 46px); font-weight: 500; margin: 15px 0; }
.faq-support p:not(.faq-eyebrow) { color: var(--muted); }
.faq-support > a { flex: none; }
@keyframes faq-answer-enter { from { opacity: .4; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
@media (max-width: 1100px) { .faq-layout { grid-template-columns: 210px minmax(0, 1fr); gap: 32px; } }
@media (max-height: 650px) { .faq-sidebar { position: static; } }
@media (max-width: 800px) {
  .faq-intro { padding-top: 38px; }
  .faq-layout { display: block; padding-top: 26px; }
  .faq-sidebar { position: static; margin-bottom: 30px; }
  .faq-topics { display: flex; gap: 8px; flex-wrap: wrap; }
  .faq-topics > p { flex-basis: 100%; margin-bottom: 4px; }
  .faq-topics > a { margin: 0; padding: 8px 12px; border: 1px solid var(--line); font-size: 13px; min-height: 44px; }
  .faq-topics > a > span, .faq-sidebar-note { display: none; }
  .faq-support { flex-direction: column; align-items: start; }
}
@media (max-width: 500px) {
  .faq-search-row { flex-wrap: wrap; padding: 12px; gap: 8px; }
  .faq-search input { width: calc(100% - 38px); flex-basis: calc(100% - 38px); font-size: 16px; }
  .faq-search button { width: 100%; }
  .faq-intro > p:last-of-type { font-size: 17px; }
  .faq-question summary { font-size: 17px; gap: 12px; }
  .faq-answer { padding-right: 4px; font-size: 16px; }
  .faq-search select { max-width: calc(100% - 60px); }
}
@media (prefers-reduced-motion: reduce) { .faq-intro h1, .faq-question[open] .faq-answer { animation: none; } .faq-plus { transition: none; } }

:root {
  color-scheme: dark;
  --canvas: #070b12; --surface: #0c121c; --ink: #edf4fa; --muted: #a7b3c3; --accent: #63ddf5; --line: #293340;
  --gutter: clamp(24px, 4.5vw, 86px); --header: 88px; --radius: 5px; --font: "Segoe UI", Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 24px; }
body { margin: 0; color: var(--ink); background: var(--canvas); font: 17px/1.6 var(--font); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { max-width: 100%; display: block; height: auto; }
svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; flex: none; }
h1, h2, h3, p, figure { margin: 0; }
h1, h2, h3 { line-height: 1.1; letter-spacing: -.035em; }
p { max-width: 65ch; }
a, button { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid var(--accent); outline-offset: 6px; }
::selection { color: var(--canvas); background: var(--accent); }
[hidden] { display: none !important; }

/* Shared dark navigation and controls. */
.skip-link { position: absolute; z-index: 10; top: 12px; left: 20px; transform: translateY(-160%); color: var(--canvas); background: var(--accent); padding: 12px 20px; }
.skip-link:focus { transform: none; }
.site-header { min-height: var(--header); padding: 15px clamp(24px, 2.5vw, 48px); display: flex; align-items: center; justify-content: space-between; gap: 30px; border-bottom: 1px solid var(--line); background: var(--canvas); }
.brand { display: inline-flex; align-items: center; gap: 14px; flex: none; }
.brand img { width: 44px; height: 44px; object-fit: contain; }
.brand span { font: 600 31px/1 Arial, sans-serif; letter-spacing: -.045em; }
.primary-nav { display: flex; align-items: center; gap: clamp(24px, 3.2vw, 50px); font-size: 18px; }
.primary-nav > a:not(.button) { position: relative; padding: 9px 0; color: #c6ced9; }
.primary-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .2s; }
.primary-nav > a:hover::after, .primary-nav > a[aria-current]::after { transform: scaleX(1); }
.primary-nav > a:hover, .primary-nav > a[aria-current] { color: var(--accent); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 52px; padding: 13px 24px; border: 1px solid transparent; border-radius: var(--radius); font-size: 17px; font-weight: 600; line-height: 1.3; transition: background .2s, color .2s, transform .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #051018; background: var(--accent); }
.button-primary:hover { background: #a0edfc; box-shadow: 0 0 25px #63ddf523; }
.button-outline { border-color: var(--accent); background: transparent; color: var(--accent); font-weight: 400; }
.primary-nav .button-outline { color: var(--ink); }
.button-outline:hover { background: #63ddf515; }
.text-link { display: inline-flex; gap: 15px; align-items: center; color: var(--accent); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 7px; line-height: 1.5; }
.text-link svg { transition: transform .2s; }
.text-link:hover svg { transform: translateX(4px); }
.menu-toggle { border: 1px solid var(--line); border-radius: 4px; padding: 8px 12px; min-height: 44px; color: var(--ink); background: transparent; align-items: center; gap: 10px; }
.menu-lines { width: 18px; height: 10px; border-top: 1px solid; border-bottom: 1px solid; display: block; }

/* Artwork is separate from all real HTML content and controls. */
.hero { min-height: min(936px, calc(100svh - var(--header))); position: relative; display: flex; align-items: center; isolation: isolate; overflow: clip; background: var(--canvas); border-bottom: 1px solid var(--line); }
.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-media img { height: 100%; width: 100%; object-fit: cover; object-position: center; }
.hero-inner { padding: 90px var(--gutter) 135px; width: 100%; animation: hero-enter .65s ease-out both; }
.hero h1 { font-size: clamp(82px, 8.4vw, 150px); font-weight: 600; letter-spacing: -.065em; margin-bottom: 30px; }
.hero-headline { font-size: clamp(36px, 4vw, 62px); line-height: 1.04; letter-spacing: -.04em; font-weight: 500; max-width: 600px; }
.hero-headline span { color: var(--accent); }
.hero-description { color: var(--muted); font-size: clamp(18px, 1.6vw, 25px); line-height: 1.45; max-width: 470px; margin-top: 30px; }
.hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 36px; flex-wrap: wrap; }
.hero-actions .button { padding: 18px 26px; min-height: 62px; font-size: 18px; }
.hero-caption { position: absolute; bottom: 36px; left: var(--gutter); font-size: 13px; max-width: 48ch; color: var(--muted); }
.section-wrap { padding-left: var(--gutter); padding-right: var(--gutter); max-width: 1920px; margin-inline: auto; }

/* Actual app proof, not a reconstructed dashboard. */
.controls-section { padding-top: 90px; padding-bottom: 85px; }
.section-heading { display: grid; grid-template-columns: 1.3fr 1fr; gap: 85px; align-items: start; margin-bottom: 45px; }
.section-heading h2 { font-size: clamp(36px, 3.85vw, 62px); font-weight: 500; }
.section-heading h2 span { color: var(--muted); }
.section-heading h2::after { content: ""; display: block; margin-top: 30px; width: 86px; height: 2px; background: var(--accent); }
.section-intro p { color: #c8d1dc; font-size: clamp(19px, 1.6vw, 25px); line-height: 1.5; max-width: 510px; }
.section-heading .text-link { margin-top: 22px; font-size: 19px; }
.app-preview { margin-inline: auto; }
.preview-link { display: block; position: relative; border: 1px solid #455364; border-radius: 8px; overflow: hidden; background: var(--surface); box-shadow: 0 15px 65px #0006; transition: border-color .25s, box-shadow .25s; }
.preview-link:hover { border-color: var(--accent); box-shadow: 0 10px 65px #63ddf510; }
.preview-link img { width: 100%; height: auto; aspect-ratio: 16/9; }
.preview-hint { position: absolute; right: 16px; bottom: 16px; display: flex; align-items: center; gap: 10px; color: var(--ink); font-size: 14px; padding: 8px 13px; border: 1px solid var(--accent); background: var(--canvas); border-radius: 4px; opacity: 0; transform: translateY(6px); transition: opacity .2s, transform .2s; }
.preview-link:hover .preview-hint, .preview-link:focus .preview-hint { opacity: 1; transform: none; }
.app-preview figcaption { font-size: 14px; line-height: 1.8; color: var(--muted); margin-top: 22px; }
.app-preview figcaption span { color: var(--accent); }

/* Full-size image stays on the page, with an always-accessible toolbar. */
html.image-viewer-open { overflow: hidden; }
.image-viewer-caption { padding: 14px 18px; color: var(--muted); font-size: 14px; max-width: none; border-top: 1px solid var(--line); flex: none; max-height: 26dvh; overflow: auto; }
.image-viewer { color: var(--ink); background: var(--canvas); border: 1px solid #455364; border-radius: 8px; padding: 0; width: min(1600px, 94vw); max-width: none; max-height: 94dvh; overflow: hidden; }
.image-viewer[open] { display: flex; flex-direction: column; }
.image-viewer::backdrop { background: #02050deb; }
.image-viewer-toolbar { display: flex; align-items: center; gap: 12px; padding: 18px; border-bottom: 1px solid var(--line); flex: none; }
.image-viewer-toolbar h2 { font-size: 22px; font-weight: 500; margin-right: auto; }
.image-viewer-toolbar .button { cursor: pointer; min-height: 44px; padding: 10px 16px; font-size: 15px; }
.image-viewer-stage { min-height: 0; overflow: auto; overscroll-behavior: contain; }
.image-viewer-stage:focus-visible { outline: 2px solid var(--accent); outline-offset: -3px; }
.image-viewer-stage img { width: 100%; height: auto; max-height: calc(94dvh - 110px); object-fit: contain; }
.image-viewer-stage.is-zoomed img { width: auto; max-width: none; max-height: none; }
@media (max-width: 500px) {
  .image-viewer-toolbar { flex-wrap: wrap; padding: 14px; }
  .image-viewer-toolbar h2 { flex-basis: 100%; font-size: 20px; }
  .image-viewer-toolbar .button:last-child { margin-left: auto; }
  .image-viewer-stage img { max-height: calc(94dvh - 140px); }
}

/* Three-step signal path: static and readable without JavaScript. */
.workflow { background: var(--canvas); border-top: 1px solid var(--line); padding-top: 85px; }
.workflow-layout { display: grid; grid-template-columns: .9fr 2.2fr; gap: 60px; }
.workflow h2 { font-size: clamp(38px, 3.5vw, 57px); line-height: 1.2; font-weight: 400; align-self: center; }
.setup-steps { display: grid; grid-template-columns: repeat(3, 1fr); list-style: none; margin: 0; padding: 0; gap: 32px; }
.setup-steps li { min-width: 0; }
.step-number { display: flex; align-items: center; gap: 22px; color: var(--accent); font: 300 34px/1 Consolas, monospace; margin-bottom: 32px; }
.setup-steps li:not(:last-child) .step-number::after { content: ""; height: 1px; flex: 1; background: var(--accent); transform-origin: left; }
.step-diagram { display: block; width: 172px; height: 64px; margin-bottom: 30px; stroke-width: 1.25; color: var(--accent); }
.signal-path { stroke-dasharray: 2 5; }
.setup-steps h3 { font-size: 21px; line-height: 1.3; letter-spacing: -.025em; font-weight: 500; margin-bottom: 15px; }
.setup-steps p { color: var(--muted); font-size: 18px; line-height: 1.65; }
.setup-steps.has-entered .step-number::after { animation: signal-enter .65s ease-out both; }
.setup-steps.has-entered li:nth-child(2) .step-number::after { animation-delay: .16s; }
.sync-note { display: grid; grid-template-columns: 96px 1fr auto; gap: 38px; align-items: center; border-top: 1px solid var(--line); padding: 38px 0 42px; margin-top: 65px; }
.sync-icon { width: 96px; height: 96px; color: var(--accent); stroke-width: 1; }
.sync-note h3 { font-size: 27px; font-weight: 500; margin-bottom: 14px; }
.sync-note p { color: var(--muted); font-size: 18px; max-width: 670px; }
.sync-note .text-link { text-decoration: none; margin-left: 20px; white-space: nowrap; font-size: 20px; }

/* Footer and unavailable pages share the same dark system. */
.site-footer { padding-top: 50px; padding-bottom: 26px; border-top: 1px solid var(--line); }
.footer-main { display: grid; grid-template-columns: 1.65fr 1fr 1fr 1.25fr; gap: 45px; }
.footer-brand .brand img { width: 60px; height: 60px; }
.footer-brand .brand span { font-size: 36px; }
.footer-brand p { color: var(--muted); font-size: 18px; margin-top: 20px; }
.site-footer nav { display: flex; flex-direction: column; align-items: start; gap: 7px; border-left: 1px solid var(--line); padding-left: 35px; }
.site-footer nav h2 { font-size: 12px; font-weight: 500; letter-spacing: .13em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer nav a { color: var(--muted); font-size: 17px; min-height: 28px; }
.site-footer nav a:hover { color: var(--accent); text-decoration: underline; text-underline-offset: 5px; }
.footer-bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; gap: 26px; align-items: center; flex-wrap: wrap; font-size: 13px; color: var(--muted); }
.newsletter-state { margin-left: auto; }
.unavailable { padding-top: 100px; padding-bottom: 100px; min-height: 60vh; }
.page-status { color: var(--accent); margin-bottom: 22px; }
.unavailable h1 { font-size: clamp(40px, 5vw, 72px); font-weight: 500; max-width: 900px; }
.unavailable-message { color: var(--muted); font-size: 22px; margin-top: 24px; margin-bottom: 22px; max-width: 720px; }
.unavailable .button { margin-top: 32px; }
.unavailable .text-link { overflow-wrap: anywhere; }
@keyframes hero-enter { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes signal-enter { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* Lightweight progressive interaction: native cursor and scrolling stay intact. */
.cursor-halo { position: fixed; top: 0; left: 0; width: 0; height: 0; z-index: 30; pointer-events: none; }
.cursor-halo::before { content: ""; position: absolute; width: 34px; height: 34px; left: -17px; top: -17px; border: 1px solid #63ddf599; border-radius: 50%; box-shadow: 0 0 18px #63ddf518; transition: transform .18s, background .18s; }
.cursor-halo.is-interactive::before { transform: scale(1.5); background: #63ddf510; }
.hero-media { transition: transform .45s ease-out; }
.back-to-top { position: fixed; right: max(20px, env(safe-area-inset-right)); bottom: max(20px, env(safe-area-inset-bottom)); z-index: 12; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 54px; min-height: 64px; border: 1px solid var(--accent); border-radius: 5px; background: var(--canvas); color: var(--accent); box-shadow: 0 4px 24px #0008; font-size: 12px; transition: transform .2s, background .2s; }
.back-to-top:hover { transform: translateY(-4px); background: #122632; }
.footer-bottom { padding-right: 64px; }
.setup-tip { margin-top: 20px; border-top: 1px solid var(--line); padding-top: 12px; }
.setup-tip summary { cursor: pointer; color: var(--accent); font-size: 15px; width: fit-content; min-height: 44px; padding-block: 10px; }
.setup-tip p { font-size: 15px; line-height: 1.65; padding-bottom: 8px; }
.setup-tip[open] summary { color: var(--ink); }
.step-diagram { transition: transform .25s, filter .25s; }
.setup-steps li:hover .step-diagram, .setup-steps li:focus-within .step-diagram { transform: translateY(-4px); filter: drop-shadow(0 0 7px #63ddf555); }
.setup-steps li:hover .signal-path, .setup-steps li:focus-within .signal-path { animation: signal-flow .65s linear 2; }
@keyframes signal-flow { to { stroke-dashoffset: -14; } }
@media (max-width: 500px) { .setup-tip { grid-column: 2; } }
@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) { .cursor-halo { display: none; } }

@media (min-width: 801px) and (max-height: 850px) {
  .hero-inner { padding-top: 50px; padding-bottom: 95px; }
  .hero h1 { font-size: clamp(76px, 7.8vw, 110px); margin-bottom: 22px; }
  .hero-headline { font-size: clamp(32px, 3.5vw, 48px); }
  .hero-description { margin-top: 22px; font-size: 19px; }
  .hero-actions { margin-top: 26px; }
  .hero { min-height: 650px; }
  .hero-caption { bottom: 25px; }
}
@media (max-width: 1200px) {
  .primary-nav { gap: 26px; }
  .hero h1 { font-size: 98px; }
  .hero-headline { font-size: 42px; }
  .hero-description { max-width: 390px; font-size: 20px; }
  .hero-actions { max-width: 460px; gap: 15px; }
  .hero-actions .button { min-height: 54px; padding: 15px 18px; font-size: 16px; }
  .hero-media img { object-position: 62% center; }
  .section-heading { gap: 50px; }
  .workflow-layout { grid-template-columns: 1fr; gap: 40px; }
  .workflow h2 br { display: none; }
  .sync-note { grid-template-columns: 76px 1fr; gap: 28px; }
  .sync-icon { width: 76px; height: 76px; }
  .sync-note .text-link { grid-column: 2; margin: 0; }
  .footer-main { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .site-footer nav:first-of-type { padding-left: 0; border-left: 0; }
}
@media (min-width: 801px) and (max-width: 1000px) {
  .site-header { gap: 20px; }
  .primary-nav { gap: 16px; font-size: 16px; }
}
@media (max-width: 800px) {
  :root { --header: 76px; }
  .site-header { flex-wrap: wrap; gap: 14px; padding: 15px 24px; }
  .brand { gap: 10px; }
  .brand img { width: 36px; height: 36px; }
  .brand span { font-size: 26px; }
  .menu-toggle:not([hidden]) { display: flex; }
  .primary-nav { width: 100%; gap: 4px; align-items: stretch; flex-direction: column; }
  .primary-nav > a:not(.button) { padding: 10px 0; }
  .primary-nav .button { margin-top: 8px; }
  .menu-ready .primary-nav { display: none; }
  .menu-ready.menu-open .primary-nav { display: flex; }
  .hero { min-height: 870px; align-items: flex-start; }
  .hero-media { top: auto; height: 405px; }
  .hero-media img { object-position: right center; mask-image: linear-gradient(to bottom, transparent, #000 18%); }
  .hero-inner { padding: 40px var(--gutter) 420px; }
  .hero h1 { font-size: clamp(65px, 12vw, 96px); margin-bottom: 24px; }
  .hero-headline { font-size: clamp(30px, 5.2vw, 42px); max-width: 570px; }
  .hero-break { display: none; }
  .hero-description { font-size: 18px; margin-top: 24px; max-width: 450px; }
  .hero-actions { margin-top: 26px; gap: 16px; max-width: none; }
  .hero-actions .button { min-height: 52px; padding: 14px 20px; }
  .hero-caption { bottom: 15px; font-size: 11px; max-width: 310px; background: #070b12eb; padding: 7px 10px; left: 24px; }
  .controls-section { padding-top: 60px; padding-bottom: 55px; }
  .section-heading { grid-template-columns: 1fr; gap: 25px; margin-bottom: 32px; }
  .section-heading h2 { font-size: 40px; }
  .section-heading h2::after { margin-top: 24px; }
  .section-intro p { font-size: 19px; }
  .section-heading .text-link { margin-top: 20px; font-size: 17px; }
  .app-preview figcaption { font-size: 12px; }
  .preview-hint { display: none; }
  .workflow { padding-top: 50px; }
  .setup-steps { gap: 22px; }
  .setup-steps h3 { font-size: 19px; }
  .setup-steps p { font-size: 16px; }
  .step-diagram { width: 150px; max-width: 100%; }
  .sync-note { gap: 20px; margin-top: 45px; }
  .sync-note h3 { font-size: 24px; }
  .sync-note p { font-size: 16px; }
  .sync-note .text-link { font-size: 17px; }
  .site-footer { padding-top: 40px; }
  .footer-main { gap: 28px; grid-template-columns: 1fr 1fr; }
  .site-footer nav { border: 0; padding: 0; }
  .footer-brand .brand img { width: 46px; height: 46px; }
  .footer-brand .brand span { font-size: 32px; }
  .site-footer nav a { font-size: 16px; }
  .footer-bottom { align-items: start; flex-direction: column; gap: 8px; }
  .newsletter-state { margin-left: 0; }
  .unavailable { padding-top: 60px; padding-bottom: 60px; }
  .unavailable-message { font-size: 19px; }
}
@media (max-width: 500px) {
  .hero { min-height: 840px; }
  .hero-media { height: 310px; }
  .hero-inner { padding-bottom: 330px; }
  .hero h1 { font-size: 65px; }
  .hero-headline { font-size: 32px; }
  .hero-description { max-width: 330px; font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .hero-actions .button { min-width: 235px; }
  .section-heading h2 { font-size: 34px; }
  .workflow h2 { font-size: 38px; }
  .workflow h2 br { display: block; }
  .setup-steps { grid-template-columns: 1fr; gap: 32px; }
  .setup-steps li { display: grid; grid-template-columns: 52px 1fr; column-gap: 18px; border-bottom: 1px solid var(--line); padding-bottom: 28px; }
  .step-number { grid-column: 1; grid-row: 1; align-self: start; font-size: 30px; margin: 0; }
  .setup-steps li:not(:last-child) .step-number::after { display: none; }
  .step-diagram { grid-column: 2; width: 150px; height: 56px; margin-bottom: 18px; }
  .setup-steps h3, .setup-steps p { grid-column: 2; }
  .setup-steps h3 { font-size: 20px; margin-bottom: 10px; }
  .sync-note { grid-template-columns: 1fr; }
  .sync-icon { width: 60px; height: 60px; }
  .sync-note .text-link { grid-column: 1; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .hero-media, .step-diagram, .back-to-top:hover, .button:hover, .text-link:hover svg { transform: none !important; }
}

/* Features: shared audio-tech system, open editorial rows and a real EQ preview. */
.feature-hero { min-height: 660px; }
.feature-hero .hero-inner { padding-block: 75px 105px; }
.feature-hero h1 { font-size: clamp(76px, 7vw, 112px); line-height: .98; }
.feature-hero h1 span { color: var(--accent); }
.feature-hero .hero-description { max-width: 500px; }
.feature-hero .hero-actions .text-link { font-size: 18px; }
.feature-index { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 10px; padding-top: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 8; background: var(--canvas); }
.feature-index a { position: relative; display: flex; align-items: center; flex-direction: column; gap: 6px; font-size: 15px; padding: 7px 4px 12px; text-align: center; border-right: 1px solid var(--line); }
.feature-index a:last-child { border-right: 0; }
.feature-index svg { color: var(--accent); width: 25px; height: 25px; transition: transform .2s; }
.feature-index-number { font: 16px/1.2 Consolas, monospace; color: var(--accent); }
.feature-index a::after { content: ""; position: absolute; bottom: -5px; left: 5%; right: 5%; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.feature-index a:hover::after, .feature-index a:focus-visible::after, .feature-index a[aria-current]::after { transform: scaleX(1); }
.feature-index a:hover svg { transform: translateY(-3px); }
.features-page section[id] { scroll-margin-top: 150px; }
.feature-group { padding-top: 78px; padding-bottom: 55px; border-bottom: 1px solid var(--line); }
.feature-group-layout { display: grid; grid-template-columns: 34% minmax(0, 1fr); gap: 64px; }
.feature-section-label { font: 16px/1.4 Consolas, monospace; text-transform: uppercase; letter-spacing: .09em; color: var(--accent); margin-bottom: 24px; }
.feature-group h2, .eq-explorer h2, .feature-platforms > h2 { font-size: clamp(36px, 3.4vw, 52px); font-weight: 500; }
.feature-intro { color: var(--muted); font-size: 20px; line-height: 1.65; margin-top: 24px; }
.feature-item { display: grid; grid-template-columns: 28px minmax(160px, .9fr) minmax(0, 1fr); align-items: start; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.feature-item:first-child { padding-top: 0; }
.feature-item:last-child { border: 0; }
.feature-item > svg { color: var(--accent); width: 28px; height: 28px; transition: transform .2s; }
.feature-item:hover > svg { transform: scale(1.12); }
.feature-item h3 { font-size: 21px; line-height: 1.35; font-weight: 500; letter-spacing: -.025em; }
.feature-item p { color: var(--muted); font-size: 17px; line-height: 1.6; }
.feature-note { border-left: 2px solid var(--accent); padding-left: 20px; margin-top: 35px; color: var(--muted); font-size: 16px; max-width: none; }
.routing-diagram { margin-top: 70px; width: 100%; height: auto; color: var(--accent); }
.routing-signal { stroke-dasharray: 6 6; }
.feature-group-head:hover .routing-signal { animation: signal-flow 1s linear 2; }
.eq-explorer { margin-top: 65px; padding-top: 65px; border-top: 1px solid var(--line); }
.eq-explorer-layout { display: grid; grid-template-columns: minmax(270px, .9fr) minmax(0, 2fr); gap: 60px; margin-top: 45px; }
.eq-preset-buttons { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; align-self: start; }
.eq-preset-buttons .button { font-size: 16px; min-height: 62px; padding: 12px 8px; color: var(--ink); cursor: pointer; }
.eq-preset-buttons .button[aria-pressed="true"] { color: var(--canvas); background: var(--accent); }
.eq-visual { min-width: 0; text-align: center; }
.eq-preset-buttons[hidden] + .eq-visual { grid-column: 1 / -1; }
.eq-current { font-size: 26px; font-weight: 500; margin-bottom: 12px; }
.eq-chart { width: 100%; height: auto; display: block; overflow: visible; }
.eq-grid { stroke: var(--line); }
.eq-grid path { stroke-dasharray: 4 5; }
.eq-chart text { stroke: none; fill: var(--muted); font: 15px var(--font); }
.eq-curve { stroke: var(--accent); stroke-width: 2; }
.eq-point { fill: var(--accent); stroke: none; }
.eq-chart .eq-point-label { fill: var(--accent); }
.eq-preview-sliders { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border: 0; gap: 18px; padding: 0; margin: 10px 0 24px; min-width: 0; }
.eq-preview-sliders legend { text-align: left; color: var(--muted); font-size: 14px; margin-bottom: 15px; }
.eq-preview-sliders label { display: flex; flex-direction: column; gap: 7px; font-size: 14px; }
.eq-preview-sliders input { width: 100%; min-width: 0; margin: 0; accent-color: var(--accent); cursor: pointer; height: 30px; }
.eq-preview-sliders input:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
.eq-preview-sliders output { color: var(--accent); font: 14px/1.4 Consolas, monospace; }
.eq-reset { cursor: pointer; min-height: 44px; font-size: 15px; }
.eq-disclaimer { color: var(--muted); font-size: 14px; margin: 24px auto 0; }
.eq-values { margin-top: 38px; border-block: 1px solid var(--line); }
.eq-values summary { color: var(--accent); cursor: pointer; padding: 22px 0; font-size: 17px; }
.eq-values-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 40px; padding-bottom: 26px; }
.eq-values-list section { padding: 20px 0; border-top: 1px solid var(--line); min-width: 0; }
.eq-values-list h3 { font-size: 19px; font-weight: 500; }
.eq-values-list dl { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; }
.eq-values-list dt { color: var(--muted); font-size: 13px; }
.eq-values-list dd { margin: 5px 0 0; color: var(--accent); font: 14px/1.3 Consolas, monospace; }
.feature-proof, .feature-platforms { padding-block: 80px; border-bottom: 1px solid var(--line); }
.platform-list { margin: 45px 0 0; }
.platform-list > div { display: grid; grid-template-columns: 30% 1fr; gap: 55px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.platform-list dt { font-size: 32px; line-height: 1.3; }
.platform-list dd { margin: 0; border-left: 1px solid var(--accent); padding-left: 40px; color: var(--muted); font-size: 19px; }
.feature-closing { display: flex; justify-content: space-between; align-items: center; gap: 36px; margin-top: 50px; padding-top: 45px; border-top: 1px solid var(--line); }
.feature-closing h2 { font-size: 36px; font-weight: 500; max-width: 550px; }
.feature-closing > div { display: flex; flex-wrap: wrap; gap: 18px; flex: none; }
@media (max-width: 1200px) {
  .feature-group-layout { grid-template-columns: 30% minmax(0, 1fr); gap: 35px; }
  .feature-item { grid-template-columns: 24px 1fr; gap: 8px 16px; }
  .feature-item p { grid-column: 2; }
  .feature-index a { font-size: 13px; }
  .eq-explorer-layout { gap: 30px; }
  .feature-closing { align-items: start; flex-direction: column; }
}
@media (max-width: 800px) {
  .feature-hero { min-height: 740px; }
  .feature-hero .hero-inner { padding-top: 40px; padding-bottom: 345px; }
  .feature-hero h1 { font-size: 76px; }
  .feature-hero .hero-media { height: 310px; }
  .feature-hero .hero-actions { flex-direction: row; align-items: center; }
  .feature-index { position: static; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px 6px; padding-block: 25px; }
  .feature-index a:nth-child(3n) { border-right: 0; }
  .features-page section[id] { scroll-margin-top: 24px; }
  .feature-group { padding-block: 50px; }
  .feature-group-layout { grid-template-columns: 1fr; gap: 32px; }
  .feature-intro { font-size: 18px; margin-top: 18px; }
  .routing-diagram { max-width: 320px; margin-top: 25px; }
  .feature-item { grid-template-columns: 28px 1fr; }
  .feature-item h3 { font-size: 21px; }
  .feature-item p { font-size: 16px; }
  .feature-note { font-size: 15px; }
  .eq-explorer { padding-top: 40px; margin-top: 40px; }
  .eq-explorer-layout { grid-template-columns: 1fr; gap: 30px; margin-top: 30px; }
  .eq-preset-buttons { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
  .eq-preset-buttons .button { font-size: 14px; min-height: 52px; }
  .eq-values-list { grid-template-columns: 1fr; }
  .feature-proof, .feature-platforms { padding-block: 50px; }
  .platform-list > div { grid-template-columns: 1fr; gap: 18px; }
  .platform-list dt { font-size: 27px; }
  .platform-list dd { padding-left: 20px; font-size: 17px; }
  .feature-closing h2 { font-size: 32px; }
}
@media (max-width: 500px) {
  .feature-hero h1 { font-size: 65px; }
  .feature-hero .hero-actions { flex-direction: column; align-items: start; }
  .feature-hero .hero-description { font-size: 19px; }
  .eq-preset-buttons { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .eq-preview-sliders { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px 20px; }
  .eq-chart text { font-size: 20px; }
  .eq-values-list dt { font-size: 11px; }
  .eq-values-list dd { font-size: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .feature-index a:hover svg, .feature-item:hover > svg { transform: none; }
}

/* Gallery: interface evidence, with captions outside the image frames. */
.gallery-page { max-width: 1440px; }
.gallery-intro { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: center; padding-block: 72px 54px; }
.gallery-intro h1 { font-size: clamp(44px, 6.1vw, 84px); font-weight: 500; letter-spacing: -.05em; }
.gallery-intro h1 span { color: var(--accent); }
.gallery-intro p { color: var(--muted); font-size: clamp(18px, 1.7vw, 23px); max-width: 39ch; margin-block: 22px; }
.gallery-wave { width: 100%; height: auto; color: var(--accent); filter: drop-shadow(0 0 10px #63ddf530); }
.gallery-wave-line { stroke-width: 1.25; stroke-dasharray: 1200; animation: gallery-trace 1.8s ease-out both; }
@keyframes gallery-trace { from { stroke-dashoffset: 1200; opacity: .3; } to { stroke-dashoffset: 0; opacity: 1; } }
.gallery-featured-label { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 20px; padding-bottom: 15px; font-size: 14px; color: var(--muted); }
.gallery-featured-label span:first-child { color: var(--accent); }
.gallery-featured .preview-link { box-shadow: 0 0 70px #63ddf508; }
.gallery-featured figcaption { max-width: 100ch; font-size: 14px; }
.gallery-library { padding-block: 90px; scroll-margin-top: 24px; }
.gallery-library-heading { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin-bottom: 30px; }
.gallery-library h2, .gallery-outro h2 { font-size: clamp(32px, 3.4vw, 48px); font-weight: 500; }
.gallery-library-heading p { color: var(--muted); }
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; }
.gallery-filters a { border: 1px solid var(--line); border-radius: 4px; min-height: 44px; display: inline-flex; align-items: center; padding: 9px 17px; font-size: 15px; transition: border-color .2s, background .2s; }
.gallery-filters a:hover { border-color: var(--accent); }
.gallery-filters a[aria-current] { border-color: var(--accent); background: #63ddf515; color: var(--accent); }
.gallery-filter-status { margin-block: 18px 32px; color: var(--muted); font-size: 14px; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px 32px; }
.gallery-screen { min-width: 0; }
.gallery-screen .preview-link { aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; box-shadow: none; background: #101216; }
.gallery-screen .preview-link img { aspect-ratio: auto; width: 100%; height: 100%; object-fit: contain; }
.gallery-screen figcaption { padding-top: 20px; }
.gallery-category { color: var(--accent); font-size: 13px; }
.gallery-screen h3 { font-size: clamp(22px, 2vw, 28px); font-weight: 500; margin-block: 8px 12px; }
.gallery-screen p { font-size: 16px; color: var(--muted); }
.gallery-screen .text-link { margin-top: 15px; font-size: 14px; }
.gallery-empty { padding: 48px 0; border-block: 1px solid var(--line); }
.gallery-empty h3 { font-size: 26px; }
.gallery-empty p { margin-block: 18px; color: var(--muted); }
.gallery-outro { border-top: 1px solid var(--line); padding-block: 64px 88px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.gallery-outro p { color: var(--muted); margin-bottom: 22px; }
@media (hover: none) { .gallery-page .preview-hint { opacity: 1; transform: none; } }
@media (max-width: 700px) {
  .gallery-intro { grid-template-columns: 1fr; padding-block: 48px 36px; gap: 24px; }
  .gallery-wave { max-width: 260px; height: 65px; justify-self: end; }
  .gallery-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-library { padding-block: 56px; }
  .gallery-filters { gap: 8px; }
  .gallery-filters a { padding-inline: 12px; font-size: 14px; }
  .gallery-outro { grid-template-columns: 1fr; padding-block: 40px 56px; gap: 24px; }
  .image-viewer-toolbar { gap: 8px; }
  .image-viewer-toolbar .button { padding-inline: 12px; }
  .image-viewer-caption { font-size: 12px; padding: 10px 14px; }
}
@media (prefers-reduced-motion: reduce) { .gallery-wave-line { animation: none; } }

/* Pricing: equal feature access, two open license-term columns. */
.pricing-page { max-width: 1536px; }
.pricing-intro { text-align: center; padding-block: 48px 28px; animation: hero-enter .5s ease-out both; }
.pricing-intro h1 { font-size: clamp(36px, 3.7vw, 54px); font-weight: 600; }
.pricing-intro p { color: var(--muted); font-size: clamp(18px, 1.6vw, 23px); margin: 16px auto 0; }
.pricing-comparison { display: grid; grid-template-columns: 1fr 1fr; padding-block: 10px 16px; }
.pricing-plan { padding: 12px clamp(24px, 7vw, 108px); text-align: center; min-width: 0; }
.pricing-plan + .pricing-plan { border-left: 1px solid var(--line); }
.pricing-plan h2 { color: var(--accent); font-size: 29px; font-weight: 500; }
.plan-price { font-size: clamp(54px, 4.7vw, 66px); line-height: 1.2; font-weight: 600; letter-spacing: -.04em; margin-block: 10px 5px; }
.plan-description { color: #c8d1dc; min-height: 54px; }
.plan-inclusions { list-style: none; padding: 18px 8px; margin: 10px 0 12px; border-top: 1px solid var(--line); text-align: left; }
.plan-inclusions li { display: flex; align-items: center; gap: 22px; padding-block: 6px; }
.plan-inclusions svg { color: var(--accent); }
.pricing-plan .button { width: 100%; min-height: 56px; }
.pricing-page .button:disabled { color: var(--muted); border-color: #687282; cursor: not-allowed; background: transparent; transform: none; box-shadow: none; }
.checkout-availability { color: var(--muted); text-align: center; margin: 20px auto 24px; max-width: none; font-size: 16px; }
.pricing-legal { display: flex; justify-content: center; gap: 30px; margin: 0 auto 24px; }
.pricing-details { display: grid; grid-template-columns: 1.2fr 1.3fr .85fr; gap: 28px; padding-block: 24px 30px; border-top: 1px solid var(--line); }
.pricing-details h2 { color: var(--accent); font-size: 23px; font-weight: 500; margin-bottom: 20px; }
.pricing-details > * + * { border-left: 1px solid var(--line); padding-left: 28px; }
.pricing-toolkit ul { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; padding-left: 16px; margin: 0 0 16px; font-size: 14px; }
.pricing-toolkit li::marker { color: var(--accent); }
.pricing-toolkit > a { font-size: 14px; }
.purchase-journey ol { list-style: none; counter-reset: purchase; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.purchase-journey li { counter-increment: purchase; text-align: center; font-size: 14px; }
.purchase-journey li::before { content: counter(purchase); display: grid; place-items: center; margin: 0 auto 12px; width: 40px; height: 40px; border: 1px solid var(--accent); border-radius: 50%; color: var(--accent); font-size: 25px; }
.purchase-journey strong { font-weight: 500; }
.purchase-journey p { margin-top: 4px; color: var(--muted); font-size: 13px; }
.pricing-requirements p { font-size: 14px; color: #c8d1dc; }
.pricing-requirements p + p { border-top: 1px solid var(--line); padding-top: 12px; margin-top: 12px; }
.pricing-faq { padding-bottom: 56px; }
.pricing-faq details { border-top: 1px solid var(--line); }
.pricing-faq details:last-child { border-bottom: 1px solid var(--line); }
.pricing-faq summary { cursor: pointer; padding: 14px 10px; font-size: 18px; }
.pricing-faq details p { padding: 0 28px 22px; color: var(--muted); max-width: 85ch; }
.payment-status-page { max-width: 980px; padding-block: 64px 80px; }
.payment-status-page h1 { font-size: clamp(36px, 4vw, 54px); margin-bottom: 24px; }
.payment-status-page p { margin-bottom: 20px; color: var(--muted); }
.payment-status-page .payment-key { color: var(--ink); font: 20px/1.6 monospace; overflow-wrap: anywhere; padding: 20px; border: 1px solid var(--line); }
.payment-status-page .payment-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-block: 24px; }
.agreement-content { white-space: pre-wrap; overflow-wrap: anywhere; font: inherit; color: var(--muted); }
@media (max-width: 1100px) {
  .pricing-plan { padding-inline: 48px; }
  .pricing-details { grid-template-columns: 1fr 1fr; }
  .pricing-requirements { grid-column: 1 / -1; }
  .pricing-details > .pricing-requirements { border-left: 0; border-top: 1px solid var(--line); padding: 20px 0 0; display: flex; gap: 24px; }
  .pricing-requirements p { flex: 1; }
  .pricing-requirements p + p { border-top: 0; margin: 0; padding: 0; }
}
@media (max-width: 700px) {
  .pricing-intro { padding-block: 40px 20px; text-align: left; }
  .pricing-intro h1 { max-width: 14ch; }
  .pricing-comparison, .pricing-details { grid-template-columns: 1fr; }
  .pricing-plan { padding: 24px 10px 32px; }
  .pricing-plan + .pricing-plan { border-left: 0; border-top: 1px solid var(--line); padding-top: 32px; }
  .plan-description { min-height: 0; }
  .plan-inclusions { max-width: 380px; margin-inline: auto; }
  .pricing-details > * + * { border-left: 0; border-top: 1px solid var(--line); padding: 24px 0 0; }
  .pricing-details > .pricing-requirements { display: block; }
  .pricing-requirements p + p { margin-top: 12px; }
  .pricing-faq { padding-bottom: 40px; }
}
@media (prefers-reduced-motion: reduce) { .pricing-intro { animation: none; } }
.footer-newsletter { display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; padding-bottom: 42px; margin-bottom: 42px; border-bottom: 1px solid var(--line); align-items: start; }
.newsletter-kicker { color: var(--accent); font-size: 10px; letter-spacing: .15em; margin: 0 0 14px; }
.footer-newsletter h2 { font-size: 30px; font-weight: 500; letter-spacing: -.035em; margin: 0 0 16px; }
.newsletter-intro > p:last-child { color: var(--muted); font-size: 14px; line-height: 1.8; margin: 0; }
.newsletter-signup { min-width: 0; }
.newsletter-signup label { display: block; font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.newsletter-controls { display: flex; gap: 10px; }
.newsletter-controls input { min-width: 0; width: 100%; border: 1px solid #415768; border-radius: 5px; background: #0c1420; padding: 14px 16px; color: var(--text); font: inherit; font-size: 14px; }
.newsletter-controls input::placeholder { color: #91a3b5; }
.newsletter-controls input:disabled { opacity: .65; }
.newsletter-controls button { flex-shrink: 0; }
.newsletter-controls button:disabled { opacity: .6; cursor: not-allowed; }
.newsletter-help { color: var(--muted); font-size: 11px; line-height: 1.8; margin: 12px 0 0; overflow-wrap: anywhere; }
.newsletter-help a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
.newsletter-feedback { color: var(--text); border-left: 2px solid var(--accent); padding: 10px 14px; font-size: 13px; line-height: 1.7; margin: 0 0 18px; }
.newsletter-trap { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
@media (max-width: 800px) { .footer-newsletter { grid-template-columns: 1fr; gap: 25px; } }
@media (max-width: 420px) { .newsletter-controls { flex-direction: column; } .newsletter-controls button { justify-content: center; width: 100%; } }
