:root {
  color-scheme: light dark;
  --bg: #fff8fb;
  --surface: #ffffff;
  --surface-soft: #fff0f6;
  --text: #171821;
  --muted: #696b76;
  --line: #ece4ea;
  --accent: #ff4f92;
  --accent-strong: #ff2d73;
  --green: #2eb872;
  --shadow: 0 22px 60px rgba(35, 24, 44, 0.10);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #121117;
    --surface: #1d1b23;
    --surface-soft: #2a1f28;
    --text: #f6f1f6;
    --muted: #c5bec7;
    --line: #39323d;
    --shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Segoe UI", sans-serif;
  line-height: 1.72;
  background:
    radial-gradient(circle at 8% 14%, rgba(255, 79, 146, 0.16), transparent 30%),
    radial-gradient(circle at 92% 4%, rgba(24, 199, 213, 0.15), transparent 28%),
    var(--bg);
  color: var(--text);
}

a {
  color: var(--accent-strong);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header,
.site-footer {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  font-size: 20px;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

main {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
  padding: 54px 0 36px;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--accent-strong);
  font-weight: 800;
  font-size: 14px;
}

h1 {
  margin: 20px 0 14px;
  font-size: clamp(34px, 6vw, 68px);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.25;
}

h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 650;
}

.hero-card,
.card,
.notice {
  background: color-mix(in srgb, var(--surface), transparent 4%);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 28px;
}

.stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.stat:last-child {
  border-bottom: 0;
}

.stat strong {
  font-size: 28px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(46, 184, 114, 0.12);
  color: var(--green);
  font-weight: 800;
  font-size: 13px;
}

.section {
  padding: 34px 0;
}

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

.grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  padding: 24px;
}

.card p,
.notice p,
.legal p,
.legal li {
  color: var(--muted);
}

.icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 15px;
  background: var(--surface-soft);
  color: var(--accent-strong);
  font-weight: 900;
  font-size: 22px;
}

.notice {
  padding: 26px;
  border-color: color-mix(in srgb, var(--accent), var(--line) 55%);
}

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

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

.button.secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
}

.faq {
  display: grid;
  gap: 12px;
}

details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

.legal {
  max-width: 850px;
  padding: 42px 0;
}

.legal ul {
  padding-left: 1.2em;
}

.site-footer {
  padding: 40px 0 54px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  .grid,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .hero-card {
    padding: 22px;
  }
}
