:root {
  --wine: #8e244f;
  --wine-dark: #4a102c;
  --wine-deep: #270a1a;
  --rose: #c96888;
  --rose-soft: #f3dbe3;
  --cream: #fbf6f2;
  --paper: #fffdfb;
  --gold: #c99d56;
  --ink: #271c21;
  --muted: #796a70;
  --line: #eadde1;
  --ok: #1c7d72;
  --shadow: 0 18px 48px rgba(73, 19, 42, .10);
  --font: "Microsoft YaHei UI", "PingFang SC", "Noto Sans CJK SC", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { background: var(--cream); color: var(--ink); font-family: var(--font); }
body { margin: 0; min-width: 320px; background: radial-gradient(circle at 10% 0, #fff 0, transparent 28rem), var(--cream); }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid rgba(142, 36, 79, .18); outline-offset: 2px; }

.app { min-height: 100vh; }
.screen { display: none; min-height: 70vh; }
.screen.active { display: block; }
.topbar { position: sticky; top: 0; z-index: 20; display: flex; align-items: center; justify-content: space-between; height: 68px; padding: 0 max(20px, calc((100vw - 1120px) / 2)); background: rgba(255, 253, 251, .94); border-bottom: 1px solid rgba(142, 36, 79, .10); backdrop-filter: blur(16px); }
.brand { display: inline-flex; align-items: center; gap: 10px; padding: 0; border: 0; background: transparent; font-weight: 800; font-size: 18px; color: var(--wine); cursor: pointer; }
.brand-logo { width: 36px; height: 36px; }
.top-actions { display: flex; align-items: center; gap: 18px; }
.text-button { padding: 8px 0; border: 0; background: transparent; color: var(--muted); cursor: pointer; }
.text-button:hover { color: var(--wine); }

.home-wrap, .page-wrap { width: min(1120px, calc(100% - 36px)); margin: 0 auto; }
.home-wrap { padding: 22px 0 72px; }
.page-wrap { padding: 30px 0 72px; }
.page-wrap.narrow { width: min(760px, calc(100% - 32px)); }
.hero { position: relative; min-height: 620px; overflow: hidden; border-radius: 28px; background: var(--wine-deep); box-shadow: var(--shadow); }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(34, 7, 20, .83) 0, rgba(34, 7, 20, .56) 47%, rgba(34, 7, 20, .12) 74%), linear-gradient(0deg, rgba(31, 5, 16, .86) 0, transparent 48%); }
.hero-copy { position: relative; z-index: 1; display: flex; min-height: 620px; width: min(760px, 76%); padding: 74px 64px 58px; flex-direction: column; justify-content: center; align-items: flex-start; color: #fff; }
.eyebrow, .section-heading > span, .form-intro > span { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800; letter-spacing: .08em; color: #f2c5d4; }
.eyebrow::before, .section-heading > span::before, .form-intro > span::before { content: ""; width: 24px; height: 1px; background: currentColor; }
.hero h1 { margin: 24px 0 20px; font-size: clamp(46px, 4.8vw, 64px); line-height: 1.08; letter-spacing: -.04em; }
.hero-copy > p { width: min(500px, 100%); margin: 0 0 34px; color: rgba(255,255,255,.88); font-size: 18px; line-height: 1.8; }
.primary { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; padding: 0 26px; border: 1px solid transparent; border-radius: 16px; background: var(--wine); color: #fff; font-weight: 800; font-size: 17px; box-shadow: 0 12px 26px rgba(142, 36, 79, .23); cursor: pointer; transition: transform .18s ease, background .18s ease, box-shadow .18s ease; }
.primary:hover { background: #a52d5d; box-shadow: 0 16px 32px rgba(142, 36, 79, .28); transform: translateY(-1px); }
.primary:active { transform: translateY(0); }
.primary:disabled { background: #bcaeb3; box-shadow: none; cursor: not-allowed; }
.hero-cta { min-width: 260px; background: #fff; color: var(--wine); box-shadow: 0 16px 34px rgba(0,0,0,.20); }
.hero-cta:hover { background: #fff7fa; }

.value-strip { display: grid; grid-template-columns: repeat(3, 1fr); margin: 18px 0 86px; padding: 22px 12px; border: 1px solid var(--line); background: rgba(255,255,255,.72); box-shadow: 0 12px 34px rgba(73,19,42,.06); }
.value-strip > div { display: grid; grid-template-columns: 38px 1fr; grid-template-rows: auto auto; column-gap: 13px; padding: 4px 26px; }
.value-strip > div + div { border-left: 1px solid var(--line); }
.line-icon { grid-row: 1 / 3; display: grid; place-items: center; width: 38px; height: 38px; color: var(--wine); border: 1px solid #d9aabd; font-size: 22px; }
.value-strip b { font-size: 16px; }
.value-strip small { margin-top: 4px; color: var(--muted); }

.intro-section { display: grid; gap: 18px; }
.section-heading { max-width: 700px; margin: 0 0 28px; }
.section-heading > span, .form-intro > span { color: var(--wine); }
.section-heading h2, .form-intro h1 { margin: 14px 0 12px; font-size: clamp(30px, 4vw, 48px); line-height: 1.14; letter-spacing: -.035em; }
.section-heading p, .form-intro p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.8; }
.section-heading.compact { margin-bottom: 24px; }
.section-heading.compact h2 { font-size: clamp(28px, 3.2vw, 40px); }
.feature-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.feature-card { overflow: hidden; border-radius: 16px; background: var(--paper); box-shadow: 0 18px 46px rgba(73, 19, 42, .09); transition: transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease; }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 24px 58px rgba(73, 19, 42, .14); }
.feature-card img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; transition: transform .55s cubic-bezier(.2,.8,.2,1); }
.feature-card:hover img { transform: scale(1.025); }
.feature-card-copy { min-height: 180px; padding: 28px 30px 32px; }
.feature-card h3 { max-width: 15em; margin: 0 0 13px; font-size: clamp(24px, 2.4vw, 31px); line-height: 1.3; letter-spacing: -.025em; }
.feature-card p { max-width: 34em; margin: 0; color: #66565d; font-size: 16px; line-height: 1.78; }

.back { margin: 0 0 26px; padding: 6px 0; border: 0; background: transparent; color: var(--wine); font-weight: 700; cursor: pointer; }
.form-intro { margin-bottom: 30px; }
.form-intro h1 { font-size: clamp(32px, 5vw, 50px); }
.person-card, .relationship-card, .checkout-card, .lookup-card { padding: 30px; background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow); }
.person-title { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.person-mark { display: grid; flex: 0 0 auto; place-items: center; width: 50px; height: 50px; border-radius: 50%; background: var(--wine); color: #fff; font-weight: 900; }
.person-mark.partner { background: var(--gold); color: #3b2910; }
.person-title h2, .relationship-card h2, .checkout-card h2 { margin: 0 0 5px; font-size: 22px; }
.person-title p { margin: 0; color: var(--muted); font-size: 13px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 16px; }
.field { display: grid; gap: 9px; min-width: 0; }
.field.wide { grid-column: 1 / -1; }
.field > span, .choice-field legend { padding: 0; font-size: 14px; font-weight: 800; color: #4a3b41; }
.choice-field { padding: 0; border: 0; margin: 0; }
.input { width: 100%; min-width: 0; max-width: 100%; min-height: 50px; padding: 0 14px; border: 1px solid #ddcfd4; border-radius: 12px; background: #fff; color: var(--ink); }
.input[type="date"],
.input[type="time"] { display: block; inline-size: 100%; min-inline-size: 0; max-inline-size: 100%; overflow: hidden; }
.input[type="date"]::-webkit-date-and-time-value,
.input[type="time"]::-webkit-date-and-time-value { min-width: 0; text-align: left; }
@supports (-webkit-touch-callout: none) {
  .input[type="date"],
  .input[type="time"] {
    width: -webkit-fill-available;
    min-width: 0;
    max-width: 100%;
    height: 50px;
    -webkit-appearance: none;
    appearance: none;
  }
}
.input::placeholder { color: #ac9da3; }
.input:focus { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(201,104,136,.10); outline: none; }
.textarea { min-height: 118px; padding-top: 13px; resize: vertical; line-height: 1.65; }
.segmented { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.segmented label { position: relative; }
.segmented input { position: absolute; opacity: 0; }
.segmented span { display: grid; place-items: center; min-height: 50px; border: 1px solid #ddcfd4; border-radius: 12px; background: #fff; cursor: pointer; }
.segmented input:checked + span { border-color: var(--wine); background: #f7e9ee; color: var(--wine); font-weight: 800; box-shadow: inset 0 0 0 1px var(--wine); }
.birth-time-control { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; }
.unknown-time { position: relative; }
.unknown-time input { position: absolute; opacity: 0; pointer-events: none; }
.unknown-time span { display: grid; min-width: 84px; min-height: 50px; place-items: center; border: 1px solid #ddcfd4; border-radius: 12px; background: #fff; color: var(--muted); font-size: 14px; cursor: pointer; transition: border-color .18s ease, background .18s ease, color .18s ease; }
.unknown-time input:focus-visible + span { outline: 3px solid rgba(142, 36, 79, .18); outline-offset: 2px; }
.unknown-time input:checked + span { border-color: var(--wine); background: #f7e9ee; color: var(--wine); font-weight: 800; box-shadow: inset 0 0 0 1px var(--wine); }
.birth-time-control .input:disabled { background: #f1eaed; color: #a6979d; cursor: not-allowed; }
.heart-divider { display: flex; align-items: center; gap: 14px; padding: 17px 14px; color: var(--wine); }
.heart-divider i { height: 1px; flex: 1; background: var(--line); }
.heart-divider span { font-size: 22px; }
.relationship-card { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 18px; }
.relationship-card h2 { grid-column: 1 / -1; }
.relationship-card .field { grid-column: auto; }
.counter { justify-self: end; color: var(--muted); }
.consent-row { padding: 20px 4px 4px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.consent-row label { display: flex; align-items: flex-start; gap: 8px; }
.consent-row input { margin-top: 5px; accent-color: var(--wine); }
.consent-row button { padding: 0; border: 0; background: transparent; color: var(--wine); text-decoration: underline; cursor: pointer; }
.form-error { display: none; margin-top: 12px; padding: 12px 14px; background: #fff0f3; border: 1px solid #efcdd7; color: #9b244d; font-size: 14px; }
.form-error.show { display: block; }
.checkout-card { margin-top: 24px; padding: 30px; background: linear-gradient(140deg, #fffdfb 0, #f9edf1 100%); border-color: #e6ccd5; }
.checkout-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.checkout-head span { color: var(--wine); font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.checkout-head strong { color: var(--wine); font-size: 42px; letter-spacing: -.04em; }
.checkout-head strong small { font-size: 18px; }
.checkout-card ul { display: grid; gap: 10px; margin: 24px 0; padding: 18px 0; border-top: 1px solid #ead6dd; border-bottom: 1px solid #ead6dd; list-style: none; }
.checkout-card li { color: #58464d; }
.checkout-card li::before { content: "✓"; margin-right: 10px; color: var(--ok); font-weight: 900; }
.payment-status { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; padding: 14px; background: #fff; border: 1px solid var(--line); }
.payment-status > i { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: #1677ff; color: #fff; font-style: normal; font-weight: 900; }
.payment-status b, .payment-status small { display: block; }
.payment-status small { margin-top: 3px; color: var(--muted); font-size: 12px; }
.payment-status.test-mode > i { background: var(--gold); color: #3d2c16; }
.pay-button { width: 100%; }
.pay-meta { margin: 10px 0 0; color: var(--muted); text-align: center; font-size: 12px; }

.loading-card { display: grid; min-height: calc(100vh - 68px); place-content: center; justify-items: center; padding: 40px 24px; text-align: center; }
.orbit-heart { display: grid; place-items: center; width: 90px; height: 90px; margin-bottom: 26px; border: 1px solid #dca9ba; border-radius: 50%; animation: pulse 1.8s ease-in-out infinite; }
.orbit-heart span { color: var(--wine); font-size: 40px; }
.loading-card h1 { margin: 0 0 12px; font-size: 30px; }
.loading-card > p { margin: 0 0 26px; color: var(--muted); }
.loading-list { display: grid; gap: 10px; width: min(340px, 100%); padding: 20px; background: #fff; border: 1px solid var(--line); text-align: left; color: var(--muted); }
.loading-list .done { color: var(--ok); }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(142,36,79,.12)} 50%{box-shadow:0 0 0 18px rgba(142,36,79,0)} }

.report-wrap { width: min(860px, calc(100% - 32px)); }
.report-nav { display: flex; justify-content: space-between; }
.report-hero { position: relative; overflow: hidden; padding: 46px; background: linear-gradient(135deg, #4a102c 0, #7d2047 55%, #a84a6a 100%); color: #fff; box-shadow: var(--shadow); }
.report-glow { position: absolute; width: 300px; height: 300px; top: -160px; right: -80px; border: 1px solid rgba(255,255,255,.20); border-radius: 50%; box-shadow: 0 0 0 42px rgba(255,255,255,.035), 0 0 0 84px rgba(255,255,255,.025); }
.report-kicker { position: relative; color: #f0c3d1; font-weight: 800; font-size: 13px; letter-spacing: .08em; }
.report-hero h1 { position: relative; margin: 22px 0 10px; font-size: clamp(46px, 9vw, 72px); letter-spacing: .10em; line-height: 1; }
.report-hero p { position: relative; max-width: 620px; margin: 0; color: rgba(255,255,255,.84); font-size: 17px; line-height: 1.8; }
.keyword-row { position: relative; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.keyword-row span { padding: 7px 11px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; background: rgba(255,255,255,.08); font-size: 12px; }
#reportContent { display: grid; gap: 16px; margin-top: 16px; }
.report-section { padding: 34px; background: var(--paper); border: 1px solid var(--line); box-shadow: 0 12px 34px rgba(73,19,42,.06); }
.module-heading { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.module-heading > i { flex: 0 0 auto; display: grid; place-items: center; width: 40px; height: 40px; background: var(--wine); color: #fff; font-style: normal; font-size: 12px; font-weight: 900; }
.module-heading h2 { margin: 0 0 7px; font-size: 24px; }
.module-heading p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.person-analysis { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.analysis-panel { padding: 22px; border: 1px solid var(--line); background: #fff; }
.analysis-panel.partner { background: #fbf5e9; border-color: #eadcc2; }
.analysis-panel > span { color: var(--wine); font-size: 12px; font-weight: 800; }
.analysis-panel h3 { margin: 8px 0 12px; font-size: 20px; }
.analysis-panel p, .analysis-copy p, .advice-block p { margin: 0; color: #5f5056; line-height: 1.85; }
.trait-list, .point-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 15px 0 0; padding: 0; list-style: none; }
.trait-list li { padding: 6px 9px; background: #f7e8ed; color: var(--wine); font-size: 12px; }
.analysis-copy { display: grid; gap: 18px; margin-top: 18px; }
.subhead { margin: 0 0 8px; color: var(--wine-dark); font-size: 17px; }
.point-list { display: grid; gap: 9px; }
.point-list li { position: relative; padding-left: 20px; color: #5f5056; line-height: 1.75; }
.point-list li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }
.opportunity-challenge { display: grid; grid-template-columns: 3fr 2fr; gap: 14px; }
.insight-card { padding: 22px; background: #f9eff2; border: 1px solid #ead3db; }
.insight-card.challenge { background: #faf5ea; border-color: #e8d8b9; }
.insight-card + .insight-card { margin-top: 10px; }
.insight-card h3 { margin: 0 0 10px; font-size: 18px; }
.insight-card p { margin: 5px 0 0; color: #64545a; line-height: 1.75; }
.insight-card b { color: var(--wine-dark); }
.advice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.advice-block { padding: 20px; background: #fff; border: 1px solid var(--line); }
.advice-block h3 { margin: 0 0 10px; font-size: 17px; color: var(--wine-dark); }
.script-box { margin-top: 16px; padding: 18px 20px; background: var(--wine-deep); color: #fff; }
.script-box b { display: block; margin-bottom: 10px; color: #f2c5d4; }
.script-box p { margin: 0; color: rgba(255,255,255,.88); line-height: 1.8; }
.report-order { margin: 22px 0; color: var(--muted); text-align: center; font-size: 12px; }

.lookup-card { display: grid; gap: 16px; }
.lookup-card .primary { width: 100%; }
.order-card { margin-top: 16px; padding: 22px; background: #fff; border: 1px solid var(--line); }
.order-card h3 { word-break: break-all; }
.status-pill { display: inline-block; padding: 6px 9px; background: #e9f5f2; color: var(--ok); font-size: 12px; font-weight: 800; }

.site-footer { display: grid; justify-items: center; gap: 10px; padding: 38px 22px 48px; border-top: 1px solid var(--line); background: #fffaf8; color: var(--muted); text-align: center; font-size: 12px; line-height: 1.7; }
.site-footer p { max-width: 760px; margin: 0; }
.site-footer strong { color: #59474e; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; margin-top: 4px; }
.site-footer nav button { padding: 0; border: 0; background: transparent; color: var(--wine); cursor: pointer; }
.trust-badges { display: flex; align-items: center; justify-content: center; gap: 7px; margin: 2px 0 3px; }
.trust-badge { display: inline-flex; height: 25px; align-items: center; gap: 4px; padding: 2px 6px 2px 3px; border: 1px solid #e5a9af; background: #fff; color: #c42432; line-height: 1; }
.trust-badge svg { width: 19px; height: 19px; padding: 2px; background: #c42432; color: #fff; stroke: currentColor; stroke-width: 1.8; fill: none; }
.trust-badge b { font-size: 10px; font-weight: 800; letter-spacing: 0; white-space: nowrap; }

.modal { position: fixed; inset: 0; z-index: 80; display: none; padding: 24px; align-items: flex-end; justify-content: center; background: rgba(31, 12, 20, .48); }
.modal.active { display: flex; }
.sheet { position: relative; width: min(560px, 100%); max-height: min(80vh, 720px); overflow: auto; padding: 30px; background: #fff; box-shadow: 0 24px 70px rgba(25,6,14,.30); }
.sheet h2 { margin: 0 0 18px; }
.sheet p { color: #5e4e55; line-height: 1.8; }
.sheet-close { position: absolute; top: 13px; right: 15px; width: 36px; height: 36px; border: 0; background: #f7e9ee; color: var(--wine); font-size: 22px; cursor: pointer; }
.service-status { display: flex; align-items: center; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.service-avatar { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--wine); color: #fff; font-size: 12px; }
.service-status small, .service-status b { display: block; }
.service-status small { margin-top: 4px; color: var(--muted); }
.service-messages { display: grid; gap: 9px; max-height: 260px; overflow: auto; padding: 16px 0; }
.service-message { max-width: 88%; padding: 10px 12px; background: #f5edf0; line-height: 1.6; font-size: 13px; }
.service-message.user { justify-self: end; background: var(--wine); color: #fff; }
.service-quick { display: flex; flex-wrap: wrap; gap: 8px; }
.service-chip { padding: 8px 10px; border: 1px solid #dec8d0; background: #fff; color: var(--wine); cursor: pointer; }
.service-compose { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-top: 12px; }
.service-compose input { min-width: 0; min-height: 44px; padding: 0 11px; border: 1px solid #ddcfd4; }
.service-send, .service-order-link { border: 0; background: var(--wine); color: #fff; font-weight: 800; cursor: pointer; }
.service-order-link { width: 100%; min-height: 44px; margin-top: 10px; }
.toast { position: fixed; z-index: 100; left: 50%; bottom: 28px; max-width: calc(100% - 32px); padding: 11px 16px; opacity: 0; transform: translate(-50%, 20px); pointer-events: none; background: #2f1722; color: #fff; font-size: 13px; transition: .2s ease; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 780px) {
  .topbar { height: 60px; padding: 0 17px; }
  .brand { font-size: 16px; }
  .brand-logo { width: 32px; height: 32px; }
  .top-actions { gap: 15px; font-size: 14px; }
  .home-wrap { width: min(100% - 20px, 560px); padding-top: 10px; }
  .hero { min-height: 620px; border-radius: 22px; }
  .hero-image { object-position: center top; }
  .hero-shade { background: linear-gradient(0deg, rgba(31,5,16,.96) 0, rgba(31,5,16,.80) 40%, rgba(31,5,16,.12) 76%); }
  .hero-copy { width: 100%; min-height: 620px; padding: 34px 24px 24px; justify-content: flex-end; }
  .hero h1 { margin: 15px 0 14px; font-size: clamp(38px, 10.8vw, 54px); }
  .hero-copy > p { margin-bottom: 20px; font-size: 15px; line-height: 1.7; }
  .hero-cta { width: 100%; min-width: 0; }
  .value-strip { margin: 14px 0 62px; padding: 20px 4px; }
  .value-strip > div { grid-template-columns: 1fr; grid-template-rows: auto auto auto; justify-items: center; gap: 7px; padding: 0 7px; text-align: center; }
  .line-icon { grid-row: auto; width: 36px; height: 36px; }
  .value-strip b { font-size: 14px; }
  .value-strip small { font-size: 11px; line-height: 1.45; }
  .section-heading { margin-bottom: 18px; padding: 0 4px; }
  .section-heading h2 { font-size: 31px; }
  .feature-cards { grid-template-columns: 1fr; gap: 16px; }
  .feature-card img { aspect-ratio: 16 / 10; }
  .feature-card-copy { min-height: 0; padding: 23px 22px 26px; }
  .feature-card h3 { margin-bottom: 10px; font-size: 24px; }
  .feature-card p { color: #5f5056; font-size: 15px; line-height: 1.75; }
  .page-wrap, .page-wrap.narrow, .report-wrap { width: min(100% - 20px, 560px); padding-top: 18px; }
  .person-card, .relationship-card, .checkout-card, .lookup-card { padding: 22px 18px; }
  .relationship-card { grid-template-columns: 1fr; }
  .relationship-card h2, .relationship-card .field { grid-column: auto; }
  .report-hero { padding: 34px 24px; }
  .report-hero h1 { font-size: 49px; }
  .report-section { padding: 26px 20px; }
  .person-analysis, .opportunity-challenge, .advice-grid { grid-template-columns: 1fr; }
  .sheet { padding: 26px 20px; }
}

@media (max-width: 470px) {
  .hero { min-height: 590px; }
  .hero-copy { min-height: 590px; }
  .hero h1 { font-size: clamp(34px, 9.4vw, 44px); letter-spacing: -.035em; }
  .form-grid { grid-template-columns: 1fr; }
  .field.wide { grid-column: auto; }
  .checkout-head strong { font-size: 36px; }
  .feature-card h3 { font-size: 23px; }
}

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