@font-face {
  font-family: "Noto Sans Hanunoo";
  src: url("/fonts/NotoSansHanunoo-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #07090d;
  --bg-soft: #0b0e14;
  --surface: rgba(17, 21, 30, .74);
  --surface-solid: #11151e;
  --surface-hover: #151b27;
  --text: #f7f9fc;
  --text-secondary: #a2aaba;
  --text-muted: #71798a;
  --line: rgba(255, 255, 255, .09);
  --line-strong: rgba(255, 255, 255, .15);
  --blue: #208bff;
  --blue-bright: #42b7ff;
  --blue-deep: #3157ff;
  --success: #50d79a;
  --danger: #ff7f8b;
  --header: rgba(7, 9, 13, .76);
  --shadow: 0 30px 80px rgba(0, 0, 0, .42);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --container: 1180px;
  --font-heading: "Noto Sans Hanunoo", sans-serif;
  --font-body: "Noto Sans Hanunoo", sans-serif;
}

[data-theme="light"] {
  color-scheme: light;
  --bg: #f8faff;
  --bg-soft: #f0f4fb;
  --surface: rgba(255, 255, 255, .76);
  --surface-solid: #fff;
  --surface-hover: #f5f8fd;
  --text: #0b1020;
  --text-secondary: #545e70;
  --text-muted: #788297;
  --line: rgba(14, 30, 57, .10);
  --line-strong: rgba(14, 30, 57, .16);
  --header: rgba(248, 250, 255, .82);
  --shadow: 0 30px 80px rgba(37, 61, 102, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  transition: background-color .3s ease, color .3s ease;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { color: inherit; font: inherit; }
button, select { cursor: pointer; }
button { border: 0; }
::selection { background: rgba(32, 139, 255, .35); color: var(--text); }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 120px 0; }
.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; z-index: 999; top: 12px; left: 12px; padding: 10px 16px;
  border-radius: 10px; background: var(--text); color: var(--bg); transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--blue-bright); outline-offset: 4px; border-radius: 6px; }

