:root {
  color-scheme: light dark;
  --canvas: #f4f4f3;
  --canvas-soft: #e7e8e9;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-solid: #ffffff;
  --text: #1c1d1f;
  --muted: #6d7175;
  --line: rgba(35, 38, 41, 0.13);
  --green: #595e63;
  --green-deep: #2e3134;
  --green-soft: #e3e5e7;
  --brown: #777d82;
  --on-accent: #ffffff;
  --danger: #d0372f;
  --shadow: 0 12px 42px rgba(26, 48, 33, 0.08), 0 1px 2px rgba(26, 48, 33, 0.08);
  --radius-card: 24px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC", "Helvetica Neue", sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }

html { min-height: 100%; background: var(--canvas); }

body {
  min-width: 320px;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 2%, color-mix(in srgb, var(--green) 11%, transparent), transparent 28rem),
    radial-gradient(circle at 96% 82%, rgba(110, 113, 117, 0.07), transparent 26rem),
    var(--canvas);
  -webkit-font-smoothing: antialiased;
}

button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }

.app-shell {
  width: min(100%, 1080px);
  margin: 0 auto;
  padding: calc(18px + env(safe-area-inset-top)) max(18px, env(safe-area-inset-right)) calc(34px + env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left));
}

.app-header {
  min-height: 52px;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: linear-gradient(145deg, color-mix(in srgb, var(--green) 84%, white), color-mix(in srgb, var(--green) 82%, black));
  box-shadow: inset 0 1px rgba(255,255,255,.25), 0 6px 18px color-mix(in srgb, var(--green) 24%, transparent);
}

.brand-mark img {
  width: 40px;
  height: 40px;
  display: block;
  filter: drop-shadow(0 1px 1px rgba(7, 36, 18, .26));
}

.title-stack h1 { margin: 0; font-size: clamp(21px, 4vw, 27px); line-height: 1.12; letter-spacing: -.035em; }

.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 2px; }

.plain-button {
  min-height: 44px;
  padding: 0 8px;
  border: 0;
  background: transparent;
  color: var(--green);
  font-weight: 650;
  cursor: pointer;
}

.segmented-control {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: rgba(105, 119, 108, 0.13);
}

.segmented-control button {
  min-height: 44px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}

.segmented-control button[aria-pressed="true"] {
  color: var(--green-deep);
  background: var(--surface-solid);
  box-shadow: 0 1px 5px rgba(26, 48, 33, .13);
}

.content-grid, .primary-column, .secondary-column { display: grid; gap: 16px; }

.card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.66);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.price-card { padding: 20px 16px 17px; }
.parameter-card { padding: 18px 16px 16px; }
h2 { margin: 0; font-size: 17px; letter-spacing: -.015em; }

.section-heading { display: flex; justify-content: space-between; align-items: start; margin-bottom: 17px; }
.section-heading p { margin: 4px 0 0; color: var(--muted); font-size: 12px; }

.fiber-mark { display: flex; gap: 3px; height: 27px; align-items: end; opacity: .7; }
.fiber-mark i { display: block; width: 4px; border-radius: 99px; background: var(--green); transform: rotate(13deg); }
.fiber-mark i:nth-child(1) { height: 15px; }
.fiber-mark i:nth-child(2) { height: 24px; }
.fiber-mark i:nth-child(3) { height: 19px; }

.price-bridge { display: grid; grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr); align-items: center; }
.price-field { min-width: 0; display: grid; align-self: stretch; align-content: start; gap: 7px; }

.basis-pill {
  justify-self: start;
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--on-accent);
  background: var(--green);
  font-size: 10px;
  font-weight: 700;
}
.basis-pill.lint { background: var(--brown); }
.basis-pill.is-passive { color: var(--muted); background: var(--canvas-soft); }

.input-shell {
  min-width: 0;
  display: block;
  padding: 9px 10px 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.38);
  transition: border-color .18s, box-shadow .18s;
}
.price-field:focus-within .input-shell { border-color: var(--green); box-shadow: 0 0 0 3px color-mix(in srgb, var(--green) 22%, transparent); }
.price-field.has-error .input-shell, .compact-field.has-error .compact-input { border-color: var(--danger); }
.field-label { display: block; margin-bottom: 3px; color: var(--muted); font-size: 11px; }
.value-row { display: flex; align-items: baseline; gap: 4px; }

