:root {
  --bg: #fffdf8;
  --bg-grad-1: #fff3cf;
  --bg-grad-2: #c7f6ff;
  --ink: #26253a;
  --muted: #4e4a70;
  --panel: #ffffff;
  --line: #e7e3ff;
  --brand-a: #007f9f;
  --brand-b: #ff5f6d;
  --brand-c: #ffb703;
  --accent: #6750f0;
  --shadow: 0 18px 50px rgba(103, 80, 240, 0.15);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: Fredoka, "Trebuchet MS", sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background:
    radial-gradient(circle at 0% 0%, var(--bg-grad-1), transparent 40%),
    radial-gradient(circle at 100% 0%, var(--bg-grad-2), transparent 35%),
    var(--bg);
  position: relative;
  overflow-x: clip;
}

.glow {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
  animation: float 10s ease-in-out infinite;
  opacity: 0.45;
}

.glow-a {
  width: 280px;
  height: 280px;
  background: #ff8fab;
  top: -80px;
  left: -60px;
}

.glow-b {
  width: 220px;
  height: 220px;
  background: #7be0ff;
  top: 35%;
  right: -80px;
  animation-delay: 2s;
}

.glow-c {
  width: 260px;
  height: 260px;
  background: #ffe27b;
  bottom: -100px;
  left: 20%;
  animation-delay: 4s;
}

.container {
  width: min(1060px, 92vw);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(255, 253, 248, 0.8);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  font-size: 1.15rem;
}

.nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-list a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  transition: background-color 150ms ease, color 150ms ease;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  background: #efe9ff;
  color: var(--accent);
}

.hero {
  padding: 6rem 0 4.2rem;
}

.eyebrow {
  display: inline-block;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--brand-a);
  background: #dff8ff;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
  font-family: Nunito, Arial, sans-serif;
}

h1 {
  margin-top: 1rem;
  font-size: clamp(2.3rem, 7vw, 4rem);
  max-width: 14ch;
}

h2 {
  font-size: clamp(1.45rem, 4vw, 2.1rem);
  margin-bottom: 0.85rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.lead {
  margin-top: 1.2rem;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-actions {
  margin-top: 1.65rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  font-weight: 700;
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(120deg, var(--brand-b), #ff8c42);
  box-shadow: 0 10px 20px rgba(255, 95, 109, 0.35);
}

.button-secondary {
  color: var(--accent);
  background: #f0ebff;
}

.section {
  padding: 2.4rem 0;
}

.split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1rem;
  align-items: start;
}

.callout {
  background: linear-gradient(180deg, #ffffff 0%, #f4f3ff 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow);
}

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

.legal-main {
  padding: 3rem 0 3.5rem;
}

.legal-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(1.1rem, 3vw, 2.2rem);
  box-shadow: var(--shadow);
}

.legal-card section {
  margin-top: 1.2rem;
}

.legal-meta {
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.2rem 0 2.1rem;
  background: rgba(255, 255, 255, 0.5);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  animation: rise 580ms ease forwards;
}

.delay-1 {
  animation-delay: 130ms;
}

.delay-2 {
  animation-delay: 260ms;
}

.delay-3 {
  animation-delay: 390ms;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .hero {
    padding-top: 4.6rem;
  }
}
