: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: 54px;
  height: 54px;
  border-radius: 12px;
  object-fit: contain;
  object-position: center;
  flex: 0 0 54px;
}

.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;
}

.brand-studio {
  color: var(--gold-strong);
  display: block;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.35;
  margin-top: 2px;
  text-transform: uppercase;
}

.studio-credit {
  color: var(--gold-strong);
  font-weight: 800;
}

.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,
.language-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,
.language-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%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  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;
}

.feedback-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.feedback-layout .section-head { margin-bottom: 0; }
.feedback-prompts { display: grid; gap: 12px; }
.feedback-note { color: var(--faint) !important; font-size: 13px; margin: 14px 0 0; }
.feedback-section { display: grid; gap: 30px; }
.feedback-invitation { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: clamp(24px, 5vw, 64px); padding: clamp(26px, 5vw, 52px); }
.feedback-invitation h2 { margin: 8px 0 12px; font-size: clamp(28px, 4vw, 46px); line-height: 1.08; }
.feedback-invitation p { max-width: 760px; margin: 0; color: var(--muted); line-height: 1.7; }
.feedback-invitation .button { white-space: nowrap; }
.feedback-page .feedback-section { max-width: 1040px; }
.feedback-page-head h1 { margin: 8px 0 16px; font-size: clamp(38px, 6vw, 68px); line-height: 1.02; }
.feedback-form { display: grid; gap: 22px; padding: clamp(20px, 4vw, 38px); background: color-mix(in srgb, var(--surface) 92%, var(--gold) 8%); overflow: hidden; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.feedback-writing-grid { display: grid; gap: 18px; }
.feedback-form label { display: grid; gap: 8px; color: var(--text); font-size: 14px; font-weight: 700; }
.feedback-form small { color: var(--faint); font-weight: 500; }
.feedback-form input,
.feedback-form select,
.feedback-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 8px; background: color-mix(in srgb, var(--surface-alt) 88%, var(--gold) 12%); color: var(--text); padding: 13px 14px; font: inherit; font-weight: 500; outline: none; }
.feedback-form textarea { resize: vertical; min-height: 112px; line-height: 1.5; }
.feedback-form input:focus,
.feedback-form select:focus,
.feedback-form textarea:focus { border-color: var(--gold-strong); box-shadow: 0 0 0 3px color-mix(in srgb, var(--gold) 20%, transparent); }
.feedback-form option { background: var(--surface-alt); color: var(--text); }
.feedback-security { min-height: 72px; display: flex; align-items: center; overflow: hidden; }
.feedback-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.feedback-privacy { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.feedback-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; }
.feedback-actions a { color: var(--muted); font-size: 14px; }
.form-status { min-height: 1.5em; margin: 0; color: var(--gold-strong); font-weight: 700; }
.form-status[data-state="error"] { color: #ffb4b4; }
.form-status[data-state="success"] { color: var(--gold-strong); }

.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="Verdigris"] {
  color-scheme: dark;
  --gold: #65b89a;
  --gold-strong: #a2dac6;
  --black: #091311;
  --surface: rgba(16, 29, 26, 0.97);
  --surface-alt: rgba(24, 42, 37, 0.98);
  --line: rgba(101, 184, 154, 0.36);
  --text: #f1faf7;
  --muted: rgba(241, 250, 247, 0.72);
  --faint: rgba(241, 250, 247, 0.5);
  --hero-shade-left: rgba(7, 17, 14, 0.94);
  --hero-shade-mid: rgba(7, 17, 14, 0.58);
  --hero-shade-right: rgba(7, 17, 14, 0.82);
  --page-background:
    radial-gradient(circle at 18% 8%, rgba(101, 184, 154, 0.18), transparent 31%),
    linear-gradient(135deg, #091311 0%, #10231e 50%, #091311 100%);
  --section-alt: rgba(101, 184, 154, 0.05);
  --panel-soft-themed: rgba(101, 184, 154, 0.08);
}

html[data-theme="Tidal Glass"] {
  color-scheme: dark;
  --gold: #2dd4bf;
  --gold-strong: #7de5db;
  --black: #071313;
  --surface: rgba(16, 31, 31, 0.96);
  --surface-alt: rgba(22, 45, 44, 0.98);
  --line: rgba(45, 212, 191, 0.34);
  --text: #f0fffd;
  --muted: rgba(240, 255, 253, 0.72);
  --faint: rgba(240, 255, 253, 0.5);
  --hero-shade-left: rgba(6, 18, 18, 0.94);
  --hero-shade-mid: rgba(6, 18, 18, 0.58);
  --hero-shade-right: rgba(6, 18, 18, 0.82);
  --page-background:
    radial-gradient(circle at 18% 8%, rgba(45, 212, 191, 0.18), transparent 31%),
    linear-gradient(135deg, #071313 0%, #102525 50%, #071313 100%);
  --section-alt: rgba(45, 212, 191, 0.05);
  --panel-soft-themed: rgba(45, 212, 191, 0.08);
}

html[data-theme="Titanium"] {
  color-scheme: dark;
  --gold: #6f84a6;
  --gold-strong: #bcc9dc;
  --black: #0a0f16;
  --surface: rgba(20, 27, 38, 0.96);
  --surface-alt: rgba(29, 38, 52, 0.98);
  --line: rgba(148, 166, 194, 0.36);
  --text: #f3f7ff;
  --muted: rgba(243, 247, 255, 0.72);
  --faint: rgba(243, 247, 255, 0.5);
  --hero-shade-left: rgba(8, 12, 18, 0.94);
  --hero-shade-mid: rgba(8, 12, 18, 0.58);
  --hero-shade-right: rgba(8, 12, 18, 0.82);
  --page-background:
    radial-gradient(circle at 18% 8%, rgba(111, 132, 166, 0.18), transparent 31%),
    linear-gradient(135deg, #0a0f16 0%, #172131 50%, #0a0f16 100%);
  --section-alt: rgba(111, 132, 166, 0.05);
  --panel-soft-themed: rgba(111, 132, 166, 0.08);
}

html[data-theme="Mulberry"] {
  color-scheme: dark;
  --gold: #a07e84;
  --gold-strong: #d8b9bf;
  --black: #130d0f;
  --surface: rgba(31, 22, 25, 0.96);
  --surface-alt: rgba(43, 31, 35, 0.98);
  --line: rgba(191, 159, 166, 0.36);
  --text: #fff5f7;
  --muted: rgba(255, 245, 247, 0.72);
  --faint: rgba(255, 245, 247, 0.5);
  --hero-shade-left: rgba(20, 12, 14, 0.94);
  --hero-shade-mid: rgba(20, 12, 14, 0.58);
  --hero-shade-right: rgba(20, 12, 14, 0.82);
  --page-background:
    radial-gradient(circle at 18% 8%, rgba(160, 126, 132, 0.2), transparent 31%),
    linear-gradient(135deg, #130d0f 0%, #2b1f23 50%, #130d0f 100%);
  --section-alt: rgba(160, 126, 132, 0.05);
  --panel-soft-themed: rgba(160, 126, 132, 0.09);
}

html[data-theme="Iris"] {
  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="Porcelain Blue"] {
  color-scheme: dark;
  --gold: #2563eb;
  --gold-strong: #60a5fa;
  --black: #071326;
  --surface: rgba(10, 24, 48, 0.98);
  --surface-alt: #102a4a;
  --line: rgba(96, 165, 250, 0.42);
  --text: #eff6ff;
  --muted: rgba(219, 234, 254, 0.72);
  --faint: rgba(219, 234, 254, 0.5);
  --hero-shade-left: rgba(3, 10, 24, 0.94);
  --hero-shade-mid: rgba(3, 10, 24, 0.58);
  --hero-shade-right: rgba(3, 10, 24, 0.82);
  --page-background:
    radial-gradient(circle at 14% 4%, rgba(37, 99, 235, 0.22), transparent 30%),
    linear-gradient(135deg, #030a18 0%, #071326 48%, #102a4a 100%);
  --section-alt: rgba(37, 99, 235, 0.06);
  --panel-soft-themed: rgba(37, 99, 235, 0.1);
}

html[data-theme="Iris"] .button.primary,
html[data-theme="Porcelain Blue"] .button.primary {
  color: #fff;
}

@media (max-width: 860px) {
  .feedback-layout { grid-template-columns: 1fr; }
  .feedback-invitation { grid-template-columns: 1fr; }
  .feedback-invitation .button { justify-self: start; }
  .form-grid { grid-template-columns: 1fr; }
  .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;
  }
}
