:root {
  color-scheme: dark;
  --bg: #020814;
  --panel: rgba(255, 255, 255, 0.075);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f6f1ea;
  --muted: rgba(246, 241, 234, 0.68);
  --gold: #f5b85c;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at 50% 0%, rgba(245, 184, 92, 0.16), transparent 34%),
    linear-gradient(160deg, #020814 0%, #061525 55%, #02050b 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: var(--gold);
}

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

header {
  padding: 28px 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 700;
  text-decoration: none;
}

.links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.hero {
  min-height: 72vh;
  display: grid;
  align-items: center;
  padding: 40px 0 76px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
}

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

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(56px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 18px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  background: var(--gold);
  color: #050912;
  font-weight: 800;
  text-decoration: none;
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.phone {
  width: min(330px, 100%);
  margin-left: auto;
  aspect-ratio: 9 / 19.5;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 44px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
}

.screen {
  height: 100%;
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(180deg, #071323, #020814);
  position: relative;
  padding: 34px 24px;
}

.rain {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image: repeating-linear-gradient(94deg, transparent 0 28px, rgba(255, 255, 255, 0.18) 29px, transparent 31px);
}

.rings {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(245, 184, 92, 0.42);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  box-shadow: inset 0 0 0 42px rgba(245, 184, 92, 0.04), inset 0 0 0 84px rgba(245, 184, 92, 0.04);
}

.player-copy {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.player-copy strong {
  display: block;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
}

.player-copy span {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
}

section {
  padding: 72px 0;
}

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

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--panel);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.card p,
li {
  color: var(--muted);
  font-size: 16px;
}

.legal {
  max-width: 780px;
  padding: 44px 0 80px;
}

.legal h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 72px);
}

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

footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--muted);
  font-size: 14px;
}

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

  .phone {
    margin: 12px auto 0;
  }

  nav {
    align-items: flex-start;
    flex-direction: column;
  }
}
