:root {
  color-scheme: light;
  --navy: #17324d;
  --navy-dark: #10263a;
  --orange: #f47a22;
  --canvas: #f7f5ef;
  --surface: #ffffff;
  --text: #182433;
  --muted: #637080;
  --border: #cbd3db;
  --success: #2e8b57;
}

* { box-sizing: border-box; }
html { background: var(--canvas); }
body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 90% 5%, rgba(244, 122, 34, .14), transparent 28rem),
    linear-gradient(180deg, #fff 0, var(--canvas) 72%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; }
.shell { width: min(1080px, calc(100% - 36px)); margin: 0 auto; }
.site-header { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; }
.wordmark { display: block; width: min(230px, 58vw); height: auto; }
.header-note { color: var(--muted); font-size: 13px; font-weight: 700; }
.hero { display: grid; grid-template-columns: 1.2fr .8fr; gap: 54px; align-items: center; padding: 78px 0 86px; }
.eyebrow { color: #9a4e00; font-size: 12px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
h1 { max-width: 760px; margin: 12px 0 20px; color: var(--navy); font-size: clamp(42px, 7vw, 76px); line-height: .98; letter-spacing: -.045em; }
.lead { max-width: 680px; margin: 0; color: var(--muted); font-size: clamp(18px, 2vw, 22px); line-height: 1.55; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 0 20px; border: 2px solid var(--orange); border-radius: 13px; background: var(--orange); color: var(--navy-dark); font-weight: 900; text-decoration: none; }
.button.secondary { border-color: var(--navy); background: var(--surface); color: var(--navy); }
.preview { padding: 26px; border: 1px solid rgba(23, 50, 77, .08); border-radius: 24px; background: rgba(255,255,255,.88); box-shadow: 0 22px 70px rgba(16,38,58,.13); }
.preview-label { color: var(--muted); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.preview-total { margin: 12px 0 22px; color: var(--navy); font-size: 44px; font-weight: 900; }
.preview-row { display: flex; justify-content: space-between; gap: 18px; padding: 13px 0; border-top: 1px solid var(--border); color: var(--muted); }
.preview-row strong { color: var(--text); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding-bottom: 82px; }
.feature { padding: 22px; border-radius: 18px; background: var(--surface); box-shadow: 0 8px 26px rgba(16,38,58,.06); }
.feature h2 { margin: 0 0 8px; color: var(--navy); font-size: 18px; }
.feature p { margin: 0; color: var(--muted); line-height: 1.55; }
.site-footer { display: flex; justify-content: space-between; gap: 20px; padding: 26px 0 34px; border-top: 1px solid var(--border); color: var(--muted); font-size: 12px; }

.return-layout { display: grid; min-height: 100vh; place-items: center; padding: 28px; }
.return-card { width: min(510px, 100%); padding: 34px; border: 1px solid rgba(23,50,77,.08); border-radius: 24px; background: var(--surface); box-shadow: 0 20px 70px rgba(16,38,58,.14); text-align: center; }
.return-card .wordmark { width: 215px; margin: 0 auto 30px; }
.status-icon { display: grid; width: 58px; height: 58px; margin: 0 auto 18px; place-items: center; border-radius: 50%; background: #e4f2ea; color: var(--success); font-size: 28px; font-weight: 900; }
.status-icon.attention { background: #fff1d6; color: #9a4e00; }
.return-card h1 { margin: 0 0 12px; font-size: clamp(30px, 7vw, 42px); line-height: 1.08; letter-spacing: -.03em; }
.return-card p { margin: 0 auto; color: var(--muted); font-size: 17px; line-height: 1.55; }
.return-card .actions { justify-content: center; }
.fine-print { margin-top: 24px !important; font-size: 12px !important; }

@media (max-width: 760px) {
  .hero { grid-template-columns: 1fr; padding: 54px 0 64px; }
  .preview { max-width: 520px; }
  .feature-grid { grid-template-columns: 1fr; }
  .header-note { display: none; }
  .site-footer { flex-direction: column; }
}
