:root {
  color-scheme: dark;
  --bg: #050608;
  --panel: #0c1014;
  --panel-soft: #111820;
  --text: #f8f4ea;
  --muted: #b9b3a7;
  --soft: #7d8790;
  --gold: #f0bd3f;
  --gold-deep: #9b6a18;
  --green: #16b277;
  --red: #d94d4d;
  --line: rgba(240, 189, 63, 0.2);
  --line-cool: rgba(105, 151, 169, 0.2);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.2), var(--bg) 720px),
    radial-gradient(circle at 76% 8%, rgba(240, 189, 63, 0.16), transparent 34%),
    linear-gradient(135deg, #050608 0%, #10151a 42%, #150b0d 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: minmax(116px, auto) 1fr minmax(250px, auto);
  align-items: center;
  gap: clamp(14px, 3vw, 28px);
  padding: 12px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 6, 8, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 132px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-logo {
  width: 132px;
  height: auto;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(240, 189, 63, 0.55);
  border-radius: 50%;
  background: linear-gradient(145deg, #f6d65f, #a46d12 70%, #2b1a08);
  color: #080807;
  box-shadow: 0 0 28px rgba(240, 189, 63, 0.28);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.language-picker {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 6px;
  padding: 4px 6px 4px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(8, 10, 13, 0.74);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.language-picker select {
  width: auto;
  min-width: 58px;
  min-height: 28px;
  padding: 2px 20px 2px 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(240, 189, 63, 0.12);
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.header-cta {
  min-height: 42px;
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
}

.section-band {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(240, 189, 63, 0.08), transparent 22% 78%, rgba(22, 178, 119, 0.06)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 18px);
  opacity: 0.7;
}

.hero {
  display: grid;
  min-height: clamp(650px, 82vh, 820px);
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  align-items: center;
  gap: clamp(30px, 5vw, 76px);
  padding: clamp(34px, 5vw, 64px) clamp(18px, 6vw, 84px);
}

.hero-copy,
.hero-visual,
.app-section > *,
.partner-section > *,
.contact-section > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(42px, 5.7vw, 72px);
  line-height: 0.98;
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 5vw, 62px);
  line-height: 1;
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.1;
}

.hero-lead {
  max-width: 650px;
  color: #eee8db;
  font-size: clamp(18px, 1.65vw, 22px);
  font-weight: 700;
}

.hero-actions,
.download-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.button,
.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.store-badge:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.button-primary {
  padding: 10px 22px 10px 12px;
  border: 1px solid rgba(255, 227, 130, 0.64);
  background:
    linear-gradient(145deg, rgba(255, 235, 158, 0.96), rgba(232, 174, 42, 0.96) 52%, rgba(134, 86, 14, 0.98)),
    linear-gradient(180deg, #ffe987, #d89920);
  color: #080806;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    inset 0 -12px 22px rgba(82, 46, 0, 0.18),
    0 18px 42px rgba(240, 189, 63, 0.26);
}

.button-secondary {
  padding: 10px 20px 10px 12px;
  border: 1px solid rgba(240, 189, 63, 0.42);
  background:
    linear-gradient(145deg, rgba(255, 222, 101, 0.12), rgba(5, 6, 8, 0.18) 36%),
    linear-gradient(180deg, #10151b, #06080a);
  color: var(--gold);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 14px 34px rgba(0, 0, 0, 0.28);
}

.button-with-icon {
  gap: 11px;
  white-space: nowrap;
}

.store-badge {
  min-width: 164px;
  gap: 10px;
  padding: 8px 16px 8px 9px;
  border: 1px solid rgba(240, 189, 63, 0.4);
  background:
    linear-gradient(145deg, rgba(255, 226, 122, 0.14), rgba(255, 255, 255, 0.02) 34%, transparent 60%),
    linear-gradient(180deg, #121820, #050608);
  color: white;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -12px 22px rgba(0, 0, 0, 0.34),
    0 16px 38px rgba(0, 0, 0, 0.34);
}

.store-badge:hover {
  border-color: rgba(240, 189, 63, 0.62);
  background:
    linear-gradient(145deg, rgba(255, 226, 122, 0.15), transparent 42%),
    linear-gradient(180deg, #11161c, #06070a);
}

.pwa-badge {
  border-color: rgba(22, 178, 119, 0.38);
  background:
    linear-gradient(145deg, rgba(22, 178, 119, 0.14), rgba(255, 226, 122, 0.08) 42%, transparent 64%),
    linear-gradient(180deg, #10191a, #050608);
}

.pwa-badge:hover {
  border-color: rgba(22, 178, 119, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -12px 22px rgba(0, 0, 0, 0.34),
    0 16px 38px rgba(0, 0, 0, 0.34),
    0 0 28px rgba(22, 178, 119, 0.12);
}

.store-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
  text-align: left;
}

.store-copy span {
  color: #d7d1c4;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.store-copy strong {
  font-size: 17px;
  line-height: 1;
}

.store-badge.large {
  min-width: 212px;
  min-height: 66px;
}

.button-icon,
.store-icon {
  position: relative;
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(240, 189, 63, 0.42);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 236, 164, 0.42), rgba(240, 189, 63, 0.14) 45%, rgba(0, 0, 0, 0.62)),
    #080a0d;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 22px rgba(240, 189, 63, 0.16);
}

.button-primary .button-icon {
  border-color: rgba(8, 8, 6, 0.24);
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.42), rgba(255, 227, 123, 0.18) 44%, rgba(25, 18, 4, 0.88)),
    #11100c;
  color: var(--gold);
}

.web-icon::before {
  content: "";
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.web-icon::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  border-radius: 50%;
}

.svg-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.store-svg-icon {
  width: 24px;
  height: 24px;
  color: var(--gold);
  fill: currentColor;
  filter: drop-shadow(0 0 8px rgba(240, 189, 63, 0.22));
}

.apple-svg {
  transform: translateY(1px);
}

.phone-icon::before {
  content: "";
  width: 16px;
  height: 23px;
  border: 2px solid var(--gold);
  border-radius: 6px;
  box-shadow: inset 0 -5px 0 rgba(240, 189, 63, 0.18);
}

.phone-icon::after {
  content: "";
  position: absolute;
  bottom: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.play-icon::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--gold);
  filter: drop-shadow(0 0 8px rgba(240, 189, 63, 0.2));
  transform: translateX(2px);
}

.hero-note {
  display: inline-flex;
  max-width: 720px;
  margin: 18px 0 0;
  padding: 10px 14px;
  border: 1px solid rgba(240, 189, 63, 0.18);
  border-radius: 999px;
  background: rgba(5, 6, 8, 0.54);
  color: #e2dbc9;
  font-weight: 800;
}

.hero-visual {
  display: grid;
  justify-items: center;
  min-height: 500px;
}

.hero-screen-stack {
  position: relative;
  display: grid;
  width: min(500px, 84vw);
  height: min(480px, 104vw);
  min-height: 0;
  place-items: center;
}

.hero-screen {
  width: clamp(206px, 17vw, 220px);
  height: auto;
  aspect-ratio: 946 / 2047;
  border: 1px solid rgba(240, 189, 63, 0.26);
  border-radius: 34px;
  background: #050608;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.72),
    0 0 70px rgba(240, 189, 63, 0.18);
  object-fit: contain;
  object-position: top center;
}

.hero-screen-main {
  position: relative;
  z-index: 2;
}

.hero-screen-side {
  position: absolute;
  z-index: 1;
  width: clamp(142px, 12.2vw, 160px);
  height: auto;
  opacity: 0.72;
  filter: saturate(0.9) brightness(0.78);
}

.hero-screen-side.top {
  right: 18px;
  top: 34px;
  transform: rotate(5deg);
}

.hero-screen-side.bottom {
  left: 18px;
  bottom: 42px;
  transform: rotate(-5deg);
}

.live-panel {
  position: relative;
  z-index: 4;
  display: flex;
  width: min(430px, 80vw);
  min-height: 76px;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(240, 189, 63, 0.28);
  border-radius: 18px;
  background: rgba(9, 12, 16, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.live-panel strong {
  white-space: nowrap;
}

.live-panel span:last-child {
  min-width: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.live-dot {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(217, 77, 77, 0.14);
}

.statement {
  padding: clamp(42px, 7vw, 86px) clamp(18px, 8vw, 118px);
  background: #080b0f;
}

.statement p {
  max-width: 1120px;
  margin: 0 auto;
  color: #f5efe2;
  font-size: clamp(26px, 4vw, 56px);
  line-height: 1.06;
  font-weight: 900;
  text-align: center;
}

.app-section {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 6vw, 84px);
  background: linear-gradient(180deg, #0a0e12, #050608);
}

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

.section-lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 750;
  line-height: 1.45;
}

.experience-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.experience-grid article,
.platform-grid article,
.partner-benefits article {
  position: relative;
  min-height: 214px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(13, 18, 23, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.experience-grid article {
  overflow: hidden;
  border-color: rgba(240, 189, 63, 0.16);
  background:
    linear-gradient(145deg, rgba(240, 189, 63, 0.08), transparent 34%),
    radial-gradient(circle at 86% 12%, rgba(240, 189, 63, 0.12), transparent 34%),
    rgba(10, 14, 18, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 22px 54px rgba(0, 0, 0, 0.24);
}

.experience-grid article::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 189, 63, 0.52), transparent);
  opacity: 0.55;
}

.feature-icon {
  position: relative;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(240, 189, 63, 0.42);
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 238, 169, 0.46), rgba(240, 189, 63, 0.16) 42%, rgba(0, 0, 0, 0.58)),
    #080a0d;
  color: var(--gold);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 28px rgba(240, 189, 63, 0.17);
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
  filter: drop-shadow(0 0 8px rgba(240, 189, 63, 0.22));
}

.experience-grid p,
.platform-grid p,
.updates-grid p,
.partner-benefits p,
.split-copy p,
.partner-copy p,
.contact-copy p,
.footer p {
  color: var(--muted);
  font-weight: 650;
}

.updates-section {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 6vw, 84px);
  background:
    radial-gradient(circle at 80% 14%, rgba(240, 189, 63, 0.14), transparent 34%),
    linear-gradient(180deg, #050608, #0b1116 52%, #050608);
}

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

.updates-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(240, 189, 63, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(240, 189, 63, 0.1), transparent 38%),
    rgba(11, 15, 20, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 22px 54px rgba(0, 0, 0, 0.22);
}

.update-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(240, 189, 63, 0.42);
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 24%, rgba(255, 238, 169, 0.44), rgba(240, 189, 63, 0.14) 44%, rgba(0, 0, 0, 0.62)),
    #07090c;
  color: var(--gold);
}

