:root {
  --paper: #f7f3ed;
  --paper-2: #efe8de;
  --paper-3: #e6ddd1;
  --ink: #171411;
  --ink-2: #302a24;
  --muted: #70675d;
  --muted-2: #988e83;
  --amber: #b8732a;
  --amber-2: #d59752;
  --amber-soft: rgba(184, 115, 42, 0.11);
  --amber-border: rgba(184, 115, 42, 0.28);
  --danger: #a33b34;
  --danger-soft: rgba(163, 59, 52, 0.09);
  --success: #3f6a4f;
  --dark: #0d0e10;
  --dark-2: #15171b;
  --line: rgba(23, 20, 17, 0.1);
  --line-strong: rgba(23, 20, 17, 0.18);
  --shadow: 0 24px 70px rgba(39, 30, 20, 0.1);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 30px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img { max-width: 100%; }
:focus-visible { outline: 3px solid rgba(184, 115, 42, 0.45); outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 1000; padding: 10px 14px; background: var(--ink); color: white; transform: translateY(-160%); border-radius: 8px; }
.skip-link:focus { transform: none; }

.container { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font: 500 11px/1.2 "DM Mono", monospace;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber);
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.display {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(48px, 7vw, 94px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.035em;
}
.display em, .section-title em { color: var(--amber); font-weight: 400; }
.section-title {
  margin: 18px 0 20px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.lead { max-width: 700px; font-size: clamp(18px, 2vw, 22px); line-height: 1.55; color: var(--ink-2); }
.small { font-size: 13px; color: var(--muted); }
.mono { font-family: "DM Mono", monospace; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color .2s ease, background .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.nav { height: 76px; display: flex; align-items: center; justify-content: space-between; }
.logo { text-decoration: none; font: 500 16px/1 "DM Mono", monospace; letter-spacing: .2em; text-transform: uppercase; }
.logo span { color: var(--amber); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { text-decoration: none; font-size: 13px; color: var(--muted); }
.nav-links a:hover { color: var(--ink); }
.nav-cta, .button {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 48px; padding: 0 20px;
  border: 1px solid transparent; border-radius: 11px;
  background: var(--ink); color: var(--paper); text-decoration: none;
  font-size: 14px; font-weight: 600; cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}
.nav-cta { min-height: 42px; padding: 0 17px; }
.button:hover, .nav-cta:hover { background: var(--amber); transform: translateY(-1px); }
.button.secondary { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.button.secondary:hover { background: white; border-color: var(--amber-border); }
.button.light { background: var(--paper); color: var(--ink); }
.button.light:hover { background: white; }
.button.danger { background: var(--danger); }
.button.ghost { background: transparent; color: var(--muted); padding-inline: 10px; }
.button.ghost:hover { background: var(--paper-2); color: var(--ink); transform: none; }
.button:disabled { opacity: .55; cursor: not-allowed; transform: none; }
.menu-button { display: none; border: 0; background: none; padding: 8px; cursor: pointer; }
.menu-button span { display: block; width: 24px; height: 2px; margin: 5px; background: var(--ink); }
.mobile-menu { display: none; }

.hero { min-height: 840px; padding: 150px 0 80px; display: flex; align-items: center; position: relative; }
.hero::after {
  content: ""; position: absolute; width: 560px; height: 560px; right: -220px; top: 120px;
  border-radius: 50%; background: radial-gradient(circle, rgba(184,115,42,.12), rgba(184,115,42,0) 68%); pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr); gap: 72px; align-items: center; }
.hero-copy { position: relative; z-index: 1; }
.hero-copy .lead { margin: 30px 0 32px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.proof-line { display: flex; gap: 12px; align-items: flex-start; margin-top: 24px; color: var(--muted); font-size: 13px; }
.proof-mark { width: 22px; height: 22px; border: 1px solid var(--amber-border); border-radius: 50%; display: grid; place-items: center; color: var(--amber); flex: 0 0 auto; }

.live-card { position: relative; z-index: 1; background: var(--dark); color: #f5efe7; border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow); overflow: hidden; }
.live-card::after { content: ""; position: absolute; inset: auto -80px -130px auto; width: 260px; height: 260px; border-radius: 50%; background: rgba(184,115,42,.18); filter: blur(3px); }
.live-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.1); }
.live-label { font: 500 10px/1 "DM Mono", monospace; letter-spacing: .14em; text-transform: uppercase; color: var(--amber-2); }
.live-status { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; color: rgba(255,255,255,.55); }
.live-status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #6ca57d; }
.live-question { margin: 28px 0 18px; font: 400 30px/1.12 "Cormorant Garamond", serif; }
.live-option { display: flex; align-items: center; gap: 12px; padding: 14px 15px; border: 1px solid rgba(255,255,255,.1); border-radius: 12px; margin-top: 9px; color: rgba(255,255,255,.78); font-size: 13px; }
.live-option.active { border-color: rgba(213,151,82,.55); background: rgba(184,115,42,.12); color: white; }
.live-option i { width: 23px; height: 23px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; font-style: normal; font-size: 10px; }
.live-option.active i { border-color: var(--amber-2); color: var(--amber-2); }
.live-foot { margin-top: 22px; display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: rgba(255,255,255,.38); }

.section { padding: 110px 0; }
.section.soft { background: var(--paper-2); }
.section.dark { background: var(--dark); color: var(--paper); }
.section.dark .section-title { color: var(--paper); }
.section.dark .lead, .section.dark .small { color: rgba(247,243,237,.62); }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

.quote-band { background: var(--ink); color: var(--paper); padding: 74px 0; }
.quote-band blockquote { margin: 0 auto; max-width: 950px; text-align: center; font: italic 400 clamp(32px, 5vw, 58px)/1.15 "Cormorant Garamond", serif; }
.quote-band cite { display: block; margin-top: 22px; font: normal 500 10px/1.5 "DM Mono", monospace; letter-spacing: .15em; text-transform: uppercase; color: var(--amber-2); }

.two-nervous { display: grid; grid-template-columns: 1fr 80px 1fr; align-items: stretch; margin-top: 50px; }
.nervous-card { background: rgba(255,255,255,.42); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.nervous-card h3 { margin: 10px 0 12px; font: 400 31px/1.1 "Cormorant Garamond", serif; }
.nervous-card p { margin: 0; color: var(--muted); }
.nervous-icon { width: 46px; height: 46px; border: 1px solid var(--amber-border); border-radius: 50%; display: grid; place-items: center; color: var(--amber); font-size: 20px; }
.loop-arrow { display: grid; place-items: center; color: var(--amber); font-size: 34px; }
.loop-note { max-width: 720px; margin: 30px auto 0; text-align: center; color: var(--ink-2); }

.moment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 50px; }
.moment-card { position: relative; min-height: 280px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.35); text-decoration: none; overflow: hidden; transition: transform .18s ease, border-color .2s ease, background .2s ease; }
.moment-card:hover { transform: translateY(-3px); border-color: var(--amber-border); background: rgba(255,255,255,.62); }
.moment-number { font: 500 10px/1 "DM Mono", monospace; letter-spacing: .15em; color: var(--amber); }
.moment-card h3 { margin: 42px 0 12px; font: 400 37px/1 "Cormorant Garamond", serif; }
.moment-card p { margin: 0 0 22px; color: var(--muted); max-width: 470px; }
.moment-link { position: absolute; left: 30px; bottom: 28px; font-size: 13px; font-weight: 600; }

.response-demo { display: grid; grid-template-columns: .8fr 1.2fr; gap: 65px; align-items: center; margin-top: 60px; }
.response-shell { background: var(--paper); color: var(--ink); border-radius: 24px; padding: 22px; box-shadow: 0 30px 80px rgba(0,0,0,.25); }
.response-shell-head { display: flex; justify-content: space-between; font: 500 9px/1 "DM Mono", monospace; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); padding: 5px 4px 17px; border-bottom: 1px solid var(--line); }
.response-block { padding: 17px 4px; border-bottom: 1px solid var(--line); }
.response-block:last-child { border-bottom: 0; }
.response-label { font: 500 9px/1.2 "DM Mono", monospace; letter-spacing: .14em; text-transform: uppercase; color: var(--amber); }
.response-value { margin-top: 8px; font-size: 16px; line-height: 1.45; }
.response-say { font: italic 400 25px/1.2 "Cormorant Garamond", serif; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.step { border-top: 1px solid var(--line-strong); padding-top: 24px; }
.step-num { font: 500 10px/1 "DM Mono", monospace; color: var(--amber); letter-spacing: .14em; }
.step h3 { margin: 20px 0 8px; font: 400 27px/1.1 "Cormorant Garamond", serif; }
.step p { margin: 0; color: var(--muted); }

.story-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; align-items: start; }
.story-sticky { position: sticky; top: 120px; }
.story-body p { margin: 0 0 28px; font: 400 clamp(21px, 2.2vw, 27px)/1.62 "Cormorant Garamond", serif; color: var(--ink-2); }
.story-body strong { font-weight: 600; color: var(--ink); }
.story-body em { color: var(--amber); }
.story-signoff { margin-top: 45px; padding-top: 25px; border-top: 1px solid var(--line); }

.founder-box { display: grid; grid-template-columns: 1.3fr .7fr; gap: 50px; padding: 54px; background: var(--dark-2); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg); }
.founder-price { align-self: center; padding: 26px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); background: rgba(255,255,255,.03); }
.price { font: 400 48px/1 "Cormorant Garamond", serif; }
.price span { font: 400 13px/1.5 "DM Sans", sans-serif; color: rgba(255,255,255,.5); }
.feature-list { list-style: none; padding: 0; margin: 22px 0 0; }
.feature-list li { position: relative; padding: 8px 0 8px 22px; color: rgba(255,255,255,.7); font-size: 13px; }
.feature-list li::before { content: "✓"; position: absolute; left: 0; color: var(--amber-2); }

.signup-form { display: flex; gap: 10px; margin-top: 24px; max-width: 520px; }
.signup-form input { flex: 1; min-width: 0; height: 50px; border: 1px solid rgba(255,255,255,.16); border-radius: 10px; background: rgba(255,255,255,.06); color: white; padding: 0 15px; }
.signup-form input::placeholder { color: rgba(255,255,255,.35); }
.secondary-on-dark { background: transparent; border-color: rgba(255,255,255,.28); color: white; }
.secondary-on-dark:hover { background: rgba(255,255,255,.08); }
.confirmed-price { margin: 18px 0 22px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.14); display: grid; gap: 4px; }
.confirmed-price strong { font-family: var(--serif); font-size: 30px; font-weight: 500; }
.confirmed-price span { color: rgba(255,255,255,.56); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.form-status { min-height: 22px; margin-top: 10px; font-size: 12px; color: var(--amber-2); }

.safety-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 42px; }
.safety-card { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.3); }
.safety-card h3 { margin: 12px 0 8px; font: 400 26px/1.1 "Cormorant Garamond", serif; }
.safety-card p { margin: 0; color: var(--muted); font-size: 14px; }

