:root {
  color-scheme: dark;
  --bg: #070707;
  --panel: #101010;
  --muted: #a1a1a1;
  --line: rgba(255, 255, 255, 0.11);
  --red: #f01717;
  --red-deep: #8d0909;
  --white: #f7f4f2;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 78% 18%, rgba(167, 5, 5, 0.18), transparent 28rem),
    radial-gradient(circle at 8% 80%, rgba(95, 4, 4, 0.12), transparent 30rem),
    var(--bg);
  color: var(--white);
  overflow-x: hidden;
}

a { color: inherit; }
:focus-visible { outline: 3px solid #ff4a4a; outline-offset: 4px; }
.skip-link { position: fixed; left: 18px; top: -80px; z-index: 100; padding: 12px 18px; border-radius: 10px; background: var(--red); color: white; text-decoration: none; }
.skip-link:focus { top: 18px; }
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .045;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.site-header {
  max-width: 1320px;
  margin: 0 auto;
  padding: 22px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { object-fit: cover; border-radius: 12px; }
.brand span { font-size: 17px; font-weight: 750; letter-spacing: .32em; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.language-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  font: 700 12px/1 inherit;
  cursor: pointer;
  transition: .2s ease;
}
.language-toggle:hover { border-color: rgba(240, 23, 23, .7); background: rgba(240, 23, 23, .1); }
.header-download {
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 650;
  transition: .2s ease;
}
.header-download:hover { border-color: rgba(240, 23, 23, .7); background: rgba(240, 23, 23, .1); }

main { max-width: 1320px; margin: 0 auto; padding: 0 34px; }
.hero {
  min-height: calc(100vh - 92px);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: 54px;
  padding: 54px 0 92px;
}
.eyebrow { display: flex; align-items: center; gap: 10px; color: #d5d0cd; font-size: 13px; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow > span:first-child { flex: 0 0 30px; width: 30px; height: 2px; background: var(--red); box-shadow: 0 0 16px var(--red); }
h1 { margin: 24px 0 22px; font-size: clamp(52px, 6vw, 88px); line-height: .95; letter-spacing: -.065em; font-weight: 740; }
h1 em { color: var(--red); font-style: normal; }
.lead { max-width: 620px; color: var(--muted); font-size: 19px; line-height: 1.65; }

.release-card { width: min(100%, 520px); margin-top: 38px; padding: 15px; border: 1px solid var(--line); border-radius: 24px; background: rgba(20, 20, 20, .78); backdrop-filter: blur(14px); box-shadow: 0 22px 80px rgba(0, 0, 0, .38); }
.release-topline { display: flex; gap: 12px; align-items: center; padding: 2px 5px 15px; }
.release-topline div { display: flex; flex-direction: column; gap: 2px; }
.release-topline strong { font-size: 14px; }
.release-topline span:last-child { color: var(--muted); font-size: 12px; }
.android-mark { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: #252525; color: #a7d56e; font: 800 16px/1 monospace; }
.download-button { min-height: 78px; padding: 15px 20px; display: flex; align-items: center; gap: 16px; border-radius: 16px; text-decoration: none; background: linear-gradient(135deg, #ff2828, #bf0808); box-shadow: 0 16px 45px rgba(216, 9, 9, .28), inset 0 1px rgba(255,255,255,.25); transition: transform .2s ease, box-shadow .2s ease; }
.download-button:hover { transform: translateY(-2px); box-shadow: 0 22px 55px rgba(216, 9, 9, .38), inset 0 1px rgba(255,255,255,.25); }
.download-button[aria-disabled="true"] { opacity: .55; pointer-events: none; }
.download-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: rgba(0,0,0,.22); font-size: 26px; }
.download-button > span:last-child { display: flex; flex-direction: column; gap: 4px; }
.download-button strong { font-size: 18px; }
.download-button small { color: rgba(255,255,255,.7); }
.install-note { margin: 13px 6px 2px; color: #888; font-size: 12px; line-height: 1.5; }

.hero-visual { min-height: 570px; position: relative; display: grid; place-items: center; perspective: 1000px; }
.orb { position: absolute; border-radius: 50%; filter: blur(2px); }
.orb-one { width: 520px; height: 520px; background: radial-gradient(circle, rgba(241,23,23,.22), rgba(112,4,4,.04) 52%, transparent 72%); }
.orb-two { width: 210px; height: 210px; right: 2%; top: 5%; border: 1px solid rgba(255,44,44,.16); box-shadow: inset 0 0 70px rgba(240,23,23,.08); }
.tv-frame { width: min(100%, 680px); aspect-ratio: 16 / 10; padding: 10px; border-radius: 28px; background: linear-gradient(145deg, #373737, #080808 55%, #202020); box-shadow: 0 55px 90px rgba(0,0,0,.72), 0 0 0 1px rgba(255,255,255,.1); transform: rotateY(-5deg) rotateX(2deg); position: relative; z-index: 2; }
.tv-screen { height: 100%; border-radius: 20px; overflow: hidden; position: relative; background: radial-gradient(circle at 70% 18%, #3b0909 0, #120505 34%, #050505 76%); }
.screen-glow { position: absolute; inset: -20%; background: linear-gradient(112deg, transparent 27%, rgba(255,29,29,.22) 48%, transparent 59%); transform: rotate(-7deg); }
.tv-screen > img { position: absolute; width: 27%; height: auto; right: 6%; top: 5%; opacity: .82; border-radius: 16%; mix-blend-mode: screen; }
.screen-copy { position: absolute; left: 8%; top: 20%; max-width: 58%; display: flex; flex-direction: column; gap: 10px; }
.screen-copy span { font-size: clamp(10px, 1.1vw, 14px); color: #ff6767; text-transform: uppercase; letter-spacing: .14em; }
.screen-copy strong { font-size: clamp(25px, 3.2vw, 46px); line-height: 1.03; letter-spacing: -.04em; }
.screen-rail { position: absolute; left: 8%; right: 8%; bottom: 8%; display: grid; grid-template-columns: repeat(4, 1fr); gap: 11px; }
.screen-rail i { height: 94px; border-radius: 9px; background: linear-gradient(145deg, #4b1515, #181818); border: 1px solid rgba(255,255,255,.08); }
.screen-rail i:nth-child(2) { background: linear-gradient(145deg, #33272a, #171717); }
.screen-rail i:nth-child(3) { background: linear-gradient(145deg, #6b2717, #171717); }
.screen-rail i:nth-child(4) { background: linear-gradient(145deg, #2b2337, #171717); }
.tv-stand { width: 42%; height: 38px; margin-top: -3px; z-index: 1; background: linear-gradient(#171717, #060606); clip-path: polygon(30% 0, 70% 0, 100% 100%, 0 100%); box-shadow: 0 22px 50px #000; }
.remote { position: absolute; right: 3%; bottom: 5%; width: 55px; height: 170px; padding-top: 23px; display: flex; align-items: center; flex-direction: column; gap: 15px; border-radius: 24px; background: linear-gradient(145deg, #303030, #090909); box-shadow: 0 20px 45px #000; transform: rotate(11deg); z-index: 3; }
.remote span { width: 28px; height: 28px; border: 5px solid #181818; border-radius: 50%; background: var(--red); }
.remote i { width: 22px; height: 4px; border-radius: 2px; background: #373737; }

.features { padding: 120px 0 100px; border-top: 1px solid var(--line); }
.section-heading { display: grid; grid-template-columns: .7fr 1.3fr; align-items: end; gap: 20px; }
.section-heading > span, .section-label { color: var(--red); font-size: 13px; text-transform: uppercase; letter-spacing: .16em; }
.section-heading h2, .release-notes h2 { margin: 0; font-size: clamp(38px, 5vw, 68px); line-height: 1; letter-spacing: -.055em; }
.feature-grid { margin-top: 64px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.feature-grid article { padding: 32px 30px 24px 0; border-right: 1px solid var(--line); }
.feature-grid article + article { padding-left: 30px; }
.feature-grid article:last-child { border-right: 0; }
.feature-grid b { color: var(--red); font: 500 13px/1 monospace; }
.feature-grid h3 { margin: 60px 0 14px; font-size: 23px; }
.feature-grid p { margin: 0; color: var(--muted); line-height: 1.65; }

.release-notes { margin: 15px 0 110px; padding: 46px; display: grid; grid-template-columns: .7fr 1.3fr; gap: 40px; align-items: start; border: 1px solid var(--line); border-radius: 30px; background: linear-gradient(125deg, rgba(240,23,23,.09), rgba(255,255,255,.025) 42%, transparent); }
.release-notes h2 { margin-top: 12px; font-size: 44px; }
.release-notes p { margin: 0; white-space: pre-line; color: #c3bfbc; font-size: 17px; line-height: 1.75; }

.seo-catalog { padding: 10px 0 120px; }
.seo-card-grid { margin-top: 46px; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 24px 16px; }
.seo-card { min-width: 0; }
.seo-card a { display: block; text-decoration: none; }
.seo-card img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; border-radius: 16px; background: #151515; box-shadow: 0 16px 34px rgba(0,0,0,.35); transition: transform .2s ease, box-shadow .2s ease; }
.seo-card a:hover img, .seo-card a:focus-visible img { transform: translateY(-5px); box-shadow: 0 22px 42px rgba(0,0,0,.52); }
.seo-card span { display: block; margin-top: 13px; color: var(--red); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.seo-card h3 { margin: 7px 0 0; font-size: 16px; line-height: 1.3; }

.title-page {
  min-height: 100vh;
  background: #080808;
  isolation: isolate;
}
.title-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(6,6,6,.99) 0%, rgba(6,6,6,.92) 46%, rgba(6,6,6,.66) 100%);
}
.title-backdrop {
  position: fixed;
  inset: -70px -70px auto 32%;
  height: min(880px, 94vh);
  z-index: -3;
  overflow: hidden;
  opacity: .42;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, #000 58%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 58%, transparent 100%);
}
.title-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: blur(28px) saturate(.85) contrast(1.08);
  transform: scale(1.09);
}
.title-header {
  max-width: 1440px;
  padding: 24px 48px;
}
.title-main {
  max-width: 1440px;
  min-height: calc(100vh - 164px);
  padding: 28px 48px 110px;
}
.title-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 42px;
  color: rgba(255,255,255,.42);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.title-breadcrumbs a { color: rgba(255,255,255,.72); text-decoration: none; transition: color .2s ease; }
.title-breadcrumbs a:hover { color: white; }
.title-hero {
  display: grid;
  grid-template-columns: minmax(210px, 250px) minmax(0, 880px);
  gap: clamp(42px, 6.5vw, 104px);
  align-items: center;
}
.title-poster-wrap { position: relative; align-self: start; }
.title-poster-wrap::before {
  content: "";
  position: absolute;
  inset: 12% -12% -7%;
  z-index: -1;
  border-radius: 45%;
  background: rgba(202,12,12,.24);
  filter: blur(55px);
}
.title-poster {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  max-height: 375px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  background: linear-gradient(145deg,#301010,#0b0b0b);
  box-shadow: 0 40px 90px rgba(0,0,0,.68), 0 10px 28px rgba(0,0,0,.42);
}
.title-poster-fallback { display: grid; place-items: center; padding: 24%; }
.title-poster-fallback img { width: 100%; height: auto; border-radius: 20%; }
.title-poster-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(7,7,7,.78);
  backdrop-filter: blur(12px);
  color: rgba(255,255,255,.86);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.title-content { min-width: 0; padding: 8px 0; }
.title-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: #ff4a4a;
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.title-kicker > span:first-child { width: 32px; height: 2px; background: var(--red); box-shadow: 0 0 16px rgba(240,23,23,.8); }
.title-content h1 {
  max-width: 900px;
  margin: 19px 0 0;
  line-height: .96;
  letter-spacing: -.055em;
}
.title-content h1 > span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255,255,255,.6);
  font-size: clamp(15px, 1.4vw, 20px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: .02em;
}
.title-content h1 > strong {
  display: block;
  font-size: clamp(48px, 6.1vw, 88px);
  font-weight: 760;
  overflow-wrap: anywhere;
}
.title-original { margin: 16px 0 0; color: rgba(255,255,255,.43); font-size: 17px; }
.title-meta-row { display: flex; align-items: center; gap: 22px; margin-top: 28px; }
.title-score { display: inline-flex; align-items: baseline; gap: 4px; flex: 0 0 auto; }
.title-score > span { margin-right: 3px; color: #ffce52; font-size: 17px; }
.title-score strong { color: white; font-size: 21px; }
.title-score small { color: rgba(255,255,255,.35); font-size: 12px; }
.title-facts { display: flex; flex-wrap: wrap; align-items: center; gap: 0; margin: 0; padding: 0; list-style: none; }
.title-facts li { color: rgba(255,255,255,.67); font-size: 13px; }
.title-facts li + li::before { content: "·"; margin: 0 10px; color: rgba(255,255,255,.23); }
.title-description { max-width: 780px; margin: 27px 0 0; color: rgba(255,255,255,.68); font-size: 16px; line-height: 1.75; }
.title-cta-panel {
  max-width: 760px;
  margin-top: 34px;
  padding: 13px;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  background: rgba(20,20,20,.68);
  box-shadow: 0 25px 70px rgba(0,0,0,.3);
  backdrop-filter: blur(18px);
}
.title-cta-copy { min-width: 0; padding-left: 3px; display: flex; align-items: center; gap: 12px; }
.title-cta-copy > div { min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.title-cta-copy strong { font-size: 14px; }
.title-cta-copy small { color: rgba(255,255,255,.44); font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.title-download-button { min-height: 62px; min-width: 244px; padding: 11px 17px; border-radius: 14px; }
.title-download-button .download-icon { width: 38px; height: 38px; font-size: 22px; }
.title-download-button strong { font-size: 15px; }
.title-download-button small { font-size: 11px; }
.title-details {
  max-width: 780px;
  margin-top: 37px;
  padding-top: 27px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  border-top: 1px solid rgba(255,255,255,.09);
}
.title-details dt { color: rgba(255,255,255,.34); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; }
.title-details dd { margin: 8px 0 0; color: rgba(255,255,255,.73); font-size: 13px; line-height: 1.6; }
.title-footer { border-color: rgba(255,255,255,.08); }

footer { max-width: 1320px; margin: 0 auto; padding: 30px 34px 48px; display: flex; align-items: center; gap: 28px; border-top: 1px solid var(--line); color: #777; font-size: 13px; }
footer p { flex: 1; }
.footer-brand span { color: #eee; font-size: 14px; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 70px; }
  .hero-visual { min-height: 500px; order: -1; }
  .hero-copy { text-align: center; }
  .eyebrow { justify-content: center; }
  .lead, .release-card { margin-left: auto; margin-right: auto; }
  .seo-card-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .title-hero { grid-template-columns: minmax(190px, 230px) minmax(0, 1fr); gap: 44px; }
  .title-cta-panel { grid-template-columns: 1fr; }
  .title-download-button { width: 100%; }
}

@media (max-width: 700px) {
  .site-header, main, footer { padding-left: 20px; padding-right: 20px; }
  .site-header { padding-top: 16px; }
  .header-download { padding: 10px 13px; }
  .hero { min-height: auto; gap: 28px; padding: 32px 0 74px; }
  .hero-visual { min-height: 330px; }
  .remote { display: none; }
  h1 { font-size: clamp(44px, 15vw, 66px); }
  .lead { font-size: 17px; }
  .section-heading, .release-notes { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid article, .feature-grid article + article { padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .feature-grid h3 { margin-top: 26px; }
  .release-notes { padding: 28px; }
  .seo-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 13px; }
  .title-header { padding: 16px 20px; }
  .title-main { padding: 20px 20px 76px; }
  .title-backdrop { inset: -30px -70px auto -70px; height: 620px; opacity: .25; }
  .title-page::after { background: linear-gradient(to bottom, rgba(6,6,6,.72), #080808 520px); }
  .title-breadcrumbs { margin-bottom: 24px; overflow: hidden; white-space: nowrap; }
  .title-breadcrumbs span:last-child { overflow: hidden; text-overflow: ellipsis; }
  .title-hero { grid-template-columns: 1fr; gap: 34px; }
  .title-poster-wrap { width: min(52vw, 220px); margin: 0 auto; }
  .title-content { padding-top: 0; }
  .title-content h1 { text-align: center; }
  .title-content h1 > strong { font-size: clamp(42px, 13.5vw, 64px); }
  .title-kicker { justify-content: center; }
  .title-original { text-align: center; }
  .title-meta-row { justify-content: center; flex-wrap: wrap; gap: 13px 18px; }
  .title-facts { justify-content: center; }
  .title-description { font-size: 15px; line-height: 1.7; }
  .title-cta-panel { margin-top: 28px; padding: 12px; }
  .title-cta-copy { padding: 3px; }
  .title-details { grid-template-columns: 1fr; gap: 20px; }
  footer { align-items: flex-start; flex-wrap: wrap; }
  footer p { min-width: 60%; margin: 12px 0; }
}

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