:root {
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --soft: #f8fafc;
  --indigo: #4f46e5;
  --indigo-2: #6366f1;
  --violet: #7c3aed;
  --purple: #9333ea;
  --green: #059669;
  --amber: #d97706;
  --shadow: 0 26px 70px rgba(15, 23, 42, .14), 0 5px 18px rgba(79, 70, 229, .08);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html, body { width: 100%; height: 100%; margin: 0; }
body {
  overflow: hidden;
  background: #eef2f8;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, a, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }

.ambient { position: fixed; inset: 0; overflow: hidden; pointer-events: none; }
.ambient::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("assets/orbit-grid.svg"); opacity: .36;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}
.ambient__orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .35; }
.ambient__orb--one { width: 32vw; height: 32vw; left: -11vw; top: -10vw; background: #c4b5fd; }
.ambient__orb--two { width: 38vw; height: 38vw; right: -12vw; top: 8vh; background: #bfdbfe; }
.ambient__orb--three { width: 28vw; height: 28vw; left: 38vw; bottom: -20vw; background: #ddd6fe; }

.demo-shell {
  position: relative; width: 100%; height: 100%; min-width: 320px;
  background:
    radial-gradient(circle at 69% 48%, rgba(124, 58, 237, .055), transparent 35%),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(248,250,252,.95));
  overflow: hidden; isolation: isolate;
}
.demo-shell::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .45;
  background-image: radial-gradient(#cbd5e1 1px, transparent 1px); background-size: 28px 28px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.65), transparent 28%, transparent 75%, rgba(0,0,0,.45));
}

/* Header and player */
.demo-header {
  position: absolute; z-index: 50; top: 0; left: 0; width: 100%; height: 78px;
  display: flex; align-items: center; justify-content: space-between; padding: 0 4.1vw;
  border-bottom: 1px solid rgba(226, 232, 240, .8); background: rgba(255,255,255,.72); backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); font-size: 21px; font-weight: 800; letter-spacing: -.7px; text-decoration: none; }
.brand img { width: 31px; height: 31px; }
.brand > span > span { color: var(--violet); }
.scene-indicator { position: absolute; left: 50%; display: flex; align-items: center; gap: 12px; transform: translateX(-50%); color: #64748b; font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.scene-indicator__number { color: var(--indigo); font-variant-numeric: tabular-nums; }
.scene-indicator__line { width: 34px; height: 1px; background: #cbd5e1; }
.header-pill { display: flex; align-items: center; gap: 8px; border: 1px solid #e0e7ff; border-radius: 999px; background: #f5f3ff; padding: 8px 12px; color: #5b21b6; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.header-pill span, .ai-status i, .live-pill i { width: 6px; height: 6px; border-radius: 50%; background: #8b5cf6; box-shadow: 0 0 0 4px rgba(139,92,246,.13); }

.player {
  position: absolute; z-index: 60; bottom: 0; left: 0; width: 100%; height: 82px; padding: 0 4.1vw;
  display: grid; grid-template-columns: 235px 1fr 44px; align-items: center; gap: 24px;
  border-top: 1px solid rgba(226, 232, 240, .88); background: rgba(255,255,255,.86); backdrop-filter: blur(22px);
  transition: transform .4s var(--ease), opacity .4s ease;
}
.player__controls { display: flex; align-items: center; gap: 8px; }
.icon-button, .fullscreen-button { width: 35px; height: 35px; border: 1px solid #e2e8f0; border-radius: 10px; background: #fff; cursor: pointer; display: grid; place-items: center; font-size: 17px; transition: .2s ease; }
.icon-button:hover, .fullscreen-button:hover { border-color: #c7d2fe; color: var(--indigo); transform: translateY(-1px); }
#playPauseButton { border: 0; background: var(--ink); color: #fff; }
.control-play { width: 0; height: 0; margin-left: 2px; border-top: 5px solid transparent; border-bottom: 5px solid transparent; border-left: 8px solid currentColor; }
.control-pause { position: relative; width: 10px; height: 12px; border-left: 3px solid currentColor; border-right: 3px solid currentColor; }
.audio-button { height: 35px; display: flex; align-items: center; gap: 7px; border: 0; border-radius: 9px; background: transparent; padding: 0 7px; color: #64748b; cursor: pointer; font-size: 11px; font-weight: 700; }
.audio-button:hover { background: #f1f5f9; color: var(--ink); }
.audio-button[aria-pressed="true"] { color: var(--indigo); }
.timeline-wrap { min-width: 0; }
.timeline-meta { display: flex; justify-content: space-between; margin-bottom: 9px; color: #64748b; font-size: 10px; font-weight: 700; letter-spacing: .02em; }
.timeline-meta > span:first-child { color: #334155; }
.timeline-meta b { color: var(--indigo); font-variant-numeric: tabular-nums; }
.timeline { position: relative; height: 5px; border-radius: 99px; background: #e2e8f0; cursor: pointer; }
.timeline__fill { position: absolute; inset: 0 auto 0 0; width: 0; border-radius: inherit; background: linear-gradient(90deg, var(--indigo), var(--violet), #a855f7); }
.timeline__thumb { position: absolute; z-index: 2; top: 50%; left: 0; width: 13px; height: 13px; border: 3px solid #fff; border-radius: 50%; background: var(--violet); box-shadow: 0 1px 5px rgba(76,29,149,.35); transform: translate(-50%, -50%); }
.timeline__markers i { position: absolute; top: 50%; width: 3px; height: 3px; border-radius: 50%; background: #fff; transform: translate(-50%, -50%); }
.fullscreen-button { justify-self: end; }

/* Scene framework */
.scene-stage { position: absolute; inset: 78px 0 82px; overflow: hidden; }
.scene { position: absolute; inset: 0; opacity: 0; visibility: hidden; pointer-events: none; transform: scale(1.015); transition: opacity .6s ease, transform .8s var(--ease), visibility 0s linear .65s; }
.scene.is-active { opacity: 1; visibility: visible; pointer-events: auto; transform: scale(1); transition-delay: 0s; }
.scene--product { display: grid; grid-template-columns: minmax(290px, .72fr) minmax(630px, 1.5fr); align-items: center; gap: clamp(34px, 4.2vw, 85px); padding: 4.1vh 4.1vw 3.7vh; }
.scene-copy { padding-left: 2.3vw; opacity: 0; transform: translateX(-28px); transition: opacity .6s ease .16s, transform .75s var(--ease) .16s; }
.scene.is-active .scene-copy { opacity: 1; transform: translateX(0); }
.eyebrow { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; color: var(--indigo); font-size: clamp(10px, .68vw, 13px); line-height: 1.2; font-weight: 900; letter-spacing: .15em; }
.eyebrow__spark { display: grid; place-items: center; width: 25px; height: 25px; border-radius: 8px; color: #fff; background: linear-gradient(135deg, var(--indigo), var(--violet)); font-size: 11px; box-shadow: 0 6px 16px rgba(79,70,229,.24); }
.eyebrow__icon { display: grid; place-items: center; width: 28px; height: 28px; border: 1px solid #ddd6fe; border-radius: 9px; background: #f5f3ff; color: var(--violet); font-size: 13px; }
.scene-copy h2, .scene--cta h2 { margin: 0; color: #0f172a; font-size: clamp(37px, 3.25vw, 65px); line-height: 1.04; letter-spacing: -.052em; font-weight: 820; }
.scene-copy h2 span, .scene--cta h2 span, .intro-title span { color: transparent; background: linear-gradient(105deg, #4f46e5 8%, #7c3aed 50%, #a855f7); background-clip: text; -webkit-background-clip: text; }
.scene-copy > p { max-width: 470px; margin: 22px 0 0; color: #64748b; font-size: clamp(14px, .98vw, 19px); line-height: 1.72; }
.safe-note { max-width: 450px; display: flex; align-items: center; gap: 10px; margin-top: 24px; border: 1px solid #e0e7ff; border-radius: 12px; background: rgba(238,242,255,.65); padding: 11px 13px; color: #475569; font-size: 11px; line-height: 1.4; font-weight: 650; }
.safe-note span { display: grid; place-items: center; flex: 0 0 20px; height: 20px; border-radius: 50%; background: #e0e7ff; color: var(--indigo); font-weight: 900; }

/* Intro */
.scene--intro { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; padding: 3vh 7.2vw 3vh 8.2vw; }
.intro-copy { position: relative; z-index: 2; }
.intro-title { margin: 0; font-size: clamp(52px, 5.1vw, 102px); line-height: .99; letter-spacing: -.063em; font-weight: 840; }
.intro-lede { max-width: 690px; margin: 27px 0 0; color: #64748b; font-size: clamp(16px, 1.12vw, 22px); line-height: 1.65; }
.intro-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.intro-tags span, .topic-row span { border: 1px solid #e2e8f0; border-radius: 999px; background: rgba(255,255,255,.84); padding: 9px 13px; color: #475569; font-size: 10px; font-weight: 750; box-shadow: 0 4px 15px rgba(15,23,42,.035); }
.reveal-item { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .8s var(--ease); }
.scene.is-active .reveal-item { opacity: 1; transform: translateY(0); }
.scene.is-active .reveal-item:nth-child(1) { transition-delay: .1s; }
.scene.is-active .reveal-item:nth-child(2) { transition-delay: .2s; }
.scene.is-active .reveal-item:nth-child(3) { transition-delay: .32s; }
.scene.is-active .reveal-item:nth-child(4) { transition-delay: .44s; }
.intro-visual { position: relative; height: min(69vh, 700px); min-height: 460px; opacity: 0; transform: translateX(40px) scale(.94); transition: opacity .8s ease .2s, transform 1s var(--ease) .2s; }
.scene.is-active .intro-visual { opacity: 1; transform: translateX(0) scale(1); }
.orbit { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(99,102,241,.18); border-radius: 50%; transform: translate(-50%, -50%); }
.orbit::after { content: ""; position: absolute; inset: 12%; border: 1px dashed rgba(139,92,246,.12); border-radius: 50%; }
.orbit--outer { width: min(36vw, 590px); height: min(36vw, 590px); animation: rotate 26s linear infinite; }
.orbit--inner { width: min(25vw, 410px); height: min(25vw, 410px); animation: rotateReverse 18s linear infinite; }
.orbit > span { position: absolute; width: 8px; height: 8px; border: 2px solid #fff; border-radius: 50%; background: #8b5cf6; box-shadow: 0 0 20px #8b5cf6; }
.orbit--outer span:first-child { left: 13%; top: 17%; }
.orbit--outer span:nth-child(2) { right: 5%; bottom: 30%; background: #38bdf8; }
.orbit--inner span { right: 8%; top: 30%; background: #6366f1; }
.hero-mark { position: absolute; left: 50%; top: 50%; display: grid; place-items: center; width: min(13vw, 210px); height: min(13vw, 210px); border-radius: 44px; background: linear-gradient(145deg, #fff, #f5f3ff); box-shadow: 0 35px 90px rgba(76,29,149,.22), inset 0 0 0 1px rgba(139,92,246,.12); transform: translate(-50%, -50%) rotate(-3deg); animation: heroFloat 5s ease-in-out infinite; }
.hero-mark::before { content: ""; position: absolute; inset: -30%; z-index: -1; border-radius: 50%; background: radial-gradient(circle, rgba(139,92,246,.2), transparent 67%); }
.hero-mark img { width: 53%; filter: drop-shadow(0 16px 20px rgba(76,29,149,.25)); }
.hero-mark__ring { position: absolute; inset: -12px; border: 1px solid rgba(139,92,246,.15); border-radius: 51px; }
.float-card { position: absolute; display: flex; align-items: center; gap: 11px; min-width: 190px; border: 1px solid rgba(226,232,240,.9); border-radius: 16px; background: rgba(255,255,255,.9); padding: 13px; box-shadow: 0 18px 40px rgba(30,41,59,.11); backdrop-filter: blur(15px); animation: cardFloat 5.5s ease-in-out infinite; }
.float-card i { display: grid; place-items: center; width: 33px; height: 33px; border-radius: 10px; background: #eef2ff; color: var(--indigo); font-size: 10px; font-weight: 900; font-style: normal; }
.float-card div { display: grid; gap: 3px; }
.float-card b { font-size: 11px; }
.float-card small { color: #94a3b8; font-size: 8px; }
.float-card > span { margin-left: auto; color: var(--violet); }
.float-card--question { left: -3%; top: 18%; }
.float-card--coach { right: -8%; top: 26%; animation-delay: -.8s; }
.float-card--coach i { background: #f3e8ff; color: var(--violet); }
.float-card--progress { left: 5%; bottom: 13%; animation-delay: -1.6s; }
.mini-ring { width: 38px; height: 38px; display: grid!important; place-items: center; border: 4px solid #ddd6fe; border-top-color: #7c3aed; border-radius: 50%; color: var(--violet); font-size: 9px; font-weight: 900; }

/* Shared product browser */
.browser-frame { position: relative; height: min(68vh, 675px); min-height: 510px; overflow: hidden; border: 1px solid #dfe5ef; border-radius: 24px; background: #fff; box-shadow: var(--shadow); opacity: 0; transform: translateX(45px) perspective(1400px) rotateY(-3deg); transition: opacity .7s ease .17s, transform .9s var(--ease) .17s; }
.scene.is-active .browser-frame { opacity: 1; transform: translateX(0) perspective(1400px) rotateY(0); }
.browser-top { height: 49px; display: grid; grid-template-columns: 90px 1fr auto; align-items: center; gap: 12px; border-bottom: 1px solid #e8edf3; background: #fbfcfe; padding: 0 16px; }
.traffic { display: flex; gap: 6px; }
.traffic i { width: 8px; height: 8px; border-radius: 50%; background: #fda4af; }
.traffic i:nth-child(2) { background: #fcd34d; }.traffic i:nth-child(3) { background: #86efac; }
.browser-path { justify-self: center; min-width: 240px; border: 1px solid #edf0f5; border-radius: 7px; background: #fff; padding: 6px 16px; color: #94a3b8; font-size: 8px; text-align: center; }
.browser-avatar { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 8px; background: linear-gradient(135deg, #e0e7ff, #ddd6fe); color: #5b21b6; font-size: 8px; font-weight: 850; }
.app-layout { height: calc(100% - 49px); display: grid; grid-template-columns: 55px 1fr; }
.mini-sidebar { display: flex; flex-direction: column; align-items: center; gap: 18px; border-right: 1px solid #edf0f5; padding-top: 18px; }
.mini-sidebar img { width: 21px; margin-bottom: 8px; }
.mini-sidebar i { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 8px; color: #94a3b8; font-size: 12px; font-style: normal; }
.mini-sidebar .is-on { background: #eef2ff; color: var(--indigo); }
.demo-cursor { position: absolute; z-index: 15; width: 18px; height: 23px; opacity: 0; filter: drop-shadow(0 2px 2px rgba(15,23,42,.25)); }
.demo-cursor::before { content: ""; position: absolute; inset: 0; background: #111827; clip-path: polygon(0 0, 0 85%, 23% 66%, 38% 100%, 51% 94%, 36% 60%, 68% 60%); }
.demo-cursor span { position: absolute; left: -5px; top: -5px; width: 24px; height: 24px; border: 1px solid rgba(124,58,237,.35); border-radius: 50%; opacity: 0; }

/* Question */
.topic-row { display: flex; gap: 7px; margin-top: 24px; }
.topic-row span { padding: 8px 11px; }
.topic-row .active { border-color: #c7d2fe; background: #eef2ff; color: var(--indigo); }
.question-panel { padding: 25px 5.3% 20px; }
.panel-kicker { display: flex; align-items: center; gap: 7px; }
.panel-kicker span { border-radius: 999px; background: #eef2ff; padding: 5px 8px; color: var(--indigo); font-size: 8px; font-weight: 800; }
.panel-kicker .difficulty { background: #fff7ed; color: #c2410c; }.panel-kicker .count { margin-left: auto; background: transparent; color: #94a3b8; }
.question-panel h3 { max-width: 660px; margin: 15px 0 13px; font-size: clamp(17px, 1.3vw, 26px); line-height: 1.28; letter-spacing: -.025em; }
.question-panel pre { margin: 0; border: 1px solid #e2e8f0; border-radius: 11px; background: #0f172a; padding: 13px 16px; color: #cbd5e1; font-family: "SFMono-Regular", Consolas, monospace; font-size: clamp(8px, .61vw, 12px); line-height: 1.65; }
.question-panel pre em { color: #7dd3fc; font-style: normal; }.question-panel pre b { color: #c4b5fd; }.question-panel pre q { color: #86efac; }
.answers { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 13px; }
.answers button { min-height: 42px; display: flex; align-items: center; gap: 9px; border: 1px solid #e2e8f0; border-radius: 10px; background: #fff; padding: 8px 11px; color: #475569; font-size: clamp(8px, .58vw, 11px); text-align: left; }
.answers button:last-child { grid-column: 1/-1; }
.answers button > span { flex: 0 0 23px; height: 23px; display: grid; place-items: center; border-radius: 7px; background: #f1f5f9; color: #64748b; font-size: 8px; font-weight: 850; }
.answers button i { margin-left: auto; opacity: 0; font-style: normal; }
.explanation { max-height: 0; overflow: hidden; margin-top: 0; border: 0 solid #c7d2fe; border-radius: 11px; background: #eef2ff; padding: 0 13px; opacity: 0; transition: max-height .55s var(--ease), padding .55s var(--ease), margin .55s ease, opacity .4s ease, border-width .2s ease; }
.explanation div { display: flex; gap: 7px; align-items: center; color: #4338ca; font-size: 9px; }.explanation p { margin: 6px 0 0; color: #475569; font-size: clamp(8px,.56vw,11px); line-height: 1.55; }
.scene--product.is-active .answer-correct { animation: chooseAnswer .45s var(--ease) 2.1s forwards; }
.scene--product.is-active .answer-correct i { animation: appear .3s ease 2.25s forwards; }
.scene--product.is-active .explanation { max-height: 130px; margin-top: 10px; border-width: 1px; padding: 11px 13px; opacity: 1; transition-delay: 2.65s; }
.scene--product.is-active .question-cursor { animation: questionCursor 3.2s var(--ease) .7s forwards; }

/* Coach */
.ai-status, .report-ready, .streak-pill { display: flex; align-items: center; gap: 7px; border-radius: 999px; background: #f5f3ff; padding: 6px 9px; color: #6d28d9; font-size: 8px; font-weight: 800; }
.coach-grid { height: calc(100% - 49px); display: grid; grid-template-columns: .83fr 1.17fr; gap: 14px; background: #f8fafc; padding: 18px; }
.candidate-card, .feedback-card, .process-card, .mock-card, .company-profile, .report-panel, .path-card, .progress-card { border: 1px solid #e5eaf1; border-radius: 16px; background: #fff; padding: 17px; box-shadow: 0 2px 5px rgba(15,23,42,.025); }
.card-heading, .feedback-head, .mock-top, .report-head, .progress-head { display: flex; align-items: center; gap: 10px; }
.icon-box { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: linear-gradient(135deg, #4f46e5, #8b5cf6); color: #fff; font-size: 16px; font-weight: 900; }
.card-heading div, .feedback-head div, .mock-top div, .report-head div, .progress-head div { display: grid; gap: 3px; }
.card-heading small, .feedback-head small, .mock-top small, .company-profile small, .section-title small, .report-head small, .suggestion-box small, .path-head small, .progress-head small { color: var(--indigo); font-size: 7px; font-weight: 900; letter-spacing: .13em; }
.card-heading b, .feedback-head b, .mock-top b, .report-head b, .progress-head b { font-size: 13px; }
.typed-answer { position: relative; min-height: 132px; margin: 17px 0 10px; border: 1px solid #e2e8f0; border-radius: 12px; background: #fbfcfe; padding: 14px; color: #475569; font-size: clamp(9px,.69vw,13px); line-height: 1.8; }
.typed-answer::after { content: ""; display: inline-block; width: 1px; height: 1em; margin-left: 2px; background: var(--indigo); vertical-align: -.15em; animation: blink .8s step-end infinite; }
.word-count { display: flex; justify-content: space-between; color: #94a3b8; font-size: 8px; }.word-count span:first-child { color: #059669; }
.coach-button { width: 100%; margin-top: 15px; border: 0; border-radius: 10px; background: linear-gradient(110deg, #4f46e5, #7c3aed); padding: 11px; color: #fff; font-size: 9px; font-weight: 800; }
.feedback-head { justify-content: space-between; padding-bottom: 13px; border-bottom: 1px solid #edf0f5; }
.feedback-head > span { border-radius: 999px; background: #f5f3ff; padding: 6px 8px; color: #7c3aed; font-size: 7px; font-weight: 800; }
.feedback-loading { height: 42px; display: flex; align-items: center; justify-content: center; gap: 4px; color: #64748b; font-size: 8px; transition: .3s ease; }
.feedback-loading i, .typing i { width: 5px; height: 5px; border-radius: 50%; background: #8b5cf6; animation: typingDot 1s ease-in-out infinite; }.feedback-loading i:nth-child(2), .typing i:nth-child(2) { animation-delay: .15s; }.feedback-loading i:nth-child(3), .typing i:nth-child(3) { animation-delay: .3s; }.feedback-loading span { margin-left: 5px; }
.feedback-list { display: grid; gap: 8px; }
.feedback-item { display: flex; gap: 9px; border: 1px solid #edf0f5; border-radius: 11px; background: #fbfcfe; padding: 9px; opacity: 0; transform: translateY(10px); }
.feedback-item > i { flex: 0 0 25px; height: 25px; display: grid; place-items: center; border-radius: 8px; font-size: 10px; font-style: normal; font-weight: 900; }
.feedback-item b { font-size: 9px; }.feedback-item p { margin: 3px 0 0; color: #64748b; font-size: clamp(7px,.49vw,9px); line-height: 1.45; }
.strength > i { background: #ecfdf5; color: #059669; }.missing > i { background: #fff7ed; color: #d97706; }.improve > i { background: #f5f3ff; color: #7c3aed; }.tip > i { background: #eff6ff; color: #2563eb; }
.scene--coach.is-active .feedback-loading { animation: hideLoading .3s ease 1.8s forwards; }
.scene--coach.is-active .feedback-item { animation: feedbackIn .45s var(--ease) forwards; }
.scene--coach.is-active .feedback-item:nth-child(1) { animation-delay: 1.9s; }.scene--coach.is-active .feedback-item:nth-child(2) { animation-delay: 2.25s; }.scene--coach.is-active .feedback-item:nth-child(3) { animation-delay: 2.6s; }.scene--coach.is-active .feedback-item:nth-child(4) { animation-delay: 2.95s; }
.scene--coach.is-active .coach-cursor { animation: coachCursor 2s var(--ease) .45s forwards; }

/* Company and mock */
.company-grid { height: calc(100% - 49px); display: grid; grid-template-columns: .85fr 1.15fr; grid-template-rows: .68fr 1.32fr; gap: 12px; background: #f8fafc; padding: 15px; }
.company-profile { position: relative; display: grid; grid-template-columns: auto 1fr; align-content: start; gap: 12px; overflow: hidden; background: linear-gradient(145deg, #312e81, #6d28d9); color: #fff; }
.company-profile::after { content: ""; position: absolute; width: 170px; height: 170px; right: -70px; bottom: -100px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; box-shadow: 0 0 0 35px rgba(255,255,255,.04), 0 0 0 70px rgba(255,255,255,.03); }
.generic-logo { width: 43px; height: 43px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 13px; background: rgba(255,255,255,.14); font-size: 11px; font-weight: 900; }
.company-profile small { color: #c4b5fd; }.company-profile h3 { margin: 4px 0 2px; font-size: 17px; }.company-profile p { margin: 0; color: #ddd6fe; font-size: 9px; }
.example-pill { position: absolute; right: 13px; top: 13px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(255,255,255,.1); padding: 5px 7px; color: #ede9fe; font-size: 6px; font-weight: 800; }
.focus-tags { grid-column: 1/-1; display: flex; flex-wrap: wrap; gap: 5px; margin-top: 5px; }.focus-tags span { border-radius: 999px; background: rgba(255,255,255,.11); padding: 5px 7px; color: #ede9fe; font-size: 7px; }
.process-card { grid-row: span 2; }.section-title { display: flex; justify-content: space-between; align-items: center; }.section-title div { display: grid; gap: 4px; }.section-title b { font-size: 13px; }.section-title > span { border-radius: 999px; background: #f1f5f9; padding: 5px 7px; color: #64748b; font-size: 7px; font-weight: 800; }
.stage-list { display: grid; gap: 8px; margin-top: 15px; }.stage-list article { display: grid; grid-template-columns: 27px 1fr auto; align-items: center; gap: 9px; border: 1px solid #edf0f5; border-radius: 10px; padding: 9px; opacity: 0; transform: translateX(12px); }.stage-list article > i { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 8px; background: #f1f5f9; color: #64748b; font-size: 8px; font-style: normal; font-weight: 850; }.stage-list article div { display: grid; gap: 3px; }.stage-list b { font-size: 9px; }.stage-list small { color: #94a3b8; font-size: 7px; }.stage-list article > span { color: #10b981; font-size: 9px; }.stage-list .stage-active { border-color: #c7d2fe; background: #eef2ff; }.stage-list .stage-active > i { background: #4f46e5; color: #fff; }.stage-list .stage-active > span { color: var(--indigo); }
.mock-card { padding: 13px; }.mock-top .live-pill { margin-left: auto; display: flex; align-items: center; gap: 6px; border-radius: 999px; background: #ecfdf5; padding: 5px 7px; color: #047857; font-size: 6px; font-weight: 850; }.live-pill i { width: 5px; height: 5px; background: #10b981; box-shadow: none; }
.chat { display: flex; align-items: flex-start; gap: 7px; margin-top: 10px; }.chat i { width: 23px; height: 23px; display: grid; place-items: center; border-radius: 7px; background: #eef2ff; color: #4f46e5; font-size: 6px; font-style: normal; font-weight: 900; }.chat p { margin: 0; border-radius: 9px; background: #f1f5f9; padding: 7px 9px; color: #475569; font-size: 7px; line-height: 1.4; }.chat p b { display: block; margin-bottom: 2px; color: #0f172a; font-size: 7px; }.chat.candidate { justify-content: flex-end; }.chat.candidate p { background: #eef2ff; }.chat.candidate i { background: #f3e8ff; color: #7c3aed; }
.typing { display: flex; align-items: center; gap: 3px; margin: 9px 0 0 31px; color: #94a3b8; font-size: 6px; }.typing span { margin-left: 4px; }
.scene--company.is-active .stage-list article { animation: stageIn .4s var(--ease) forwards; }.scene--company.is-active .stage-list article:nth-child(1){animation-delay:.55s}.scene--company.is-active .stage-list article:nth-child(2){animation-delay:.78s}.scene--company.is-active .stage-list article:nth-child(3){animation-delay:1.01s}.scene--company.is-active .stage-list article:nth-child(4){animation-delay:1.24s}

/* Resume */
.report-ready { background: #ecfdf5; color: #047857; }.report-ready i { width: 15px; height: 15px; display: grid; place-items: center; border-radius: 50%; background: #10b981; color: white; font-size: 7px; font-style: normal; }
.resume-grid { height: calc(100% - 49px); display: grid; grid-template-columns: .68fr 1.32fr; gap: 15px; background: #f8fafc; padding: 17px; }
.resume-preview { position: relative; display: grid; place-items: center; overflow: hidden; border: 1px solid #e5eaf1; border-radius: 16px; background: #eef2f7; }
.resume-paper { width: 72%; height: 86%; border-radius: 3px; background: #fff; padding: 20px 18px; box-shadow: 0 14px 35px rgba(15,23,42,.13); transform: rotate(-1deg); }
.paper-head { display: flex; justify-content: space-between; align-items: center; }.paper-head div { display: grid; gap: 3px; }.paper-head b { font-size: 10px; letter-spacing: .08em; }.paper-head span { color: #6366f1; font-size: 5px; font-weight: 800; letter-spacing: .15em; }.paper-head i { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: #eef2ff; color: #4f46e5; font-size: 6px; font-style: normal; font-weight: 900; }
.paper-rule { height: 2px; margin: 10px 0 12px; background: linear-gradient(90deg,#4f46e5,#a855f7); }.resume-paper > small { display: block; margin: 11px 0 5px; color: #4338ca; font-size: 5px; font-weight: 900; letter-spacing: .12em; }.resume-paper > p { width: 100%; height: 4px; margin: 4px 0; border-radius: 3px; background: #e2e8f0; }.resume-paper > p.short { width: 73%; }.paper-row { display: flex; justify-content: space-between; margin-bottom: 5px; }.paper-row b { width: 42%; height: 5px; border-radius: 3px; background: #94a3b8; }.paper-row span { width: 22%; height: 4px; border-radius: 3px; background: #cbd5e1; }.paper-skills { display: flex; gap: 4px; }.paper-skills i { width: 25px; height: 7px; border-radius: 4px; background: #e0e7ff; }
.scan-line { position: absolute; left: 9%; top: 10%; width: 82%; height: 2px; opacity: 0; background: linear-gradient(90deg,transparent,#8b5cf6,transparent); box-shadow: 0 0 18px #7c3aed; }
.report-panel { padding: 19px; }.report-head { justify-content: space-between; }.report-head > span { border-radius: 999px; background: #f1f5f9; padding: 6px 8px; color: #64748b; font-size: 7px; font-weight: 800; }
.metric-list { display: grid; gap: 11px; margin-top: 18px; }.metric-list article { border: 1px solid #edf0f5; border-radius: 11px; padding: 10px 12px; }.metric-list article > div:first-child { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 9px; }.metric-icon { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; background: #eef2ff; color: #4f46e5; font-size: 10px; font-weight: 900; }.metric-icon.keyword { background:#fff7ed;color:#d97706}.metric-icon.clarity{background:#ecfdf5;color:#059669}.metric-list p { display: grid; gap: 2px; margin: 0; }.metric-list b { font-size: 9px; }.metric-list small { color: #94a3b8; font-size: 7px; }.metric-list strong { color: #475569; font-size: 8px; }
.metric-track { height: 4px; overflow: hidden; margin-top: 9px; border-radius: 9px; background: #f1f5f9; }.metric-track i { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg,#6366f1,#8b5cf6); }
.suggestion-box { display: flex; gap: 10px; margin-top: 12px; border: 1px solid #e9d5ff; border-radius: 11px; background: #faf5ff; padding: 11px; opacity: 0; transform: translateY(8px); }.suggestion-box > span { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 8px; background: #7c3aed; color: #fff; font-size: 9px; }.suggestion-box div { display: grid; gap: 4px; }.suggestion-box small { color: #7c3aed; }.suggestion-box p { margin: 0; color: #475569; font-size: 7px; line-height: 1.5; }
.scene--resume.is-active .scan-line { animation: scan 2.1s ease .35s forwards; }.scene--resume.is-active .metric-track i { animation: barGrow .75s var(--ease) 1.35s forwards; }.scene--resume.is-active .suggestion-box { animation: feedbackIn .5s var(--ease) 1.85s forwards; }

/* Learning and progress */
.learning-grid { height: calc(100% - 49px); display: grid; grid-template-columns: 1.18fr .82fr; gap: 14px; background: #f8fafc; padding: 16px; }
.path-card, .progress-card { padding: 18px; }.path-head { display: flex; justify-content: space-between; }.path-head h3 { margin: 5px 0 3px; font-size: 16px; }.path-head p { margin: 0; color: #94a3b8; font-size: 8px; }.path-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: linear-gradient(135deg,#4f46e5,#8b5cf6); color: #fff; box-shadow: 0 9px 20px rgba(79,70,229,.2); }
.path-progress { margin: 17px 0 13px; }.path-progress > div:first-child { display: flex; justify-content: space-between; color: #64748b; font-size: 8px; }.path-progress strong { color: #4f46e5; }.path-track { height: 6px; margin-top: 8px; overflow: hidden; border-radius: 9px; background: #eef2f7; }.path-track i { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg,#4f46e5,#8b5cf6); }
.path-steps { display: grid; gap: 7px; }.path-steps article { display: grid; grid-template-columns: 29px 1fr auto; align-items: center; gap: 9px; border: 1px solid #edf0f5; border-radius: 10px; padding: 8px 9px; opacity: 0; transform: translateY(7px); }.path-steps article > i { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 8px; background: #f1f5f9; color: #64748b; font-size: 7px; font-style: normal; font-weight: 900; }.path-steps article div { display: grid; gap: 2px; }.path-steps b { font-size: 8px; }.path-steps small { color: #94a3b8; font-size: 6px; }.path-steps article > span { color: #64748b; font-size: 6px; font-weight: 800; }.path-steps .done > i { background: #ecfdf5; color: #059669; }.path-steps .done > span { color:#059669}.path-steps .current { border-color:#c7d2fe;background:#eef2ff}.path-steps .current > i { background:#4f46e5;color:#fff}.path-steps .current > span { border-radius:999px;background:#e0e7ff;padding:4px 6px;color:#4338ca}
.progress-head { justify-content: space-between; }.progress-head > span { border-radius:999px;background:#f1f5f9;padding:5px 7px;color:#64748b;font-size:6px;font-weight:800}.activity-summary { display: flex; justify-content: center; margin: 17px 0 10px; }.large-ring { position: relative; width: 108px; height: 108px; }.large-ring svg { width:100%;transform:rotate(-90deg)}.large-ring circle { fill:none;stroke:#eef2f7;stroke-width:3}.large-ring .ring-value { stroke:#7c3aed;stroke-linecap:round;stroke-dasharray:113;stroke-dashoffset:113}.large-ring > span { position:absolute;inset:0;display:grid;place-content:center;text-align:center}.large-ring b { font-size:12px}.large-ring small { color:#94a3b8;font-size:7px}
.bar-chart { height: 77px; display: flex; align-items: flex-end; justify-content: space-around; gap: 5px; border-bottom:1px solid #e2e8f0;padding:0 3px}.bar-chart i { width:10px;height:0;border-radius:4px 4px 0 0;background:#c7d2fe}.bar-chart i.today { background:linear-gradient(#8b5cf6,#4f46e5)}.day-row { display:flex;justify-content:space-around;margin-top:6px;color:#94a3b8;font-size:6px}.activity-items { display:grid;gap:6px;margin-top:13px}.activity-items span { display:flex;align-items:center;gap:7px;color:#475569;font-size:7px}.activity-items i { width:21px;height:21px;display:grid;place-items:center;border-radius:6px;background:#eef2ff;color:#4f46e5;font-style:normal}.activity-items span:nth-child(2) i{background:#f5f3ff;color:#7c3aed}.activity-items span:nth-child(3) i{background:#ecfdf5;color:#059669}
.scene--learning.is-active .path-track i { animation: pathGrow .9s var(--ease) .55s forwards; }.scene--learning.is-active .path-steps article { animation: feedbackIn .35s var(--ease) forwards}.scene--learning.is-active .path-steps article:nth-child(1){animation-delay:.75s}.scene--learning.is-active .path-steps article:nth-child(2){animation-delay:.92s}.scene--learning.is-active .path-steps article:nth-child(3){animation-delay:1.09s}.scene--learning.is-active .path-steps article:nth-child(4){animation-delay:1.26s}.scene--learning.is-active .ring-value { animation:ringDraw 1s var(--ease) .8s forwards}.scene--learning.is-active .bar-chart i { animation:chartGrow .65s var(--ease) forwards}.scene--learning.is-active .bar-chart i:nth-child(1){animation-delay:1s}.scene--learning.is-active .bar-chart i:nth-child(2){animation-delay:1.1s}.scene--learning.is-active .bar-chart i:nth-child(3){animation-delay:1.2s}.scene--learning.is-active .bar-chart i:nth-child(4){animation-delay:1.3s}.scene--learning.is-active .bar-chart i:nth-child(5){animation-delay:1.4s}.scene--learning.is-active .bar-chart i:nth-child(6){animation-delay:1.5s}.scene--learning.is-active .bar-chart i:nth-child(7){animation-delay:1.6s}

/* CTA */
.scene--cta { display: grid; place-items: center; text-align: center; overflow: hidden; background: radial-gradient(circle at center, rgba(238,242,255,.95), transparent 54%); }
.cta-content { position: relative; z-index: 4; max-width: 820px; padding: 20px; opacity: 0; transform: scale(.95); transition: .8s var(--ease) .15s; }.scene--cta.is-active .cta-content { opacity:1;transform:scale(1)}
.cta-content .eyebrow { justify-content:center;margin-bottom:15px}.cta-logo { position:relative;width:92px;height:92px;display:grid;place-items:center;margin:0 auto 19px;border:1px solid #e0e7ff;border-radius:25px;background:#fff;box-shadow:0 22px 55px rgba(76,29,149,.2)}.cta-logo::after{content:"";position:absolute;inset:-10px;border:1px solid rgba(139,92,246,.14);border-radius:32px}.cta-logo img{width:52px}.cta-logo > span{position:absolute;inset:-35px;z-index:-1;border-radius:50%;background:radial-gradient(circle,rgba(139,92,246,.18),transparent 67%)}
.scene--cta h2 { font-size:clamp(54px,5.2vw,102px)}.scene--cta p{max-width:660px;margin:20px auto 24px;color:#64748b;font-size:clamp(14px,1.05vw,20px);line-height:1.6}.cta-button{display:inline-flex;align-items:center;gap:20px;border-radius:13px;background:linear-gradient(110deg,#4f46e5,#7c3aed);padding:14px 19px;color:#fff;font-size:12px;font-weight:850;text-decoration:none;box-shadow:0 14px 30px rgba(79,70,229,.28);transition:.2s ease;cursor:pointer}.cta-button:hover{transform:translateY(-2px);box-shadow:0 18px 36px rgba(79,70,229,.34)}.cta-button:focus-visible{outline:3px solid rgba(99,102,241,.28);outline-offset:4px}.cta-button span{font-size:17px}.cta-domain{margin-top:13px;color:#475569;font-size:11px;font-weight:800;letter-spacing:.05em}
.cta-orbit { position:absolute;width:min(62vw,1000px);height:min(62vw,1000px);border:1px solid rgba(99,102,241,.1);border-radius:50%;animation:rotate 35s linear infinite}.cta-orbit::before,.cta-orbit::after{content:"";position:absolute;border:1px dashed rgba(139,92,246,.1);border-radius:50%}.cta-orbit::before{inset:13%}.cta-orbit::after{inset:30%}.cta-orbit i{position:absolute;width:7px;height:7px;border-radius:50%;background:#8b5cf6;box-shadow:0 0 15px #8b5cf6}.cta-orbit i:nth-child(1){left:10%;top:20%}.cta-orbit i:nth-child(2){right:6%;top:40%;background:#38bdf8}.cta-orbit i:nth-child(3){left:30%;bottom:3%}
.cta-feature { position:absolute;z-index:3;display:flex;align-items:center;gap:9px;border:1px solid #e2e8f0;border-radius:14px;background:rgba(255,255,255,.88);padding:11px 13px;box-shadow:0 14px 35px rgba(15,23,42,.09);backdrop-filter:blur(15px);opacity:0;transition:.7s var(--ease)}.cta-feature i{width:30px;height:30px;display:grid;place-items:center;border-radius:9px;background:#eef2ff;color:#4f46e5;font-style:normal}.cta-feature span{display:grid;gap:2px;text-align:left}.cta-feature b{font-size:9px}.cta-feature small{color:#94a3b8;font-size:6px}.cta-feature--one{left:9%;top:25%;transform:translate(-15px,8px) rotate(-4deg)}.cta-feature--two{right:8%;top:32%;transform:translate(15px,8px) rotate(4deg)}.cta-feature--three{right:14%;bottom:17%;transform:translate(15px,8px) rotate(-3deg)}.scene--cta.is-active .cta-feature{opacity:1;transform:translate(0,0) rotate(0)}.scene--cta.is-active .cta-feature--one{transition-delay:.7s}.scene--cta.is-active .cta-feature--two{transition-delay:.85s}.scene--cta.is-active .cta-feature--three{transition-delay:1s}

/* Start overlay and toast */
.start-overlay { position:absolute;inset:0;z-index:100;display:grid;place-items:center;background:rgba(248,250,252,.78);backdrop-filter:blur(18px);transition:opacity .5s ease,visibility .5s ease}.start-overlay.is-hidden{opacity:0;visibility:hidden;pointer-events:none}.start-card{width:min(90vw,430px);border:1px solid rgba(226,232,240,.9);border-radius:28px;background:rgba(255,255,255,.93);padding:38px;text-align:center;box-shadow:0 35px 90px rgba(15,23,42,.18)}.start-card>img{filter:drop-shadow(0 10px 13px rgba(76,29,149,.2))}.start-card>p{margin:15px 0 7px;color:#7c3aed;font-size:10px;font-weight:850;letter-spacing:.13em;text-transform:uppercase}.start-card h2{margin:0 0 25px;font-size:31px;line-height:1.12;letter-spacing:-.04em}.start-card>button{width:100%;display:flex;align-items:center;justify-content:center;gap:10px;border:0;border-radius:13px;background:linear-gradient(110deg,#4f46e5,#7c3aed);padding:14px;color:#fff;font-size:12px;font-weight:850;cursor:pointer;box-shadow:0 14px 30px rgba(79,70,229,.25)}.play-triangle{width:0;height:0;border-top:5px solid transparent;border-bottom:5px solid transparent;border-left:8px solid #fff}.audio-choice{display:flex;align-items:center;gap:11px;margin-top:18px;text-align:left;cursor:pointer}.audio-choice input{position:absolute;opacity:0}.toggle-ui{position:relative;flex:0 0 34px;height:20px;border-radius:999px;background:#cbd5e1;transition:.2s}.toggle-ui::after{content:"";position:absolute;left:3px;top:3px;width:14px;height:14px;border-radius:50%;background:#fff;box-shadow:0 1px 3px rgba(0,0,0,.2);transition:.2s}.audio-choice input:checked+.toggle-ui{background:#6366f1}.audio-choice input:checked+.toggle-ui::after{transform:translateX(14px)}.audio-choice>span:last-child{display:grid;gap:2px}.audio-choice b{font-size:10px}.audio-choice small{color:#94a3b8;font-size:8px}.toast{position:fixed;z-index:200;left:50%;bottom:100px;max-width:430px;border:1px solid #e2e8f0;border-radius:12px;background:#0f172a;padding:11px 15px;color:#fff;font-size:10px;line-height:1.5;opacity:0;transform:translate(-50%,10px);pointer-events:none;transition:.3s ease}.toast.is-visible{opacity:1;transform:translate(-50%,0)}

/* Motion */
@keyframes rotate{to{transform:translate(-50%,-50%) rotate(360deg)}}
@keyframes rotateReverse{to{transform:translate(-50%,-50%) rotate(-360deg)}}
@keyframes heroFloat{50%{transform:translate(-50%,-53%) rotate(1deg)}}
@keyframes cardFloat{50%{transform:translateY(-8px)}}
@keyframes appear{to{opacity:1}}
@keyframes chooseAnswer{to{border-color:#818cf8;background:#eef2ff;color:#3730a3;box-shadow:0 0 0 2px rgba(99,102,241,.09)}}
@keyframes questionCursor{0%{left:82%;top:79%;opacity:0}15%{opacity:1}55%{left:49%;top:72%;opacity:1}65%{left:49%;top:72%;opacity:1}66%{transform:scale(.84)}72%{transform:scale(1)}90%{opacity:1}100%{left:49%;top:82%;opacity:0}}
@keyframes coachCursor{0%{left:28%;top:78%;opacity:0}20%{opacity:1}58%{left:23%;top:83%;opacity:1}70%{transform:scale(.82)}80%{transform:scale(1);opacity:1}100%{left:64%;top:76%;opacity:0}}
@keyframes blink{50%{opacity:0}}
@keyframes typingDot{0%,100%{transform:translateY(0);opacity:.35}50%{transform:translateY(-3px);opacity:1}}
@keyframes hideLoading{to{height:0;opacity:0;overflow:hidden}}
@keyframes feedbackIn{to{opacity:1;transform:translate(0)}}
@keyframes stageIn{to{opacity:1;transform:translateX(0)}}
@keyframes scan{0%{top:10%;opacity:0}10%,85%{opacity:1}100%{top:90%;opacity:0}}
@keyframes barGrow{to{width:var(--target)}}
@keyframes pathGrow{to{width:60%}}
@keyframes ringDraw{to{stroke-dashoffset:32}}
@keyframes chartGrow{to{height:var(--h)}}

/* Fit smaller desktop windows while preserving the 16:9 composition. */
@media (max-width: 1250px) {
  .scene--product{grid-template-columns:minmax(250px,.68fr) minmax(560px,1.45fr);gap:32px;padding-inline:3vw}.scene-copy{padding-left:1vw}.browser-frame{min-height:470px}.float-card--coach{right:-2%}.scene--intro{padding-inline:6vw}.player{grid-template-columns:210px 1fr 40px;padding-inline:3vw}.demo-header{padding-inline:3vw}
}
@media (max-aspect-ratio: 4/3), (max-width: 900px) {
  body{overflow:auto}.demo-shell{min-height:800px}.scene-stage{overflow:hidden}.scene--product{grid-template-columns:1fr;grid-template-rows:auto 1fr;gap:20px;padding:24px 5vw}.scene-copy{text-align:center;padding:0}.scene-copy h2 br{display:none}.scene-copy>p,.safe-note{margin-left:auto;margin-right:auto}.eyebrow,.topic-row{justify-content:center}.browser-frame{width:100%;height:50vh;min-height:390px}.scene--intro{grid-template-columns:1fr;text-align:center;padding-inline:6vw}.intro-copy{z-index:3}.intro-copy .eyebrow,.intro-tags{justify-content:center}.intro-lede{margin-left:auto;margin-right:auto}.intro-visual{position:absolute;inset:0;height:auto;opacity:.28!important}.float-card{display:none}.scene-indicator{display:none}.player{grid-template-columns:auto 1fr auto;gap:12px}.audio-button span:last-child{display:none}.header-pill{display:none}.company-grid,.coach-grid,.resume-grid,.learning-grid{font-size:80%}
}
@media (max-width: 620px) {
  .demo-header{height:62px}.scene-stage{inset:62px 0 74px}.player{height:74px;padding:0 12px}.brand{font-size:17px}.brand img{width:26px;height:26px}.scene--product{padding:18px 14px}.scene-copy h2{font-size:30px}.scene-copy>p{margin-top:10px;font-size:12px;line-height:1.5}.scene-copy .eyebrow{margin-bottom:9px}.safe-note,.topic-row{display:none}.browser-frame{min-height:390px;border-radius:16px}.coach-grid,.company-grid,.resume-grid,.learning-grid{gap:7px;padding:7px}.candidate-card,.feedback-card,.process-card,.mock-card,.company-profile,.report-panel,.path-card,.progress-card{padding:9px}.intro-title,.scene--cta h2{font-size:42px}.intro-lede{font-size:14px}.intro-tags{display:none}.scene--intro{padding:20px}.player__controls{gap:4px}.player__controls .audio-button{display:none}.timeline-meta>span:first-child{display:none}.timeline-meta{justify-content:flex-end}.fullscreen-button{display:none}.player{grid-template-columns:auto 1fr}.cta-feature{display:none}.start-card{padding:28px 22px}.start-card h2{font-size:27px}
}
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after{animation-duration:.001ms!important;animation-delay:0s!important;transition-duration:.001ms!important}.orbit,.cta-orbit{animation:none!important}
}