:root {
  color-scheme: light;
  --ink: #1f2933;
  --muted: #607083;
  --line: #d7dee8;
  --surface: #ffffff;
  --canvas: #f7f3ea;
  --surface-soft: #f3f6fa;
  --brand: #152743;
  --brand-strong: #0d1a2d;
  --accent: #d97732;
  --gold: #c9933a;
  --blue: #3366a8;
  --blue-soft: #edf4fc;
  --green: #18865c;
  --green-soft: #e4f4ec;
  --amber: #946116;
  --amber-soft: #fff2d5;
  --red: #a33535;
  --red-soft: #fdeaea;
  --focus: #2f7dd1;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --shadow: 0 5px 18px rgba(30, 41, 59, 0.07);
  --shadow-raised: 0 12px 30px rgba(30, 41, 59, 0.11);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { min-width: 320px; background: var(--canvas); }
body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(217, 119, 50, 0.055), transparent 30rem),
    linear-gradient(180deg, #faf8f2 0%, var(--canvas) 42%, #f5f1e8 100%);
}
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3, strong { color: var(--brand-strong); }
h1 { margin-bottom: .5rem; font-size: clamp(1.7rem, 3.5vw, 2.35rem); line-height: 1.08; letter-spacing: -.035em; }
h2 { margin-bottom: 0; font-size: clamp(1.25rem, 2vw, 1.6rem); letter-spacing: -.02em; }
h3 { margin-bottom: 0; font-size: 1.02rem; line-height: 1.35; }
.shell { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.panel { border: 1px solid #d9e0e9; border-radius: var(--radius-md); background: rgba(255,255,255,.96); box-shadow: var(--shadow); }
.eyebrow { margin-bottom: .4rem; color: var(--blue); font-size: .72rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.button, .icon-button { border: 0; cursor: pointer; }
.button {
  display: inline-flex; min-height: 42px; align-items: center; justify-content: center; gap: .4rem;
  padding: .65rem .9rem; border-radius: var(--radius-sm); font-weight: 800; line-height: 1.05; text-decoration: none;
  transition: transform 120ms ease, box-shadow 120ms ease, opacity 120ms ease;
}
.button:hover:not(:disabled) { transform: translateY(-1px); }
.button:focus-visible, .icon-button:focus-visible, input:focus-visible, select:focus-visible, .warehouse-card:focus-visible, .module-navigation a:focus-visible, .language-switch button:focus-visible { outline: 3px solid #1d5fa8; outline-offset: 2px; }
.button:disabled { cursor: not-allowed; opacity: .58; }
.button-primary { color: #fff; background: var(--brand); box-shadow: 0 7px 16px rgba(21,39,67,.16); }
.button-secondary { border: 1px solid var(--line); color: var(--brand); background: var(--surface); }
.icon-button { display: grid; width: 42px; height: 42px; place-items: center; border-radius: var(--radius-sm); color: var(--brand); background: var(--surface-soft); font-size: 1.35rem; text-decoration: none; }
.notice { padding: .85rem 1rem; border: 1px solid transparent; border-radius: 10px; line-height: 1.45; }
.notice-info { border-color: #c9dff2; color: #244e75; background: var(--blue-soft); }
.notice-success { border-color: #b9dfce; color: var(--green); background: var(--green-soft); }
.notice-error { border-color: #efcaca; color: var(--red); background: var(--red-soft); }
.notice-warning { border-color: #efdcae; color: var(--amber); background: var(--amber-soft); }
[hidden] { display: none !important; }
.noscript { position: fixed; inset: auto 1rem 1rem; z-index: 20; padding: 1rem; border-radius: 10px; color: #fff; background: var(--red); text-align: center; }

@media (max-width: 720px) { .shell { width: min(100% - 20px, 1120px); } }
