:root {
  color-scheme: dark;
  --ink: #07111f;
  --ink-2: #0c192b;
  --paper: #f6f8fb;
  --paper-2: #eaf0f7;
  --white: #ffffff;
  --muted: #91a0b6;
  --text-dark: #111b2b;
  --blue: #0b63f6;
  --blue-bright: #4c92ff;
  --cyan: #18d8f4;
  --violet: #7947ff;
  --pink: #ed4ee8;
  --lime: #b7ff4a;
  --lime-soft: #d7ff98;
  --line-dark: rgba(255, 255, 255, 0.13);
  --line-light: rgba(7, 17, 31, 0.13);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text-dark);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { display: block; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding-block: 128px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 1000; padding: 10px 16px; border-radius: 10px; background: var(--lime); color: var(--ink); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(7, 17, 31, 0.75);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}
.header-inner { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; color: var(--white); }
.brand-logo { width: 174px; height: auto; filter: drop-shadow(0 5px 15px rgba(20, 174, 255, .12)); }
.footer .brand-logo { width: 158px; }
.site-nav { display: flex; align-items: center; gap: 30px; color: #c7d0df; font-size: 14px; }
.site-nav a, .text-link { transition: color .2s ease; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--white); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 13px; min-height: 52px; padding: 0 22px; border: 1px solid transparent; border-radius: 100px; font-size: 14px; font-weight: 750; line-height: 1; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .text-link:focus-visible, button:focus-visible, summary:focus-visible, a:focus-visible { outline: 3px solid var(--blue-bright); outline-offset: 3px; }
.button svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.button-small { min-height: 40px; padding-inline: 17px; font-size: 13px; }
.button-light { background: var(--white); color: var(--ink); }
.button-primary { background: var(--lime); color: var(--ink); box-shadow: 0 13px 36px rgba(183,255,74,.18); }
.button-primary:hover { box-shadow: 0 18px 42px rgba(183,255,74,.3); }
.menu-button { display: none; }

.hero {
  width: 100%;
  max-width: none;
  min-height: 820px;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}
.hero::after { content: ""; position: absolute; z-index: -1; inset: auto auto -190px -110px; width: 440px; height: 440px; border-radius: 50%; background: rgba(11,99,246,.25); filter: blur(90px); }
.hero-media { position: absolute; z-index: -2; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; opacity: .88; }
.hero-vignette { position: absolute; inset: 0; background: linear-gradient(90deg, #07111f 0%, rgba(7,17,31,.97) 27%, rgba(7,17,31,.5) 56%, rgba(7,17,31,.18) 100%), linear-gradient(0deg, rgba(7,17,31,.45), transparent 45%); }
.hero-content { width: min(1180px, calc(100% - 48px)); margin: 78px auto 0; position: relative; z-index: 1; }
.eyebrow, .kicker { margin: 0 0 22px; font-size: 12px; line-height: 1.2; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 10px; color: #cfd9ff; }
.eyebrow > span:first-child { width: 28px; height: 1px; background: linear-gradient(90deg, var(--pink), var(--cyan)); }
.hero h1 { max-width: 720px; margin: 0; font-size: clamp(52px, 7.2vw, 104px); line-height: .9; letter-spacing: -.072em; font-weight: 780; }
.hero h1 > span { display: block; }
.hero h1 .accent { color: transparent; background: linear-gradient(90deg, var(--pink) 0%, var(--violet) 48%, var(--cyan) 100%); background-clip: text; -webkit-background-clip: text; }
.hero-copy { max-width: 570px; margin: 30px 0 0; color: #c9d3e2; font-size: 19px; line-height: 1.6; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 36px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--white); font-size: 14px; font-weight: 700; }
.text-link:hover { color: var(--cyan); }
.hero-proof { margin: 30px 0 0; color: #7f8da3; font-size: 13px; letter-spacing: .02em; }
.glass-card { background: rgba(10,25,45,.74); border: 1px solid rgba(255,255,255,.17); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.cue-card { position: absolute; z-index: 2; right: max(28px, calc((100vw - 1180px)/2)); bottom: 70px; width: min(380px, calc(100% - 48px)); padding: 22px 24px; border-radius: 20px; transform: rotate(-1.5deg); }
.cue-topline { display: flex; align-items: center; gap: 8px; color: #d8e3f0; font-size: 11px; font-weight: 800; letter-spacing: .14em; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(183,255,74,.1); }
.cue-time { margin-left: auto; color: #8392a9; font-variant-numeric: tabular-nums; }
.cue-card p { margin: 10px 0 0; font-size: 18px; font-weight: 700; }
.wave { height: 28px; display: flex; align-items: center; gap: 4px; margin-top: 15px; }
.wave i, .mini-wave i { width: 3px; border-radius: 3px; background: var(--blue-bright); animation: pulse 1.3s ease-in-out infinite alternate; }
.wave i:nth-child(1), .wave i:nth-child(8) { height: 7px; }.wave i:nth-child(2), .wave i:nth-child(7) { height: 14px; }.wave i:nth-child(3), .wave i:nth-child(6) { height: 22px; }.wave i:nth-child(4) { height: 11px; }.wave i:nth-child(5) { height: 26px; }.wave i:nth-child(9) { height: 17px; }
.wave i:nth-child(2n) { animation-delay: -.6s; }
@keyframes pulse { to { transform: scaleY(.45); opacity: .6; } }

.signal-strip { background: var(--lime); color: var(--ink); }
.signal-inner { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 18px; font-size: 12px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.signal-inner i { flex: none; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); }
.section-heading { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 50px; margin-bottom: 58px; }
.section-heading .kicker { grid-column: 1 / -1; margin-bottom: -22px; color: var(--blue); }
.section-heading h2, .earbud-copy h2, .coach-copy h2, .library-header h2, .faq-heading h2, .closing-card h2 { margin: 0; font-size: clamp(38px, 5vw, 68px); line-height: .98; letter-spacing: -.055em; }
.section-heading > p:last-child, .library-header > p { margin: 0; max-width: 480px; color: #56657a; font-size: 17px; }
.product-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 20px; }
.feature-card { min-height: 350px; position: relative; overflow: hidden; padding: 34px; border: 1px solid var(--line-light); border-radius: var(--radius); background: var(--white); }
.feature-card-main { grid-row: span 2; min-height: 720px; display: flex; flex-direction: column; justify-content: space-between; background: var(--ink); color: var(--white); }
.feature-number { position: absolute; top: 28px; right: 28px; color: #7e8da3; font-size: 12px; font-weight: 800; letter-spacing: .15em; }
.feature-copy { max-width: 500px; }
.feature-label { margin: 0 0 14px; color: var(--blue); font-size: 11px; font-weight: 850; letter-spacing: .18em; }
.feature-card-main .feature-label { color: var(--lime); }
.feature-card h3 { max-width: 520px; margin: 0; font-size: 29px; line-height: 1.08; letter-spacing: -.04em; }
.feature-card-main h3 { font-size: clamp(34px, 4vw, 52px); }
.feature-card p:last-child, .feature-copy > p:last-child { max-width: 440px; margin: 18px 0 0; color: #66758a; }
.feature-card-main .feature-copy > p:last-child { color: #95a4ba; }
.icon-box { width: 56px; height: 56px; display: grid; place-items: center; margin: 45px 0 38px; border-radius: 18px; background: rgba(183,255,74,.22); color: #477a00; }
.icon-box-blue { background: rgba(11,99,246,.1); color: var(--blue); }
.icon-box svg { width: 27px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.script-preview { position: relative; margin: 46px 0 0 66px; padding: 40px 38px; min-height: 330px; border: 1px solid rgba(255,255,255,.13); border-radius: 22px 22px 0 0; background: linear-gradient(145deg, #13253d, #091526); box-shadow: 0 30px 70px rgba(0,0,0,.35); transform: rotate(-2deg) translateY(34px); }
.script-toolbar { display: flex; gap: 7px; margin-bottom: 45px; }.script-toolbar span { width: 8px; height: 8px; border-radius: 50%; background: #43546c; }.script-toolbar span:first-child { background: var(--lime); }
.script-muted { margin: 0 0 14px !important; color: #6f7e93 !important; font-size: 12px; text-transform: uppercase; letter-spacing: .16em; }
.script-line { margin: 3px 0 !important; color: #8d9db2 !important; font-size: clamp(17px, 2.2vw, 25px); line-height: 1.38; }
.script-line.strong { color: var(--white) !important; font-weight: 700; }.script-line.highlight-line { display: inline; background: var(--lime); color: var(--ink) !important; padding: 1px 6px; }
.script-cursor { width: 2px; height: 26px; margin-top: 16px; background: var(--blue-bright); animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }

.earbud-section { position: relative; overflow: hidden; background: var(--ink); color: var(--white); }
.earbud-section::before { content: ""; position: absolute; width: 520px; height: 520px; left: -140px; bottom: -200px; border-radius: 50%; background: rgba(11,99,246,.3); filter: blur(100px); }
.earbud-layout { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 90px; }
.kicker { color: var(--blue); }.kicker-light { color: var(--lime); }
.earbud-copy h2 { max-width: 570px; }
.earbud-copy > p:not(.kicker) { max-width: 520px; margin: 26px 0 0; color: #9cabc0; font-size: 17px; }
.check-list { display: grid; gap: 16px; margin: 34px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 14px; color: #d5deeb; }
.check-list li > span:first-child { width: 23px; height: 23px; display: grid; flex: none; place-items: center; border-radius: 50%; background: var(--lime); color: var(--ink); font-size: 12px; font-weight: 900; }
.phone-stage { min-height: 680px; position: relative; display: grid; place-items: center; }
.orbit { position: absolute; border-radius: 50%; background: conic-gradient(from 210deg, transparent 0 12%, rgba(24,216,244,.7) 27%, rgba(121,71,255,.58) 44%, rgba(237,78,232,.5) 58%, transparent 76%); -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 1px), #000 0); mask: radial-gradient(farthest-side, transparent calc(100% - 1px), #000 0); opacity: .5; animation: orbitGlow 16s linear infinite; }.orbit-one { width: 560px; height: 560px; }.orbit-two { width: 410px; height: 410px; animation-direction: reverse; animation-duration: 12s; opacity: .65; }.orbit-three { width: 285px; height: 285px; animation-duration: 9s; opacity: .42; }
@keyframes orbitGlow { to { transform: rotate(360deg); } }
.phone-shell { width: 292px; min-height: 590px; position: relative; z-index: 2; padding: 9px; border: 0; border-radius: 48px; background: linear-gradient(145deg, #7b8da8 0%, #1a2739 20%, #03070d 66%, #6958cb 118%); box-shadow: 0 50px 105px rgba(0,0,0,.67), 0 0 54px rgba(11,99,246,.18), -18px 18px 70px rgba(121,71,255,.12); transform: rotate(3deg); }
.phone-shell::before { content: ""; position: absolute; z-index: 5; inset: 3px; border: 1px solid rgba(255,255,255,.18); border-radius: 45px; box-shadow: inset 2px 2px 5px rgba(255,255,255,.08), inset -3px -3px 8px rgba(0,0,0,.6); pointer-events: none; }
.phone-top { height: 28px; display: flex; align-items: center; gap: 6px; padding-inline: 15px; color: #e3eaf4; font-size: 10px; }.phone-top i { width: 62px; height: 18px; margin: auto; border-radius: 15px; background: #000; }.phone-top b { width: 16px; height: 7px; border: 1px solid #8090a5; border-radius: 3px; }
.recording-view { min-height: 535px; position: relative; overflow: hidden; border-radius: 36px; background: #0a1525; box-shadow: inset 0 0 28px rgba(0,0,0,.5); }
.recording-view::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(118deg, rgba(255,255,255,.13) 0%, transparent 20%, transparent 69%, rgba(24,216,244,.06) 100%); pointer-events: none; }
.camera-scene { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,17,31,.12) 0%, rgba(7,17,31,.02) 43%, rgba(7,17,31,.42) 100%), linear-gradient(90deg, rgba(11,99,246,.14), transparent 52%, rgba(237,78,232,.1)), url("./hero-promptcam.png") 73% center / auto 100% no-repeat; filter: saturate(1.06) contrast(1.04); opacity: .98; }
.recording-pill { position: absolute; z-index: 3; top: 20px; left: 50%; display: flex; align-items: center; gap: 6px; padding: 6px 10px; border: 1px solid rgba(255,255,255,.1); border-radius: 100px; background: rgba(5,10,18,.7); box-shadow: 0 8px 20px rgba(0,0,0,.25); backdrop-filter: blur(8px); transform: translateX(-50%); font-size: 8px; font-weight: 800; letter-spacing: .12em; }.recording-pill span:first-child { width: 6px; height: 6px; border-radius: 50%; background: #ff5a5f; box-shadow: 0 0 0 4px rgba(255,90,95,.12); }
.teleprompter-lines { position: absolute; z-index: 3; left: 13px; right: 13px; top: 212px; padding: 16px 14px 17px; border: 1px solid rgba(255,255,255,.13); border-radius: 17px; background: linear-gradient(115deg, rgba(5,10,18,.82), rgba(12,22,39,.65)); box-shadow: 0 18px 40px rgba(0,0,0,.25); backdrop-filter: blur(9px); text-align: center; }.teleprompter-lines p { margin: 7px 0; color: rgba(255,255,255,.48); font-size: 12px; line-height: 1.35; }.teleprompter-lines p.active { color: var(--white); font-size: 15px; font-weight: 760; text-shadow: 0 0 18px rgba(24,216,244,.22); }.teleprompter-lines p.active::after { content: ""; display: block; width: 46px; height: 2px; margin: 9px auto 0; border-radius: 2px; background: linear-gradient(90deg, var(--pink), var(--violet), var(--cyan)); }
.record-controls { position: absolute; z-index: 3; bottom: 24px; left: 0; right: 0; display: grid; place-items: center; }.record-controls button { width: 50px; height: 50px; border: 3px solid var(--white); border-radius: 50%; background: #ff4d52; box-shadow: inset 0 0 0 5px #151e2b, 0 8px 22px rgba(0,0,0,.35); }
.audio-float { position: absolute; z-index: 4; right: -34px; bottom: 112px; display: flex; align-items: center; gap: 13px; width: 300px; padding: 15px 17px; border: 1px solid transparent; border-radius: 20px; background: linear-gradient(rgba(8,20,36,.91), rgba(8,20,36,.91)) padding-box, linear-gradient(110deg, rgba(24,216,244,.6), rgba(121,71,255,.7), rgba(237,78,232,.55)) border-box; box-shadow: 0 24px 58px rgba(0,0,0,.48), 0 0 30px rgba(121,71,255,.1); backdrop-filter: blur(20px); }.audio-float small { display: block; color: var(--lime); font-size: 8px; font-weight: 800; letter-spacing: .15em; }.audio-float strong { display: block; margin-top: 4px; font-size: 13px; }.earbud-mini { width: 38px; height: 38px; display: grid; flex: none; place-items: center; border-radius: 12px; background: var(--lime); color: var(--ink); box-shadow: 0 0 22px rgba(183,255,74,.2); }.earbud-mini svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.mini-wave { display: flex; align-items: center; gap: 2px; margin-left: auto; }.mini-wave i { height: 8px; background: linear-gradient(180deg, var(--cyan), var(--violet)); }.mini-wave i:nth-child(2) { height: 17px; }.mini-wave i:nth-child(3) { height: 12px; }

.how-section { background: var(--paper); }
.how-section .section-heading { display: block; }.how-section .section-heading .kicker { margin-bottom: 22px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 0; margin: 70px 0 0; list-style: none; }
.steps li { min-height: 270px; padding: 28px 0; border-top: 1px solid var(--line-light); }
.step-index { color: var(--blue); font-size: 12px; font-weight: 850; letter-spacing: .14em; }
.step-line { width: 44px; height: 3px; margin: 65px 0 28px; background: var(--lime); }
.steps h3 { margin: 0; font-size: 28px; letter-spacing: -.03em; }.steps p { max-width: 310px; margin: 14px 0 0; color: #5d6b7f; }

.coach-section { background: var(--white); }
.coach-layout { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 100px; }
.coach-dashboard { position: relative; min-height: 610px; padding: 28px; overflow: hidden; border: 1px solid #dbe3ed; border-radius: 34px; background: #f0f4fa; box-shadow: 0 35px 90px rgba(22,42,72,.13); }
.coach-dashboard::after { content: ""; position: absolute; inset: auto -80px -100px auto; width: 300px; height: 300px; border-radius: 50%; background: rgba(11,99,246,.13); filter: blur(45px); }
.dashboard-top { display: flex; align-items: center; gap: 12px; }.dashboard-top small, .assignment-card small { display: block; color: #75839a; font-size: 9px; font-weight: 800; letter-spacing: .14em; }.dashboard-top strong { display: block; font-size: 15px; }.coach-avatar { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; background: var(--ink); color: var(--lime); font-size: 12px; font-weight: 900; }.level-pill { margin-left: auto; padding: 7px 10px; border-radius: 100px; background: var(--white); color: var(--blue); font-size: 10px; font-weight: 750; }
.progress-card { margin-top: 26px; padding: 28px; border-radius: 24px; background: var(--ink); color: var(--white); }.progress-top { display: flex; justify-content: space-between; color: #8e9db2; font-size: 11px; }.progress-top strong { color: var(--lime); }.progress-card h4 { margin: 18px 0 22px; font-size: 26px; letter-spacing: -.035em; }.progress-bar { height: 7px; overflow: hidden; border-radius: 10px; background: #24334a; }.progress-bar i { display: block; width: 42%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--blue), var(--violet), var(--cyan)); }.progress-card p { margin: 15px 0 0; color: #91a0b6; font-size: 12px; }
.assignment-card { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; margin-top: 16px; padding: 21px; border-radius: 20px; background: var(--white); }.assignment-card > div { display: flex; align-items: center; gap: 13px; }.assignment-card strong { display: block; margin-top: 4px; font-size: 13px; }.play-icon { width: 37px; height: 37px; display: grid; place-items: center; border-radius: 12px; background: var(--lime); font-size: 11px; }.score { color: var(--blue); font-size: 20px; font-weight: 850; }
.coach-note { position: relative; z-index: 2; display: grid; grid-template-columns: auto 1fr; gap: 10px; margin-top: 16px; padding: 23px; border: 1px solid #dce4ee; border-radius: 20px; background: rgba(255,255,255,.72); }.coach-note > span { color: var(--blue); font-size: 42px; line-height: .8; }.coach-note p { margin: 0; color: #536276; font-size: 14px; }
.coach-copy h2 { max-width: 560px; }.coach-copy > p:not(.kicker) { max-width: 530px; margin: 28px 0 0; color: #5e6d81; font-size: 17px; }.program-list { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 32px; }.program-list span { padding: 9px 13px; border: 1px solid var(--line-light); border-radius: 100px; background: #f8fafc; color: #344258; font-size: 12px; font-weight: 700; }.text-link-dark { margin-top: 30px; color: var(--ink); }.text-link-dark:hover { color: var(--blue); }

.library-header { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 50px; margin-bottom: 54px; }.library-header .kicker { margin-bottom: 22px; }.library-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.library-card { min-height: 335px; display: flex; flex-direction: column; padding: 29px; border: 1px solid var(--line-light); border-radius: var(--radius); background: var(--white); }.library-card-top { display: flex; align-items: center; gap: 11px; color: #617086; font-size: 12px; font-weight: 750; }.library-icon { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 9px; background: #eaf0f8; color: var(--blue); font-weight: 900; }.library-card h3 { margin: 48px 0 0; font-size: 25px; letter-spacing: -.035em; }.library-card > p { margin: 12px 0 0; color: #69778a; font-size: 14px; }.template-lines { display: grid; gap: 9px; margin-top: auto; }.template-lines i { width: 100%; height: 8px; border-radius: 6px; background: #e6ebf2; }.template-lines i:nth-child(2) { width: 76%; }.template-lines i:nth-child(3) { width: 89%; }
.library-card-blue { background: linear-gradient(145deg, var(--blue), var(--violet)); color: var(--white); }.library-card-blue .library-card-top, .library-card-blue > p { color: #d7ddff; }.library-card-blue .library-icon { background: rgba(255,255,255,.15); color: var(--white); }.result-row { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.2); font-size: 12px; }.result-row strong { color: var(--lime); font-size: 20px; }
.library-card-accent { background: linear-gradient(145deg, var(--violet), var(--pink)); color: var(--white); }.library-card-accent .quote-mark { color: #bff8ff; font-size: 64px; line-height: .6; }.library-card-accent h3 { margin-top: 45px; font-size: 25px; line-height: 1.25; }.library-card-accent > p { margin-top: auto; color: #f9dcff; font-weight: 750; }

.audience-section { background: var(--ink); color: var(--white); }.audience-section .section-heading { display: block; }.audience-section .section-heading .kicker { margin-bottom: 22px; }.audience-section .section-heading h2 { max-width: 760px; }.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }.audience-grid article { min-height: 275px; padding: 27px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }.audience-grid article > span { color: var(--cyan); font-size: 11px; font-weight: 850; letter-spacing: .15em; }.audience-grid h3 { margin: 95px 0 0; font-size: 25px; }.audience-grid p { margin: 12px 0 0; color: #8f9db1; font-size: 14px; }

.faq-section { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; }.faq-heading .kicker { margin-bottom: 22px; }.faq-list { border-top: 1px solid var(--line-light); }.faq-list details { border-bottom: 1px solid var(--line-light); }.faq-list summary { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-size: 18px; font-weight: 750; }.faq-list summary::-webkit-details-marker { display: none; }.faq-list summary i { width: 16px; height: 16px; position: relative; flex: none; }.faq-list summary i::before, .faq-list summary i::after { content: ""; position: absolute; left: 0; top: 7px; width: 16px; height: 2px; background: var(--blue); transition: transform .2s ease; }.faq-list summary i::after { transform: rotate(90deg); }.faq-list details[open] summary i::after { transform: rotate(0); }.faq-list details p { max-width: 660px; margin: -5px 48px 25px 0; color: #5b697d; }

.closing-section { padding-bottom: 48px; }.closing-card { position: relative; overflow: hidden; padding: 90px 48px; border-radius: 34px; background: linear-gradient(135deg, var(--blue) 0%, var(--violet) 64%, var(--pink) 125%); color: var(--white); text-align: center; }.closing-card .kicker { color: var(--lime); }.closing-card h2 { max-width: 820px; margin-inline: auto; }.closing-card > p:not(.kicker) { max-width: 610px; margin: 24px auto 0; color: #e6e9ff; font-size: 17px; }.closing-orb { position: absolute; width: 420px; height: 420px; right: -150px; top: -220px; border-radius: 50%; background: var(--cyan); filter: blur(20px); opacity: .25; }
.availability-actions { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.store-badge { width: 178px; min-height: 60px; display: flex; align-items: center; gap: 11px; padding: 9px 14px; border: 1px solid rgba(255,255,255,.24); border-radius: 13px; background: rgba(4,8,15,.93); color: var(--white); box-shadow: 0 14px 32px rgba(5,8,20,.25), inset 0 1px 0 rgba(255,255,255,.08); text-align: left; }
.store-badge > svg { width: 31px; height: 34px; flex: none; }.store-badge > span { display: block; min-width: 0; }.store-badge small { display: block; margin-bottom: 2px; color: #aeb8ca; font-size: 8px; line-height: 1; font-weight: 800; letter-spacing: .12em; }.store-badge strong { display: block; color: var(--white); font-size: 18px; line-height: 1.1; font-weight: 650; letter-spacing: -.025em; white-space: nowrap; }
.store-badge.is-coming { opacity: .78; }.store-badge.is-coming small { color: #d6cfff; }
.footer { background: var(--ink); color: #8796ab; }
.footer-main { display: grid; grid-template-columns: 1.15fr .7fr .95fr .95fr .8fr; gap: 34px; padding-block: 58px 46px; }
.footer-brand { max-width: 260px; }.footer-brand > p { margin: 14px 0 0; color: #8f9db1; font-size: 14px; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; }.footer-column h3 { margin: 4px 0 20px; color: var(--white); font-size: 11px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }.footer-column > a, .footer-column > .footer-cookie-settings, .footer-links a { color: #8f9db1; font-size: 13px; line-height: 1.35; transition: color .2s ease; }.footer-column > a + a, .footer-column > a + button, .footer-column > button + a, .footer-links a + a { margin-top: 12px; }.footer-column > a:hover, .footer-column > .footer-cookie-settings:hover, .footer-links a:hover { color: var(--white); }.footer-links { display: flex; flex-direction: column; align-items: flex-start; }
.footer-bottom { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid var(--line-dark); font-size: 12px; }.footer-bottom p { margin: 0; }
.legal-footer-links a, .footer-cookie-settings { color: #8f9db1; font-size: 12px; transition: color .2s ease; }.legal-footer-links a:hover, .footer-cookie-settings:hover { color: var(--white); }
.footer-cookie-settings { padding: 0; border: 0; background: transparent; cursor: pointer; }
.footer-language-button { display: inline-flex; align-items: center; gap: 8px; padding: 0; border: 0; background: transparent; color: #8f9db1; font-family: inherit; font-size: 13px; font-weight: 400; line-height: 1.35; cursor: pointer; transition: color .2s ease; }.footer-language-button:hover { color: var(--white); }.footer-language-button:focus-visible { outline: 2px solid var(--cyan); outline-offset: 5px; border-radius: 2px; }.footer-language-button svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; }

.guides-main, .article-main { padding-top: 78px; }
.guides-hero { position: relative; overflow: hidden; padding-block: 108px 88px; background: var(--ink); color: var(--white); }.guides-hero::after { content: ""; position: absolute; width: 520px; height: 520px; right: -110px; top: -260px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--violet), var(--pink)); filter: blur(90px); opacity: .3; }.guides-hero .shell { position: relative; z-index: 1; }.guides-hero h1 { max-width: 820px; margin: 0; font-size: clamp(50px, 7vw, 92px); line-height: .92; letter-spacing: -.065em; }.guides-hero > .shell > p:last-child { max-width: 620px; margin: 28px 0 0; color: #abb8ca; font-size: 18px; }
.guides-list-section { padding-block: 92px 120px; }.articles-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }.article-card { min-height: 330px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line-light); border-radius: var(--radius); background: var(--white); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }.article-card:hover { transform: translateY(-5px); border-color: rgba(11,99,246,.25); box-shadow: 0 24px 54px rgba(27,47,78,.1); }.article-card-meta { display: flex; align-items: center; justify-content: space-between; color: #718097; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }.article-card-index { color: var(--blue); }.article-card h2 { margin: 58px 0 0; font-size: 30px; line-height: 1.08; letter-spacing: -.04em; }.article-card p { margin: 16px 0 0; color: #66758a; }.article-card-link { display: inline-flex; align-items: center; gap: 9px; margin-top: auto; padding-top: 26px; color: var(--blue); font-size: 13px; font-weight: 800; }
.article-detail-hero { position: relative; overflow: hidden; padding-block: 82px 76px; background: var(--ink); color: var(--white); }.article-detail-hero::after { content: ""; position: absolute; width: 430px; height: 430px; right: -90px; bottom: -260px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--violet), var(--pink)); filter: blur(75px); opacity: .34; }.article-detail-hero .shell { position: relative; z-index: 1; }.back-link { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 52px; color: #b6c2d2; font-size: 13px; font-weight: 750; }.back-link:hover { color: var(--white); }.article-category { margin: 0 0 18px; color: var(--lime); font-size: 11px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }.article-detail-hero h1 { max-width: 940px; margin: 0; font-size: clamp(44px, 6.3vw, 78px); line-height: .98; letter-spacing: -.06em; }.article-deck { max-width: 720px; margin: 25px 0 0; color: #b1bed0; font-size: 18px; }.article-meta { display: flex; gap: 18px; margin-top: 30px; color: #7f8da3; font-size: 12px; }
.article-content { max-width: 820px; padding-block: 82px 108px; }.article-lead { margin: 0 0 56px; color: #314056; font-size: 22px; line-height: 1.65; }.article-step { padding-block: 38px; border-top: 1px solid var(--line-light); }.article-step-index { display: inline-block; margin-bottom: 16px; color: var(--blue); font-size: 11px; font-weight: 850; letter-spacing: .14em; }.article-step h2 { margin: 0; font-size: 31px; line-height: 1.15; letter-spacing: -.04em; }.article-step p { margin: 16px 0 0; color: #536277; font-size: 17px; line-height: 1.75; }.article-takeaway { margin-top: 42px; padding: 30px; border-radius: 22px; background: linear-gradient(135deg, #eaf2ff, #f5ecff); }.article-takeaway strong { display: block; color: var(--violet); font-size: 11px; letter-spacing: .13em; text-transform: uppercase; }.article-takeaway p { margin: 10px 0 0; color: #2f3d52; font-size: 18px; line-height: 1.6; }.next-article { padding-block: 56px 76px; background: var(--white); }.next-article-card { display: flex; align-items: end; justify-content: space-between; gap: 30px; padding: 38px; border-radius: 26px; background: var(--ink); color: var(--white); }.next-article-card small { color: var(--lime); font-size: 10px; font-weight: 850; letter-spacing: .14em; }.next-article-card h2 { max-width: 620px; margin: 13px 0 0; font-size: 31px; line-height: 1.1; letter-spacing: -.04em; }.next-article-card > span { font-size: 28px; color: var(--cyan); }

.legal-main { padding-top: 78px; background: var(--paper); }
.legal-hero { position: relative; overflow: hidden; padding-block: 86px 72px; background: var(--ink); color: var(--white); }
.legal-hero::after { content: ""; position: absolute; width: 520px; height: 520px; right: -120px; top: -300px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--violet), var(--pink)); filter: blur(90px); opacity: .32; }
.legal-hero-inner { position: relative; z-index: 1; display: flex; align-items: flex-end; justify-content: space-between; gap: 42px; }
.legal-hero h1 { max-width: 900px; margin: 0; font-size: clamp(46px, 6.4vw, 82px); line-height: .95; letter-spacing: -.06em; }
.legal-version { margin: 24px 0 0; color: #94a3b8; font-size: 14px; }
.legal-layout { padding-block: 82px 112px; }
.legal-document { width: min(780px, 100%); margin-inline: 0; }
.legal-document { min-width: 0; }.legal-intro { margin: 0; color: #2f3e53; font-size: 21px; line-height: 1.7; }
.legal-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }.legal-actions .button { min-height: 46px; }
.legal-section { padding-block: 36px; border-top: 1px solid var(--line-light); }.legal-actions + .legal-section, .legal-intro + .legal-section { margin-top: 52px; }
.legal-section h2 { margin: 0; font-size: 29px; line-height: 1.15; letter-spacing: -.035em; }
.legal-section p { margin: 17px 0 0; color: #536277; font-size: 17px; line-height: 1.78; }
.legal-section ol { display: grid; gap: 13px; margin: 20px 0 0; padding-left: 25px; color: #536277; font-size: 17px; line-height: 1.68; }
.legal-footer-main { display: flex; align-items: flex-start; justify-content: space-between; gap: 60px; padding-block: 48px 40px; }
.legal-footer-links { max-width: 580px; display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 14px 24px; }

.cookie-banner { position: fixed; z-index: 300; left: 50%; bottom: 18px; width: min(900px, calc(100% - 32px)); padding: 20px; border: 1px solid rgba(255,255,255,.16); border-radius: 22px; background: rgba(7,17,31,.97); color: var(--white); box-shadow: 0 28px 90px rgba(0,0,0,.42); backdrop-filter: blur(22px); transform: translateX(-50%); }
.cookie-banner[hidden] { display: none; }.cookie-banner-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; }
.cookie-banner h2 { margin: 0; font-size: 18px; letter-spacing: -.02em; }.cookie-banner p { max-width: 590px; margin: 7px 0 0; color: #a7b4c6; font-size: 13px; line-height: 1.55; }.cookie-banner p a { color: var(--cyan); }
.cookie-actions { display: flex; align-items: center; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.cookie-button { min-height: 40px; padding: 0 14px; border: 1px solid var(--line-dark); border-radius: 100px; background: transparent; color: #d5deeb; cursor: pointer; font-size: 12px; font-weight: 750; }
.cookie-button:hover { border-color: rgba(255,255,255,.35); color: var(--white); }.cookie-button-primary { border-color: transparent; background: var(--lime); color: var(--ink); }.cookie-button-primary:hover { color: var(--ink); box-shadow: 0 10px 28px rgba(183,255,74,.2); }
.cookie-dialog { width: min(560px, calc(100% - 24px)); max-height: calc(100dvh - 24px); padding: 0; overflow: hidden; border: 1px solid #d9dce2; border-radius: 20px; background: #fff; color: #15171a; box-shadow: 0 26px 90px rgba(0,0,0,.3); }
.cookie-dialog::backdrop { background: rgba(7,17,31,.65); backdrop-filter: blur(5px); }.cookie-dialog-panel { max-height: calc(100dvh - 26px); overflow-y: auto; padding: 26px; }
.cookie-dialog-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }.cookie-dialog-top h2 { margin: 0; font-size: 25px; letter-spacing: -.035em; }
.cookie-dialog-close { width: 36px; height: 36px; border: 0; border-radius: 10px; background: #f1f3f6; color: #5d6470; cursor: pointer; font-size: 22px; line-height: 1; }
.cookie-dialog-copy { margin: 12px 0 22px; color: #687282; font-size: 14px; }
.cookie-category { display: grid; grid-template-columns: 1fr auto; gap: 16px; padding: 18px 0; border-top: 1px solid #e2e5e9; }.cookie-category strong, .cookie-category span { display: block; }.cookie-category strong { font-size: 15px; }.cookie-category span { margin-top: 4px; color: #717985; font-size: 12px; line-height: 1.45; }
.cookie-switch { position: relative; width: 44px; height: 25px; align-self: center; }.cookie-switch input { position: absolute; opacity: 0; pointer-events: none; }.cookie-switch i { position: absolute; inset: 0; border-radius: 30px; background: #c9ced6; transition: background .2s ease; }.cookie-switch i::after { content: ""; position: absolute; width: 19px; height: 19px; left: 3px; top: 3px; border-radius: 50%; background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.22); transition: transform .2s ease; }.cookie-switch input:checked + i { background: var(--blue); }.cookie-switch input:checked + i::after { transform: translateX(19px); }.cookie-switch input:focus-visible + i { outline: 3px solid rgba(11,99,246,.28); outline-offset: 2px; }.cookie-switch.is-locked i { background: #79a7f8; opacity: .65; }
.cookie-dialog-actions { display: flex; justify-content: flex-end; gap: 9px; margin-top: 22px; }.cookie-dialog-actions .cookie-button { color: #3b4656; border-color: #d7dbe1; }.cookie-dialog-actions .cookie-button-primary { color: var(--ink); border-color: transparent; }

.language-dialog { width: min(460px, calc(100% - 32px)); max-height: calc(100dvh - 32px); padding: 0; overflow: hidden; border: 1px solid #d9dce2; border-radius: 18px; background: #fff; color: #15171a; box-shadow: 0 24px 70px rgba(0,0,0,.24); }.language-dialog::backdrop { background: rgba(8,14,24,.5); backdrop-filter: blur(4px); }.language-dialog[open] { animation: language-dialog-in .16s ease-out; }
.language-dialog-panel { max-height: calc(100dvh - 34px); display: flex; flex-direction: column; padding: 0; }.language-dialog-top { min-height: 62px; display: flex; flex: none; align-items: center; justify-content: space-between; gap: 20px; padding: 0 18px 0 20px; border-bottom: 1px solid #e7e9ed; }.language-dialog-top h2 { margin: 0; font-size: 18px; font-weight: 650; line-height: 1.2; letter-spacing: -.01em; }.language-dialog-close { width: 34px; height: 34px; flex: none; border: 0; border-radius: 9px; background: transparent; color: #646970; cursor: pointer; font-size: 23px; line-height: 1; }.language-dialog-close:hover { background: #f0f1f3; color: #111317; }.language-dialog-close:focus-visible { outline: 2px solid var(--blue); outline-offset: 1px; }
.language-options { display: flex; flex-direction: column; overflow-y: auto; overscroll-behavior: contain; padding: 6px; scrollbar-color: #c4c8cf transparent; scrollbar-width: thin; }.language-option { min-height: 64px; display: grid; grid-template-columns: 1fr 24px; align-items: center; gap: 12px; padding: 8px 14px; border: 0; border-radius: 10px; background: transparent; color: #202328; cursor: pointer; text-align: start; transition: background .15s ease; }.language-option:hover { background: #f2f3f5; }.language-option.is-current { background: #f2f3f5; }.language-option:focus-visible { outline: 2px solid var(--blue); outline-offset: -2px; }.language-option-label { min-width: 0; display: flex; flex-direction: column; gap: 3px; }.language-option-label strong { font-size: 15px; font-weight: 550; line-height: 1.25; }.language-option-label small { color: #6d737c; font-size: 13px; line-height: 1.25; }.language-option-check { color: var(--blue); font-size: 17px; font-weight: 750; text-align: center; }
@keyframes language-dialog-in { from { opacity: 0; transform: translateY(8px) scale(.99); } to { opacity: 1; transform: translateY(0) scale(1); } }

.language-suggestion { position: fixed; z-index: 220; left: 50%; bottom: 24px; width: min(680px, calc(100% - 32px)); display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 20px; border: 1px solid rgba(255,255,255,.16); border-radius: 20px; background: rgba(7,17,31,.96); color: var(--white); box-shadow: 0 24px 70px rgba(0,0,0,.38); backdrop-filter: blur(20px); opacity: 0; transform: translate(-50%, 20px); transition: opacity .22s ease, transform .22s ease; }
.language-suggestion.is-visible { opacity: 1; transform: translate(-50%, 0); }
.language-suggestion strong, .language-suggestion span { display: block; }.language-suggestion strong { font-size: 15px; }.language-suggestion span { margin-top: 3px; color: #9eabc0; font-size: 12px; }
.language-suggestion-actions { display: flex; align-items: center; gap: 8px; flex: none; }.language-suggestion button { min-height: 38px; padding: 0 13px; border: 1px solid var(--line-dark); border-radius: 100px; background: transparent; color: #c8d1df; cursor: pointer; font-size: 12px; font-weight: 750; }.language-suggestion .language-suggestion-primary { border-color: transparent; background: var(--lime); color: var(--ink); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.75,.2,1); }.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .site-nav { position: fixed; inset: 78px 0 auto 0; display: none; flex-direction: column; align-items: flex-start; gap: 0; padding: 18px 24px 26px; background: rgba(7,17,31,.98); border-bottom: 1px solid var(--line-dark); }
  .site-nav.is-open { display: flex; }.site-nav a { width: 100%; padding: 16px 0; border-bottom: 1px solid var(--line-dark); font-size: 16px; }
  .menu-button { width: 42px; height: 42px; display: grid; place-content: center; gap: 6px; order: 3; padding: 0; border: 1px solid var(--line-dark); border-radius: 50%; background: transparent; }.menu-button > span:not(.sr-only) { width: 18px; height: 1px; background: var(--white); transition: transform .2s ease; }.menu-button[aria-expanded="true"] > span:first-child { transform: translateY(3.5px) rotate(45deg); }.menu-button[aria-expanded="true"] > span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
  .header-actions .button { display: none; }.header-actions { margin-left: auto; }
  .hero { min-height: 810px; align-items: flex-start; }.hero-content { margin-top: 168px; }.hero-media img { object-position: 68% center; }.hero-vignette { background: linear-gradient(90deg, #07111f 0%, rgba(7,17,31,.91) 40%, rgba(7,17,31,.26) 100%), linear-gradient(0deg, #07111f 0%, transparent 42%); }.hero h1 { max-width: 640px; font-size: clamp(52px, 9vw, 82px); }.cue-card { bottom: 36px; }
  .section { padding-block: 94px; }.section-heading { grid-template-columns: 1fr; gap: 25px; }.section-heading .kicker { margin-bottom: -2px; }.product-grid { grid-template-columns: 1fr 1fr; }.feature-card-main { grid-column: 1 / -1; grid-row: auto; min-height: 650px; }.feature-card { min-height: 360px; }
  .earbud-layout, .coach-layout { grid-template-columns: 1fr; gap: 55px; }.earbud-copy h2, .coach-copy h2 { max-width: 760px; }.phone-stage { order: 2; }.coach-dashboard { max-width: 650px; width: 100%; margin-inline: auto; }.coach-copy { order: -1; }
  .library-header { grid-template-columns: 1fr; gap: 25px; }.library-grid { grid-template-columns: 1fr 1fr; }.library-card-accent { grid-column: 1 / -1; min-height: 260px; }
  .audience-grid { grid-template-columns: 1fr 1fr; }.faq-section { grid-template-columns: 1fr; gap: 45px; }.footer-main { grid-template-columns: 1fr 1fr; }.footer-brand { grid-column: 1 / -1; }.articles-grid { grid-template-columns: 1fr; }
  .cookie-banner-inner { grid-template-columns: 1fr; }.cookie-actions { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 32px, 1180px); }.header-inner { height: 70px; gap: 10px; }.site-nav { top: 70px; }.brand-logo { width: 143px; }
  .hero { min-height: 850px; }.hero-media img { object-position: 70% 34%; opacity: .66; }.hero-vignette { background: linear-gradient(0deg, #07111f 0%, rgba(7,17,31,.94) 43%, rgba(7,17,31,.2) 100%), linear-gradient(90deg, rgba(7,17,31,.65), transparent); }.hero-content { width: calc(100% - 32px); margin-top: 118px; }.hero h1 { font-size: clamp(46px, 15vw, 68px); line-height: .92; }.hero-copy { margin-top: 24px; font-size: 16px; }.hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; margin-top: 27px; }.hero-proof { margin-top: 20px; }.cue-card { left: 16px; right: 16px; bottom: 25px; width: auto; padding: 18px; }.cue-card p { font-size: 16px; }
  .signal-inner { min-height: 84px; justify-content: center; text-align: center; }.signal-inner span:not(:first-child), .signal-inner i { display: none; }
  .section { padding-block: 76px; }.section-heading { margin-bottom: 38px; }.section-heading h2, .earbud-copy h2, .coach-copy h2, .library-header h2, .faq-heading h2, .closing-card h2 { font-size: 40px; }.product-grid { grid-template-columns: 1fr; }.feature-card-main { grid-column: auto; min-height: 590px; }.feature-card { padding: 26px; }.feature-card h3 { font-size: 27px; }.feature-card-main h3 { font-size: 37px; }.script-preview { min-height: 300px; margin-left: 15px; padding: 30px 24px; }.icon-box { margin-top: 55px; }
  .earbud-layout { gap: 20px; }.phone-stage { min-height: 610px; transform: scale(.92); margin-inline: -18px; }.orbit-one { width: 480px; height: 480px; }.orbit-two { width: 350px; height: 350px; }.orbit-three { width: 250px; height: 250px; }.audio-float { right: -8px; bottom: 80px; width: 258px; padding: 13px 14px; }.audio-float strong { font-size: 12px; }.earbud-mini { width: 34px; height: 34px; }
  .steps { grid-template-columns: 1fr; gap: 0; margin-top: 40px; }.steps li { min-height: auto; padding: 24px 0 35px; }.step-line { margin: 32px 0 18px; }.coach-dashboard { min-height: auto; padding: 18px; border-radius: 25px; }.progress-card { padding: 22px; }.assignment-card { padding: 17px; }.score { font-size: 16px; }.program-list { gap: 7px; }.library-grid { grid-template-columns: 1fr; }.library-card, .library-card-accent { grid-column: auto; min-height: 300px; }
  .audience-grid { grid-template-columns: 1fr; }.audience-grid article { min-height: 220px; }.audience-grid h3 { margin-top: 60px; }.faq-list summary { font-size: 16px; }.closing-section { width: 100%; padding-bottom: 0; }.closing-card { padding: 72px 22px; border-radius: 0; }.availability-actions { flex-direction: column; }.store-badge { width: 190px; }.footer-main { grid-template-columns: 1fr; gap: 38px; padding-block: 58px 48px; }.footer-brand { max-width: none; grid-column: auto; }.footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 11px; padding-block: 18px; }.guides-main, .article-main { padding-top: 70px; }.guides-hero { padding-block: 78px 64px; }.guides-hero h1 { font-size: 52px; }.guides-list-section { padding-block: 58px 78px; }.article-card { min-height: 300px; padding: 25px; }.article-card h2 { margin-top: 42px; font-size: 27px; }.article-detail-hero { padding-block: 58px 54px; }.back-link { margin-bottom: 38px; }.article-detail-hero h1 { font-size: 43px; }.article-content { padding-block: 58px 76px; }.article-lead { font-size: 19px; }.article-step h2 { font-size: 27px; }.next-article-card { align-items: flex-start; flex-direction: column; padding: 28px; }
  .legal-main { padding-top: 70px; }.legal-hero { padding-block: 62px 52px; }.legal-hero-inner { align-items: flex-start; flex-direction: column; gap: 28px; }.legal-hero h1 { font-size: 45px; }.legal-layout { padding-block: 44px 74px; }.legal-intro { font-size: 18px; }.legal-section { padding-block: 30px; }.legal-section h2 { font-size: 25px; }.legal-section p, .legal-section ol { font-size: 16px; }.legal-footer-main { align-items: flex-start; flex-direction: column; gap: 28px; padding-block: 42px 34px; }.legal-footer-links { justify-content: flex-start; }
  .cookie-banner { bottom: 8px; width: calc(100% - 16px); padding: 17px; border-radius: 18px; }.cookie-actions { align-items: stretch; flex-direction: column; }.cookie-button { width: 100%; }.cookie-dialog-panel { padding: 20px; }.cookie-dialog-actions { flex-direction: column-reverse; }.cookie-dialog-actions .cookie-button { width: 100%; }
  .language-dialog { width: calc(100% - 16px); max-height: calc(100dvh - 16px); border-radius: 16px; }.language-dialog-panel { max-height: calc(100dvh - 18px); }.language-dialog-top { min-height: 58px; }.language-option { min-height: 62px; }
  .language-suggestion { align-items: stretch; flex-direction: column; gap: 14px; bottom: 16px; }.language-suggestion-actions { justify-content: flex-end; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
