@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Montserrat:wght@700;800;900&display=swap");

:root {
  --bg: #f7f4ef;
  --bg-alt: #f0e7da;
  --card: #ffffff;
  --text: #1d1b16;
  --muted: #6b6155;
  --primary: #1f6f5c;
  --primary-dark: #134b3f;
  --accent: #e27d60;
  --border: rgba(29, 27, 22, 0.12);
  --shadow: 0 24px 60px rgba(29, 27, 22, 0.12);
  --ring: 0 0 0 3px rgba(31, 111, 92, 0.25);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #fff7ef 0%, var(--bg) 40%, var(--bg-alt) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 48px);
  overflow-x: hidden;
}

.wrap {
  width: min(560px, 100%);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 5vw, 36px);
  position: relative;
  z-index: 1;
  animation: fadeUp 0.6s ease both;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-title {
  margin: 4px 0 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-align: center;
  white-space: nowrap;
}

.hero-title__brand {
  background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 35%, #fb923c 70%, #fbbf24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.1rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 2.4rem;
  }
}

.choices {
  display: grid;
  gap: 16px;
}

.choice {
  text-decoration: none;
  padding: clamp(16px, 4vw, 20px) clamp(18px, 5vw, 26px);
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: 0 14px 30px rgba(29, 27, 22, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: clamp(18px, 4.2vw, 22px);
  font-weight: 700;
  color: var(--text);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.choice.primary {
  border-color: rgba(31, 111, 92, 0.35);
  background: linear-gradient(140deg, rgba(31, 111, 92, 0.12), rgba(255, 255, 255, 0.95));
}

.choice.secondary {
  border-color: rgba(226, 125, 96, 0.4);
  background: linear-gradient(140deg, rgba(226, 125, 96, 0.12), rgba(255, 255, 255, 0.95));
}

.choice:hover,
.choice:focus-visible {
  transform: translateY(-2px) scale(1.01);
  box-shadow: var(--shadow);
  border-color: rgba(31, 111, 92, 0.55);
  outline: none;
}

.choice:focus-visible {
  box-shadow: var(--shadow), var(--ring);
}

.foot {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(0px);
  opacity: 0.3;
  pointer-events: none;
  animation: float 9s ease-in-out infinite;
}

.orb-1 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(31, 111, 92, 0.45), transparent 70%);
  top: -60px;
  right: -40px;
}

.orb-2 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(226, 125, 96, 0.4), transparent 70%);
  bottom: -100px;
  left: -80px;
  animation-delay: 1.5s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(18px);
  }
}

@media (max-width: 520px) {
  .choice {
    border-radius: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wrap,
  .orb,
  .choice {
    animation: none;
    transition: none;
  }
}
