:root {
  color-scheme: dark;
  --bg: #031f24;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.14);
  --text: #f7fbf8;
  --muted: #b9d1cf;
  --accent: #ffe5a6;
  --accent-2: #20d7c2;
  --danger: #ff876f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 12%, rgba(32, 215, 194, 0.28), transparent 34rem),
    radial-gradient(circle at 88% 4%, rgba(255, 229, 166, 0.18), transparent 30rem),
    linear-gradient(145deg, #031a20, #053a3f 48%, #04181d);
  color: var(--text);
  min-height: 100vh;
}

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

.page {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 64px;
}

.brand {
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 22px;
}

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

.links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 650;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 38px;
  align-items: center;
}

.eyebrow {
  color: var(--accent-2);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.14em;
  font-weight: 800;
}

h1 {
  font-size: clamp(44px, 7vw, 78px);
  line-height: 0.92;
  margin: 14px 0 20px;
  letter-spacing: -0.07em;
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.04em;
  margin: 0 0 16px;
}

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 20px;
  text-decoration: none;
  font-weight: 800;
  background: var(--accent);
  color: #09272a;
}

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

.phone-card {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 36px;
  padding: 24px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
}

.mock-screen {
  aspect-ratio: 9 / 16;
  border-radius: 30px;
  background:
    linear-gradient(160deg, rgba(255, 229, 166, 0.18), transparent 28%),
    radial-gradient(circle at 25% 78%, rgba(32, 215, 194, 0.28), transparent 18%),
    linear-gradient(180deg, #06363a, #052327);
  padding: 22px;
  overflow: hidden;
  position: relative;
}

.course {
  position: absolute;
  inset: 30% 9% 22%;
  border: 8px solid var(--accent);
  border-radius: 32px;
  background: rgba(0, 0, 0, 0.12);
}

.ball, .hole, .bumper {
  position: absolute;
  border-radius: 50%;
}

.ball {
  width: 54px;
  height: 54px;
  left: 18%;
  bottom: 25%;
  background: radial-gradient(circle at 35% 35%, white, #7fffee);
  box-shadow: 0 0 24px rgba(32, 215, 194, 0.65);
}

.hole {
  width: 66px;
  height: 66px;
  right: 14%;
  top: 31%;
  background: #030609;
  border: 6px solid var(--accent);
}

.bumper {
  width: 52px;
  height: 52px;
  left: 48%;
  top: 49%;
  background: radial-gradient(circle at 30% 30%, #ffdf93, #ff615f);
}

.path {
  position: absolute;
  left: 25%;
  right: 21%;
  top: 45%;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  transform: rotate(-22deg);
}

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

.card {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  padding: 24px;
}

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

.footer {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  font-size: 14px;
}

.content {
  max-width: 820px;
}

.content ul {
  color: var(--muted);
  line-height: 1.8;
  font-size: 18px;
}

.notice {
  background: rgba(255, 229, 166, 0.12);
  border: 1px solid rgba(255, 229, 166, 0.28);
  border-radius: 22px;
  padding: 18px;
  color: var(--text);
}

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

  .nav {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 40px;
  }
}
