:root {
  color-scheme: light;
  --lihua-green: #008c69;
  --lihua-green-dark: #075342;
  --lihua-green-soft: #e8f5ef;
  --lihua-gold: #c79a25;
  --lihua-gold-soft: #fff7df;
  --lihua-red: #d94646;
  --lihua-red-soft: #fff0ee;
  --canvas: #f3f7f3;
  --surface: #ffffff;
  --surface-soft: #f7faf8;
  --ink: #183d33;
  --muted: #5d7068;
  --muted-strong: #456257;
  --brand: var(--lihua-green);
  --brand-deep: var(--lihua-green-dark);
  --brand-soft: var(--lihua-green-soft);
  --gold-soft: var(--lihua-gold-soft);
  --warning-soft: var(--lihua-red-soft);
  --line: #d6e2db;
  --line-strong: #b8cfc5;
  --shadow-sm: 0 1px 2px rgba(12, 42, 31, .04), 0 4px 10px rgba(12, 42, 31, .035);
  --shadow-lg: 0 18px 42px rgba(12, 42, 31, .08), 0 3px 12px rgba(12, 42, 31, .035);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --type-xs: .75rem;
  --type-sm: .875rem;
  --type-base: 1rem;
  --type-lg: 1.125rem;
  --type-xl: 1.25rem;
  --type-2xl: 1.5rem;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
.file-launch { width: min(620px, calc(100% - 32px)); margin: 8vh auto; padding: 32px; }
.file-launch .brand-logo { width: 210px; margin-bottom: 24px; }
.launch-link { display: inline-block; padding: 12px 18px; border-radius: var(--radius-sm); color: white; background: var(--brand-deep); text-decoration: none; font-weight: 700; }
html { scroll-behavior: smooth; scroll-padding-top: 1.5rem; }
body { margin: 0; min-width: 320px; background: var(--canvas); color: var(--ink); font-family: Inter, "Noto Sans SC", "PingFang SC", Arial, sans-serif; font-size: var(--type-base); line-height: 1.5; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: 100%; font-optical-sizing: auto; }
button, input, select, textarea { font: inherit; }
button, a, input, select, textarea { -webkit-tap-highlight-color: transparent; }
button { touch-action: manipulation; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 60; padding: 10px 13px; border-radius: var(--radius-sm); color: #fff; background: var(--brand-deep); box-shadow: var(--shadow-lg); font-size: var(--type-sm); font-weight: 800; text-decoration: none; transform: translateY(-140%); transition: transform .16s ease; }
.skip-link:focus { transform: translateY(0); }
.requires-auth #app-shell { visibility: hidden; }
.locale-switcher { display:flex; align-self:flex-start; overflow:hidden; border:1px solid var(--line); border-radius:9px; background:var(--surface-soft); }
.locale-switcher button { min-height:32px; min-width:42px; padding:4px 8px; border:0; border-radius:0; color:var(--muted); background:transparent; box-shadow:none; font-size:12px; font-weight:800; }
.locale-switcher button[aria-pressed="true"] { color:#fff; background:var(--brand-deep); }
.locale-switcher button:hover:not(:disabled) { color:#fff; background:var(--brand); }

.app-shell { min-height: 100vh; display: grid; grid-template-columns: 260px minmax(0, 1fr); }
.sidebar { position: sticky; top: 0; display: flex; flex-direction: column; gap: 1.6rem; height: 100vh; padding: 22px 16px 20px; overflow-y: auto; color: #f7fffb; background: linear-gradient(180deg, #063e32 0%, #075443 55%, #063d31 100%); border-right: 1px solid rgba(255, 255, 255, .1); }
.brand { display: grid; gap: 10px; margin: 0 8px; padding: 0; color: inherit; text-decoration: none; }
.brand-logo { display: block; width: 100%; max-height: 84px; object-fit: contain; object-position: left center; }
.brand-caption { color: #d7e9e0; font-size: .67rem; font-weight: 800; letter-spacing: .1em; line-height: 1.35; }
.side-nav { display: grid; gap: 5px; }
.side-nav a { display: flex; align-items: center; gap: 11px; min-height: 44px; padding: 9px 10px; border: 1px solid transparent; border-radius: var(--radius-sm); color: #dbece4; font-size: var(--type-sm); font-weight: 700; text-decoration: none; transition: color .16s ease, background .16s ease, border-color .16s ease, transform .16s ease; }
.side-nav a[hidden], .team-card[hidden] { display: none !important; }
.side-nav .nav-index { width: 24px; color: #b9d4c7; font-size: 10px; font-variant-numeric: tabular-nums; letter-spacing: .06em; }
.side-nav a[aria-current="page"] { border-color: rgba(199, 154, 37, .66); color: #fff; background: rgba(255, 255, 255, .12); box-shadow: none; }
.side-nav a[aria-current="page"] .nav-index { color: #edc444; }
@media (hover: hover) { .side-nav a:hover { color: #fff; background: rgba(255, 255, 255, .08); transform: translateX(2px); } }
.sidebar-status { display: flex; gap: 9px; align-items: center; margin-top: auto; padding: 13px; border: 1px solid rgba(255, 255, 255, .13); border-radius: var(--radius-md); background: rgba(255, 255, 255, .07); }
.sidebar-status b, .sidebar-status small { display: block; }
.sidebar-status b { font-size: 12px; }
.sidebar-status small, .sidebar-note { color: #c0d8cc; font-size: 11px; line-height: 1.45; }
.sidebar-note { margin: -1rem 8px 0; }
.status-dot { width: 8px; height: 8px; border-radius: 99px; background: var(--lihua-gold); box-shadow: 0 0 0 4px rgba(199, 154, 37, .13); }

.app-content { min-width: 0; }
.topbar { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 116px; padding: 24px clamp(24px, 4vw, 56px); border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, .78); }
.page-title > p:last-child { margin: 4px 0 0; color: var(--muted); font-size: var(--type-sm); }
.eyebrow { margin: 0 0 5px; color: var(--brand); font-size: 10px; font-weight: 850; letter-spacing: .12em; line-height: 1.3; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { letter-spacing: -.032em; }
h1 { margin-bottom: 0; font-size: var(--type-2xl); line-height: 1.15; text-wrap: balance; }
h2 { margin-bottom: 0; font-size: var(--type-xl); line-height: 1.22; text-wrap: balance; }
p { text-wrap: pretty; }
.access-panel { display: flex; align-items: end; gap: 1rem; min-width: min(394px, 100%); padding: 11px 12px 11px 15px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); box-shadow: var(--shadow-sm); }
.access-copy { display: grid; gap: 1px; padding-bottom: 4px; white-space: nowrap; }
.access-copy span { color: var(--muted); font-size: 11px; }
.access-copy b { color: var(--brand-deep); font-size: var(--type-sm); }
.access-copy small { color: var(--muted); font-size: 11px; line-height: 1.25; }
.uat-access { flex: 1; min-width: 160px; }
.named-access { display: flex; flex: 0 0 auto; gap: 8px; align-items: center; }
.named-access[hidden], .uat-access[hidden] { display: none !important; }
.role-field { flex: 1; min-width: 160px; }
.compact-button { min-height: 36px; padding: 7px 11px; white-space: nowrap; }

main { width: min(1460px, calc(100% - clamp(32px, 7vw, 112px))); margin: 0 auto; padding: 2rem 0 2.5rem; }
.hero { display: flex; align-items: stretch; justify-content: space-between; gap: 2rem; padding: clamp(24px, 4vw, 42px); overflow: hidden; border-radius: var(--radius-lg); color: #effaf3; background: radial-gradient(circle at 92% 18%, rgba(199, 154, 37, .28), transparent 21%), radial-gradient(circle at 74% 100%, rgba(0, 140, 105, .28), transparent 33%), linear-gradient(126deg, #063e32, var(--lihua-green-dark)); box-shadow: var(--shadow-lg); }
.hero > div:first-child { max-width: 710px; }
.hero .eyebrow { color: #d7efdf; }
.hero h2 { font-size: clamp(1.6rem, 3vw, 2.35rem); line-height: 1.14; }
.hero p:last-child { max-width: 620px; margin: 13px 0 0; color: rgba(239, 250, 243, .77); }
.hero-state { display: grid; align-content: center; min-width: 210px; padding: 18px; border: 1px solid rgba(255, 255, 255, .17); border-radius: 14px; background: rgba(2, 40, 29, .2); backdrop-filter: blur(8px); }
.hero-state span { color: #f0d06e; font-size: 10px; font-weight: 850; letter-spacing: .1em; }
.hero-state b { margin-top: 5px; font-size: var(--type-lg); }
.hero-state small { margin-top: 3px; color: rgba(239, 250, 243, .67); font-size: 11px; }
.notice { display: flex; align-items: center; gap: 10px; margin: 16px 0 0; padding: 12px 15px; border: 1px solid #ead49c; border-radius: var(--radius-md); color: #6d5524; background: var(--gold-soft); font-size: var(--type-sm); }
.notice strong { white-space: nowrap; }

.workflow-steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; margin: 20px 0; padding: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--line); list-style: none; box-shadow: var(--shadow-sm); }
.workflow-steps li { display: flex; gap: 10px; align-items: center; min-height: 70px; padding: 12px 14px; background: var(--surface); }
.workflow-steps li > span { display: grid; flex: 0 0 auto; width: 26px; height: 26px; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--muted); font-size: 11px; font-weight: 800; }
.workflow-steps b, .workflow-steps small { display: block; }
.workflow-steps b { font-size: var(--type-sm); line-height: 1.25; }
.workflow-steps small { margin-top: 2px; color: var(--muted); font-size: 11px; line-height: 1.3; }
.workflow-steps .is-current { background: linear-gradient(130deg, #f4fbf5, #edfaf0); }
.workflow-steps .is-current > span { border-color: var(--brand); color: #fff; background: var(--brand); }
.workflow-steps .is-done > span { border-color: #84ba98; color: #17623d; background: #e3f4e8; }

.metrics { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.metric { position: relative; min-height: 112px; padding: 18px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); box-shadow: var(--shadow-sm); }
.metric::after { position: absolute; right: -12px; bottom: -22px; width: 78px; height: 78px; border-radius: 50%; background: var(--brand-soft); content: ""; opacity: .8; }
.metric:nth-child(2)::after { background: #e9efdc; }
.metric:nth-child(3)::after { background: #e5f3ef; }
.metric:nth-child(4)::after { background: #fbe4d7; }
.metric b, .metric span { position: relative; z-index: 1; display: block; }
.metric b { color: var(--brand-deep); font-size: 1.85rem; line-height: 1; font-variant-numeric: tabular-nums; }
.metric span { max-width: 150px; margin-top: 8px; color: var(--muted-strong); font-size: var(--type-sm); font-weight: 650; line-height: 1.25; }

.workspace-intro { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin: 38px 0 14px; }
.workspace-intro > p { max-width: 440px; margin: 0; color: var(--muted); font-size: var(--type-sm); }
.layout { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; align-items: start; }
.wide-flow { grid-column: 1 / -1; }
.card { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-sm); }
.flow-card { padding: 23px; }
.card-heading { display: flex; gap: 12px; align-items: flex-start; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.card-heading.compact { padding-bottom: 14px; }
.step { display: grid; flex: 0 0 auto; min-width: 34px; height: 26px; place-items: center; margin: 0; border: 1px solid #b9dac7; border-radius: 8px; color: var(--brand); background: #edf8f0; font-size: 10px; font-weight: 850; letter-spacing: .08em; }
.card-heading p { margin: 4px 0 0; color: var(--muted); font-size: var(--type-sm); line-height: 1.42; }
form { display: grid; gap: 12px; margin-top: 17px; }
label { display: grid; gap: 5px; color: var(--muted-strong); font-size: 12px; font-weight: 760; line-height: 1.35; }
input, select, textarea { width: 100%; min-height: 43px; padding: 10px 11px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm); color: var(--ink); background: #fff; font-size: var(--type-base); line-height: 1.35; transition: border-color .16s ease, box-shadow .16s ease, background .16s ease; }
textarea { min-height: 84px; resize: vertical; }
input::placeholder, textarea::placeholder { color: #97a49d; }
input:focus, select:focus, textarea:focus { border-color: var(--brand); background: #fcfffc; box-shadow: 0 0 0 3px rgba(11, 97, 71, .13); outline: none; }
button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 43px; padding: 10px 15px; border: 1px solid transparent; border-radius: var(--radius-sm); color: #fff; background: var(--brand); box-shadow: 0 2px 4px rgba(6, 63, 48, .13); cursor: pointer; font-size: var(--type-sm); font-weight: 800; transition: background .16s ease, box-shadow .16s ease, transform .16s ease; }
@media (hover: hover) { button:hover:not(:disabled) { background: #07513b; box-shadow: 0 5px 12px rgba(6, 63, 48, .18); } }
button:active:not(:disabled) { transform: translateY(1px); }
button.secondary { border-color: #c5dfce; color: var(--brand-deep); background: #eef8f0; box-shadow: none; }
@media (hover: hover) { button.secondary:hover:not(:disabled) { background: #dff1e4; } }
button.mini { min-height: 33px; padding: 6px 10px; font-size: 12px; }
button:disabled { cursor: not-allowed; opacity: .58; }
.field-grid { display: grid; gap: 11px; }
.field-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.field-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.field-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.field-grid.six { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.checkbox { display: flex; align-items: center; gap: 9px; min-height: 24px; font-size: var(--type-sm); }
.checkbox input { width: 18px; min-height: 18px; margin: 0; accent-color: var(--brand); }
.subform { margin-top: 20px; padding-top: 18px; border-top: 1px dashed var(--line-strong); }
.subform-title { margin: 0; color: var(--brand-deep); font-size: var(--type-sm); font-weight: 800; }
.helper-text { margin: 5px 0 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
.incoming-review { background: linear-gradient(135deg, rgba(223, 241, 229, .56), rgba(255, 255, 255, 0)); }
.form-feedback { min-height: 0; margin: 0; padding: 0; color: var(--muted); font-size: 12px; }
.form-feedback:not(:empty) { min-height: 38px; padding: 9px 10px; border-radius: var(--radius-sm); color: #216142; background: #eaf7ee; }
.form-feedback.is-error:not(:empty) { color: #8d3d22; background: var(--warning-soft); }

.wide { margin-top: 16px; padding: 23px; }
.price-board { scroll-margin-top: 20px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 1.5rem; }
.section-heading p:not(.eyebrow) { margin: 5px 0 0; color: var(--muted); font-size: var(--type-sm); }
.filters { display: grid; grid-template-columns: 1.15fr 1fr .9fr; gap: 8px; width: min(100%, 610px); }
.filters input, .filters select { min-height: 40px; font-size: var(--type-sm); }
.table-wrap { overflow-x: auto; margin: 18px -2px -2px; border: 1px solid var(--line); border-radius: var(--radius-md); }
table { width: 100%; min-width: 880px; border-collapse: collapse; background: #fff; font-size: var(--type-sm); }
th, td { padding: 12px 13px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: middle; }
th { color: var(--muted); background: #f7faf7; font-size: 10px; font-weight: 850; letter-spacing: .07em; line-height: 1.3; text-transform: uppercase; }
td { color: var(--muted-strong); }
td b { color: var(--ink); }
td:nth-child(3), td:nth-child(4) { font-variant-numeric: tabular-nums; }
tbody tr:last-child td { border-bottom: 0; }
@media (hover: hover) { tbody tr:hover td { background: #f7fbf8; } }
.badge { display: inline-flex; align-items: center; min-height: 24px; padding: 3px 8px; border-radius: 99px; color: #52645b; background: #edf1ee; font-size: 10px; font-weight: 850; letter-spacing: .015em; line-height: 1.15; }
.badge.confirmed { color: #17623d; background: #dff2e5; }.badge.blocked { color: #94482b; background: #ffe7dd; }.badge.draft { color: #7c6213; background: #fff1ce; }
.two-column { display: grid; grid-template-columns: 1.15fr .85fr; gap: 16px; margin-top: 16px; }
.two-column > .card { padding: 21px; }
.queue { display: grid; gap: 9px; margin-top: 15px; }
.queue-item, .audit-item, .empty { border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface-soft); }
.queue-item, .audit-item { padding: 12px; }
.queue-item > b, .audit-item > b { color: var(--ink); font-size: var(--type-sm); }
.queue-item p, .audit-item p { margin: 4px 0; color: var(--muted-strong); font-size: 12px; }
.queue-item small, .audit-item small { color: var(--muted); font-size: 11px; }
.queue-item .mini { margin-top: 7px; }
.empty { margin-top: 15px; padding: 16px; color: var(--muted); font-size: var(--type-sm); }
.team-card { margin-top: 16px; padding: 21px; }
.team-card > .helper-text { max-width: 760px; margin: 14px 0 0; }
.user-list { display: grid; gap: 9px; margin-top: 14px; }
.access-user { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 12px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface-soft); }
.access-user > div { min-width: 0; }
.access-user b { color: var(--ink); font-size: var(--type-sm); }
.access-user p { margin: 3px 0; color: var(--muted-strong); font-size: 12px; }
.access-user small { display: block; color: var(--muted); font-size: 11px; line-height: 1.4; overflow-wrap: anywhere; }
.user-status { font-weight: 800; }
.user-status.is-enabled { color: #17623d; }
.user-status.is-disabled { color: #94482b; }
.app-footer { display: flex; justify-content: space-between; gap: 1rem; padding: 0 clamp(24px, 4vw, 56px) 28px; color: var(--muted); font-size: 11px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.access-dialog { width: min(100% - 32px, 460px); margin: auto; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); color: var(--ink); background: var(--surface); box-shadow: 0 28px 72px rgba(6, 63, 48, .28); }
.access-dialog::backdrop { background: rgba(5, 47, 37, .72); backdrop-filter: blur(3px); }
.access-dialog h2 { margin-bottom: 8px; font-size: 1.55rem; }
.access-dialog .eyebrow { margin-top: 18px; }
.dialog-brand { display: flex; align-items: center; min-height: 62px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.dialog-brand img { display: block; width: min(210px, 100%); max-height: 58px; object-fit: contain; object-position: left center; outline: 1px solid rgba(7, 83, 66, .08); outline-offset: -1px; }
.dialog-copy { margin: 0; color: var(--muted); font-size: var(--type-sm); line-height: 1.5; }
.dialog-note { margin: 16px 0 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
.access-form { gap: 13px; }
.access-form button { margin-top: 2px; }
.dialog-close { float: right; width: 36px; min-height: 36px; padding: 0; border-color: var(--line); border-radius: 50%; color: var(--brand-deep); background: var(--surface-soft); box-shadow: none; font-size: 1.35rem; line-height: 1; }
.dialog-close:hover:not(:disabled) { color: #fff; background: var(--brand-deep); }
#toast { position: fixed; right: 22px; bottom: 22px; z-index: 20; max-width: min(430px, calc(100% - 44px)); padding: 13px 16px; border: 1px solid rgba(255, 255, 255, .2); border-radius: var(--radius-sm); color: #fff; background: var(--brand-deep); box-shadow: 0 14px 34px rgba(0,0,0,.2); opacity: 0; transform: translateY(10px); pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
#toast.show { opacity: 1; transform: translateY(0); } #toast.error { background: var(--lihua-red); }
:focus-visible { outline: 3px solid rgba(199, 154, 37, .9); outline-offset: 2px; }

@media (max-width: 1240px) {
  .app-shell { grid-template-columns: 224px minmax(0, 1fr); }
  .field-grid.six { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .field-grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .workflow-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .app-shell { display: block; }
  .sidebar { position: static; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; width: 100%; height: auto; padding: 14px 20px; overflow: visible; }
  .brand { width: 176px; }
  .brand-logo { max-height: 58px; }
  .side-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 3px; }
  .side-nav a { min-height: 36px; padding: 7px 8px; font-size: 12px; }
  .side-nav .nav-index { display: none; }
  .sidebar-status { margin: 0; padding: 9px 10px; }
  .sidebar-note { display: none; }
  .topbar { min-height: 94px; }
  .metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .two-column { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .sidebar { position: sticky; top: 0; z-index: 10; grid-template-columns: 1fr; gap: 8px; padding: 12px; }
  .brand { width: min(180px, 100%); margin: 0 4px; }
  .brand-logo { max-height: 62px; }
  .side-nav { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); width: 100%; }
  .side-nav a { display: grid; min-height: 38px; place-items: center; padding: 4px; text-align: center; font-size: 10px; line-height: 1.05; }
  .sidebar-status { display: none; }
  .topbar { display: grid; gap: 14px; min-height: 0; padding: 20px; }
  .access-panel { width: 100%; min-width: 0; align-items: stretch; }
  .access-copy { padding-bottom: 0; white-space: normal; }
  .named-access { justify-content: stretch; }
  .named-access .compact-button { flex: 1; }
  h1 { font-size: var(--type-xl); }
  main { width: min(100% - 24px, 1460px); padding-top: 16px; }
  .hero { display: grid; gap: 18px; padding: 23px 20px; border-radius: 18px; }
  .hero h2 { font-size: 1.5rem; }
  .hero-state { min-width: 0; }
  .notice { display: grid; gap: 4px; font-size: 12px; }
  .workflow-steps { grid-template-columns: 1fr; }
  .workflow-steps li { min-height: 55px; }
  .metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .metric { min-height: 94px; padding: 14px; }
  .metric b { font-size: 1.55rem; }
  .metric span { font-size: 12px; }
  .workspace-intro, .section-heading { display: grid; gap: 9px; align-items: start; }
  .workspace-intro { margin-top: 30px; }
  .layout { grid-template-columns: 1fr; }
  .wide-flow { grid-column: auto; }
  .flow-card, .wide, .two-column > .card { padding: 17px; border-radius: 18px; }
  .field-grid.two, .field-grid.three, .field-grid.four, .field-grid.six { grid-template-columns: 1fr; }
  .filters { grid-template-columns: 1fr; width: 100%; }
  .access-user { align-items: flex-start; }
  .app-footer { display: grid; padding: 0 20px 20px; }
  .access-dialog { width: min(100% - 20px, 460px); padding: 22px 20px; border-radius: 18px; }
  .dialog-brand img { max-height: 52px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
