:root {
  color-scheme: dark;
  --bg: #050505;
  --surface: #101010;
  --surface-strong: #171717;
  --surface-soft: #202020;
  --text: #f8f8f8;
  --muted: #b8b8b8;
  --border: rgba(255, 255, 255, 0.11);
  --brand: #ffc21c;
  --brand-strong: #ff9f0a;
  --brand-soft: rgba(255, 194, 28, 0.12);
  --success: #59d98e;
  --danger: #ff6b6b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% -10%, rgba(255, 194, 28, 0.15), transparent 30%),
    radial-gradient(circle at 88% 7%, rgba(255, 159, 10, 0.1), transparent 27%),
    var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(255, 194, 28, 0.72);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  inset-inline-start: 16px;
  top: -100px;
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--brand);
  color: #111;
  font-weight: 800;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 14px;
}

.container {
  width: min(calc(100% - 36px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(5, 5, 5, 0.92);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  line-height: 1.08;
}

.brand-name {
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-tagline {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-link {
  padding: 9px 13px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 140ms ease, background 140ms ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--text);
  background: var(--surface-strong);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-button,
.language-button,
.menu-button {
  min-height: 42px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  font-weight: 800;
}

.language-button {
  min-width: 48px;
  padding: 8px 12px;
}

.menu-button {
  width: 44px;
  display: none;
  place-items: center;
  padding: 0;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 99px;
  background: currentColor;
  content: "";
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-button span {
  margin-block: 4px;
}

.menu-button[aria-expanded="true"] span {
  opacity: 0;
}

.menu-button[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 58px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(340px, 0.97fr);
  align-items: center;
  gap: clamp(42px, 7vw, 88px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 194, 28, 0.28);
  border-radius: 999px;
  background: var(--brand-soft);
  color: #ffd968;
  font-size: 0.83rem;
  font-weight: 800;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 20px rgba(255, 194, 28, 0.8);
}

.hero h1,
.page-hero h1 {
  margin: 24px 0 18px;
  font-size: clamp(2.55rem, 6vw, 5.2rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.hero h1 strong,
.page-hero h1 strong {
  color: var(--brand);
}

.hero-copy {
  max-width: 670px;
  color: #d2d2d2;
  font-size: clamp(1.02rem, 1.7vw, 1.19rem);
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-weight: 900;
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: #171000;
  box-shadow: 0 16px 42px rgba(255, 159, 10, 0.19);
}

.button-secondary {
  border-color: var(--border);
  background: var(--surface);
  color: var(--text);
}

.button-disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.hero-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.85rem;
}

.phone-stage {
  position: relative;
  min-height: 585px;
  display: grid;
  place-items: center;
}

.phone-stage::before {
  position: absolute;
  width: min(100%, 510px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 194, 28, 0.18), transparent 66%);
  content: "";
  filter: blur(8px);
}

.phone {
  position: relative;
  z-index: 2;
  width: min(100%, 330px);
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 42px;
  background: #030303;
  box-shadow: var(--shadow), 0 0 0 8px rgba(255, 255, 255, 0.025);
  transform: rotate(2deg);
}

.phone-screen {
  min-height: 650px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 33px;
  background:
    radial-gradient(circle at 70% -10%, rgba(255, 194, 28, 0.2), transparent 28%),
    #080808;
}

.phone-status {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 20px;
  color: #d7d7d7;
  font-size: 0.68rem;
}

.phone-content {
  padding: 13px 16px 17px;
}

.phone-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.phone-title {
  font-size: 1.35rem;
  font-weight: 900;
}

.avatar {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #2c2c2c, #131313);
  color: var(--brand);
  font-weight: 900;
}

.search-mock {
  height: 42px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-inline: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: #858585;
  font-size: 0.8rem;
}

.poster-row {
  margin-top: 19px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.poster {
  position: relative;
  min-height: 145px;
  overflow: hidden;
  border-radius: 13px;
  background:
    linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.85)),
    linear-gradient(145deg, #3d2712, #eaa013 45%, #351400);
}

.poster:nth-child(2) {
  background:
    linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.85)),
    linear-gradient(145deg, #1c2f4a, #456ca8 45%, #08101d);
}

.poster:nth-child(3) {
  background:
    linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.85)),
    linear-gradient(145deg, #2d1535, #9d3c7e 45%, #140718);
}

.poster::before {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50% 30% 45% 24%;
  content: "";
}

.poster span {
  position: absolute;
  inset-inline: 9px;
  bottom: 8px;
  font-size: 0.64rem;
  font-weight: 800;
}

.next-card {
  margin-top: 18px;
  padding: 12px;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
}

.next-art {
  min-height: 84px;
  border-radius: 11px;
  background: linear-gradient(150deg, #393939, #111);
}

.next-copy {
  min-width: 0;
}

.next-kicker {
  color: var(--brand);
  font-size: 0.67rem;
  font-weight: 900;
}

.next-name {
  margin-top: 4px;
  overflow: hidden;
  font-size: 0.86rem;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.next-meta {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.68rem;
}

.progress {
  height: 6px;
  margin-top: 11px;
  overflow: hidden;
  border-radius: 999px;
  background: #2b2b2b;
}

.progress span {
  width: 67%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--brand-strong));
}

.phone-nav {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.phone-nav-item {
  display: grid;
  place-items: center;
  gap: 4px;
  color: #777;
  font-size: 0.57rem;
}

.phone-nav-item::before {
  width: 17px;
  height: 17px;
  display: block;
  border: 2px solid currentColor;
  border-radius: 6px;
  content: "";
}

.phone-nav-item.active {
  color: var(--brand);
}

.floating-card {
  position: absolute;
  z-index: 3;
  min-width: 180px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: rgba(20, 20, 20, 0.93);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(16px);
}

.floating-card strong {
  display: block;
  font-size: 0.92rem;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.75rem;
}

.floating-card.one {
  inset-inline-start: -24px;
  top: 96px;
  transform: rotate(-3deg);
}

.floating-card.two {
  inset-inline-end: -34px;
  bottom: 120px;
  transform: rotate(3deg);
}

.section {
  padding: 78px 0;
}

.section-soft {
  border-block: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.018);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.info-card,
.legal-card,
.contact-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018));
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.12);
}

