:root {
  color-scheme: dark;
  --bg: #080809;
  --panel: #111113;
  --panel-soft: #161619;
  --line: rgba(255, 255, 255, .09);
  --text: #f7f5f2;
  --muted: #a6a2a0;
  --orange: #ff5a1f;
  --orange-bright: #ff7a18;
  --orange-soft: rgba(255, 90, 31, .14);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
.page-glow { position: fixed; z-index: -1; border-radius: 50%; filter: blur(120px); pointer-events: none; opacity: .22; }
.page-glow-one { width: 480px; height: 480px; top: 40px; right: -180px; background: #ff4d00; }
.page-glow-two { width: 360px; height: 360px; top: 760px; left: -220px; background: #903000; }

.site-header {
  width: min(calc(100% - 40px), var(--max));
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 18px; font-weight: 750; letter-spacing: -.3px; }
.brand img { width: 35px; height: 35px; border-radius: 10px; box-shadow: 0 8px 28px rgba(255, 79, 15, .2); }
.site-header nav { display: flex; align-items: center; gap: 34px; color: var(--muted); font-size: 14px; }
.site-header nav a, .header-link { transition: color .2s ease; }
.site-header nav a:hover, .header-link:hover { color: var(--text); }
.header-link { padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; font-size: 13px; }

main { width: 100%; }
.hero {
  width: min(calc(100% - 40px), var(--max));
  min-height: 720px;
  margin: 0 auto;
  padding: 92px 0 88px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 64px;
}
.eyebrow { display: flex; align-items: center; gap: 10px; color: #d7d2ce; font-size: 12px; font-weight: 700; letter-spacing: 1.7px; text-transform: uppercase; }
.eyebrow span { width: 26px; height: 2px; background: var(--orange); box-shadow: 0 0 12px var(--orange); }
h1, h2, h3, p { margin-top: 0; }
h1 { margin: 24px 0 24px; max-width: 590px; font-size: clamp(55px, 6vw, 82px); line-height: .98; letter-spacing: -5px; font-weight: 760; }
h1 em { color: var(--orange); font-style: normal; }
.hero-lead { max-width: 550px; margin-bottom: 34px; color: var(--muted); font-size: 17px; line-height: 1.85; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { min-height: 52px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; border-radius: 14px; font-size: 14px; font-weight: 700; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, var(--orange), var(--orange-bright)); color: white; box-shadow: 0 16px 34px rgba(255, 74, 15, .22); }
.button-ghost { border: 1px solid var(--line); background: rgba(255,255,255,.035); }
.button-ghost:hover { border-color: rgba(255,255,255,.22); }
.hero-notes { margin-top: 29px; display: flex; flex-wrap: wrap; gap: 22px; color: #858180; font-size: 12px; }
.hero-notes span { display: flex; align-items: center; gap: 7px; }
.hero-notes i { color: var(--orange); font-style: normal; }

.app-stage { position: relative; perspective: 1200px; }
.app-window { position: relative; overflow: hidden; min-height: 475px; border: 1px solid rgba(255,255,255,.14); border-radius: 22px; background: #0e0e10; box-shadow: 0 45px 100px rgba(0,0,0,.52), 0 0 80px rgba(255,79,15,.08); transform: rotateY(-4deg) rotateX(1deg); }
.window-bar { height: 48px; padding: 0 16px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-bottom: 1px solid var(--line); background: #18181a; }
.traffic-lights { display: flex; gap: 7px; }
.traffic-lights span { width: 10px; height: 10px; border-radius: 50%; background: #3a393c; }
.traffic-lights span:first-child { background: #ff5f57; }
.traffic-lights span:nth-child(2) { background: #ffbd2e; }
.traffic-lights span:nth-child(3) { background: #28c840; }
.window-title { display: flex; align-items: center; gap: 7px; color: #c4c1bf; font-size: 12px; font-weight: 650; }
.window-title img { width: 18px; height: 18px; border-radius: 5px; }
.profile-dot { justify-self: end; width: 26px; height: 26px; display: grid; place-items: center; border-radius: 8px; color: white; background: linear-gradient(135deg, var(--orange), #ff9f15); font-size: 10px; font-weight: 800; }
.app-tabs { height: 52px; padding: 7px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; border-bottom: 1px solid var(--line); background: #121214; }
.app-tab { border: 0; border-radius: 9px; color: #797679; background: transparent; cursor: pointer; font-size: 12px; transition: color .2s ease, background .2s ease; }
.app-tab span { margin-right: 5px; color: inherit; }
.app-tab.active { color: white; background: #242326; }
.app-tab.active span { color: var(--orange); text-shadow: 0 0 16px rgba(255,91,31,.48); }
.demo-screen { position: relative; min-height: 374px; padding: 20px; background: radial-gradient(circle at 60% 0%, rgba(255,80,20,.13), transparent 48%), #0a0a0b; }
.demo-content { display: none; min-height: 334px; animation: demo-in .35s ease; }
.demo-content.active { display: block; }
@keyframes demo-in { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }
.demo-topline { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.demo-topline span { font-size: 13px; font-weight: 700; }
.demo-topline small { color: #6f6d70; font-size: 9px; }
.movie-banner { position: relative; height: 158px; padding: 30px; overflow: hidden; display: flex; justify-content: space-between; align-items: center; border-radius: 15px; background: linear-gradient(90deg, rgba(8,8,10,.12), rgba(8,8,10,.74)), radial-gradient(circle at 78% 42%, rgba(255,113,56,.42), transparent 19%), linear-gradient(120deg, #4d1b0d, #21151a 55%, #32120b); border: 1px solid rgba(255,111,45,.22); box-shadow: inset 0 0 70px rgba(0,0,0,.28); }
.movie-banner::after { content: ""; position: absolute; inset: 12px; pointer-events: none; border: 1px solid rgba(255,255,255,.06); border-radius: 10px; }
.movie-banner div:first-child { display: flex; flex-direction: column; }
.movie-banner small { margin-bottom: 9px; color: #ff9b70; font-size: 9px; letter-spacing: 1px; }
.movie-banner strong { margin-bottom: 10px; font-size: 24px; letter-spacing: -1px; }
.movie-banner span { color: #8c8582; font-size: 10px; }
.play-orb { z-index: 1; width: 64px; height: 64px; display: grid; place-items: center; border: 7px solid rgba(255,255,255,.12); border-radius: 50%; background: var(--orange); color: white; box-shadow: 0 0 42px rgba(255,90,31,.48); font-size: 19px; }
.poster-grid { margin-top: 14px; display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.poster-grid figure { position: relative; height: 128px; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-radius: 8px; background: #171719; box-shadow: 0 8px 22px rgba(0,0,0,.3); }
.poster-grid img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 24%; filter: saturate(.92) contrast(1.04); }
.poster-grid figure::after { content: ""; position: absolute; inset: 38% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.9)); }
.poster-grid figcaption { position: absolute; z-index: 1; left: 8px; right: 8px; bottom: 7px; overflow: hidden; color: rgba(255,255,255,.92); font-size: 8px; font-weight: 650; letter-spacing: .2px; text-overflow: ellipsis; white-space: nowrap; }
.poster-grid .rating { position: absolute; z-index: 2; top: 6px; right: 6px; padding: 3px 5px; border-radius: 5px; color: #ffd669; background: rgba(0,0,0,.72); font-size: 7px; font-style: normal; font-weight: 700; }
.poster-grid.is-loading i { height: 128px; border-radius: 8px; background: linear-gradient(100deg, #171719 20%, #252429 42%, #171719 64%); background-size: 220% 100%; animation: poster-loading 1.25s linear infinite; }
.poster-grid.is-unavailable { display: flex; height: 128px; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.06); border-radius: 9px; color: #777377; background: #151517; font-size: 9px; }
@keyframes poster-loading { to { background-position: -220% 0; } }
.album-art { width: 126px; height: 126px; margin: 28px auto 18px; display: grid; place-items: center; border-radius: 24px; background: radial-gradient(circle at 35% 30%, #ffb154, #f04a17 46%, #40130b); font-size: 44px; box-shadow: 0 24px 45px rgba(255,80,20,.18); }
.track-name, .track-meta { display: block; text-align: center; }
.track-name { margin-bottom: 7px; font-size: 16px; }
.track-meta { color: #777377; font-size: 10px; }
.track-line { height: 3px; margin: 22px 42px 16px; overflow: hidden; border-radius: 9px; background: #29282b; }
.track-line i { display: block; width: 48%; height: 100%; background: var(--orange); }
.player-controls { display: flex; justify-content: center; align-items: center; gap: 24px; color: #8b878a; font-size: 12px; }
.player-controls b { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--orange); }
.official-card { height: 186px; padding: 22px; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 13px; border: 1px solid rgba(255,255,255,.07); border-radius: 16px; background: radial-gradient(circle at 50% 34%, rgba(255,93,31,.16), transparent 30%), linear-gradient(135deg, #1d1c1f, #101012); text-align: center; }
.download-orb { flex: 0 0 auto; width: 70px; height: 70px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: white; background: linear-gradient(145deg, #ff8b39, #f04a17); box-shadow: 0 18px 38px rgba(255,80,20,.3), 0 0 0 8px rgba(255,89,31,.08); font-size: 37px; font-weight: 300; }
.official-card div:not(.download-orb) { display: flex; flex-direction: column; }
.official-card small { margin-bottom: 5px; color: var(--orange); }
.official-card strong { margin-bottom: 6px; font-size: 20px; }
.official-card span { color: #777377; font-size: 10px; }
.official-rows { margin-top: 14px; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 10px; }
.official-rows i { height: 78px; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px; border-radius: 10px; background: #171719; border: 1px solid rgba(255,255,255,.06); font-style: normal; }
.official-rows b { color: var(--orange); font-size: 9px; letter-spacing: 1px; }
.official-rows span { color: #8a878a; font-size: 9px; }
.stage-badge { position: absolute; padding: 12px 15px; display: flex; align-items: center; gap: 10px; border: 1px solid rgba(255,255,255,.13); border-radius: 14px; background: rgba(22,21,23,.87); box-shadow: 0 18px 45px rgba(0,0,0,.38); backdrop-filter: blur(16px); }
.stage-badge > span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; color: var(--orange); background: var(--orange-soft); font-weight: 800; }
.stage-badge div { display: flex; flex-direction: column; gap: 2px; }
.stage-badge small { color: #777377; font-size: 9px; }
.stage-badge strong { font-size: 12px; }
.stage-badge-login { right: -24px; top: 52px; }
.stage-badge-native { left: -30px; bottom: 34px; }

.trust-strip { min-height: 82px; padding: 20px; display: flex; justify-content: center; align-items: center; gap: 26px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: #777376; font-size: 11px; font-weight: 650; letter-spacing: 1.1px; text-transform: uppercase; }
.trust-strip i { width: 3px; height: 3px; border-radius: 50%; background: var(--orange); }
.section { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; padding: 128px 0; }
.section-heading { max-width: 590px; margin-bottom: 54px; }
.section-heading h2, .download-copy h2 { margin: 22px 0 18px; font-size: clamp(42px, 5vw, 64px); line-height: 1.06; letter-spacing: -3px; }
.section-heading p, .download-copy p { color: var(--muted); line-height: 1.75; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.feature-card { min-height: 310px; padding: 34px; position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.018)); }
.feature-card::after { content: ""; position: absolute; width: 210px; height: 210px; right: -100px; bottom: -130px; border-radius: 50%; background: var(--orange); filter: blur(75px); opacity: .08; }
.feature-large { grid-column: span 2; min-height: 270px; display: grid; grid-template-columns: 1fr .8fr; align-items: center; gap: 48px; }
.feature-wide { grid-column: span 2; min-height: 250px; display: grid; grid-template-columns: 1fr .8fr; align-items: center; gap: 48px; }
.feature-icon { width: 46px; height: 46px; margin-bottom: 44px; display: grid; place-items: center; border-radius: 13px; color: var(--orange); background: var(--orange-soft); font-size: 20px; }
.feature-large .feature-icon, .feature-wide .feature-icon { position: absolute; top: 30px; left: 34px; margin: 0; }
.feature-large > div:nth-child(2), .feature-wide > div:nth-child(2) { padding-top: 58px; }
.feature-card small { color: var(--orange); font-size: 10px; font-weight: 750; letter-spacing: 1.4px; text-transform: uppercase; }
.feature-card h3 { margin: 10px 0 13px; font-size: 25px; letter-spacing: -1px; }
.feature-card p { max-width: 510px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.account-preview { position: relative; z-index: 1; padding: 18px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 13px; border: 1px solid var(--line); border-radius: 16px; background: #0c0c0e; }
.account-preview img { width: 44px; height: 44px; border-radius: 12px; }
.account-preview div { display: flex; flex-direction: column; gap: 4px; }
.account-preview div span { font-size: 13px; font-weight: 700; }
.account-preview div small { color: #716d70; font-size: 9px; letter-spacing: 0; text-transform: none; }
.account-preview b { padding: 7px 9px; border-radius: 8px; color: #58d792; background: rgba(66,207,133,.09); font-size: 9px; }
.sync-visual { display: flex; align-items: center; justify-content: center; gap: 13px; color: #888589; }
.sync-visual span, .sync-visual b { padding: 16px 18px; border: 1px solid var(--line); border-radius: 13px; background: #0b0b0d; font-size: 12px; }
.sync-visual b { color: white; border-color: rgba(255,90,31,.35); box-shadow: 0 0 28px rgba(255,90,31,.12); }
.sync-visual i { width: 28px; height: 1px; background: linear-gradient(90deg, #444, var(--orange)); }

.download-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 76px; align-items: center; }
.download-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.download-card { min-height: 400px; padding: 32px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 24px; background: var(--panel); transition: transform .2s ease, border-color .2s ease; }
.download-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.18); }
.download-card.recommended { position: relative; border-color: rgba(255,90,31,.35); background: linear-gradient(145deg, rgba(255,89,31,.1), #111113 50%); }
.recommend-label { position: absolute; top: 17px; right: 17px; padding: 7px 9px; border-radius: 999px; color: #ff9b72; background: rgba(255,90,31,.11); font-size: 9px; font-weight: 700; }
.chip-icon { width: 67px; height: 67px; margin-bottom: 35px; display: grid; place-items: center; position: relative; border: 1px solid rgba(255,255,255,.11); border-radius: 18px; background: #1c1b1e; box-shadow: inset 0 0 0 5px #111113; }
.chip-icon span { font-size: 27px; }
.chip-icon small { position: absolute; right: 7px; bottom: 6px; color: var(--orange); font-size: 10px; }
.chip-icon.intel span { font-size: 11px; font-weight: 850; letter-spacing: -.4px; }
.download-card > small { color: #716f72; font-size: 9px; letter-spacing: 1.2px; }
.download-card h3 { margin: 8px 0 12px; font-size: 23px; }
.download-card p { color: var(--muted); font-size: 13px; line-height: 1.65; }
.download-card a { margin-top: auto; min-height: 48px; padding: 0 16px; display: flex; align-items: center; justify-content: space-between; border-radius: 12px; background: white; color: #111; font-size: 12px; font-weight: 750; }
.recommended a { background: var(--orange); color: white; }
.version-note { grid-column: 2; margin: -44px 0 0; text-align: center; color: #656165; font-size: 10px; }
.section-heading.compact { margin-bottom: 45px; }
.steps { padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; list-style: none; }
.steps li { min-height: 220px; padding: 28px; display: flex; flex-direction: column; border-top: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,.025), transparent); }
.steps li > span { margin-bottom: 56px; color: var(--orange); font-size: 11px; font-weight: 800; }
.steps h3 { margin-bottom: 10px; font-size: 18px; }
.steps p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.final-cta { width: min(calc(100% - 40px), var(--max)); min-height: 230px; margin: 0 auto 80px; padding: 45px 52px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 30px; border: 1px solid rgba(255,90,31,.2); border-radius: 28px; background: radial-gradient(circle at 10% 0%, rgba(255,90,31,.18), transparent 45%), #111113; }
.final-cta-logo { display: block; width: 76px; height: 76px; border-radius: 20px; transition: transform .2s ease; }
.final-cta-logo:hover { transform: translateY(-2px); }
.final-cta-logo img { width: 100%; height: 100%; border-radius: inherit; }
.final-cta small { color: var(--orange); font-size: 9px; font-weight: 750; letter-spacing: 1.4px; }
.final-cta h2 { margin: 8px 0 0; font-size: clamp(24px, 3vw, 38px); letter-spacing: -1.5px; }
footer { width: min(calc(100% - 40px), var(--max)); min-height: 112px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-top: 1px solid var(--line); color: #777377; font-size: 11px; }
footer .brand { color: var(--text); font-size: 15px; }
footer .brand img { width: 29px; height: 29px; border-radius: 8px; }
footer p { margin: 0; }
footer > a:last-child { justify-self: end; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 72px; }
  .hero-copy { text-align: center; }
  .eyebrow, .hero-actions, .hero-notes { justify-content: center; }
  .hero-lead, h1 { margin-left: auto; margin-right: auto; }
  .app-stage { max-width: 720px; width: 100%; margin: 0 auto; }
  .app-window { transform: none; }
  .download-section { grid-template-columns: 1fr; gap: 40px; }
  .version-note { grid-column: 1; margin: -22px 0 0; }
}

@media (max-width: 720px) {
  .site-header { height: 70px; width: min(calc(100% - 28px), var(--max)); }
  .site-header nav { display: none; }
  .header-link { padding: 8px 12px; }
  .hero, .section, .final-cta, footer { width: min(calc(100% - 28px), var(--max)); }
  .hero { min-height: auto; padding: 62px 0 70px; gap: 54px; }
  h1 { font-size: clamp(49px, 15vw, 68px); letter-spacing: -3.7px; }
  .hero-lead { font-size: 15px; }
  .hero-actions .button { flex: 1; }
  .app-window { min-height: 390px; border-radius: 18px; }
  .demo-screen { min-height: 290px; padding: 14px; }
  .demo-content { min-height: 262px; }
  .movie-banner { height: 136px; padding: 20px; }
  .movie-banner strong { font-size: 18px; }
  .poster-grid figure { height: 78px; }
  .poster-grid.is-loading i, .poster-grid.is-unavailable { height: 78px; }
  .stage-badge { display: none; }
  .trust-strip { gap: 12px; flex-wrap: wrap; }
  .trust-strip span { width: calc(50% - 20px); text-align: center; }
  .trust-strip i:nth-of-type(2) { display: none; }
  .section { padding: 90px 0; }
  .section-heading h2, .download-copy h2 { font-size: 44px; letter-spacing: -2.3px; }
  .feature-grid, .download-grid, .steps { grid-template-columns: 1fr; }
  .feature-large, .feature-wide { grid-column: span 1; grid-template-columns: 1fr; gap: 30px; }
  .feature-large, .feature-wide { padding-top: 34px; }
  .feature-large > div:nth-child(2), .feature-wide > div:nth-child(2) { padding-top: 65px; }
  .feature-card { min-height: 280px; }
  .sync-visual { gap: 7px; }
  .sync-visual span, .sync-visual b { padding: 13px 10px; }
  .sync-visual i { width: 15px; }
  .download-card { min-height: 350px; }
  .steps { gap: 0; }
  .steps li { min-height: 180px; }
  .steps li > span { margin-bottom: 34px; }
  .final-cta { padding: 38px 28px; grid-template-columns: 1fr; text-align: center; }
  .final-cta-logo { margin: 0 auto; }
  footer { padding: 28px 0; grid-template-columns: 1fr; justify-items: center; gap: 18px; }
  footer > a:last-child { justify-self: center; }
}

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