.site-footer { border-top: 1px solid var(--line); padding: 34px 0; }
.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 12px; color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--ink); }

/* App */
.app-body { min-height: 100vh; background: var(--dark); color: var(--paper); }
.app-header { height: 68px; border-bottom: 1px solid rgba(255,255,255,.08); }
.app-header .container { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.app-header .logo { color: var(--paper); }
.app-header-actions { display: flex; gap: 5px; align-items: center; }
.app-link { border: 0; background: none; color: rgba(255,255,255,.5); font-size: 12px; padding: 9px; text-decoration: none; cursor: pointer; }
.app-link:hover { color: white; }
.app-main { min-height: calc(100vh - 68px); padding: 34px 0 60px; }
.app-shell { width: min(760px, calc(100% - 32px)); margin: 0 auto; }
.app-intro { padding: 22px 0 30px; }
.app-kicker { font: 500 10px/1 "DM Mono", monospace; text-transform: uppercase; letter-spacing: .15em; color: var(--amber-2); }
.app-title { margin: 14px 0 10px; font: 400 clamp(40px, 7vw, 63px)/.98 "Cormorant Garamond", serif; }
.app-subtitle { max-width: 620px; margin: 0; color: rgba(255,255,255,.57); font-size: 15px; }
.mode-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mode-card { min-height: 190px; position: relative; padding: 22px; border: 1px solid rgba(255,255,255,.1); background: var(--dark-2); border-radius: 18px; text-align: left; cursor: pointer; transition: border .2s ease, transform .15s ease, background .2s ease; }
.mode-card:hover { border-color: rgba(213,151,82,.45); transform: translateY(-2px); background: #191b20; }
.mode-icon { width: 37px; height: 37px; display: grid; place-items: center; border-radius: 50%; background: rgba(184,115,42,.13); color: var(--amber-2); }
.mode-card h2 { margin: 30px 0 7px; font: 400 27px/1.05 "Cormorant Garamond", serif; color: var(--paper); }
.mode-card p { margin: 0; color: rgba(255,255,255,.47); font-size: 12px; line-height: 1.5; }
.mode-arrow { position: absolute; right: 20px; bottom: 18px; color: var(--amber-2); }
.app-note { display: flex; gap: 10px; margin-top: 16px; padding: 14px 15px; border: 1px solid rgba(255,255,255,.08); border-radius: 12px; color: rgba(255,255,255,.46); font-size: 11px; }
.app-note strong { color: rgba(255,255,255,.72); }

.panel { background: var(--paper); color: var(--ink); border-radius: 24px; min-height: 610px; overflow: hidden; box-shadow: 0 20px 80px rgba(0,0,0,.32); }
.panel-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--line); }
.back-button { width: 38px; height: 38px; border: 1px solid var(--line); background: transparent; border-radius: 10px; cursor: pointer; display: grid; place-items: center; }
.back-button:hover { border-color: var(--amber-border); }
.progress { display: flex; gap: 5px; }
.progress span { width: 23px; height: 3px; background: var(--paper-3); border-radius: 5px; }
.progress span.active { background: var(--amber); }
.panel-body { padding: 34px 38px 38px; }
.screen-label { font: 500 9px/1 "DM Mono", monospace; letter-spacing: .15em; text-transform: uppercase; color: var(--amber); }
.question { margin: 15px 0 8px; font: 400 clamp(32px, 6vw, 46px)/1.02 "Cormorant Garamond", serif; }
.question em { color: var(--amber); }
.question-help { margin: 0 0 26px; color: var(--muted); font-size: 13px; }
.option-list { display: grid; gap: 9px; }
.option-button { width: 100%; min-height: 54px; display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 13px 15px; border: 1px solid var(--line-strong); border-radius: 12px; background: white; text-align: left; cursor: pointer; }
.option-button:hover { border-color: var(--amber-border); }
.option-button.selected { border-color: var(--amber); background: var(--amber-soft); }
.option-main { display: flex; align-items: center; gap: 12px; }
.option-dot { width: 20px; height: 20px; border: 1px solid var(--line-strong); border-radius: 50%; display: grid; place-items: center; font-size: 9px; color: transparent; }
.option-button.selected .option-dot { border-color: var(--amber); color: var(--amber); }
.option-copy strong { display: block; font-size: 14px; }
.option-copy small { display: block; margin-top: 1px; color: var(--muted); font-size: 11px; }
.textarea { width: 100%; min-height: 105px; resize: vertical; border: 1px solid var(--line-strong); border-radius: 12px; padding: 14px; background: white; color: var(--ink); }
.field-label { display: block; margin: 18px 0 8px; font-size: 12px; font-weight: 600; }
.field-hint { margin-top: 7px; color: var(--muted); font-size: 10px; }
.panel-actions { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 28px; }
.panel-actions .button { min-width: 130px; }
.error-text { margin-top: 12px; color: var(--danger); font-size: 12px; }

