:root {
  --paper: #fbfaf6;
  --ink: #152018;
  --moss: #536b4f;
  --jade: #1f7a6b;
  --ember: #c76b3a;
  --mist: #eef2ec;
  --gold: #b99345;
  --line: rgba(21, 32, 24, 0.12);
  --shadow: 0 24px 80px rgba(21, 32, 24, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.topbar {
  align-items: center;
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 16px clamp(20px, 5vw, 54px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: flex;
  font-size: 18px;
  font-weight: 700;
  gap: 12px;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  border-radius: 8px;
  color: var(--paper);
  display: inline-flex;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.nav {
  display: flex;
  gap: 28px;
  color: rgba(21, 32, 24, 0.68);
  font-size: 14px;
}

.nav a:hover {
  color: var(--ink);
}

.lang-debug-toggle {
  background: rgba(31, 122, 107, 0.1);
  border: 1px solid rgba(31, 122, 107, 0.22);
  border-radius: 8px;
  color: var(--jade);
  cursor: pointer;
  display: none;
  font-size: 13px;
  font-weight: 800;
  min-height: 36px;
  padding: 0 12px;
}

html.show-zh-debug-toggle .lang-debug-toggle {
  align-items: center;
  display: inline-flex;
}

.zh-debug {
  background: rgba(185, 147, 69, 0.12);
  border-left: 3px solid rgba(185, 147, 69, 0.72);
  border-radius: 6px;
  color: #735c24;
  display: block;
  font-size: 13px;
  font-style: normal;
  font-weight: 650;
  line-height: 1.65;
  margin: 8px 0 0;
  padding: 7px 10px;
}

.hide-zh-debug .zh-debug {
  display: none !important;
}

.zh-headline {
  font-size: clamp(20px, 3vw, 30px);
  margin-top: 14px;
}

.zh-section-title {
  font-size: 16px;
  margin-bottom: 12px;
}

.hero {
  min-height: 720px;
  overflow: hidden;
  position: relative;
}

.hero-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 0.96) 0%, rgba(251, 250, 246, 0.83) 42%, rgba(251, 250, 246, 0.48) 100%),
    linear-gradient(0deg, rgba(21, 32, 24, 0.12), rgba(21, 32, 24, 0.02));
  inset: 0;
  position: absolute;
}

.hero-content {
  display: grid;
  gap: 42px;
  grid-template-columns: 1.05fr 0.95fr;
  margin: 0 auto;
  max-width: 1240px;
  padding: 64px clamp(20px, 5vw, 54px) 72px;
  position: relative;
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  color: var(--jade);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.warm {
  color: var(--ember);
}

.gold {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  font-size: clamp(44px, 6vw, 82px);
  line-height: 1.02;
  margin: 0;
  max-width: 820px;
}

.lead {
  color: rgba(21, 32, 24, 0.74);
  font-size: 19px;
  line-height: 1.75;
  margin: 26px 0 0;
  max-width: 690px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
}

.primary {
  background: var(--jade);
  color: white;
  box-shadow: var(--shadow);
}

.secondary {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(21, 32, 24, 0.14);
}

.trust-note,
.privacy {
  color: rgba(21, 32, 24, 0.58);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 18px;
}

.calculator {
  align-self: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(21, 32, 24, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: clamp(22px, 4vw, 32px);
}

.calculator h2,
.report h2,
.trust h2,
.faq h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  margin: 0;
}

.calculator p {
  color: rgba(21, 32, 24, 0.66);
  line-height: 1.7;
}

form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

label {
  display: grid;
  gap: 8px;
}

label span {
  color: rgba(21, 32, 24, 0.78);
  font-size: 14px;
  font-weight: 700;
}

label .zh-debug,
.checkbox .zh-debug {
  margin-top: 0;
}

input,
select {
  background: white;
  border: 1px solid rgba(21, 32, 24, 0.16);
  border-radius: 8px;
  color: var(--ink);
  min-height: 48px;
  outline: none;
  padding: 0 14px;
  width: 100%;
}

input:focus,
select:focus {
  border-color: var(--jade);
}

.field-help {
  color: rgba(21, 32, 24, 0.58);
  display: block;
  font-size: 12px;
  font-weight: 650;
  margin-top: 8px;
}

.field-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

.checkbox {
  align-items: start;
  background: var(--mist);
  border-radius: 8px;
  display: flex;
  gap: 10px;
  padding: 12px;
}

.checkbox input {
  accent-color: var(--jade);
  height: 16px;
  min-height: 16px;
  margin-top: 2px;
  width: 16px;
}

form button {
  background: var(--ink);
  border: 0;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  font-weight: 800;
  min-height: 50px;
  padding: 0 18px;
}

form button:hover {
  background: var(--jade);
}

.form-error {
  color: #9e3528;
  font-size: 14px;
  font-weight: 750;
  margin: 0;
}

.city-match-note {
  color: rgba(31, 122, 107, 0.88);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.65;
  margin: -2px 0 0;
}

.steps,
.report,
.trust,
.faq {
  display: grid;
  gap: 24px;
  margin: 0 auto;
  max-width: 1240px;
  padding: 72px clamp(20px, 5vw, 54px);
}

.steps {
  grid-template-columns: repeat(3, 1fr);
}

.steps article,
.faq article,
.report-list span {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.icon {
  color: var(--jade);
  font-size: 30px;
}

.steps h2,
.faq h3,
.trust h3 {
  font-size: 21px;
  margin: 18px 0 0;
}

.steps p,
.report p,
.faq p,
.trust p {
  color: rgba(21, 32, 24, 0.68);
  line-height: 1.7;
}

.report {
  grid-template-columns: 0.9fr 1.1fr;
}

.report-list {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.report-list span::before {
  color: var(--jade);
  content: "✓";
  font-weight: 900;
  margin-right: 10px;
}

.trust {
  background: var(--ink);
  color: var(--paper);
  max-width: none;
  grid-template-columns: 0.9fr 1.1fr;
}

.trust > * {
  margin-left: auto;
  margin-right: auto;
  max-width: 580px;
  width: 100%;
}

.trust p {
  color: rgba(251, 250, 246, 0.7);
}

.trust .zh-debug {
  background: rgba(185, 147, 69, 0.16);
  color: #ead8a8;
}

.trust-list {
  display: grid;
  gap: 14px;
}

.trust article {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 22px;
}

.faq {
  grid-template-columns: 0.85fr 1.15fr;
}

.guide-list,
.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.guide-list a {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: rgba(21, 32, 24, 0.76);
  font-weight: 800;
  padding: 16px;
}

.guide-list .zh-debug,
.report-list .zh-debug {
  margin-top: 9px;
}

footer {
  align-items: center;
  background: white;
  border-top: 1px solid var(--line);
  color: rgba(21, 32, 24, 0.6);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  padding: 28px clamp(20px, 5vw, 54px);
}

footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.snapshot-page {
  background:
    radial-gradient(circle at 18% 8%, rgba(31, 122, 107, 0.1), transparent 30%),
    var(--paper);
}

.snapshot-shell {
  margin: 0 auto;
  max-width: 1240px;
  padding: 58px clamp(20px, 5vw, 54px) 80px;
}

.snapshot-hero {
  max-width: 860px;
}

.snapshot-hero h1 {
  font-size: clamp(42px, 5vw, 68px);
}

.prototype-banner {
  background: rgba(199, 107, 58, 0.12);
  border: 1px solid rgba(199, 107, 58, 0.24);
  border-radius: 8px;
  color: #7c452a;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.65;
  margin-top: 24px;
  padding: 14px 16px;
}

.prototype-banner.compact {
  font-size: 13px;
  margin-top: 16px;
}

.snapshot-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.25fr 0.85fr;
  margin-top: 42px;
}

.context-card {
  grid-column: 1 / -1;
}

.context-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  margin: 22px 0 0;
}

.context-list div {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.context-list dt {
  color: rgba(21, 32, 24, 0.58);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.context-list dd {
  color: var(--ink);
  font-weight: 850;
  margin: 8px 0 0;
}

.snapshot-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(21, 32, 24, 0.07);
  padding: clamp(22px, 4vw, 30px);
}

.snapshot-card h2,
.upgrade-panel h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  margin: 0;
}

.chart-card {
  grid-row: span 2;
}

.chart-table {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.chart-row {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: 0.7fr 1.2fr 0.8fr;
  padding: 14px;
}

.chart-row strong,
.chart-row span {
  min-width: 0;
}

.chart-head {
  background: var(--mist);
  color: rgba(21, 32, 24, 0.72);
  font-size: 14px;
  font-weight: 850;
}

.chart-row.muted {
  color: rgba(21, 32, 24, 0.52);
}

.day-master-symbol {
  color: var(--jade);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 850;
  line-height: 1;
  margin: 24px 0 8px;
}

.day-master-symbol span {
  color: var(--gold);
}

.snapshot-copy {
  color: rgba(21, 32, 24, 0.66);
  line-height: 1.7;
}

.element-bars {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.element-label {
  align-items: center;
  display: flex;
  font-weight: 800;
  justify-content: space-between;
}

.element-track {
  background: var(--mist);
  border-radius: 999px;
  height: 12px;
  margin-top: 8px;
  overflow: hidden;
}

.element-track span {
  background: linear-gradient(90deg, var(--jade), var(--gold));
  border-radius: inherit;
  display: block;
  height: 100%;
}

.insights-card {
  margin-top: 18px;
}

#insights {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.insight-item {
  align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: 42px 1fr;
  padding: 18px;
}

.insight-item > span {
  align-items: center;
  background: var(--ink);
  border-radius: 8px;
  color: var(--paper);
  display: inline-flex;
  font-weight: 850;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.insight-item p {
  line-height: 1.7;
  margin: 0;
}

.upgrade-panel {
  align-items: center;
  background: var(--ink);
  border-radius: 8px;
  color: var(--paper);
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto;
  margin-top: 18px;
  padding: clamp(24px, 4vw, 36px);
}

.upgrade-panel p {
  color: rgba(251, 250, 246, 0.72);
  line-height: 1.7;
}

.upgrade-button {
  align-items: center;
  background: var(--gold);
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
}

.report-shell {
  margin: 0 auto;
  max-width: 1240px;
  padding: 58px clamp(20px, 5vw, 54px) 80px;
}

.report-hero {
  max-width: 880px;
}

.report-hero h1 {
  font-size: clamp(44px, 6vw, 76px);
}

.report-layout {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: 310px 1fr;
  margin-top: 42px;
}

.report-sidebar {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  position: sticky;
  top: 96px;
}

.report-sidebar h2 {
  font-size: 22px;
  line-height: 1.15;
  margin: 0;
}

#report-toc {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

#report-toc a {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: rgba(21, 32, 24, 0.74);
  font-weight: 800;
  line-height: 1.4;
  padding: 12px;
}

#report-toc a:hover {
  border-color: rgba(31, 122, 107, 0.35);
  color: var(--jade);
}

.report-document {
  display: grid;
  gap: 18px;
}

#full-report-content {
  display: grid;
  gap: 18px;
}

.report-section,
.report-disclaimer {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(21, 32, 24, 0.06);
  padding: clamp(24px, 4vw, 38px);
}

.section-number {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 12px;
}

.report-section h2,
.report-disclaimer h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  margin: 0;
}