input {
  min-width: 0;
  width: 100%;
  height: 31px;
  padding: 0;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: clamp(16px, 4.6vw, 20px);
  font-weight: 700;
  letter-spacing: -.04em;
}
.unit { flex: 0 0 auto; color: var(--muted); font-size: 9px; white-space: nowrap; }
.bridge-symbol { display: grid; place-items: center; color: var(--green); }
.bridge-symbol span { font-size: 25px; font-weight: 700; line-height: 1; }
.bridge-symbol small { margin-top: 2px; color: var(--muted); font-size: 9px; }
.field-error { min-height: 0; color: var(--danger); font-size: 10px; line-height: 1.3; }
.field-error:empty { display: none; }
.card-error { min-height: 0; margin: 10px 0 0; color: var(--danger); font-size: 12px; }
.card-error:empty { display: none; }

.parameter-card h2 { margin-bottom: 14px; }
.parameter-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 10px; }
.compact-field { min-width: 0; display: grid; gap: 6px; color: var(--muted); font-size: 12px; }
.compact-input {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255,255,255,.3);
}
.compact-field:focus-within .compact-input { border-color: var(--green); box-shadow: 0 0 0 3px color-mix(in srgb, var(--green) 20%, transparent); }
.compact-input input { font-size: 16px; font-weight: 600; letter-spacing: -.02em; }
.compact-input b { flex: 0 0 auto; color: var(--muted); font-size: 9px; font-weight: 500; white-space: nowrap; }

.detail-card { overflow: hidden; border: 1px solid color-mix(in srgb, var(--green) 15%, transparent); border-radius: 22px; color: var(--text); background: linear-gradient(145deg, var(--green-soft), color-mix(in srgb, var(--green-soft) 72%, var(--surface-solid))); }
.detail-toggle { width: 100%; min-height: 76px; display: flex; align-items: center; justify-content: space-between; padding: 15px 17px; border: 0; background: transparent; text-align: left; cursor: pointer; }
.detail-toggle span { display: grid; gap: 4px; }
.detail-toggle strong { font-size: 17px; }
.detail-toggle small { color: var(--muted); font-size: 12px; }
.detail-toggle > b { font-size: 13px; }
.detail-body { padding: 0 17px 16px; }
.detail-body dl { margin: 0; padding-top: 11px; border-top: 1px solid color-mix(in srgb, var(--green) 22%, transparent); }
.detail-body dl > div { display: flex; align-items: baseline; gap: 14px; padding: 6px 0; }
.detail-body dt { flex: 1; font-size: 13px; }
.detail-body dd { margin: 0; font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace; font-size: 12px; font-weight: 650; text-align: right; }
.detail-body .total { margin-top: 6px; padding-top: 13px; border-top: 1px solid color-mix(in srgb, var(--green) 22%, transparent); }
.detail-body .total dt { font-size: 15px; font-weight: 700; }
.detail-body .total dd { color: var(--green-deep); font-size: 15px; font-weight: 800; }