.update-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.platform-section {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 6vw, 84px);
  background:
    linear-gradient(145deg, rgba(10, 18, 25, 0.96), rgba(5, 6, 8, 0.98) 48%, rgba(24, 17, 5, 0.8)),
    #050608;
}

.platform-section > * {
  position: relative;
  z-index: 1;
}

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

.platform-grid article {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  align-items: flex-start;
  border-color: rgba(240, 189, 63, 0.2);
}

.platform-grid article > span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-bottom: 24px;
  padding: 6px 12px;
  border: 1px solid rgba(240, 189, 63, 0.3);
  border-radius: 999px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.platform-grid p {
  flex: 1;
  font-size: 18px;
}

.platform-store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  padding: clamp(58px, 8vw, 110px) clamp(18px, 6vw, 84px);
  background:
    linear-gradient(90deg, rgba(20, 45, 39, 0.68), rgba(9, 12, 16, 0.98)),
    linear-gradient(180deg, #10161c, #07090b);
}

.split-copy {
  align-self: end;
  max-width: 760px;
  font-size: clamp(17px, 1.5vw, 20px);
}

.characters-section,
.partner-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: clamp(58px, 8vw, 112px) clamp(18px, 6vw, 84px);
  background:
    linear-gradient(145deg, rgba(36, 18, 10, 0.78), rgba(8, 10, 13, 0.98) 44%, rgba(9, 31, 34, 0.74)),
    #080a0d;
}