.feature-card {
  min-height: 220px;
  padding: 24px;
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 194, 28, 0.25);
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 1.25rem;
  font-weight: 900;
}

.feature-card h3 {
  margin: 20px 0 8px;
  font-size: 1.1rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--border);
}

.stat {
  padding: 26px 20px;
  background: var(--surface);
  text-align: center;
}

.stat strong {
  display: block;
  color: var(--brand);
  font-size: 1.55rem;
}

.stat span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.8rem;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 6vw, 68px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  border: 1px solid rgba(255, 194, 28, 0.23);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 194, 28, 0.17), transparent 32%),
    var(--surface);
}

.cta-panel h2 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.04em;
}

.cta-panel p {
  margin: 0;
  color: var(--muted);
}

.page-hero {
  padding: 76px 0 44px;
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.updated-badge {
  margin-top: 20px;
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--muted);
  font-size: 0.8rem;
}

.legal-layout {
  padding: 24px 0 84px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: start;
  gap: 30px;
}

.legal-toc {
  position: sticky;
  top: 98px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
}

.legal-toc strong {
  display: block;
  margin-bottom: 8px;
}

.legal-toc a {
  display: block;
  padding: 7px 8px;
  border-radius: 9px;
  color: var(--muted);
  font-size: 0.85rem;
}

.legal-toc a:hover {
  color: var(--text);
  background: var(--surface-soft);
}

.legal-card {
  padding: clamp(22px, 5vw, 48px);
}

