:root {
  --teal: #0f766e;
  --teal-ink: #0b4f4a;
  --orange: #ea580c;
  --cream: #fff7ed;
  --card: #ffffff;
  --ink: #1c1917;
  --muted: #57534e;
  --line: rgba(28, 25, 23, 0.08);
  --radius: 16px;
  --shadow: 0 12px 32px rgba(15, 118, 110, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "SF Pro Text", "PingFang SC", "Hiragino Sans GB", sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 750;
  font-size: 18px;
  text-decoration: none;
}
.brand img { width: 36px; height: 36px; border-radius: 10px; }
.nav-links { display: flex; gap: 22px; font-size: 15px; font-weight: 600; }
.nav-links a { color: var(--ink); text-decoration: none; }
.nav-links a:hover { color: var(--teal); }

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding: 28px 0 56px;
  align-items: center;
}
.kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--orange);
}
h1 {
  margin: 12px 0 0;
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: -0.04em;
}
.lead {
  margin: 16px 0 0;
  max-width: 28em;
  font-size: 18px;
  color: var(--muted);
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}
.btn:active { transform: scale(0.98); }
.btn-fill { background: var(--teal); color: #fff; }
.btn-fill:hover { background: var(--teal-ink); text-decoration: none; color: #fff; }
.btn-ghost { background: #fff; color: var(--ink); }
.btn-ghost:hover { text-decoration: none; }

.hero-art {
  margin: 0;
  display: flex;
  justify-content: center;
}
.hero-art img {
  display: block;
  width: 50%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.steps {
  padding: 8px 0 72px;
}
.steps h2 { margin: 0 0 20px; font-size: 32px; letter-spacing: -0.03em; }
.step-list { background: #fff; border-radius: var(--radius); overflow: hidden; }
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 22px 24px;
  border-top: 1px solid var(--line);
}
.step:first-child { border-top: 0; }
.num {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--cream);
  color: var(--teal);
  display: grid;
  place-items: center;
  font-weight: 800;
}
.step h3 { margin: 0; font-size: 20px; }
.step p { margin: 6px 0 0; color: var(--muted); }

.bento {
  padding: 8px 0 80px;
}
.bento h2 { margin: 0 0 20px; font-size: 32px; letter-spacing: -0.03em; }
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.cell {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  min-height: 180px;
}
.cell.teal { background: var(--teal); color: var(--cream); }
.cell.teal p { color: rgba(255, 247, 237, 0.84); }
.cell.shot {
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #111;
}
.cell.shot img {
  display: block;
  width: 50%;
  height: auto;
}
.mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--cream);
  color: var(--orange);
  display: grid;
  place-items: center;
  font-weight: 800;
}
.cell h3 { margin: 16px 0 0; font-size: 22px; }
.cell p { margin: 8px 0 0; color: var(--muted); }

.privacy-band {
  background: var(--teal);
  color: var(--cream);
  padding: 64px 0;
}
.privacy-band h2 { margin: 0; font-size: 36px; letter-spacing: -0.03em; }
.privacy-band p { margin: 14px 0 0; max-width: 36em; color: rgba(255, 247, 237, 0.88); font-size: 18px; }
.privacy-band a { color: #fdba74; }

.soon {
  padding: 72px 0;
}
.soon h2 { margin: 0; font-size: 32px; }
.soon p { margin: 12px 0 0; color: var(--muted); max-width: 34em; }

.page { padding: 36px 0 80px; max-width: 680px; }
.page h1 { font-size: 36px; }
.page h2 { margin-top: 32px; font-size: 22px; }
.page p, .page li { color: var(--muted); font-size: 17px; }
.page ul { padding-left: 1.2em; }

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
}
.footer a { color: var(--muted); }

@media (min-width: 860px) {
  .hero {
    grid-template-columns: 1fr 0.92fr;
    gap: 56px;
    padding: 20px 0 80px;
  }
  h1 { font-size: 60px; }
  .grid { grid-template-columns: 1.1fr 0.9fr; }
  .cell.shot { grid-row: span 2; min-height: 420px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:active { transform: none; }
}