.characters-section {
  grid-template-columns: minmax(0, 0.78fr) minmax(380px, 1.22fr);
  background:
    radial-gradient(circle at 78% 24%, rgba(240, 189, 63, 0.18), transparent 34%),
    linear-gradient(135deg, #050608, #14100a 44%, #071312);
}

.characters-copy,
.characters-visual {
  position: relative;
  z-index: 1;
}

.characters-copy p:not(.eyebrow) {
  max-width: 660px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
}

.characters-visual {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
}

.characters-visual::before {
  content: "";
  position: absolute;
  width: min(880px, 92vw);
  aspect-ratio: 1.55;
  border: 1px solid rgba(240, 189, 63, 0.22);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 34%, rgba(240, 189, 63, 0.18), transparent 58%),
    radial-gradient(circle at 25% 64%, rgba(20, 154, 105, 0.1), transparent 38%);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.45);
}

.characters-duo {
  position: relative;
  z-index: 2;
  width: min(880px, 108%);
  height: auto;
  border: 1px solid rgba(240, 189, 63, 0.24);
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.58);
}

.screens-section {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 6vw, 84px);
  background:
    radial-gradient(circle at 50% 20%, rgba(240, 189, 63, 0.14), transparent 34%),
    linear-gradient(180deg, #050608, #0c1014 52%, #050608);
}

