:root {
  --bg: #F1EDE4; --surface: #FAF7F1; --ink: #1F2233; --ink-sub: #4F5569;
  --night: #0D1120; --night-2: #161B2E; --on-night: #E6E4EE; --on-night-sub: #A4A8BF;
  --moon: #E9B872; --accent: #8A5A12; --sleep: #4750C2; --nap: #17807B; --work: #B5543D; --seek: #8C6A0F;
}
@media (prefers-color-scheme: dark) {
  :root { --bg: #0D1120; --surface: #161B2E; --ink: #E6E4EE; --ink-sub: #A4A8BF;
    --night: #080B16; --night-2: #121729; --accent: #E9B872; --sleep: #7B84F0; --nap: #5CC7C2; --work: #E58B74; --seek: #F2C861; }
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  line-height: 1.8; font-size: 16px; }
a { color: var(--accent); }
.container { max-width: 1040px; margin: 0 auto; padding: 0 20px; }
.nav { background: var(--night); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; min-height: 60px; gap: 12px; flex-wrap: wrap; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--on-night); text-decoration: none; font-weight: 700; font-size: 18px; }
.brand img { width: 34px; height: 34px; border-radius: 8px; }
.nav-links { display: flex; gap: 18px; flex-wrap: wrap; }
.nav-links a { color: var(--on-night-sub); text-decoration: none; font-size: 15px; }
.hero { background: linear-gradient(180deg, var(--night) 0%, #1E2450 100%); color: var(--on-night); padding: 48px 0 64px; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }
.hero h1 { font-size: clamp(28px, 5vw, 44px); line-height: 1.35; margin: 0 0 16px; }
.hero h1 em { font-style: normal; color: var(--moon); }
.hero .lead { color: var(--on-night-sub); font-size: 17px; margin: 0 0 24px; }
.hero-shot img { width: 100%; max-width: 320px; display: block; margin: 0 auto; border-radius: 32px; box-shadow: 0 20px 50px rgba(0,0,0,.45); }
.badge-soon { display: inline-block; background: var(--moon); color: #1A1408; font-weight: 700; padding: 10px 18px; border-radius: 999px; }
.hero-note { color: var(--on-night-sub); font-size: 14px; margin-left: 12px; }
.section { padding: 56px 0; }
.section-label { display: inline-block; color: var(--accent); font-weight: 700; font-size: 14px; letter-spacing: .05em; }
h2 { font-size: clamp(22px, 3.4vw, 30px); line-height: 1.45; margin: 6px 0 16px; }
.feature { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: center; padding: 36px 0; border-top: 1px solid rgba(128,128,160,.25); }
.feature:nth-of-type(even) { grid-template-columns: 300px 1fr; }
.feature:nth-of-type(even) > img { order: -1; }
.feature img { width: 100%; border-radius: 28px; box-shadow: 0 12px 30px rgba(0,0,0,.2); }
.desc { color: var(--ink-sub); }
.band { display: flex; height: 22px; border-radius: 6px; overflow: hidden; background: var(--surface); max-width: 460px; margin: 8px 0 4px; }
.band span { display: block; height: 100%; }
.band-ticks { display: flex; justify-content: space-between; max-width: 460px; font-size: 12px; color: var(--ink-sub); }
.plus { background: var(--surface); border-radius: 20px; padding: 28px; }
.plus ul { padding-left: 1.2em; }
.price { font-size: 28px; font-weight: 700; }
.note { font-size: 14px; color: var(--ink-sub); }
.footer { background: var(--night); color: var(--on-night-sub); padding: 32px 0; margin-top: 40px; font-size: 14px; }
.footer a { color: var(--on-night); margin-right: 16px; }
.doc { max-width: 760px; margin: 0 auto; padding: 32px 20px 24px; }
.doc h1 { font-size: 30px; margin: 12px 0 4px; }
.doc h2 { font-size: 20px; margin-top: 32px; }
.updated { color: var(--ink-sub); font-size: 14px; }
.callout { background: var(--surface); border-left: 6px solid var(--moon); padding: 14px 18px; border-radius: 10px; margin: 20px 0; }
.back-home { text-decoration: none; font-size: 14px; }
details { background: var(--surface); border-radius: 12px; padding: 12px 16px; margin: 10px 0; }
summary { font-weight: 700; cursor: pointer; }
table { border-collapse: collapse; width: 100%; font-size: 15px; }
th, td { border-bottom: 1px solid rgba(128,128,160,.3); padding: 8px 6px; text-align: left; vertical-align: top; }
@media (max-width: 760px) {
  .hero-grid, .feature, .feature:nth-of-type(even) { grid-template-columns: 1fr; }
  .feature:nth-of-type(even) > img { order: 0; }
  .feature img { max-width: 300px; margin: 0 auto; display: block; }
  .hero-note { display: block; margin: 10px 0 0; }
}
