:root {
  color-scheme: dark;
  --gold: #c9a84c;
  --gold-strong: #f0cf72;
  --black: #090909;
  --panel: rgba(20, 20, 20, 0.9);
  --panel-soft: rgba(255, 255, 255, 0.055);
  --line: rgba(201, 168, 76, 0.28);
  --text: #f7f1e3;
  --muted: rgba(247, 241, 227, 0.72);
  --faint: rgba(247, 241, 227, 0.48);
  --surface: rgba(20, 20, 20, 0.94);
  --surface-alt: rgba(28, 28, 28, 0.96);
  --page-shade: rgba(10, 10, 10, 0.76);
  --hero-shade-left: rgba(9, 9, 9, 0.96);
  --hero-shade-mid: rgba(9, 9, 9, 0.5);
  --hero-shade-right: rgba(9, 9, 9, 0.82);
  --page-background:
    radial-gradient(circle at 18% 8%, rgba(201, 168, 76, 0.15), transparent 30%),
    linear-gradient(135deg, #090909 0%, #11100d 48%, #090909 100%);
  --section-alt: rgba(201, 168, 76, 0.035);
  --panel-soft-themed: rgba(201, 168, 76, 0.055);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--page-background);
  background-attachment: fixed;
  color: var(--text);
  transition: background 180ms ease, color 180ms ease;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  background: transparent;
}

.nav,
.button,
.phone-card,
.phone-screen,
.section,
.card,
.legal-link,
.notice,
.theme-control select,
.footer {
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: color-mix(in srgb, var(--surface) 84%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--gold) 16%, transparent);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.brand-name {
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}

.brand-sub {
  color: var(--faint);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-top: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.nav-links a {
  text-decoration: none;
}

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

.theme-control {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--faint);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.theme-control select {
  max-width: 132px;
  min-height: 34px;
  padding: 0 28px 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-alt);
  color: var(--text);
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  display: grid;
  align-items: center;
  border-bottom: 1px solid color-mix(in srgb, var(--gold) 16%, transparent);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--hero-shade-left) 0%, var(--hero-shade-mid) 36%, var(--hero-shade-right) 100%),
    url("assets/olympus-body-bg.png") center / cover no-repeat;
  opacity: 0.82;
}

.hero-inner {
  position: relative;
  padding: 92px 0 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.65fr);
  gap: 52px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold-strong);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 22px color-mix(in srgb, var(--gold) 70%, transparent);
}

h1 {
  margin: 20px 0 18px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.94;
  letter-spacing: 0;
  max-width: 780px;
}

.gold {
  color: var(--gold-strong);
}

.hero-copy {
  max-width: 660px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
}

.button.primary {
  background: var(--gold);
  color: #080808;
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--gold-strong);
  background: rgba(0, 0, 0, 0.24);
}

.phone-card {
  justify-self: center;
  width: min(330px, 100%);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, var(--surface-alt), var(--surface));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.5);
}

.phone-screen {
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.phone-screen img {
  width: 100%;
  display: block;
}

.phone-meta {
  padding: 16px;
}

.phone-meta strong {
  display: block;
  color: var(--gold-strong);
  font-size: 13px;
}

.phone-meta span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  margin-top: 5px;
}

.section {
  padding: 74px 0;
}

.section.alt {
  background: var(--section-alt);
  border-block: 1px solid color-mix(in srgb, var(--gold) 12%, transparent);
}

.section-head {
  max-width: 720px;
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  margin: 0 0 12px;
  line-height: 1.05;
}

.section-head p,
.legal-page p,
.legal-page li {
  color: var(--muted);
  line-height: 1.75;
}

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

.card {
  border: 1px solid color-mix(in srgb, var(--gold) 16%, transparent);
  border-radius: 8px;
  background: var(--surface);
  padding: 20px;
}

.card h3 {
  margin: 0 0 8px;
  color: var(--gold-strong);
  font-size: 16px;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

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

.legal-link {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--panel-soft-themed);
  text-decoration: none;
}

.legal-link strong {
  display: block;
  color: var(--gold-strong);
}

.legal-link span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.footer {
  border-top: 1px solid color-mix(in srgb, var(--gold) 14%, transparent);
  padding: 28px 0;
  color: var(--faint);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-page {
  padding: 58px 0 76px;
  max-width: 880px;
}

.legal-page h1 {
  font-size: clamp(38px, 6vw, 64px);
}

.legal-page h2 {
  font-size: 22px;
  margin-top: 34px;
}

.notice {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--gold) 8%, transparent);
  padding: 16px;
  color: var(--muted);
}