.screen-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.screen-grid figure {
  margin: 0;
}

.screen-grid img {
  width: 100%;
  aspect-ratio: 946 / 2047;
  border: 1px solid rgba(240, 189, 63, 0.2);
  border-radius: 24px;
  background: #07090b;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.48);
  object-fit: cover;
  object-position: top center;
}

.screen-grid figcaption {
  margin-top: 12px;
  color: var(--text);
  font-size: 15px;
  font-weight: 900;
  text-align: center;
}

.partner-copy p,
.contact-copy p {
  max-width: 680px;
  font-size: 18px;
}

.contact-trust {
  display: flex;
  max-width: 680px;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
  padding: 16px 18px;
  border: 1px solid rgba(240, 189, 63, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(240, 189, 63, 0.08), rgba(8, 11, 15, 0.72) 42%),
    rgba(8, 11, 15, 0.72);
}

.contact-trust p {
  margin: 0;
  color: #e6decd;
  font-size: 16px;
  font-weight: 800;
}

.trust-dot {
  position: relative;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(22, 178, 119, 0.12), 0 0 22px rgba(22, 178, 119, 0.32);
}

.partner-benefits {
  display: grid;
  gap: 14px;
}

.partner-benefits article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  min-height: 148px;
  align-items: flex-start;
  border-color: rgba(240, 189, 63, 0.24);
  background:
    linear-gradient(145deg, rgba(240, 189, 63, 0.1), rgba(8, 11, 15, 0.88) 38%),
    radial-gradient(circle at 92% 14%, rgba(22, 178, 119, 0.09), transparent 34%),
    rgba(8, 11, 15, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 22px 58px rgba(0, 0, 0, 0.28);
}

.partner-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(240, 189, 63, 0.46);
  border-radius: 18px;
  background:
    radial-gradient(circle at 32% 22%, rgba(255, 239, 176, 0.42), rgba(240, 189, 63, 0.16) 42%, rgba(0, 0, 0, 0.62)),
    linear-gradient(145deg, #111820, #06080a);
  color: var(--gold);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 30px rgba(240, 189, 63, 0.16);
}

.partner-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  filter: drop-shadow(0 0 8px rgba(240, 189, 63, 0.24));
}

.partner-benefits h3 {
  margin-top: 3px;
}

.download-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1.15fr);
  gap: 24px;
  align-items: center;
  padding: clamp(48px, 7vw, 82px) clamp(18px, 6vw, 84px);
  background: #050608;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.download-section h2 {
  max-width: 780px;
}

.faq-section {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 6vw, 84px);
  background:
    radial-gradient(circle at 74% 14%, rgba(240, 189, 63, 0.14), transparent 32%),
    linear-gradient(135deg, #06080b, #0d1515 48%, #07090b);
}

