:root {
  --bg: #07050d;
  --bg-soft: #0d0918;
  --panel: rgba(18, 12, 31, 0.74);
  --panel-solid: #120c1f;
  --white: #fffaf2;
  --muted: #b8afc8;
  --purple: #5220f2;
  --purple-bright: #7c4dff;
  --cyan: #31dcff;
  --gold: #f6cf55;
  --danger: #ff5d79;
  --success: #3ce5a2;
  --line: rgba(255, 255, 255, 0.11);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius-lg: 32px;
  --radius-md: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 70% 4%, rgba(82, 32, 242, 0.18), transparent 32rem),
    radial-gradient(circle at 6% 30%, rgba(49, 220, 255, 0.1), transparent 30rem),
    var(--bg);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.modal-open { overflow: hidden; }
button, input, a { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button { color: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--white);
  color: #000;
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; position: relative; }

.ambient {
  position: fixed;
  z-index: -2;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .18;
  pointer-events: none;
}
.ambient-one { width: 350px; height: 350px; background: var(--purple); top: 18%; left: -150px; animation: drift 14s ease-in-out infinite alternate; }
.ambient-two { width: 310px; height: 310px; background: var(--cyan); top: 55%; right: -160px; animation: drift 18s ease-in-out infinite alternate-reverse; }
.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(7, 5, 13, .82);
  border-color: var(--line);
  box-shadow: 0 14px 50px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.brand img { width: 52px; height: 52px; border-radius: 15px; box-shadow: 0 0 28px rgba(124, 77, 255, .25); }