html[data-theme="Clean Light"] {
  color-scheme: dark;
  --gold: #d6a11d;
  --gold-strong: #f2c94c;
  --black: #17140f;
  --surface: rgba(38, 34, 26, 0.94);
  --surface-alt: rgba(54, 49, 38, 0.96);
  --line: rgba(214, 161, 29, 0.42);
  --text: #fff9ea;
  --muted: rgba(255, 249, 234, 0.76);
  --faint: rgba(255, 249, 234, 0.58);
  --hero-shade-left: rgba(32, 29, 24, 0.9);
  --hero-shade-mid: rgba(32, 29, 24, 0.46);
  --hero-shade-right: rgba(32, 29, 24, 0.74);
  --page-background:
    radial-gradient(circle at 18% 8%, rgba(214, 161, 29, 0.2), transparent 31%),
    linear-gradient(135deg, #17140f 0%, #2a2419 50%, #17140f 100%);
  --section-alt: rgba(214, 161, 29, 0.055);
  --panel-soft-themed: rgba(214, 161, 29, 0.09);
}

html[data-theme="Energy Blue"] {
  color-scheme: light;
  --gold: #0891b2;
  --gold-strong: #06758f;
  --black: #ecfdf5;
  --surface: rgba(255, 255, 255, 0.96);
  --surface-alt: #dff7f0;
  --line: rgba(8, 145, 178, 0.28);
  --text: #0f172a;
  --muted: rgba(15, 23, 42, 0.68);
  --faint: rgba(15, 23, 42, 0.5);
  --hero-shade-left: rgba(236, 253, 245, 0.94);
  --hero-shade-mid: rgba(236, 253, 245, 0.62);
  --hero-shade-right: rgba(236, 253, 245, 0.82);
  --page-background:
    radial-gradient(circle at 14% 4%, rgba(8, 145, 178, 0.2), transparent 30%),
    linear-gradient(135deg, #dff7f0 0%, #ecfdf5 48%, #d5f2eb 100%);
  --section-alt: rgba(8, 145, 178, 0.075);
  --panel-soft-themed: rgba(8, 145, 178, 0.09);
}

html[data-theme="Power Purple"] {
  color-scheme: dark;
  --gold: #a21caf;
  --gold-strong: #f472b6;
  --black: #25112f;
  --surface: rgba(58, 25, 74, 0.96);
  --surface-alt: rgba(73, 31, 92, 0.96);
  --line: rgba(219, 39, 119, 0.34);
  --text: #fff4ff;
  --muted: rgba(255, 244, 255, 0.72);
  --faint: rgba(255, 244, 255, 0.5);
  --hero-shade-left: rgba(49, 18, 64, 0.94);
  --hero-shade-mid: rgba(49, 18, 64, 0.58);
  --hero-shade-right: rgba(49, 18, 64, 0.82);
  --page-background:
    radial-gradient(circle at 18% 8%, rgba(244, 114, 182, 0.18), transparent 31%),
    linear-gradient(135deg, #25112f 0%, #3a194a 50%, #25112f 100%);
  --section-alt: rgba(244, 114, 182, 0.05);
  --panel-soft-themed: rgba(219, 39, 119, 0.09);
}

html[data-theme="Clean Blue"] {
  color-scheme: light;
  --gold: #2563eb;
  --gold-strong: #1d4ed8;
  --black: #eff6ff;
  --surface: rgba(255, 255, 255, 0.98);
  --surface-alt: #dbeafe;
  --line: rgba(96, 165, 250, 0.42);
  --text: #0f172a;
  --muted: rgba(15, 23, 42, 0.68);
  --faint: rgba(15, 23, 42, 0.5);
  --hero-shade-left: rgba(239, 246, 255, 0.94);
  --hero-shade-mid: rgba(239, 246, 255, 0.62);
  --hero-shade-right: rgba(239, 246, 255, 0.82);
  --page-background:
    radial-gradient(circle at 14% 4%, rgba(37, 99, 235, 0.18), transparent 30%),
    linear-gradient(135deg, #dbeafe 0%, #eff6ff 48%, #d7e7ff 100%);
  --section-alt: rgba(37, 99, 235, 0.07);
  --panel-soft-themed: rgba(37, 99, 235, 0.08);
}

html[data-theme="Energy Blue"] .button.primary,
html[data-theme="Power Purple"] .button.primary,
html[data-theme="Clean Blue"] .button.primary {
  color: #fff;
}

@media (max-width: 860px) {
  .nav-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .phone-card {
    justify-self: start;
    max-width: 280px;
  }

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