.faq-accordion {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 980px;
  gap: 10px;
}

.faq-accordion details {
  border: 1px solid rgba(240, 189, 63, 0.18);
  border-radius: 8px;
  background: rgba(10, 14, 18, 0.78);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.faq-accordion details[open] {
  border-color: rgba(240, 189, 63, 0.34);
  background:
    linear-gradient(145deg, rgba(240, 189, 63, 0.08), rgba(10, 14, 18, 0.82) 42%),
    rgba(10, 14, 18, 0.86);
}

.faq-accordion summary {
  position: relative;
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 58px 20px 22px;
  color: var(--text);
  cursor: pointer;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
  line-height: 1.15;
}

.faq-accordion summary::-webkit-details-marker {
  display: none;
}

.faq-accordion summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(240, 189, 63, 0.35);
  border-radius: 50%;
  color: var(--gold);
  font-size: 20px;
  line-height: 1;
}

.faq-accordion details[open] summary::after {
  content: "-";
}

.faq-accordion p {
  max-width: 820px;
  margin: -4px 58px 22px 22px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(8, 11, 15, 0.82);
  box-shadow: var(--shadow);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label {
  display: grid;
  gap: 8px;
  color: #ded8cb;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #0c1116;
  color: var(--text);
  font: inherit;
  font-weight: 650;
  outline: none;
  padding: 12px 14px;
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
}

.form-status.error {
  color: #ff9b9b;
}

.form-status.success {
  color: #8ff0c4;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(240, 189, 63, 0.74);
}

.site-header .language-picker select {
  width: auto;
  min-width: 58px;
  min-height: 28px;
  padding: 2px 20px 2px 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(240, 189, 63, 0.12);
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 26px clamp(18px, 6vw, 84px);
  background: #030405;
}

.footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.response-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 20%, rgba(240, 189, 63, 0.16), transparent 34%),
    linear-gradient(135deg, #050608, #10151a 50%, #150b0d);
}

.response-card {
  width: min(720px, 100%);
  padding: clamp(26px, 6vw, 58px);
  border: 1px solid rgba(240, 189, 63, 0.22);
  border-radius: 8px;
  background: rgba(8, 11, 15, 0.9);
  box-shadow: var(--shadow);
}

.response-card .brand-logo {
  margin-bottom: 34px;
}

.response-card h1 {
  font-size: clamp(42px, 8vw, 76px);
}

.response-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 20px;
  font-weight: 700;
}

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

  .nav-links {
    display: none;
  }

  .hero,
  .split-section,
  .characters-section,
  .partner-section,
  .download-section,
  .contact-section,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: auto;
  }

  .experience-grid,
  .updates-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .platform-grid {
    grid-template-columns: 1fr;
  }

  .screen-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-links {
    justify-content: flex-start;
  }

  .characters-visual {
    gap: 10px;
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 12px;
    padding: 10px 14px;
  }

  .header-cta {
    display: none;
  }

  .header-actions {
    justify-content: flex-end;
  }

  .language-picker span {
    display: none;
  }

  .language-picker {
    min-height: 34px;
    padding: 3px 5px;
  }

  .site-header .language-picker select {
    min-width: 62px;
    min-height: 28px;
    padding-left: 8px;
  }

  .brand {
    min-width: 112px;
  }

  .brand-logo {
    width: 112px;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .hero-actions,
  .download-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .store-badge {
    width: 100%;
  }

  .hero-screen-stack {
    height: 640px;
    min-height: 640px;
  }

  .hero-screen {
    width: min(290px, 78vw);
    border-radius: 28px;
  }

  .hero-screen-side {
    width: min(190px, 48vw);
  }

  .live-panel {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 16px;
  }

  .experience-grid,
  .updates-grid {
    grid-template-columns: 1fr;
  }

  .platform-store-row {
    width: 100%;
  }

  .screen-grid {
    grid-template-columns: 1fr;
  }

  .experience-grid article,
  .updates-grid article,
  .partner-benefits article {
    min-height: auto;
  }
}