.brand span { display: grid; line-height: 1; }
.brand strong { font-size: 1.05rem; letter-spacing: .13em; }
.brand small { color: var(--purple-bright); font-size: .68rem; letter-spacing: .3em; margin-top: 5px; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { text-decoration: none; color: #d9d2e5; font-weight: 700; font-size: .9rem; transition: color .2s ease, transform .2s ease; }
.main-nav a:hover { color: var(--white); transform: translateY(-1px); }
.main-nav .nav-cta { padding: 11px 17px; border: 1px solid rgba(124, 77, 255, .5); border-radius: 999px; background: rgba(82, 32, 242, .14); color: #fff; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.04); cursor: pointer; padding: 11px; }
.menu-toggle span { display: block; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }

.hero { min-height: 100svh; display: grid; align-items: center; padding: 132px 0 90px; position: relative; isolation: isolate; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(7, 5, 13, .3), rgba(7, 5, 13, .86)),
    radial-gradient(circle at 76% 50%, rgba(82, 32, 242, .18), transparent 28%),
    linear-gradient(90deg, transparent 49.85%, rgba(255,255,255,.03) 50%, transparent 50.15%);
  background-size: auto, auto, 58px 58px;
  mask-image: linear-gradient(to bottom, #000 0 80%, transparent 100%);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr); align-items: center; gap: 72px; }
.live-chip { width: max-content; display: inline-flex; align-items: center; gap: 9px; padding: 8px 13px; border: 1px solid rgba(60,229,162,.28); background: rgba(60,229,162,.08); border-radius: 999px; color: #b9ffdf; font-weight: 800; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 0 rgba(60,229,162,.55); animation: pulse 1.9s infinite; }
.hero h1 { margin: 24px 0 22px; font-size: clamp(3.3rem, 6.4vw, 6.8rem); line-height: .93; letter-spacing: -.064em; max-width: 770px; }
.hero h1 span { display: block; color: transparent; background: linear-gradient(105deg, var(--purple-bright), var(--cyan) 70%, #fff); -webkit-background-clip: text; background-clip: text; }
.hero-lead { max-width: 650px; color: var(--muted); font-size: clamp(1rem, 1.8vw, 1.22rem); margin: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { display: inline-flex; justify-content: center; align-items: center; gap: 10px; min-height: 52px; padding: 13px 22px; border-radius: 999px; border: 1px solid transparent; font-weight: 850; text-decoration: none; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease; }
.button svg { width: 20px; height: 20px; fill: currentColor; }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button-primary { background: linear-gradient(135deg, var(--purple), var(--purple-bright)); color: #fff; box-shadow: 0 14px 42px rgba(82, 32, 242, .35), inset 0 1px rgba(255,255,255,.22); }
.button-primary:hover { box-shadow: 0 18px 48px rgba(82, 32, 242, .46), inset 0 1px rgba(255,255,255,.25); }
.button-secondary { border-color: var(--line); background: rgba(255,255,255,.045); color: #fff; backdrop-filter: blur(12px); }
.button-secondary:hover { border-color: rgba(49,220,255,.38); background: rgba(49,220,255,.08); }
.button-wide { width: 100%; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 42px; padding-top: 28px; border-top: 1px solid var(--line); max-width: 610px; }
.hero-meta div { display: grid; min-width: 112px; }
.hero-meta strong { font-size: 1.16rem; }
.hero-meta span { color: var(--muted); font-size: .82rem; }

.hero-visual { position: relative; }
.orbital-card { min-height: 590px; display: grid; place-items: center; position: relative; }
.orbital-card::before { content: ""; position: absolute; width: 72%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(124,77,255,.26), rgba(49,220,255,.08) 50%, transparent 72%); filter: blur(10px); animation: breathe 4s ease-in-out infinite; }
.logo-stage { position: relative; width: min(82%, 430px); z-index: 3; transform: rotate(-1.5deg); }
.logo-stage img { border-radius: 34px; box-shadow: 0 36px 110px rgba(0,0,0,.64), 0 0 0 1px rgba(255,255,255,.08), 0 0 70px rgba(124,77,255,.2); }
.logo-glow { position: absolute; inset: 8%; border-radius: 50%; background: rgba(124,77,255,.32); filter: blur(45px); z-index: -1; }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.orbit::after { content: ""; position: absolute; width: 11px; height: 11px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 17px var(--cyan); top: 8%; left: 22%; }
.orbit-one { width: 92%; aspect-ratio: 1; animation: spin 18s linear infinite; }
.orbit-two { width: 72%; aspect-ratio: 1; border-style: dashed; animation: spin 26s linear infinite reverse; }
.orbit-two::after { background: var(--gold); box-shadow: 0 0 17px var(--gold); top: auto; bottom: 8%; left: auto; right: 18%; }
.on-air-card { position: absolute; z-index: 5; right: -4%; bottom: 11%; width: min(285px, 65%); padding: 18px 20px; border: 1px solid rgba(255,255,255,.15); border-radius: 19px; background: rgba(13,9,24,.78); backdrop-filter: blur(18px); box-shadow: var(--shadow); display: grid; }
.on-air-card span { color: var(--success); font-size: .67rem; font-weight: 900; letter-spacing: .17em; }
.on-air-card strong { margin-top: 3px; font-size: 1.05rem; }
.on-air-card small { color: var(--muted); }
.mini-equalizer { position: absolute; z-index: 6; left: 3%; bottom: 21%; display: flex; align-items: center; gap: 4px; height: 58px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 14px; background: rgba(13,9,24,.8); backdrop-filter: blur(14px); box-shadow: var(--shadow); }
.mini-equalizer i { width: 3px; min-height: 8px; height: 38%; border-radius: 999px; background: linear-gradient(to top, var(--purple-bright), var(--cyan)); animation: eq 1.05s ease-in-out infinite alternate; transform-origin: bottom; }
.mini-equalizer i:nth-child(2n) { animation-delay: -.35s; }
.mini-equalizer i:nth-child(3n) { animation-delay: -.65s; }
.mini-equalizer i:nth-child(5n) { animation-delay: -.85s; }
.scroll-cue { position: absolute; left: 50%; bottom: 24px; width: 26px; height: 42px; border: 1px solid rgba(255,255,255,.25); border-radius: 20px; transform: translateX(-50%); }
.scroll-cue span { position: absolute; width: 4px; height: 7px; border-radius: 5px; background: #fff; top: 8px; left: 10px; animation: scrollCue 1.7s ease-in-out infinite; }

.feature-strip { position: relative; z-index: 4; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow); }
.feature-grid article { min-height: 160px; display: flex; gap: 18px; padding: 28px; background: rgba(13,9,24,.86); backdrop-filter: blur(16px); }
.feature-icon { width: 48px; height: 48px; flex: 0 0 48px; display: grid; place-items: center; border-radius: 15px; color: var(--cyan); background: rgba(49,220,255,.08); border: 1px solid rgba(49,220,255,.18); }
.feature-icon svg { width: 24px; height: 24px; fill: currentColor; }
.feature-grid h2 { margin: 0 0 6px; font-size: 1rem; }
.feature-grid p { margin: 0; color: var(--muted); font-size: .9rem; }

.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.eyebrow { color: var(--cyan); font-size: .76rem; font-weight: 900; text-transform: uppercase; letter-spacing: .18em; }
.section-heading h2, .app-copy h2, .final-cta h2 { margin: 14px 0 0; font-size: clamp(2.3rem, 5vw, 4.7rem); line-height: 1.02; letter-spacing: -.045em; }
.about-copy > p { color: var(--muted); font-size: 1.15rem; margin: 4px 0 28px; }
.quote-card { display: flex; gap: 18px; padding: 24px; border: 1px solid rgba(246,207,85,.22); border-radius: var(--radius-md); background: linear-gradient(135deg, rgba(246,207,85,.08), rgba(82,32,242,.06)); }
.quote-card svg { width: 32px; height: 32px; fill: var(--gold); flex: 0 0 auto; }
.quote-card blockquote { margin: 0; font-size: 1.05rem; font-weight: 800; }

.app-section { overflow: hidden; isolation: isolate; }
.app-backdrop { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(7,5,13,.98) 0 47%, rgba(7,5,13,.83) 70%, rgba(7,5,13,.98)), url('../assets/banner-app.png') center/cover no-repeat; opacity: .78; }
.app-section::after { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 77% 50%, rgba(49,220,255,.12), transparent 26%), radial-gradient(circle at 92% 22%, rgba(246,207,85,.1), transparent 20%); }
.app-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 70px; }
.app-copy p { max-width: 560px; color: var(--muted); font-size: 1.08rem; }
.app-points { display: grid; gap: 10px; margin: 28px 0 30px; }
.app-points div { display: flex; gap: 11px; align-items: center; color: #ded8e7; }
.app-points span { width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: rgba(60,229,162,.1); color: var(--success); font-weight: 900; }
.download-badge { width: min(100%, 305px); display: grid; grid-template-columns: 44px 1fr 22px; align-items: center; gap: 12px; min-height: 72px; padding: 12px 16px; background: #fff; color: #0a0710; border-radius: 18px; text-decoration: none; box-shadow: 0 20px 55px rgba(0,0,0,.3); transition: transform .2s ease, box-shadow .2s ease; }
.download-badge:hover { transform: translateY(-3px); box-shadow: 0 26px 65px rgba(0,0,0,.4); }
.download-badge > svg:first-child { width: 38px; height: 38px; fill: #202020; }
.download-badge span { display: grid; line-height: 1.12; }
.download-badge small { font-size: .65rem; letter-spacing: .1em; }
.download-badge strong { font-size: 1.35rem; }
.badge-arrow { width: 22px; height: 22px; fill: currentColor; }
.phones { min-height: 660px; position: relative; }
.phone { position: absolute; margin: 0; width: min(315px, 48%); overflow: hidden; border: 9px solid #15121b; border-radius: 35px; background: #000; box-shadow: 0 35px 80px rgba(0,0,0,.58), 0 0 0 1px rgba(255,255,255,.16); }
.phone::before { content: ""; position: absolute; z-index: 2; top: 8px; left: 50%; width: 72px; height: 14px; transform: translateX(-50%); border-radius: 999px; background: rgba(0,0,0,.78); }
.phone img { width: 100%; height: auto; }
.phone-back { right: 2%; top: 3%; transform: rotate(8deg) scale(.9); opacity: .82; }
.phone-front { left: 11%; top: 6%; transform: rotate(-5deg); z-index: 3; }

.final-cta { padding-top: 100px; padding-bottom: 130px; }
.cta-card { display: flex; justify-content: space-between; align-items: center; gap: 38px; padding: 52px; border: 1px solid rgba(124,77,255,.27); border-radius: var(--radius-lg); background: linear-gradient(130deg, rgba(82,32,242,.17), rgba(49,220,255,.055) 60%, rgba(246,207,85,.05)); box-shadow: var(--shadow); position: relative; overflow: hidden; }
.cta-card::before { content: ""; position: absolute; width: 250px; height: 250px; right: -60px; top: -95px; border-radius: 50%; border: 1px solid rgba(255,255,255,.11); box-shadow: 0 0 0 28px rgba(255,255,255,.025), 0 0 0 58px rgba(255,255,255,.02); }
.cta-card h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
.cta-card p { color: var(--muted); margin-bottom: 0; }
.cta-card .button { flex-shrink: 0; position: relative; z-index: 1; }

.site-footer { border-top: 1px solid var(--line); padding: 34px 0 120px; background: rgba(4,3,7,.7); }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; color: var(--muted); font-size: .86rem; }
.footer-grid > a { justify-self: end; text-decoration: none; color: #fff; font-weight: 800; }
.footer-brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.footer-brand img { width: 48px; height: 48px; border-radius: 13px; }
.footer-brand div { display: grid; }
.footer-brand span { color: var(--muted); font-size: .76rem; }

.floating-player { position: fixed; z-index: 120; left: 50%; bottom: max(18px, env(safe-area-inset-bottom)); width: min(calc(100% - 28px), 720px); min-height: 78px; transform: translateX(-50%); display: grid; grid-template-columns: minmax(0, 1fr) auto 58px auto; align-items: center; gap: 16px; padding: 10px 14px 10px 11px; border: 1px solid rgba(255,255,255,.16); border-radius: 24px; background: rgba(14,9,25,.9); backdrop-filter: blur(24px) saturate(140%); box-shadow: 0 22px 75px rgba(0,0,0,.56), inset 0 1px rgba(255,255,255,.08); transition: transform .3s ease, border-color .3s ease; }
.floating-player:hover { border-color: rgba(124,77,255,.36); }
.player-brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.player-logo-wrap { width: 56px; height: 56px; position: relative; flex: 0 0 56px; }
.player-logo-wrap img { width: 56px; height: 56px; border-radius: 17px; box-shadow: 0 0 20px rgba(124,77,255,.24); }
.player-live-dot { position: absolute; right: -2px; bottom: -2px; width: 14px; height: 14px; border: 3px solid var(--panel-solid); border-radius: 50%; background: #7a7187; }
body.is-playing .player-live-dot { background: var(--success); box-shadow: 0 0 12px rgba(60,229,162,.7); }
.player-copy { display: grid; min-width: 0; line-height: 1.2; }
.player-copy strong { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.player-kicker { color: var(--muted); font-size: .69rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
body.is-playing .player-kicker { color: var(--success); }
.player-wave { height: 30px; display: flex; align-items: center; gap: 3px; opacity: .55; }
.player-wave i { width: 3px; height: 7px; border-radius: 10px; background: linear-gradient(to top, var(--purple-bright), var(--cyan)); }
body.is-playing .player-wave i { animation: wave .75s ease-in-out infinite alternate; }
.player-wave i:nth-child(2) { animation-delay: -.15s; }.player-wave i:nth-child(3) { animation-delay: -.3s; }.player-wave i:nth-child(4) { animation-delay: -.45s; }.player-wave i:nth-child(5) { animation-delay: -.6s; }.player-wave i:nth-child(6) { animation-delay: -.2s; }.player-wave i:nth-child(7) { animation-delay: -.4s; }.player-wave i:nth-child(8) { animation-delay: -.1s; }
.player-main-button { width: 58px; height: 58px; border: 0; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--purple), var(--purple-bright)); box-shadow: 0 10px 30px rgba(82,32,242,.4), inset 0 1px rgba(255,255,255,.25); cursor: pointer; position: relative; }
.player-main-button svg { grid-area: 1/1; width: 28px; height: 28px; fill: #fff; }
.icon-pause { display: none; }
body.is-playing .icon-play { display: none; }
body.is-playing .icon-pause { display: block; }
body.is-loading .player-main-button svg { display: none; }
.button-spinner { display: none; grid-area: 1/1; width: 25px; height: 25px; border: 3px solid rgba(255,255,255,.25); border-top-color: #fff; border-radius: 50%; animation: spin .75s linear infinite; }
body.is-loading .button-spinner { display: block; }
.player-volume { display: flex; align-items: center; gap: 9px; }
.player-volume button { width: 36px; height: 36px; border: 0; border-radius: 11px; background: transparent; color: var(--muted); cursor: pointer; display: grid; place-items: center; }
.player-volume button:hover { background: rgba(255,255,255,.06); color: #fff; }
.player-volume svg { width: 21px; height: 21px; fill: currentColor; }
.volume-off { display: none; }
body.is-muted .volume-on { display: none; }
body.is-muted .volume-off { display: block; }
.player-volume input { width: 82px; accent-color: var(--purple-bright); }

.welcome-modal[hidden] { display: none; }
.welcome-modal { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 20px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(3,2,6,.8); backdrop-filter: blur(13px); animation: fadeIn .26s ease both; }
.modal-panel { position: relative; width: min(100%, 470px); padding: 38px; text-align: center; border: 1px solid rgba(255,255,255,.16); border-radius: 30px; background: linear-gradient(160deg, rgba(24,15,42,.98), rgba(9,6,16,.98)); box-shadow: 0 36px 120px rgba(0,0,0,.72), 0 0 80px rgba(82,32,242,.18); animation: modalIn .36s cubic-bezier(.2,.8,.2,1) both; overflow: hidden; }
.modal-panel::before { content: ""; position: absolute; width: 260px; height: 260px; left: -120px; top: -140px; border-radius: 50%; background: rgba(49,220,255,.12); filter: blur(28px); }
.modal-close { position: absolute; z-index: 2; top: 14px; right: 14px; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.04); color: #fff; font-size: 1.5rem; line-height: 1; cursor: pointer; }
.modal-signal { width: 156px; height: 156px; margin: 0 auto 22px; position: relative; display: grid; place-items: center; }
.modal-signal img { width: 124px; height: 124px; border-radius: 28px; position: relative; z-index: 3; box-shadow: 0 20px 55px rgba(0,0,0,.4); }
.modal-signal span { position: absolute; inset: 10px; border: 1px solid rgba(124,77,255,.4); border-radius: 50%; animation: signal 2.6s ease-out infinite; }
.modal-signal span:nth-child(2) { animation-delay: .85s; }
.modal-signal span:nth-child(3) { animation-delay: 1.7s; }
.modal-panel .live-chip { margin-inline: auto; }
.modal-panel h2 { font-size: clamp(2rem, 8vw, 2.8rem); line-height: 1.02; letter-spacing: -.04em; margin: 18px 0 13px; }
.modal-panel p { color: var(--muted); margin: 0 auto 24px; max-width: 340px; }
.text-button { margin-top: 14px; padding: 8px 12px; border: 0; background: transparent; color: var(--muted); text-decoration: underline; text-underline-offset: 4px; cursor: pointer; }
.modal-note { display: block; margin-top: 12px; color: #82798e; font-size: .72rem; }

.toast { position: fixed; z-index: 400; left: 50%; top: 22px; transform: translate(-50%, -150%); width: min(calc(100% - 30px), 470px); padding: 13px 16px; border: 1px solid var(--line); border-radius: 14px; background: rgba(18,12,31,.95); color: #fff; text-align: center; box-shadow: var(--shadow); opacity: 0; transition: transform .3s ease, opacity .3s ease; }
.toast.show { transform: translate(-50%, 0); opacity: 1; }
.toast.error { border-color: rgba(255,93,121,.4); }
.toast.success { border-color: rgba(60,229,162,.4); }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .12s; }

@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(60,229,162,0); } 100% { box-shadow: 0 0 0 0 rgba(60,229,162,0); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes breathe { 50% { transform: scale(1.08); opacity: .75; } }
@keyframes eq { from { transform: scaleY(.35); } to { transform: scaleY(1); } }
@keyframes wave { from { height: 6px; } to { height: 28px; } }
@keyframes scrollCue { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }
@keyframes drift { to { transform: translate3d(50px, 80px, 0) scale(1.15); } }
@keyframes signal { 0% { transform: scale(.7); opacity: .8; } 100% { transform: scale(1.45); opacity: 0; } }
@keyframes fadeIn { from { opacity: 0; } }
@keyframes modalIn { from { opacity: 0; transform: translateY(25px) scale(.95); } }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .hero-copy { display: grid; justify-items: center; }
  .hero h1 { max-width: 820px; }
  .hero-actions, .hero-meta { justify-content: center; }
  .hero-visual { width: min(100%, 660px); margin-inline: auto; }
  .orbital-card { min-height: 540px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid article { min-height: auto; }
  .about-grid, .app-grid { grid-template-columns: 1fr; gap: 54px; }
  .phones { width: min(100%, 650px); margin-inline: auto; }
  .app-copy { text-align: center; }
  .app-copy p { margin-inline: auto; }
  .app-points { width: max-content; max-width: 100%; margin-inline: auto; text-align: left; }
  .download-badge { margin-inline: auto; text-align: left; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer-grid > a { justify-self: center; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 82px 0; }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 46px; height: 46px; }
  .menu-toggle { display: block; }
  .main-nav { position: fixed; top: 78px; left: 14px; right: 14px; display: grid; gap: 0; padding: 12px; border: 1px solid var(--line); border-radius: 20px; background: rgba(13,9,24,.97); backdrop-filter: blur(18px); box-shadow: var(--shadow); opacity: 0; transform: translateY(-12px); visibility: hidden; transition: opacity .2s ease, transform .2s ease, visibility .2s; }
  .main-nav.open { opacity: 1; transform: none; visibility: visible; }
  .main-nav a { padding: 13px 14px; border-radius: 12px; }
  .main-nav a:hover { background: rgba(255,255,255,.05); transform: none; }
  .main-nav .nav-cta { margin-top: 4px; text-align: center; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding-top: 112px; min-height: auto; }
  .hero h1 { font-size: clamp(3rem, 15vw, 5rem); }
  .hero-lead { font-size: 1rem; }
  .hero-meta { width: 100%; gap: 12px; }
  .hero-meta div { min-width: 0; flex: 1; }
  .hero-visual { margin-top: 16px; }
  .orbital-card { min-height: 430px; }
  .orbit-one { width: 98%; }
  .on-air-card { right: 0; bottom: 5%; }
  .mini-equalizer { left: 0; bottom: 19%; }
  .scroll-cue { display: none; }
  .feature-grid article { padding: 22px; }
  .about-copy > p { font-size: 1rem; }
  .phones { min-height: 570px; }
  .phone { width: 53%; }
  .phone-front { left: 5%; }
  .phone-back { right: 1%; }
  .cta-card { align-items: flex-start; flex-direction: column; padding: 34px 26px; }
  .cta-card .button { width: 100%; }
  .floating-player { grid-template-columns: minmax(0, 1fr) 54px; gap: 10px; min-height: 72px; border-radius: 21px; }
  .player-wave, .player-volume { display: none; }
  .player-main-button { width: 54px; height: 54px; }
  .player-logo-wrap, .player-logo-wrap img { width: 50px; height: 50px; }
  .player-logo-wrap { flex-basis: 50px; }
  .site-footer { padding-bottom: 116px; }
}

@media (max-width: 480px) {
  .hero-actions { width: 100%; }
  .hero-actions .button { width: 100%; }
  .hero-meta { font-size: .85rem; }
  .hero-meta span { font-size: .7rem; }
  .orbital-card { min-height: 380px; }
  .logo-stage { width: 79%; }
  .on-air-card { width: 64%; padding: 14px 15px; }
  .mini-equalizer { transform: scale(.84); transform-origin: left bottom; }
  .phones { min-height: 490px; }
  .modal-panel { padding: 32px 22px 26px; }
  .modal-signal { transform: scale(.88); margin-bottom: 8px; }
  .floating-player { bottom: max(10px, env(safe-area-inset-bottom)); width: calc(100% - 18px); padding: 8px 9px; }
  .player-copy strong { max-width: 155px; }
}

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