@font-face {
  font-family: "Zen Kaku Gothic New";
  src: url("fonts/ZenKakuGothicNew-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Zen Kaku Gothic New";
  src: url("fonts/ZenKakuGothicNew-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f7f9fb;
  --surface: #ffffff;
  --sunken: #eff3f6;
  --text: #1b1f24;
  --secondary: #565e68;
  --tertiary: #939ba5;
  --border: #e4e9ee;
  --border-strong: #cfd6dd;
  --edge: 20px;
  --radius: 16px;
}

* { box-sizing: border-box; }
html { background: var(--bg); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
.wrap { width: min(100% - 40px, 1040px); margin-inline: auto; }
.site-header, .site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-header { min-height: 88px; }
.site-footer {
  padding: 32px 0 48px;
  border-top: 1px solid var(--border);
  color: var(--secondary);
  font-size: 13px;
}
.site-footer nav { display: flex; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 700; }
.brand img { width: 48px; height: 48px; border-radius: 10px; }
.text-link, .site-footer a { text-decoration: none; }
.text-link:hover, .site-footer a:hover { text-decoration: underline; text-underline-offset: 4px; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
  align-items: center;
  gap: 64px;
  min-height: 570px;
  padding: 72px 0 96px;
}
.hero-copy { max-width: 620px; }
.hero-art { display: grid; place-items: center; }
.hero-art img { width: min(100%, 360px); height: auto; border-radius: 32px; }
.eyebrow, .label {
  margin: 0 0 12px;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 24px; font-size: clamp(32px, 5vw, 56px); line-height: 1.35; letter-spacing: -.04em; }
h2 { margin-bottom: 24px; font-size: 28px; line-height: 1.45; letter-spacing: -.03em; }
h3 { margin-bottom: 4px; font-size: 17px; line-height: 1.5; }
.lead { margin-bottom: 16px; color: var(--secondary); font-size: 18px; line-height: 1.85; }
.status { display: inline-block; margin: 24px 0 0; padding: 6px 12px; border: 1px solid var(--border-strong); border-radius: 999px; color: var(--secondary); font-size: 13px; }
.section { padding: 96px 0; }
.section-border { border-top: 1px solid var(--border); }
.section-heading { max-width: 620px; }
.body-copy { max-width: 640px; color: var(--secondary); }
.steps { display: grid; gap: 0; margin: 40px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--border); }
.steps li { display: grid; grid-template-columns: 72px 1fr; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.steps p { margin: 0; color: var(--secondary); }
.step-number { color: var(--secondary); font-variant-numeric: tabular-nums; font-weight: 700; }
.theme-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 32px 0 40px; }
.theme-list span { padding: 6px 12px; border: 1px solid var(--border-strong); border-radius: 999px; color: var(--secondary); }
.pack-note { max-width: 720px; padding: 24px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.pack-note p { margin-bottom: 8px; }
.pack-note p:last-child { margin-bottom: 0; }
.muted { color: var(--secondary); }
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.screenshots-grid figure { margin: 0; }
.screenshots-grid img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.quote-section { padding: 72px 0 104px; }
.quote-section p:first-child { font-size: clamp(24px, 4vw, 40px); line-height: 1.6; letter-spacing: -.04em; }
.quote-section strong { font-weight: 700; }

.legal-page { max-width: 760px; padding: 72px 0 104px; }
.legal-page h1 { font-size: clamp(32px, 5vw, 48px); }
.updated { margin-bottom: 56px; color: var(--secondary); font-size: 13px; }
.legal-section { padding: 32px 0; border-top: 1px solid var(--border); }
.legal-section h2 { margin-bottom: 12px; font-size: 20px; }
.legal-section p { margin-bottom: 12px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section a { text-underline-offset: 4px; }

@media (max-width: 720px) {
  .wrap { width: min(100% - 32px, 1040px); }
  .site-header { min-height: 72px; }
  .site-header .text-link { font-size: 13px; }
  .hero { grid-template-columns: 1fr; gap: 40px; min-height: auto; padding: 56px 0 72px; }
  .hero-art { order: -1; }
  .hero-art img { width: min(100%, 280px); border-radius: 24px; }
  .section { padding: 72px 0; }
  .screenshots-grid { grid-template-columns: 1fr; gap: 16px; }
  .site-footer { align-items: flex-start; flex-direction: column; }
  .site-footer nav { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