.safety-choice { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.safety-button { min-height: 130px; border-radius: 16px; border: 1px solid var(--line-strong); background: white; padding: 20px; text-align: left; cursor: pointer; }
.safety-button:hover { border-color: var(--amber-border); }
.safety-button.danger-choice { border-color: rgba(163,59,52,.25); background: var(--danger-soft); }
.safety-button strong { display: block; margin-bottom: 6px; font: 400 25px/1.1 "Cormorant Garamond", serif; }
.safety-button span { color: var(--muted); font-size: 12px; }

.urgent-panel { padding: 28px; border: 1px solid rgba(163,59,52,.25); border-radius: 16px; background: var(--danger-soft); }
.urgent-panel h2 { margin: 0 0 12px; font: 400 35px/1.05 "Cormorant Garamond", serif; }
.urgent-panel p { color: var(--ink-2); }
.urgent-steps { padding-left: 20px; }
.urgent-steps li { margin: 9px 0; }
.resource-list { display: grid; gap: 10px; margin-top: 20px; }
.resource { display: flex; justify-content: space-between; gap: 14px; padding: 14px; border: 1px solid var(--line); border-radius: 11px; background: rgba(255,255,255,.6); text-decoration: none; }
.resource strong { font-size: 13px; }
.resource span { color: var(--muted); font-size: 11px; }

.loading { display: grid; place-items: center; min-height: 470px; text-align: center; }
.loading-ring { width: 48px; height: 48px; border: 2px solid var(--paper-3); border-top-color: var(--amber); border-radius: 50%; animation: spin .8s linear infinite; margin: 0 auto 22px; }
@keyframes spin { to { transform: rotate(360deg); } }
.loading p { color: var(--muted); font-size: 13px; }

.result-top { margin-bottom: 22px; }
.result-badge { display: inline-flex; gap: 7px; align-items: center; padding: 7px 10px; background: var(--amber-soft); border-radius: 99px; color: var(--amber); font: 500 9px/1 "DM Mono", monospace; letter-spacing: .1em; text-transform: uppercase; }
.result-title { margin: 16px 0 6px; font: 400 clamp(35px, 6vw, 48px)/1.02 "Cormorant Garamond", serif; }
.result-intro { margin: 0; color: var(--muted); font-size: 13px; }
.result-list { border-top: 1px solid var(--line); }
.result-item { display: grid; grid-template-columns: 108px 1fr; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.result-item-label { font: 500 9px/1.35 "DM Mono", monospace; letter-spacing: .12em; text-transform: uppercase; color: var(--amber); padding-top: 4px; }
.result-item-value { font-size: 15px; line-height: 1.5; }
.result-item-value.script { font: italic 400 25px/1.25 "Cormorant Garamond", serif; }
.result-footer { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.result-meta { margin-top: 14px; color: var(--muted); font-size: 10px; }
.feedback { margin-top: 22px; padding: 14px; border: 1px solid var(--line); border-radius: 12px; display: flex; justify-content: space-between; align-items: center; gap: 15px; }
.feedback p { margin: 0; font-size: 12px; }
.feedback-buttons { display: flex; gap: 6px; }
.feedback-buttons button { border: 1px solid var(--line); background: white; border-radius: 8px; padding: 7px 10px; cursor: pointer; }
.feedback-buttons button:hover { border-color: var(--amber-border); }

.journal-list { display: grid; gap: 10px; margin-top: 20px; }
.journal-entry { border: 1px solid var(--line); border-radius: 13px; padding: 16px; background: white; }
.journal-head { display: flex; justify-content: space-between; gap: 10px; }
.journal-date { font: 500 9px/1.4 "DM Mono", monospace; text-transform: uppercase; letter-spacing: .1em; color: var(--amber); }
.journal-delete { border: 0; background: transparent; color: var(--muted); cursor: pointer; }
.journal-entry h3 { margin: 10px 0 5px; font: 400 23px/1.1 "Cormorant Garamond", serif; }
.journal-entry p { margin: 3px 0; font-size: 12px; color: var(--muted); }
.empty-state { padding: 26px; border: 1px dashed var(--line-strong); border-radius: 13px; text-align: center; color: var(--muted); font-size: 12px; }
.storage-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px 0; border-top: 1px solid var(--line); margin-top: 18px; }

.modal-backdrop { position: fixed; inset: 0; z-index: 500; display: grid; place-items: center; background: rgba(0,0,0,.72); padding: 20px; }
.modal { width: min(550px, 100%); background: var(--paper); color: var(--ink); border-radius: 22px; padding: 30px; box-shadow: var(--shadow); }
.modal h2 { margin: 0 0 10px; font: 400 38px/1.05 "Cormorant Garamond", serif; }
.modal p, .modal li { color: var(--muted); font-size: 13px; }
.modal ul { padding-left: 20px; }
.modal-actions { display: flex; gap: 9px; justify-content: flex-end; margin-top: 22px; }

.legal-main { padding: 130px 0 90px; }
.legal { max-width: 780px; }
.legal h1 { font: 400 clamp(45px, 6vw, 70px)/1 "Cormorant Garamond", serif; }
.legal h2 { margin-top: 40px; font: 400 31px/1.1 "Cormorant Garamond", serif; }
.legal p, .legal li { color: var(--ink-2); }
.legal .notice { padding: 18px; border: 1px solid var(--amber-border); background: var(--amber-soft); border-radius: 12px; }

@media (max-width: 900px) {
  .container { width: min(100% - 32px, var(--max)); }
  .nav-links { display: none; }
  .menu-button { display: block; }
  .mobile-menu.open { display: grid; position: fixed; inset: 76px 0 auto; background: var(--paper); border-bottom: 1px solid var(--line); padding: 18px 24px 24px; gap: 8px; }
  .mobile-menu a { text-decoration: none; padding: 10px 0; }
  .hero { min-height: auto; padding-top: 125px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .live-card { max-width: 600px; }
  .two-nervous { grid-template-columns: 1fr; gap: 14px; }
  .loop-arrow { transform: rotate(90deg); min-height: 48px; }
  .response-demo, .story-grid, .founder-box { grid-template-columns: 1fr; }
  .story-sticky { position: static; }
  .steps, .safety-grid { grid-template-columns: 1fr; }
  .founder-box { padding: 36px; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, var(--max)); }
  .nav { height: 66px; }
  .mobile-menu.open { inset-block-start: 66px; }
  .hero { padding: 112px 0 58px; }
  .display { font-size: clamp(48px, 15vw, 67px); }
  .hero-actions .button { width: 100%; }
  .live-card { padding: 23px; border-radius: 22px; }
  .section { padding: 76px 0; }
  .moment-grid, .mode-grid { grid-template-columns: 1fr; }
  .moment-card { min-height: 250px; }
  .quote-band { padding: 55px 0; }
  .response-demo { gap: 36px; }
  .founder-box { padding: 26px; }
  .signup-form { flex-direction: column; }
  .footer-row { align-items: flex-start; flex-direction: column; }
  .app-header { height: 62px; }
  .app-main { padding-top: 20px; }
  .app-intro { padding-top: 12px; }
  .panel { border-radius: 20px; min-height: 640px; }
  .panel-body { padding: 27px 21px 30px; }
  .safety-choice { grid-template-columns: 1fr; }
  .result-item { grid-template-columns: 1fr; gap: 6px; }
  .result-item-value.script { font-size: 23px; }
  .feedback { align-items: flex-start; flex-direction: column; }
  .modal { padding: 24px; }
  .modal-actions { flex-direction: column-reverse; }
  .modal-actions .button { width: 100%; }
}

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