.report-section p:not(.zh-debug):not(.section-number),
.report-disclaimer p:not(.zh-debug) {
  color: rgba(21, 32, 24, 0.72);
  font-size: 18px;
  line-height: 1.8;
  margin: 18px 0 0;
}

.upgrade-shell {
  margin: 0 auto;
  max-width: 1240px;
  padding: 58px clamp(20px, 5vw, 54px) 80px;
}

.upgrade-hero {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr 360px;
}

.upgrade-hero h1 {
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.02;
  margin: 0;
  max-width: 820px;
}

.price-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 26px;
  position: sticky;
  top: 96px;
}

.price-label {
  color: rgba(21, 32, 24, 0.62);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin: 0;
  text-transform: uppercase;
}

.price {
  color: var(--ink);
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  margin: 18px 0 8px;
}

.price-note {
  color: rgba(21, 32, 24, 0.68);
  font-weight: 750;
  line-height: 1.6;
}

.unlock-report-button {
  align-items: center;
  background: var(--jade);
  border-radius: 8px;
  color: white;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  margin-top: 18px;
  min-height: 52px;
  width: 100%;
}

.upgrade-included,
.sample-strip,
.upgrade-faq {
  margin-top: 28px;
}

.upgrade-included {
  display: grid;
  gap: 28px;
  grid-template-columns: 0.75fr 1.25fr;
}