.site-header {
  position: fixed; z-index: 100; top: 0; right: 0; left: 0;
  border-bottom: 1px solid transparent; transition: border-color .25s ease, background .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled { border-color: var(--line); background: var(--header); backdrop-filter: blur(20px); }
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-heading); font-weight: 700; }
.brand__icon { border-radius: 11px; object-fit: cover; transition: transform .25s ease; }
.brand:hover .brand__icon { transform: rotate(-3deg) scale(1.04); }
.nav-menu { display: flex; align-items: center; gap: 42px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { position: relative; color: var(--text-secondary); font-size: .92rem; font-weight: 500; transition: color .2s ease; }
.nav-links a::after { content: ""; position: absolute; right: 0; bottom: -7px; left: 0; height: 1px; background: var(--blue-bright); transform: scaleX(0); transition: transform .2s ease; }
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 9px; }
.language, .theme-toggle {
  height: 38px; display: inline-flex; align-items: center; border: 1px solid var(--line);
  border-radius: 11px; background: var(--surface); transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.language:hover, .theme-toggle:hover { border-color: var(--line-strong); background: var(--surface-hover); }
.language { position: relative; gap: 4px; padding: 0 5px 0 11px; }
.language svg { width: 16px; fill: none; stroke: var(--text-secondary); stroke-width: 1.6; }
.language select { appearance: none; border: 0; outline: 0; padding: 0 18px 0 5px; background: transparent; font-size: .78rem; font-weight: 700; }
.language::after { content: "⌄"; position: absolute; right: 8px; top: 4px; color: var(--text-muted); pointer-events: none; }
.language option { color: #101420; background: #fff; }
.theme-toggle { position: relative; width: 38px; justify-content: center; padding: 0; }
.theme-toggle svg { position: absolute; width: 17px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; transition: opacity .25s ease, transform .25s ease; }
.theme-toggle__moon { opacity: 0; transform: rotate(-25deg) scale(.7); }
[data-theme="light"] .theme-toggle__sun { opacity: 0; transform: rotate(25deg) scale(.7); }
[data-theme="light"] .theme-toggle__moon { opacity: 1; transform: rotate(0) scale(1); }
.nav-toggle { display: none; width: 42px; height: 42px; padding: 10px; border-radius: 11px; background: var(--surface); }
.nav-toggle span { display: block; width: 20px; height: 1.5px; margin: 5px auto; border-radius: 4px; background: var(--text); transition: transform .25s ease, opacity .2s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.hero { min-height: 100vh; padding-top: 170px; padding-bottom: 54px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .55;
  background-image: linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 62px 62px; mask-image: radial-gradient(circle at 70% 30%, #000, transparent 65%);
}
[data-theme="light"] .hero::before { opacity: .3; filter: invert(1); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; opacity: .23; }
.hero-glow--one { width: 480px; height: 480px; top: 40px; right: -120px; background: #136eff; }
.hero-glow--two { width: 330px; height: 330px; bottom: 50px; left: -180px; background: #7549ff; opacity: .12; }
.hero__grid { position: relative; display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: 70px; }
.eyebrow, .kicker { color: var(--blue-bright); font-size: .74rem; font-weight: 700; text-transform: uppercase; }
.eyebrow { width: fit-content; display: flex; align-items: center; gap: 9px; margin-bottom: 24px; padding: 7px 12px; border: 1px solid rgba(54, 159, 255, .22); border-radius: 99px; background: rgba(33, 119, 255, .08); }
.eyebrow__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-bright); box-shadow: 0 0 0 5px rgba(66,183,255,.10); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-heading); }
h1 { max-width: 720px; margin-bottom: 24px; font-size: clamp(2.9rem, 5vw, 4.75rem); line-height: 1.03; }
.hero__subtitle { max-width: 630px; margin-bottom: 28px; color: var(--text-secondary); font-size: clamp(1.05rem, 1.5vw, 1.22rem); line-height: 1.65; white-space: pre-line; }
.hero__points { display: flex; flex-wrap: wrap; gap: 8px 18px; max-width: 640px; margin: 0 0 34px; padding: 0; list-style: none; }
.hero__points li { display: flex; align-items: center; gap: 8px; color: var(--text-secondary); font-size: .88rem; }
.hero__points li::before { content: "✓"; color: var(--blue-bright); font-size: .8rem; font-weight: 700; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 0 21px; border: 1px solid transparent; border-radius: 14px; font-size: .93rem; font-weight: 650;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}
.button svg { width: 18px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; transition: transform .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:disabled { cursor: wait; opacity: .7; transform: none; }
.button:hover svg { transform: translateX(3px); }
.button--primary { color: #fff; background: linear-gradient(135deg, var(--blue-bright), var(--blue-deep)); box-shadow: 0 12px 34px rgba(28, 109, 255, .26), inset 0 1px rgba(255,255,255,.25); }
.button--primary:hover { box-shadow: 0 16px 40px rgba(28, 109, 255, .36), inset 0 1px rgba(255,255,255,.25); }
.button--secondary { border-color: var(--line-strong); background: var(--surface); }
.button--secondary:hover { background: var(--surface-hover); border-color: rgba(66, 183, 255, .35); }
.hero__note { margin: 15px 0 0; color: var(--text-muted); font-size: .76rem; }
.logo-scene { position: relative; min-height: 500px; display: grid; place-items: center; isolation: isolate; }
.logo-scene__glow { position: absolute; z-index: -1; width: 390px; height: 390px; border-radius: 50%; background: radial-gradient(circle, rgba(37, 137, 255, .3), rgba(54, 66, 255, .1) 42%, transparent 70%); filter: blur(28px); }
.hero-logo { width: min(100%, 270px); height: auto; aspect-ratio: 1; border-radius: 25%; object-fit: cover; box-shadow: 0 32px 80px rgba(0, 0, 0, .38), 0 0 60px rgba(30, 125, 255, .14); transition: transform .35s ease, box-shadow .35s ease; }
.hero-logo:hover { transform: translateY(-5px) scale(1.015); box-shadow: 0 38px 90px rgba(0, 0, 0, .43), 0 0 75px rgba(30, 125, 255, .2); }

.player-scene { position: relative; min-height: 630px; display: grid; place-items: center; perspective: 1000px; }
.orb { position: absolute; border-radius: 50%; filter: blur(55px); }
.orb--one { width: 320px; height: 320px; top: 90px; right: 15px; background: rgba(31,130,255,.28); }
.orb--two { width: 260px; height: 260px; bottom: 70px; left: 15px; background: rgba(98,55,255,.18); }
.player-card {
  position: relative; z-index: 2; width: 342px; padding: 20px 22px 26px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.14); border-radius: 34px; color: #f8fbff;
  background: linear-gradient(155deg, rgba(29,37,53,.96), rgba(9,13,20,.98));
  box-shadow: 0 45px 100px rgba(0,0,0,.5), inset 0 1px rgba(255,255,255,.09);
  transform: rotateY(-5deg) rotateX(2deg);
}
[data-theme="light"] .player-card { box-shadow: 0 45px 100px rgba(28,55,100,.22), inset 0 1px rgba(255,255,255,.12); }
.player-card::after { content: ""; position: absolute; width: 220px; height: 300px; top: -140px; left: -110px; background: rgba(80,171,255,.09); transform: rotate(35deg); filter: blur(15px); pointer-events: none; }
.player-card__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 19px; color: #c2cad7; font-size: .65rem; font-weight: 700; text-transform: uppercase; }
.player-card__back, .player-card__more { color: #8190a3; font-size: 1.25rem; line-height: 1; }
.cover { position: relative; width: 100%; aspect-ratio: 1; display: grid; place-items: center; overflow: hidden; border-radius: 21px; background: radial-gradient(circle at 50% 42%, rgba(47, 142, 255, .18), transparent 42%), linear-gradient(165deg,#14203a,#0a0f20 56%,#121827); box-shadow: 0 22px 40px rgba(0,0,0,.38); }
.cover::before { content: ""; position: absolute; width: 170px; height: 170px; border-radius: 50%; background: rgba(49, 135, 255, .15); filter: blur(38px); }
.preview-logo { position: relative; z-index: 1; width: 42%; max-width: 128px; height: auto; aspect-ratio: 1; border-radius: 26%; object-fit: cover; box-shadow: 0 18px 40px rgba(0, 0, 0, .35); }
.track { display: flex; align-items: center; justify-content: space-between; margin-top: 23px; }
.track div { display: grid; gap: 2px; }
.track strong { font-family: var(--font-heading); font-size: .95rem; }
.track span { color: #8792a4; font-size: .68rem; }
.track button { padding: 0; color: #a8b3c5; background: transparent; font-size: 1.2rem; }
.progress { height: 3px; margin-top: 20px; border-radius: 4px; background: #2a3342; }
.progress span { display: block; width: 34%; height: 100%; border-radius: inherit; background: linear-gradient(90deg,#31b7ff,#3470ff); box-shadow: 0 0 9px rgba(49,183,255,.5); }
.times { display: flex; justify-content: space-between; margin-top: 6px; color: #657184; font-size: .55rem; }
.controls { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; color: #aeb7c6; font-size: .68rem; }
.controls > span { min-width: 32px; text-align: center; }
.controls small { margin-left: -3px; font-size: .48rem; }
.controls button { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(145deg,#30b6ff,#285fff); box-shadow: 0 7px 22px rgba(34,113,255,.35); font-size: 1rem; text-indent: 2px; }
.floating-card {
  position: absolute; z-index: 3; display: flex; align-items: center; gap: 12px; min-width: 205px; padding: 12px 15px;
  border: 1px solid rgba(255,255,255,.12); border-radius: 15px; color: #fff; background: rgba(16,21,31,.9); box-shadow: 0 18px 45px rgba(0,0,0,.32); backdrop-filter: blur(16px);
}
.floating-card--chapter { top: 112px; left: -20px; }
.floating-card--saved { right: -12px; bottom: 105px; }
.floating-card__icon { width: 30px; height: 30px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 9px; color: #52bfff; background: rgba(48,156,255,.13); }
.floating-card > span:last-child { display: grid; line-height: 1.25; }
.floating-card small { color: #65768d; font-size: .48rem; font-weight: 700; }
.floating-card strong { font-size: .69rem; font-weight: 600; }
.trusted { position: relative; display: flex; align-items: center; justify-content: center; gap: 38px; margin-top: 62px; color: var(--text-muted); font-size: .7rem; font-weight: 600; text-transform: uppercase; }
.trusted::before, .trusted::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.trusted div { display: flex; gap: 28px; color: var(--text-secondary); }

.about { border-top: 1px solid var(--line); background: var(--bg-soft); }
.about__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; }
.section-heading h2 { max-width: 780px; margin: 12px 0 18px; font-size: clamp(2rem, 3.4vw, 3.35rem); line-height: 1.1; }
.section-heading > p { max-width: 600px; color: var(--text-secondary); font-size: 1.05rem; }
.section-heading--center { display: flex; flex-direction: column; align-items: center; margin-bottom: 58px; text-align: center; }
.section-heading--center p { margin-bottom: 0; }
.about__content > p { color: var(--text-secondary); font-size: 1.07rem; }
.about__content > p:first-child { color: var(--text); font-size: 1.26rem; }
.release-card { display: flex; align-items: center; gap: 15px; margin-top: 34px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); }
.release-card__pulse { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 11px; background: rgba(43,144,255,.1); }
.release-card__pulse span { width: 9px; height: 9px; border-radius: 50%; background: var(--blue-bright); box-shadow: 0 0 0 7px rgba(66,183,255,.1); }
.release-card div:nth-child(2) { display: grid; }
.release-card div:nth-child(2) span { color: var(--text-muted); font-size: .7rem; text-transform: uppercase; }
.release-card strong { font-family: var(--font-heading); font-size: 1.12rem; }
.release-card__tag { margin-left: auto; padding: 5px 9px; border: 1px solid rgba(80,215,154,.2); border-radius: 99px; color: var(--success); background: rgba(80,215,154,.07); font-size: .65rem; font-weight: 700; }
.fine-print { margin-top: 11px !important; color: var(--text-muted) !important; font-size: .77rem !important; }

.features { overflow: hidden; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.feature-card { position: relative; min-height: 235px; padding: 27px 25px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, var(--surface), transparent); transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease; }
.feature-card::after { content: ""; position: absolute; width: 100px; height: 100px; right: -55px; bottom: -55px; border-radius: 50%; background: var(--blue); filter: blur(50px); opacity: 0; transition: opacity .3s ease; }
.feature-card:hover { transform: translateY(-5px); border-color: rgba(61,155,255,.28); background: var(--surface); box-shadow: 0 20px 45px rgba(0,0,0,.12); }
.feature-card:hover::after { opacity: .18; }
.feature-icon { width: 43px; height: 43px; display: grid; place-items: center; margin-bottom: 27px; border: 1px solid rgba(62,158,255,.15); border-radius: 13px; color: var(--blue-bright); background: rgba(45,139,255,.09); }
.feature-icon svg { width: 22px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.feature-card h3 { margin-bottom: 9px; font-size: 1.02rem; }
.feature-card p { margin: 0; color: var(--text-secondary); font-size: .88rem; line-height: 1.6; }
.feature-badge { position: absolute; top: 25px; right: 22px; padding: 3px 8px; border: 1px solid var(--line); border-radius: 99px; color: var(--text-muted); font-size: .58rem; font-weight: 700; text-transform: uppercase; }
.feature-card--future { border-style: dashed; }

.roadmap { border-block: 1px solid var(--line); background: var(--bg-soft); }
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; padding-top: 30px; }
.timeline::before { content: ""; position: absolute; top: 40px; right: 12.5%; left: 12.5%; height: 1px; background: linear-gradient(90deg,var(--blue),var(--line-strong) 38%,var(--line-strong)); }
.timeline-item { position: relative; padding: 40px 25px 25px; text-align: center; }
.timeline-marker { position: absolute; z-index: 2; top: 4px; left: 50%; width: 13px; height: 13px; display: grid; place-items: center; border: 2px solid var(--bg-soft); border-radius: 50%; background: var(--text-muted); box-shadow: 0 0 0 1px var(--line-strong); transform: translateX(-50%); }
.timeline-item--active .timeline-marker { background: var(--blue-bright); box-shadow: 0 0 0 5px rgba(54,166,255,.12), 0 0 22px rgba(54,166,255,.5); }
.timeline-label { color: var(--text-muted); font-size: .65rem; font-weight: 700; text-transform: uppercase; }
.timeline-item--active .timeline-label { color: var(--blue-bright); }
.timeline h3 { margin: 9px 0 9px; font-size: 1.08rem; }
.timeline p, .timeline li { color: var(--text-secondary); font-size: .84rem; line-height: 1.55; }
.timeline ul { margin: 0; padding: 0; list-style: none; }
.timeline li + li { margin-top: 2px; }

.contact { overflow: hidden; }
.contact::before { content: ""; position: absolute; width: 500px; height: 500px; bottom: -280px; left: -220px; border-radius: 50%; background: rgba(28,102,255,.12); filter: blur(70px); }
.contact__grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 100px; }
.contact__copy h2 { margin: 14px 0 20px; font-size: clamp(2rem, 3.4vw, 3.2rem); line-height: 1.11; }
.contact__copy > p { color: var(--text-secondary); font-size: 1.03rem; }
.contact-note { display: flex; gap: 13px; margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--line); }
.contact-note svg { width: 24px; flex: 0 0 auto; color: var(--blue-bright); fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.contact-note div { display: grid; }
.contact-note strong { font-family: var(--font-heading); font-size: .9rem; }
.contact-note span { color: var(--text-muted); font-size: .8rem; }
.feedback-form { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.form-required-note { margin: 0 0 14px; color: var(--text-muted); font-size: .78rem; text-align: right; }
.form-required-note > span:first-child, .required-marker { color: var(--danger); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.feedback-form label { display: grid; gap: 8px; margin-bottom: 16px; color: var(--text-secondary); font-size: .9rem; font-weight: 600; }
.form-choice { margin: 2px 0 16px; padding: 0; border: 0; }
.form-choice legend { margin-bottom: 10px; color: var(--text-secondary); font-size: .9rem; font-weight: 600; }
.feedback-form .checkbox-label { position: relative; display: grid; grid-template-columns: 20px 1fr; align-items: start; gap: 10px; margin: 0; cursor: pointer; font-weight: 400; line-height: 1.5; }
.feedback-form .checkbox-label input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.custom-checkbox { width: 19px; height: 19px; display: grid; place-items: center; margin-top: 1px; border: 1px solid var(--line-strong); border-radius: 6px; background: rgba(127,145,180,.05); transition: border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.custom-checkbox::after { content: "✓"; color: #fff; font-size: .72rem; font-weight: 800; opacity: 0; transform: scale(.6); transition: opacity .15s ease, transform .15s ease; }
.checkbox-label input:checked + .custom-checkbox { border-color: var(--blue); background: var(--blue); }
.checkbox-label input:checked + .custom-checkbox::after { opacity: 1; transform: scale(1); }
.checkbox-label input:focus-visible + .custom-checkbox { outline: 3px solid var(--blue-bright); outline-offset: 3px; }
.privacy-box { margin: 18px 0 16px; padding: 14px 15px; border: 1px solid var(--line); border-radius: 12px; background: rgba(127,145,180,.04); }
.privacy-box > p, .privacy-box details p { margin: 0; color: var(--text-muted); font-size: .81rem; line-height: 1.6; }
.privacy-box details { margin-top: 8px; }
.privacy-box summary { color: var(--text-secondary); font-size: .84rem; font-weight: 600; cursor: pointer; }
.privacy-box details p { margin-top: 8px; }
.feedback-form .checkbox-label--required { margin: 0 0 18px; }
.feedback-form input, .feedback-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 12px; outline: none; background: rgba(127,145,180,.05); transition: border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.feedback-form input { height: 49px; padding: 0 15px; }
.feedback-form textarea { min-height: 126px; padding: 13px 15px; resize: vertical; }
.feedback-form input::placeholder, .feedback-form textarea::placeholder { color: var(--text-muted); opacity: .72; }
.feedback-form input:hover, .feedback-form textarea:hover { border-color: var(--line-strong); }
.feedback-form input:focus, .feedback-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(39,137,255,.12); background: rgba(64,142,255,.04); }
.button--submit { width: 100%; margin-top: 2px; }
.button--submit:disabled { cursor: wait; opacity: .7; transform: none; }
.form-status { min-height: 1.3em; margin: 13px 0 0; font-size: .8rem; text-align: center; }
.form-status.is-success { color: var(--success); }
.form-status.is-error { color: var(--danger); }
.privacy-note { margin: 5px 0 0; color: var(--text-muted); font-size: .78rem; text-align: center; }

.final-cta { padding-top: 70px; }
.final-cta__inner { display: flex; flex-direction: column; align-items: center; padding: 75px 30px; overflow: hidden; border: 1px solid var(--line); border-radius: 34px; text-align: center; background: radial-gradient(circle at 50% -30%,rgba(31,139,255,.25),transparent 52%),var(--surface); }
.cta-icon { border-radius: 19px; box-shadow: 0 14px 30px rgba(0,0,0,.2); }
.final-cta h2 { margin: 24px 0 8px; font-size: clamp(1.9rem, 3.3vw, 2.75rem); }
.final-cta p { margin-bottom: 27px; color: var(--text-secondary); }
.updates-form { width: min(100%, 650px); text-align: left; }
.updates-form__row { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.updates-form__row input { min-width: 0; height: 50px; padding: 0 16px; border: 1px solid var(--line-strong); border-radius: 14px; outline: none; background: var(--surface-solid); transition: border-color .2s ease, box-shadow .2s ease; }
.updates-form__row input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(39,137,255,.12); }
.updates-form .checkbox-label { position: relative; display: grid; grid-template-columns: 20px 1fr; align-items: start; gap: 10px; cursor: pointer; }
.updates-form .checkbox-label input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.updates-form__consent { margin-top: 14px; color: var(--text-secondary); font-size: .84rem; line-height: 1.55; }
.updates-form__privacy { margin: 9px 0 0 30px; color: var(--text-muted); font-size: .8rem; }
.updates-form__privacy summary { width: fit-content; cursor: pointer; }
.updates-form__privacy p { margin: 8px 0 0; font-size: .78rem; line-height: 1.6; }
.updates-form .form-status { margin-left: 30px; text-align: left; }
[data-language-only][hidden] { display: none !important; }
.brevo-updates { width: min(100%, 650px); }
.brevo-updates #sib-container { width: 100%; padding: 0; border: 0; background: transparent; }
.brevo-updates .updates-form { width: 100%; }
.brevo-updates .form__entry { min-width: 0; }
.brevo-updates .entry__field { border: 0; background: transparent; }
.brevo-updates .entry__field input { width: 100%; }
.brevo-updates .entry__error { margin: 6px 0 0; padding: 0; border: 0; background: transparent; color: var(--danger); font-size: .8rem; }
.brevo-updates .button { min-height: 50px; white-space: nowrap; }
.brevo-updates .button .progress-indicator__icon { width: 18px; height: 18px; fill: currentColor; }
.brevo-message { width: 100%; max-width: 650px; margin: 0 0 14px; border: 1px solid; border-radius: 12px; font-size: .86rem; text-align: left; }
.brevo-message .sib-form-message-panel__text { padding: 12px 14px; }
.brevo-message--error { border-color: rgba(255,92,122,.45); background: rgba(255,92,122,.1); color: var(--danger); }
.brevo-message--success { border-color: rgba(40,200,140,.45); background: rgba(40,200,140,.1); color: var(--success); }
.footer { padding: 46px 0 38px; }
.footer__inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; }
.footer__inner p { margin: 0; color: var(--text-muted); font-size: .74rem; text-align: center; }
.footer nav { display: flex; justify-content: flex-end; gap: 22px; }
.footer nav a { color: var(--text-secondary); font-size: .77rem; transition: color .2s ease; }
.footer nav a:hover { color: var(--text); }

.legal-main { min-height: calc(100vh - 164px); padding: 142px 0 90px; }
.legal-page { width: min(100%, 1000px); margin-inline: auto; }
.legal-page__intro { margin-bottom: 38px; padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.legal-page__intro h1 { margin: 10px 0 12px; font-size: clamp(2.35rem, 6vw, 4.2rem); line-height: 1.05; }
.legal-page__intro p { max-width: 680px; margin: 0; color: var(--text-secondary); }
.legal-content { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow); }
.legal-content section + section { margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--line); }
.legal-content h2 { margin: 0 0 12px; font-size: 1.3rem; line-height: 1.3; }
.legal-content h3 { margin: 22px 0 8px; font-size: 1rem; }
.legal-content p, .legal-content li { color: var(--text-secondary); font-size: .94rem; }
.legal-content p { margin: 0 0 12px; }
.legal-content ul { margin: 10px 0 12px; padding-left: 22px; }
.legal-content address { color: var(--text-secondary); font-style: normal; }
.legal-content a { color: var(--blue-bright); text-decoration: underline; text-underline-offset: 3px; }
.legal-content .legal-updated { color: var(--text-muted); font-size: .8rem; }
.legal-notice { padding: 15px 17px; border: 1px solid rgba(66,183,255,.2); border-radius: 12px; background: rgba(32,139,255,.07); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.feature-card:nth-child(2), .timeline-item:nth-child(2) { transition-delay: .06s; }
.feature-card:nth-child(3), .timeline-item:nth-child(3) { transition-delay: .12s; }
.feature-card:nth-child(4), .timeline-item:nth-child(4) { transition-delay: .18s; }
.feature-card:nth-child(5) { transition-delay: .04s; }
.feature-card:nth-child(6) { transition-delay: .10s; }
.feature-card:nth-child(7) { transition-delay: .16s; }
.feature-card:nth-child(8) { transition-delay: .22s; }

@media (max-width: 1050px) {
  .hero__grid { gap: 25px; }
  .logo-scene { min-height: 440px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { gap: 55px; }
}

@media (max-width: 999.98px) {
  .legal-page { padding-inline: 20px; }
}

@media (max-width: 820px) {
  .section { padding: 90px 0; }
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed; top: 70px; right: 16px; left: 16px; display: block; padding: 18px;
    border: 1px solid var(--line); border-radius: 18px; background: var(--surface-solid); box-shadow: var(--shadow);
    opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity .22s ease, transform .22s ease, visibility .22s;
  }
  .nav-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-links { display: grid; gap: 2px; }
  .nav-links a { padding: 11px 10px; border-radius: 9px; }
  .nav-links a:hover { background: var(--surface-hover); }
  .nav-links a::after { display: none; }
  .nav-actions { margin-top: 12px; padding: 13px 10px 0; border-top: 1px solid var(--line); }
  .hero { padding-top: 145px; }
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__copy { display: flex; flex-direction: column; align-items: center; }
  .hero__points, .hero__actions { justify-content: center; }
  .logo-scene { min-height: 400px; margin-top: 20px; }
  .trusted { margin-top: 20px; }
  .about__grid, .contact__grid { grid-template-columns: 1fr; gap: 45px; }
  .about__content { max-width: 680px; }
  .timeline { grid-template-columns: 1fr 1fr; gap: 30px 0; }
  .timeline::before { display: none; }
  .timeline-item { padding-top: 35px; }
  .timeline-marker { top: 1px; }
  .footer__inner { grid-template-columns: 1fr; justify-items: center; }
  .footer nav { justify-content: center; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .section { padding: 76px 0; }
  .nav { min-height: 68px; }
  .brand { font-size: .9rem; }
  .brand__icon { width: 36px; height: 36px; }
  .hero { min-height: auto; padding-top: 124px; }
  h1 { font-size: clamp(2.35rem, 12vw, 3.35rem); }
  .hero__subtitle { font-size: 1rem; }
  .hero__points { display: grid; grid-template-columns: 1fr; width: 100%; justify-items: start; padding-left: 12px; }
  .hero__actions, .hero__actions .button { width: 100%; }
  .logo-scene { min-height: 340px; margin-inline: -5px; }
  .hero-logo { width: 220px; }
  .player-card { width: 290px; padding: 17px 18px 22px; border-radius: 28px; transform: none; }
  .player-card__top { margin-bottom: 14px; }
  .preview-logo { max-width: 108px; }
  .floating-card { min-width: 180px; padding: 10px 11px; }
  .floating-card--chapter { top: 65px; left: -6px; }
  .floating-card--saved { right: -4px; bottom: 55px; }
  .trusted { display: grid; gap: 15px; text-align: center; }
  .trusted::before, .trusted::after { display: none; }
  .trusted div { justify-content: center; gap: 17px; }
  .section-heading--center { margin-bottom: 38px; }
  .section-heading h2 { font-size: 2.05rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 210px; }
  .release-card { align-items: flex-start; flex-wrap: wrap; }
  .release-card__tag { margin-left: 53px; }
  .timeline { grid-template-columns: 1fr; }
  .timeline-item { padding-right: 10px; padding-left: 10px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .feedback-form { padding: 24px 18px; border-radius: 23px; }
  .final-cta__inner { padding: 60px 18px; }
  .updates-form__row { grid-template-columns: 1fr; }
  .updates-form__row .button { width: 100%; }
  .legal-main { padding: 112px 0 65px; }
  .legal-content { padding: 24px 18px; border-radius: 23px; }
}

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