:root {
  color-scheme: light;
  --ink: #101426;
  --muted: #626a7d;
  --line: #e5e7ef;
  --surface: #ffffff;
  --soft: #f6f5ff;
  --indigo: #5546d9;
  --violet: #8965e8;
  --mint: #43c9a6;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: #fbfbfe;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Sans", "Yu Gothic", sans-serif;
  line-height: 1.75;
}

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

.shell { width: min(960px, calc(100% - 40px)); margin-inline: auto; }

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(229, 231, 239, .85);
  background: rgba(251, 251, 254, .88);
  backdrop-filter: blur(18px);
}

.nav-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand { display: flex; align-items: center; gap: 11px; color: var(--ink); text-decoration: none; font-weight: 800; }
.brand img { width: 40px; height: 40px; border-radius: 10px; }
.nav-links { display: flex; gap: 20px; font-size: 14px; font-weight: 700; }
.nav-links a { color: #4b5265; text-decoration: none; }

.hero { padding: 92px 0 72px; }
.eyebrow { color: var(--indigo); font-size: 12px; font-weight: 900; letter-spacing: .14em; }
h1 { max-width: 760px; margin: 14px 0 20px; font-size: 58px; line-height: 1.08; letter-spacing: 0; }
h1 em { color: var(--indigo); font-style: normal; }
.lead { max-width: 680px; margin: 0; color: var(--muted); font-size: 18px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 28px; }
.store-soon { display: inline-flex; padding: 12px 18px; border-radius: 999px; background: #fef3c7; color: #92400e; font-size: 14px; font-weight: 850; }
.text-link { color: var(--indigo); font-size: 14px; font-weight: 850; text-decoration: none; }

.privacy-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  padding: 10px 15px;
  border: 1px solid #d9d5fa;
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  color: #42369e;
  font-size: 14px;
  font-weight: 750;
}
.privacy-chip::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--mint); }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 70px; }
.card { padding: 26px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255, 255, 255, .88); box-shadow: 0 18px 54px rgba(30, 26, 77, .07); }
.card .number { color: var(--violet); font-size: 13px; font-weight: 900; }
.card h2 { margin: 10px 0 8px; font-size: 20px; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }

.notice { margin: 0 0 76px; padding: 24px 28px; border-radius: 20px; background: #f0effc; color: #40398a; }
.notice strong { display: block; margin-bottom: 5px; }
.notice p { margin: 0; }

.legal-header { padding: 76px 0 46px; border-bottom: 1px solid var(--line); }
.legal-header h1 { max-width: none; margin-bottom: 10px; font-size: 46px; }
.meta { color: var(--muted); }
.back { font-size: 14px; font-weight: 800; text-decoration: none; }

.legal-body { padding-top: 42px; padding-bottom: 80px; }
.legal-body h2 { margin: 38px 0 10px; padding-bottom: 9px; border-bottom: 1px solid var(--line); font-size: 21px; }
.legal-body h3 { margin: 28px 0 7px; font-size: 17px; }
.legal-body p, .legal-body li { color: #40475a; }
.legal-body ul, .legal-body ol { padding-left: 1.4rem; }
.contact-card { margin-top: 18px; padding: 22px; border: 1px solid #d9d5fa; border-radius: 8px; background: var(--soft); }
.button { display: inline-flex; padding: 11px 18px; border-radius: 8px; color: #fff; background: var(--indigo); font-weight: 800; text-decoration: none; }

footer { padding: 34px 0 46px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 18px; }
.footer-links a { color: var(--muted); }

@media (max-width: 720px) {
  .shell { width: min(100% - 28px, 960px); }
  .nav-links { gap: 12px; font-size: 12px; }
  .nav-links a:first-child { display: none; }
  .hero { padding: 62px 0 50px; }
  h1, .legal-header h1 { font-size: 36px; }
  .grid { grid-template-columns: 1fr; }
  .card { padding: 22px; }
}