.legal-section + .legal-section {
  margin-top: 38px;
  padding-top: 38px;
  border-top: 1px solid var(--border);
}

.legal-section h2 {
  margin: 0 0 12px;
  font-size: 1.55rem;
  letter-spacing: -0.025em;
}

.legal-section h3 {
  margin: 24px 0 8px;
  font-size: 1.08rem;
}

.legal-section p,
.legal-section li {
  color: #d0d0d0;
}

.legal-section ul,
.legal-section ol {
  padding-inline-start: 22px;
}

.notice {
  margin-block: 20px;
  padding: 17px 18px;
  border-inline-start: 4px solid var(--brand);
  border-radius: 12px;
  background: var(--brand-soft);
  color: #f5df9c;
}

.notice-danger {
  border-inline-start-color: var(--danger);
  background: rgba(255, 107, 107, 0.09);
  color: #ffb5b5;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.contact-card {
  padding: 23px;
}

.contact-card h2,
.contact-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.contact-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-card a {
  color: var(--brand);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 15px;
  background: var(--surface);
}

.faq-item summary {
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 800;
}

.faq-item p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.step-list {
  counter-reset: steps;
  display: grid;
  gap: 15px;
  list-style: none;
  padding: 0;
}

.step-list li {
  position: relative;
  min-height: 58px;
  padding: 14px 66px 14px 16px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: var(--surface);
}

html[dir="ltr"] .step-list li {
  padding: 14px 16px 14px 66px;
}

.step-list li::before {
  position: absolute;
  inset-inline-start: 14px;
  top: 13px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--brand);
  color: #171000;
  content: counter(steps);
  counter-increment: steps;
  font-weight: 900;
}

.tmdb-attribution {
  margin-top: 32px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  color: #1b1b1b;
}

.tmdb-attribution img {
  width: 165px;
  height: auto;
}

.tmdb-attribution p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
}

.site-footer {
  padding: 34px 0 26px;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.24);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 30px;
}

.footer-brand p {
  max-width: 460px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.footer-heading {
  margin: 0 0 10px;
  font-size: 0.88rem;
}

.footer-links {
  display: grid;
  gap: 7px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-links a:hover {
  color: var(--brand);
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--border);
  color: #858585;
  font-size: 0.78rem;
}

.language-panel[hidden] {
  display: none !important;
}

.noscript-banner {
  padding: 10px 16px;
  background: #392a00;
  color: #ffe7a0;
  text-align: center;
  font-size: 0.85rem;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy-block {
    text-align: center;
  }

  .hero-copy {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .phone-stage {
    min-height: 640px;
  }

  .feature-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    inset: 75px 18px auto;
    display: none;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(10, 10, 10, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-link {
    padding: 12px 14px;
  }

  .menu-button {
    display: grid;
  }

  .brand-tagline {
    display: none;
  }

  .hero {
    padding-top: 58px;
  }

  .phone-stage {
    min-height: 600px;
  }

  .phone {
    width: min(84vw, 310px);
  }

  .phone-screen {
    min-height: 610px;
  }

  .floating-card.one {
    inset-inline-start: 0;
  }

  .floating-card.two {
    inset-inline-end: 0;
  }

  .feature-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .tmdb-attribution {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand img {
    width: 39px;
    height: 39px;
  }

  .language-button {
    min-width: 43px;
    padding-inline: 9px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .phone-stage {
    min-height: 550px;
  }

  .phone {
    transform: none;
  }

  .floating-card {
    display: none;
  }

  .stats-strip {
    grid-template-columns: 1fr;
  }
}

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

@media print {
  .site-header,
  .site-footer,
  .legal-toc,
  .skip-link {
    display: none !important;
  }

  body {
    background: #fff;
    color: #111;
  }

  .legal-layout {
    display: block;
  }

  .legal-card {
    border: 0;
    box-shadow: none;
  }

  .legal-section p,
  .legal-section li {
    color: #222;
  }
}