.upgrade-included h2,
.sample-strip h2,
.upgrade-faq h2 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.1;
  margin: 0;
}

.included-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

.included-grid article,
.upgrade-faq article,
.sample-strip {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(21, 32, 24, 0.06);
  padding: 22px;
}

.included-grid h3 {
  font-size: 21px;
  margin: 0;
}

.included-grid p:not(.zh-debug),
.upgrade-faq p:not(.zh-debug) {
  color: rgba(21, 32, 24, 0.68);
  line-height: 1.7;
}

.sample-strip blockquote {
  color: var(--ink);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 750;
  line-height: 1.25;
  margin: 12px 0 0;
  max-width: 980px;
}

.upgrade-faq {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.report-bullets {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.report-bullets article {
  align-items: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: 34px 1fr;
  padding: 16px;
}

.report-bullets article > span {
  align-items: center;
  background: rgba(31, 122, 107, 0.12);
  border-radius: 8px;
  color: var(--jade);
  display: inline-flex;
  font-weight: 900;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.report-bullets p,
.prompt-grid p {
  font-size: 16px !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}

.prompt-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
  margin-top: 24px;
}

.prompt-grid article {
  background: rgba(185, 147, 69, 0.1);
  border: 1px solid rgba(185, 147, 69, 0.24);
  border-radius: 8px;
  padding: 18px;
}

.legal-page {
  background:
    linear-gradient(180deg, rgba(240, 247, 241, 0.86), rgba(251, 250, 246, 0.94) 34%),
    var(--cream);
}

.legal-shell {
  display: grid;
  gap: 18px;
  margin: 0 auto;
  max-width: 920px;
  padding: 86px 24px 70px;
}

.legal-shell h1 {
  font-size: clamp(40px, 7vw, 76px);
  letter-spacing: 0;
  line-height: 0.96;
  margin: 0;
}

.legal-shell > p:not(.eyebrow):not(.zh-debug),
.legal-updated {
  color: rgba(21, 32, 24, 0.64);
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}

.legal-shell section {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(30, 42, 34, 0.08);
  padding: 24px;
}

.legal-shell h2 {
  font-size: 24px;
  margin: 0 0 10px;
}

.legal-shell section p:not(.zh-debug) {
  color: rgba(21, 32, 24, 0.72);
  line-height: 1.75;
  margin: 0;
}

.legal-shell section p + p {
  margin-top: 10px;
}

.checkout-page {
  background:
    linear-gradient(180deg, rgba(237, 246, 239, 0.9), rgba(251, 250, 246, 0.96) 38%),
    var(--cream);
}

.checkout-shell {
  display: grid;
  gap: 24px;
  margin: 0 auto;
  max-width: 1120px;
  padding: 82px 24px 70px;
}

.checkout-hero {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.25fr) 380px;
}

.checkout-hero h1,
.payment-result h1 {
  font-size: clamp(42px, 7vw, 78px);
  letter-spacing: 0;
  line-height: 0.96;
  margin: 0;
}

.checkout-summary,
.checkout-actions-panel,
.payment-result,
.receipt-box,
.locked-report {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(30, 42, 34, 0.08);
}

.checkout-summary {
  display: grid;
  gap: 16px;
  padding: 24px;
  position: sticky;
  top: 22px;
}

.summary-row,
.summary-total {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding-top: 14px;
}

.summary-row.muted {
  color: rgba(21, 32, 24, 0.62);
}

.summary-total {
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
}

.checkout-actions-panel {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 24px;
}

.checkout-actions-panel h2 {
  font-size: 28px;
  margin: 0 0 8px;
}

.checkout-actions-panel p:not(.zh-debug),
.payment-result p:not(.zh-debug) {
  color: rgba(21, 32, 24, 0.7);
  line-height: 1.7;
  margin: 0;
}

.checkout-actions {
  display: grid;
  gap: 10px;
  min-width: 260px;
}

.payment-result {
  display: grid;
  gap: 18px;
  margin: 0 auto;
  max-width: 820px;
  padding: 34px;
}

.payment-result.success {
  border-color: rgba(31, 122, 107, 0.28);
}

.receipt-box {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.locked-report {
  display: grid;
  gap: 14px;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero-content,
  .steps,
  .report,
  .trust,
  .faq,
  .snapshot-grid,
  .upgrade-panel,
  .report-layout,
  .upgrade-hero,
  .upgrade-included,
  .included-grid,
  .upgrade-faq,
  .checkout-hero,
  .checkout-actions-panel {
    grid-template-columns: 1fr;
  }

  .report-sidebar,
  .price-card,
  .checkout-summary {
    position: static;
  }

  .hero-content {
    padding-top: 44px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(251, 250, 246, 0.96) 0%, rgba(251, 250, 246, 0.9) 48%, rgba(251, 250, 246, 0.82) 100%),
      rgba(21, 32, 24, 0.08);
  }

  .field-grid,
  .report-list,
  .chart-row,
  .context-list,
  .prompt-grid {
    grid-template-columns: 1fr;
  }

  .chart-card {
    grid-row: auto;
  }

  .legal-shell {
    padding-top: 48px;
  }

  .checkout-shell {
    padding-top: 48px;
  }

  .checkout-actions {
    min-width: 0;
  }
}

@media (max-width: 520px) {
  .actions,
  .button {
    width: 100%;
  }

  .calculator {
    padding: 20px;
  }
}