.lead-card {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.lead-eyebrow { color: var(--green-deep); font-size: 11px; font-weight: 750; letter-spacing: .08em; }
.lead-card h2 { margin-top: 5px; }
.lead-card > p { margin: 8px 0 14px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.lead-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.lead-actions button,
.lead-actions a {
  min-height: 46px;
  display: grid;
  place-items: center;
  padding: 0 10px;
  border: 0;
  border-radius: 13px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
.lead-actions button { color: var(--on-accent); background: var(--green); }
.lead-actions a { color: var(--green-deep); background: var(--green-soft); }
#copy-status { min-height: 16px; display: block; margin-top: 8px; color: var(--muted); font-size: 11px; text-align: center; }

.reset-button {
  min-height: 46px;
  justify-self: end;
  padding: 0 15px;
  border: 1px solid rgba(208, 55, 47, .28);
  border-radius: 13px;
  color: var(--danger);
  background: transparent;
  font-weight: 600;
  cursor: pointer;
}
.sheet-dialog {
  width: min(calc(100% - 32px), 390px);
  padding: 0;
  border: 0;
  border-radius: 22px;
  color: var(--text);
  background: rgba(250, 251, 249, .96);
  box-shadow: 0 28px 90px rgba(0,0,0,.25);
  backdrop-filter: blur(24px);
}
.sheet-dialog::backdrop { background: rgba(8, 13, 9, .34); backdrop-filter: blur(3px); }
.sheet-dialog form { padding: 22px 20px 16px; }
.sheet-dialog form > p { margin: 10px 0 20px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.dialog-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.dialog-button { min-height: 46px; border: 0; border-radius: 13px; color: var(--green); background: var(--canvas-soft); font-weight: 650; cursor: pointer; }
.dialog-button.destructive { color: white; background: var(--danger); }

.guide-dialog { width: min(calc(100% - 24px), 720px); max-height: min(92dvh, 900px); }
.guide-content, .theme-content { padding: 20px; overflow: auto; }
.guide-intro { margin: 8px 0 18px; color: var(--muted); font-size: 14px; }
.guide-steps { display: grid; gap: 18px; margin: 0; padding: 0; list-style: none; counter-reset: guide-step; }
.guide-steps > li { counter-increment: guide-step; display: grid; grid-template-columns: minmax(150px, .72fr) minmax(0, 1.28fr); gap: 15px; align-items: center; padding-top: 18px; border-top: 1px solid var(--line); }
.guide-copy b { display: block; font-size: 15px; }
.guide-copy b::before { content: counter(guide-step) ". "; color: var(--green-deep); }
.guide-copy p { margin: 7px 0 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.annotated-shot { position: relative; overflow: hidden; margin: 0; border: 1px solid color-mix(in srgb, var(--green) 22%, var(--line)); border-radius: 14px; background: var(--canvas); box-shadow: 0 7px 22px rgba(0,0,0,.09); }
.annotated-shot img { width: 100%; height: auto; display: block; }
.shot-outline { position: absolute; border: 3px solid #ffb000; border-radius: 10px; box-shadow: 0 0 0 2px rgba(20,20,20,.5); pointer-events: none; }
.shot-note { position: absolute; z-index: 2; padding: 5px 8px; border-radius: 8px; color: #17130a; background: #ffc247; box-shadow: 0 2px 8px rgba(0,0,0,.28); font-size: clamp(9px, 2.3vw, 12px); font-weight: 800; line-height: 1.25; pointer-events: none; }
.shot-note::after { content: ""; position: absolute; width: 0; height: 0; border: 7px solid transparent; }
.shot-preset .shot-outline { left: 3%; right: 3%; top: 64%; bottom: 2%; }
.shot-preset .shot-note { right: 7%; top: 10%; }
.shot-preset .shot-note::after { right: 16px; top: 100%; border-top-color: #ffc247; transform: rotate(18deg); }
.shot-price .shot-outline.left { left: 3%; width: 43%; top: 35%; bottom: 7%; }
.shot-price .shot-outline.right { right: 3%; width: 43%; top: 35%; bottom: 7%; }
.shot-price .shot-note.left { left: 5%; top: 4%; }
.shot-price .shot-note.right { right: 5%; top: 4%; text-align: right; }
.shot-price .shot-note.left::after { left: 12px; top: 100%; border-top-color: #ffc247; transform: rotate(-20deg); }
.shot-price .shot-note.right::after { right: 12px; top: 100%; border-top-color: #ffc247; transform: rotate(20deg); }
.shot-detail .shot-outline { left: 3%; right: 3%; top: 18%; height: 27%; }
.shot-detail .shot-note { right: 5%; top: 5%; }
.shot-detail .shot-note::after { right: 18px; top: 100%; border-top-color: #ffc247; transform: rotate(16deg); }
.shot-inquiry .shot-outline { left: 3%; right: 3%; bottom: 7%; height: 34%; }
.shot-inquiry .shot-note { left: 5%; top: 6%; }
.shot-inquiry .shot-note::after { left: 18px; top: 100%; border-top-color: #ffc247; transform: rotate(-15deg); }

.theme-dialog { width: min(calc(100% - 28px), 470px); }
.palette-grid { display: grid; gap: 9px; margin-top: 18px; }
.palette-grid > button { min-height: 64px; display: grid; grid-template-columns: 78px 1fr; align-items: center; gap: 12px; padding: 9px 12px; border: 1px solid var(--line); border-radius: 15px; color: var(--text); background: var(--surface-solid); text-align: left; cursor: pointer; }
.palette-grid > button[aria-pressed="true"] { border-color: var(--green); box-shadow: 0 0 0 3px color-mix(in srgb, var(--green) 20%, transparent); }
.palette-grid b, .palette-grid small { display: block; }
.palette-grid small { margin-top: 3px; color: var(--muted); }
.palette-swatches { display: flex; align-items: center; }
.palette-swatches i { width: 29px; height: 29px; display: block; margin-right: -7px; border: 2px solid var(--surface-solid); border-radius: 50%; box-shadow: 0 1px 3px rgba(0,0,0,.15); }
.palette-swatches.silver i:nth-child(1) { background: #171819; }
.palette-swatches.silver i:nth-child(2) { background: #f7f7f5; }
.palette-swatches.silver i:nth-child(3) { background: #92979c; }
.palette-swatches.gold i:nth-child(1) { background: #18150f; }
.palette-swatches.gold i:nth-child(2) { background: #fffaf0; }
.palette-swatches.gold i:nth-child(3) { background: #c89a3a; }
.palette-swatches.custom i:nth-child(1) { background: #6f63b6; }
.palette-swatches.custom i:nth-child(2) { background: #d76a93; }
.palette-swatches.custom i:nth-child(3) { background: #4b9e98; }
.color-picker { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 12px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 15px; background: var(--canvas-soft); }
.color-picker span, .color-picker b, .color-picker small { display: block; }
.color-picker small { margin-top: 3px; color: var(--muted); font-size: 11px; }
.color-picker input { width: 48px; height: 44px; flex: 0 0 auto; padding: 3px; border: 1px solid var(--line); border-radius: 11px; background: var(--surface-solid); cursor: pointer; }
.theme-footnote { margin: 13px 2px 0; color: var(--muted); font-size: 12px; line-height: 1.55; }

.contact-dialog { width: min(calc(100% - 28px), 430px); max-height: min(90dvh, 690px); }
.contact-content { padding: 20px; overflow: auto; }
.dialog-title-row { display: flex; align-items: start; justify-content: space-between; gap: 15px; }
.dialog-title-row small { color: var(--green); font-size: 11px; font-weight: 700; }
.dialog-title-row h2 { margin-top: 4px; font-size: 20px; }
.close-button { width: 44px; height: 44px; margin: -8px -8px 0 0; border: 0; border-radius: 50%; color: var(--muted); background: var(--canvas-soft); font-size: 26px; line-height: 1; cursor: pointer; }
.contact-links { display: grid; gap: 8px; margin: 18px 0; }
.contact-links a { min-height: 56px; display: grid; grid-template-columns: 42px 1fr 15px; align-items: center; gap: 7px; padding: 8px 13px; border-radius: 14px; color: var(--green-deep); background: var(--green-soft); text-decoration: none; }
.contact-links small { color: var(--muted); }
.contact-links strong { overflow-wrap: anywhere; font-size: 15px; }
.contact-links span { font-size: 24px; }
.qr-section { padding-top: 16px; border-top: 1px solid var(--line); }
.qr-section h3 { margin: 0 0 10px; font-size: 15px; }
.qr-section img { display: block; width: 100%; height: auto; max-height: 390px; object-fit: contain; border-radius: 16px; background: white; }
.qr-section p { margin: 9px 0 0; color: var(--muted); font-size: 12px; text-align: center; }

:focus-visible { outline: 3px solid color-mix(in srgb, var(--green) 38%, transparent); outline-offset: 2px; }

@media (min-width: 780px) {
  .app-shell { padding-top: calc(30px + env(safe-area-inset-top)); }
  .app-header { margin-bottom: 22px; }
  .segmented-control { width: 360px; margin-bottom: 20px; }
  .content-grid { grid-template-columns: minmax(0, 1.55fr) minmax(290px, .85fr); align-items: start; gap: 20px; }
  .secondary-column { position: sticky; top: calc(22px + env(safe-area-inset-top)); }
  .price-card { padding: 24px 21px 20px; }
  .parameter-card { padding: 21px; }
}

@media (max-width: 640px) {
  .app-header { grid-template-columns: 44px 1fr; }
  .header-actions { grid-column: 1 / -1; width: 100%; margin-top: -4px; }
  .header-actions .plain-button { padding-inline: 7px; font-size: 13px; }
  .guide-steps > li { grid-template-columns: 1fr; }
}

@media (max-width: 375px) {
  .app-shell { padding-left: max(12px, env(safe-area-inset-left)); padding-right: max(12px, env(safe-area-inset-right)); }
  .app-header { grid-template-columns: 44px 1fr; gap: 9px; }
  .title-stack h1 { font-size: 20px; }
  .price-card { padding-inline: 12px; }
  .bridge-symbol { width: 34px; }
  .price-bridge { grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr); }
  .input-shell { padding-inline: 8px; }
}

@media (max-width: 350px) {
  .lead-actions { grid-template-columns: 1fr; }
}

@media (prefers-color-scheme: dark) {
  :root {
    --canvas: #0e0f10;
    --canvas-soft: #242629;
    --surface: rgba(29, 31, 33, .9);
    --surface-solid: #2b2d30;
    --text: #f5f5f3;
    --muted: #a4a7aa;
    --line: rgba(235, 238, 240, .14);
    --green: #c4c8cc;
    --green-deep: #f0f2f3;
    --green-soft: #2b2e31;
    --brown: #8e9398;
    --on-accent: #171819;
    --danger: #ff6b63;
    --shadow: 0 18px 50px rgba(0,0,0,.24), 0 1px rgba(255,255,255,.03);
  }
  .card { border-color: rgba(255,255,255,.05); }
  .input-shell, .compact-input { background: rgba(255,255,255,.025); }
  .sheet-dialog { background: rgba(31, 33, 35, .97); }
  :root[data-palette="gold"] {
    --green: #d6b25f;
    --green-deep: #f3d990;
    --green-soft: #342c1e;
    --brown: #b58b42;
    --on-accent: #211708;
  }
}

/* Query-only preview hook used for deterministic visual QA; normal visits follow the system. */
:root[data-theme="dark"] {
  --canvas: #0e0f10;
  --canvas-soft: #242629;
  --surface: rgba(29, 31, 33, .9);
  --surface-solid: #2b2d30;
  --text: #f5f5f3;
  --muted: #a4a7aa;
  --line: rgba(235, 238, 240, .14);
  --green: #c4c8cc;
  --green-deep: #f0f2f3;
  --green-soft: #2b2e31;
  --brown: #8e9398;
  --on-accent: #171819;
  --danger: #ff6b63;
  --shadow: 0 18px 50px rgba(0,0,0,.24), 0 1px rgba(255,255,255,.03);
  color-scheme: dark;
}
:root[data-theme="dark"] .card { border-color: rgba(255,255,255,.05); }
:root[data-theme="dark"] .input-shell,
:root[data-theme="dark"] .compact-input { background: rgba(255,255,255,.025); }
:root[data-theme="dark"] .sheet-dialog { background: rgba(31, 33, 35, .97); }

:root[data-theme="light"] {
  --canvas: #f4f4f3;
  --canvas-soft: #e7e8e9;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-solid: #ffffff;
  --text: #1c1d1f;
  --muted: #6d7175;
  --line: rgba(35, 38, 41, 0.13);
  --green: #595e63;
  --green-deep: #2e3134;
  --green-soft: #e3e5e7;
  --brown: #777d82;
  --on-accent: #ffffff;
  --danger: #d0372f;
  --shadow: 0 12px 42px rgba(26, 48, 33, 0.08), 0 1px 2px rgba(26, 48, 33, 0.08);
  color-scheme: light;
}
:root[data-theme="light"] .card { border-color: rgba(255,255,255,.66); }
:root[data-theme="light"] .input-shell,
:root[data-theme="light"] .compact-input { background: rgba(255,255,255,.3); }
:root[data-theme="light"] .sheet-dialog { background: rgba(250, 251, 249, .96); }

:root[data-palette="gold"] {
  --green: #9a701c;
  --green-deep: #6b4b0b;
  --green-soft: #f1e6ca;
  --brown: #785b26;
  --on-accent: #ffffff;
}

:root[data-theme="dark"][data-palette="gold"] {
  --green: #d6b25f;
  --green-deep: #f3d990;
  --green-soft: #342c1e;
  --brown: #b58b42;
  --on-accent: #211708;
}

:root[data-theme="light"][data-palette="gold"] {
  --green: #9a701c;
  --green-deep: #6b4b0b;
  --green-soft: #f1e6ca;
  --brown: #785b26;
  --on-accent: #ffffff;
}

:root[data-palette="custom"] {
  --green-deep: color-mix(in srgb, var(--green) 60%, var(--text));
  --green-soft: color-mix(in srgb, var(--green) 18%, var(--surface-solid));
  --brown: color-mix(in srgb, var(--green) 62%, #7b5d39);
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 8px 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 12px;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover { color: var(--text); }

.filing-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.mps-filing {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.mps-filing img { display: block; }

@media (max-width: 720px) {
  .site-footer,
  .filing-links {
    align-items: flex-start;
    flex-direction: column;
  }
}

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