/* ============================================================================
   Atlas — Mission Control dark design system
   One stylesheet shared across Dashboard, Projects, Repos, Domains, forms.
   ========================================================================== */

:root {
  /* surfaces (near-black void layered up) */
  --bg-void: #0a0b0d;
  --bg-base: #0f1114;
  --bg-surface: #13161b;
  --bg-raised: #181c23;
  --bg-hover: #1a1f27;

  /* lines */
  --border-dim: #1e2329;
  --border: #262c34;
  --border-bright: #323a44;

  /* text */
  --text-primary: #e8edf3;
  --text-secondary: #9aa6b2;
  --text-muted: #5f6b78;
  --text-faint: #424b55;

  /* single accent */
  --teal: #2dd4bf;
  --teal-dim: rgba(45, 212, 191, 0.12);

  /* brand / provider (used only as small dots + KPI accents) */
  --railway: #8b5cf6;
  --netlify: #0ea5e9;
  --cloudflare: #f6821f;
  --github: #9aa6b2;

  /* semantic */
  --green: #4ade80;
  --amber: #f59e0b;
  --red: #ef4444;
  --indigo: #818cf8;

  --radius-sm: 6px;
  --radius: 9px;
  --radius-lg: 14px;

  --shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.45);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg-void);
  color: var(--text-primary);
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}

/* faint scanline texture for depth */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: repeating-linear-gradient(
    0deg, transparent 0, transparent 2px, rgba(255, 255, 255, 0.008) 3px
  );
}

a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

::selection { background: var(--teal-dim); }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 6px; border: 2px solid var(--bg-void); }
::-webkit-scrollbar-thumb:hover { background: var(--border-bright); }

:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; border-radius: 4px; }

/* ---------------------------------------------------------------- top nav */
.topnav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 28px;
  height: 56px; padding: 0 24px;
  background: rgba(15, 17, 20, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dim);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 16px; letter-spacing: -0.01em; }
.brand .logo {
  width: 26px; height: 26px; border-radius: 7px;
  background: linear-gradient(135deg, var(--teal), #0ea5b7);
  display: grid; place-items: center; color: #04211d; font-weight: 800; font-size: 14px;
}
.nav-links { display: flex; gap: 4px; }
.nav-links a {
  color: var(--text-secondary); font-size: 13px; font-weight: 500;
  padding: 7px 12px; border-radius: var(--radius-sm); text-decoration: none;
  position: relative; transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--text-primary); background: var(--bg-raised); text-decoration: none; }
.nav-links a.active { color: var(--text-primary); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: -1px; height: 2px;
  background: var(--teal); border-radius: 2px; box-shadow: 0 0 8px var(--teal);
}
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.user-chip { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-secondary); }
.avatar {
  width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--railway), var(--teal)); color: #fff; font-size: 11px; font-weight: 700;
}

/* ------------------------------------------------------------- page shell */
.page { position: relative; z-index: 1; padding: 22px 24px 60px; }
.page-header { margin-bottom: 16px; }
.page-header h1 { font-size: 21px; font-weight: 700; margin: 0; letter-spacing: -0.02em; }
.page-header .sub { color: var(--text-muted); font-size: 13px; margin-top: 3px; }

/* ----------------------------------------------------------- command bar */
.command-bar {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 14px; margin-bottom: 14px;
  transition: border-color .15s, box-shadow .15s;
}
.command-bar:focus-within { border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-dim); }
.command-bar .spark { color: var(--teal); flex: 0 0 auto; display: flex; }
.command-bar input {
  flex: 1; background: transparent; border: 0; color: var(--text-primary);
  font-size: 14px; font-family: var(--font); outline: none;
}
.command-bar input::placeholder { color: var(--text-muted); }
.command-bar .kbd {
  font-family: var(--mono); font-size: 10px; color: var(--text-muted);
  border: 1px solid var(--border); border-radius: 4px; padding: 2px 6px;
}
.prompt-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.prompt-chip {
  font-size: 12px; color: var(--text-secondary); background: var(--bg-surface);
  border: 1px solid var(--border-dim); border-radius: 999px; padding: 6px 12px; cursor: pointer;
  transition: border-color .15s, color .15s;
}
.prompt-chip:hover { border-color: var(--border-bright); color: var(--text-primary); }

/* --------------------------------------------------------------- KPI tiles */
.kpi-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px; background: var(--border-dim); border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 16px;
}
.kpi {
  background: var(--bg-surface); padding: 14px 16px; position: relative;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 10px;
}
.kpi::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--kpi-accent, var(--teal)); opacity: .8;
}
.kpi .kpi-main { min-width: 0; }
.kpi .kpi-label {
  display: flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px;
}
.kpi .kpi-label .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--kpi-accent, var(--teal)); }
.kpi .kpi-value { font-size: 26px; font-weight: 700; line-height: 1; color: var(--kpi-accent, var(--text-primary)); }
.kpi .kpi-sub { font-size: 11px; color: var(--text-muted); margin-top: 4px; }
.kpi .spark { display: flex; align-items: flex-end; gap: 2px; height: 30px; }
.kpi .spark i { width: 4px; background: var(--kpi-accent, var(--teal)); opacity: .55; border-radius: 1px; display: block; }
.kpi.pulse .dot { animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.kpi-railway { --kpi-accent: var(--railway); }
.kpi-netlify { --kpi-accent: var(--netlify); }
.kpi-cloudflare { --kpi-accent: var(--cloudflare); }
.kpi-amber { --kpi-accent: var(--amber); }
.kpi-green { --kpi-accent: var(--green); }
.kpi-indigo { --kpi-accent: var(--indigo); }

/* ----------------------------------------------------------- toolbar/filters */
.toolbar {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 14px;
}
.search {
  display: flex; align-items: center; gap: 8px; flex: 1; min-width: 220px; max-width: 420px;
  background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 8px 12px;
}
.search:focus-within { border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-dim); }
.search svg { color: var(--text-muted); flex: 0 0 auto; }
.search input { flex: 1; background: transparent; border: 0; color: var(--text-primary); font-size: 13px; outline: none; font-family: var(--font); }
.search input::placeholder { color: var(--text-muted); }

.seg { display: inline-flex; background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 3px; gap: 2px; }
.seg button {
  font-size: 12px; font-weight: 500; color: var(--text-secondary); background: transparent;
  border: 0; border-radius: 6px; padding: 6px 12px; cursor: pointer; display: flex; align-items: center; gap: 6px;
}
.seg button .dot { width: 7px; height: 7px; border-radius: 50%; }
.seg button[aria-pressed="true"], .seg button.active { background: var(--bg-raised); color: var(--text-primary); }

.filter-label { font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); }

.toggle-btn, select.control {
  font-size: 12px; font-weight: 500; color: var(--text-secondary);
  background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 8px 12px; cursor: pointer; display: inline-flex; align-items: center; gap: 7px;
}
.toggle-btn[aria-pressed="true"], .toggle-btn.active { color: var(--text-primary); border-color: var(--border-bright); background: var(--bg-raised); }
select.control { font-family: var(--font); }
select.control option { background: var(--bg-raised); }
.check { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; color: var(--text-secondary); cursor: pointer; user-select: none; }
.check input { accent-color: var(--teal); }

.toolbar-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.count-note { font-size: 12px; color: var(--text-muted); }

/* ---------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 500;
  padding: 8px 14px; border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--bg-surface); color: var(--text-primary); cursor: pointer; text-decoration: none; line-height: 1.2;
  transition: border-color .15s, background .15s;
}
.btn:hover { background: var(--bg-raised); border-color: var(--border-bright); text-decoration: none; }
.btn-primary { background: var(--teal); border-color: var(--teal); color: #04211d; font-weight: 600; }
.btn-primary:hover { background: #5ee3d2; border-color: #5ee3d2; }
.btn-ghost { background: transparent; }
.btn-danger { color: #fca5a5; border-color: rgba(239,68,68,.25); }
.btn-danger:hover { background: rgba(239,68,68,.08); }
.btn-sm { padding: 5px 10px; font-size: 12px; }
.btn .dot-live { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 6px var(--green); }

/* ----------------------------------------------------------------- table */
.table-wrap {
  background: var(--bg-surface); border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg); overflow: hidden;
}
table.data { width: 100%; border-collapse: separate; border-spacing: 0; }
table.data thead th {
  position: sticky; top: 0; z-index: 2;
  text-align: left; font-size: 10px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-muted); padding: 11px 14px; background: var(--bg-base);
  border-bottom: 1px solid var(--border-dim);
}
table.data tbody td { padding: 11px 14px; border-bottom: 1px solid var(--border-dim); font-size: 13px; vertical-align: middle; }
table.data tbody tr.row { cursor: pointer; transition: background .12s; }
table.data tbody tr.row:hover { background: var(--bg-hover); }
table.data tbody tr:last-child td { border-bottom: none; }

.pname { font-family: var(--mono); font-size: 13px; color: var(--text-primary); font-weight: 500; }
.pslug { font-family: var(--mono); font-size: 11px; color: var(--text-faint); margin-top: 2px; }
.cellmuted { color: var(--text-muted); }
.count { display: inline-flex; align-items: center; gap: 5px; color: var(--text-secondary); font-variant-numeric: tabular-nums; }
.count svg { color: var(--text-muted); }

.arrow { display: inline-flex; color: var(--text-muted); transition: transform .15s; }
tr.open .arrow { transform: rotate(90deg); }

.status-dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.status-dot.live { background: var(--green); box-shadow: 0 0 7px rgba(74,222,128,.6); }
.status-dot.unknown { background: var(--text-faint); }

/* unified neutral chip + dot (platform / provider / visibility) */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 9px; border-radius: 6px;
  background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-dim);
  color: var(--text-secondary); font-size: 11px; font-weight: 500; letter-spacing: .02em;
}
.tag .dot { width: 7px; height: 7px; border-radius: 50%; flex: 0 0 auto; }
.dot-railway { background: var(--railway); }
.dot-netlify { background: var(--netlify); }
.dot-cloudflare { background: var(--cloudflare); }
.dot-external, .dot-manual, .dot-private { background: var(--text-muted); }
.dot-public { background: var(--green); }
.dot-unknown { background: var(--text-faint); }

.repo-chip {
  display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 12px;
  color: var(--text-secondary); background: rgba(255,255,255,.02); border: 1px solid var(--border-dim);
  border-radius: 6px; padding: 3px 8px; max-width: 240px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.repo-chip svg { color: var(--text-muted); flex: 0 0 auto; }
.lang { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-secondary); }
.lang .ld { width: 8px; height: 8px; border-radius: 50%; }

/* expiry (calm) */
.exp-date { font-family: var(--mono); font-size: 12px; color: var(--text-muted); }
.exp-in { font-family: var(--mono); font-size: 11px; margin-left: 6px; }
.exp-soon .exp-date { color: var(--text-secondary); }
.exp-soon .exp-in { color: var(--amber); }
.exp-critical .exp-date { color: #fca5a5; }
.exp-critical .exp-in { color: var(--red); }

/* expandable detail row */
tr.detail > td { padding: 0; background: var(--bg-base); }
.dwrap { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.panel { padding: 14px 18px; border-right: 1px solid var(--border-dim); }
.panel:last-child { border-right: none; }
.panel h4 { margin: 0 0 10px; font-size: 10px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); }
.item {
  font-size: 12.5px; padding: 7px 10px; border: 1px solid var(--border-dim); border-radius: 8px;
  margin-bottom: 6px; background: var(--bg-surface); color: var(--text-secondary);
}
.item a { color: var(--teal); }
.item .meta { color: var(--text-muted); font-size: 11px; margin-top: 3px; }
.empty { color: var(--text-faint); font-size: 12px; font-style: italic; }
.detail-actions { display: flex; gap: 8px; align-items: center; padding: 0 18px 14px; flex-wrap: wrap; }
.detail-actions form { margin: 0; }
.no-results td { text-align: center; color: var(--text-muted); font-style: italic; padding: 28px; }
.footnote { padding: 14px 4px; color: var(--text-muted); font-size: 12px; }

/* kind chips (domain kinds, archived, manual) */
.kind { font-size: 10px; font-weight: 600; padding: 1px 6px; border-radius: 5px; margin-left: 6px; }
.k-apex { background: rgba(14,165,233,.12); color: #7dd3fc; }
.k-subdomain { background: rgba(148,163,184,.12); color: var(--text-secondary); }
.k-platform { background: rgba(245,158,11,.12); color: #fcd34d; }
.k-wildcard { background: rgba(139,92,246,.14); color: #c4b5fd; }
.k-dead { background: rgba(239,68,68,.14); color: #fca5a5; }
.k-tag { background: rgba(255,255,255,.04); color: var(--text-muted); }

/* ------------------------------------------------------- dashboard pieces */
.grid-2 { display: grid; grid-template-columns: 1fr 320px; gap: 16px; align-items: start; }
@media (max-width: 1080px) { .grid-2 { grid-template-columns: 1fr; } }

.section-title { font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted); margin: 6px 0 10px; display: flex; align-items: center; gap: 10px; }
.badge-live { font-size: 9px; font-weight: 700; color: var(--teal); border: 1px solid var(--teal-dim); border-radius: 4px; padding: 1px 6px; letter-spacing: .04em; }

.panel-card {
  background: var(--bg-surface); border: 1px solid var(--border-dim); border-radius: var(--radius-lg);
  padding: 16px 18px; margin-bottom: 14px;
}
.dist-bar { height: 10px; border-radius: 6px; overflow: hidden; display: flex; background: var(--bg-raised); }
.dist-bar i { display: block; height: 100%; }
.dist-legend { display: flex; justify-content: space-between; margin-top: 10px; font-size: 12px; color: var(--text-secondary); }
.dist-legend .lg { display: inline-flex; align-items: center; gap: 6px; }
.dist-legend .lg .dot { width: 8px; height: 8px; border-radius: 50%; }

.insights { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 760px) { .insights { grid-template-columns: 1fr; } }
.insight {
  background: var(--bg-surface); border: 1px solid var(--border-dim); border-left: 2px solid var(--ic, var(--teal));
  border-radius: var(--radius); padding: 14px 16px; display: flex; flex-direction: column; gap: 10px;
}
.insight.span2 { grid-column: span 2; }
@media (max-width: 760px) { .insight.span2 { grid-column: span 1; } }
.insight .ihead { display: flex; gap: 10px; }
.insight .iicon { width: 24px; height: 24px; border-radius: 7px; display: grid; place-items: center; flex: 0 0 auto; background: var(--icbg, var(--teal-dim)); color: var(--ic, var(--teal)); }
.insight .itext { font-size: 13px; color: var(--text-secondary); line-height: 1.45; }
.insight .itext b { color: var(--text-primary); font-weight: 600; }
.insight .imeta { font-size: 11px; color: var(--text-muted); }
.ic-warn { --ic: var(--amber); --icbg: rgba(245,158,11,.12); }
.ic-error { --ic: var(--red); --icbg: rgba(239,68,68,.12); }
.ic-ok { --ic: var(--green); --icbg: rgba(74,222,128,.12); }
.ic-info { --ic: var(--teal); --icbg: var(--teal-dim); }
.ic-rail { --ic: var(--railway); --icbg: rgba(139,92,246,.14); }
.btn-insight { align-self: flex-start; font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 7px; border: 1px solid var(--ic); color: var(--ic); background: transparent; cursor: pointer; text-decoration: none; }
.btn-insight:hover { background: var(--icbg); text-decoration: none; }

.expiry-list .eli { display: flex; align-items: center; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--border-dim); }
.expiry-list .eli:last-child { border-bottom: none; }
.eli .eln { font-family: var(--mono); font-size: 12px; color: var(--text-primary); }
.eli .elsub { font-size: 10px; color: var(--text-muted); margin-top: 2px; }
.eli .eld { font-family: var(--mono); font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 5px; }
.eld.soon { background: rgba(245,158,11,.12); color: var(--amber); }
.eld.crit { background: rgba(239,68,68,.14); color: #fca5a5; }

.sync-strip {
  display: flex; align-items: center; gap: 16px; font-size: 12px; color: var(--text-muted);
  padding: 10px 14px; background: var(--bg-surface); border: 1px solid var(--border-dim);
  border-radius: var(--radius); margin-bottom: 16px;
}
.sync-strip .ok { color: var(--green); }
.sync-strip form { margin: 0 0 0 auto; }

/* lang bar (repos) */
.langbar { display: flex; height: 8px; border-radius: 5px; overflow: hidden; background: var(--bg-raised); }
.langbar i { height: 100%; }
.lang-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.lang-chips .lc { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-secondary); }
.lang-chips .lc .ld { width: 8px; height: 8px; border-radius: 50%; }
.lang-chips .lc b { color: var(--text-muted); font-weight: 500; }

.uses-link { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; color: var(--teal); background: var(--teal-dim); border-radius: 6px; padding: 3px 9px; }
.uses-none { font-size: 12px; color: var(--text-muted); background: rgba(255,255,255,.03); border: 1px solid var(--border-dim); border-radius: 6px; padding: 3px 9px; }

/* notice strip (e.g. expiring) */
.notice {
  display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-secondary);
  background: rgba(245,158,11,.05); border: 1px solid rgba(245,158,11,.14); border-radius: var(--radius);
  padding: 9px 14px; margin-bottom: 14px;
}
.notice svg { color: var(--amber); flex: 0 0 auto; }
.notice b { color: var(--text-primary); }

/* --------------------------------------------------------------- flash */
.flash { margin-bottom: 14px; padding: 10px 14px; border-radius: var(--radius); font-size: 13px; }
.flash.error { background: rgba(239,68,68,.1); color: #fca5a5; border: 1px solid rgba(239,68,68,.2); }
.flash.info { background: var(--teal-dim); color: #7fe7da; border: 1px solid rgba(45,212,191,.2); }

/* generic helpers */
.sub { color: var(--text-muted); font-size: 13px; }
.meta { color: var(--text-muted); font-size: 11px; }

/* --------------------------------------------------------------- forms */
.form-wrap { max-width: 640px; margin: 8px auto; position: relative; z-index: 1; }
.card-form { background: var(--bg-surface); border: 1px solid var(--border-dim); border-radius: var(--radius-lg); padding: 22px 24px; margin-top: 14px; }
.card-form label { display: block; font-size: 12px; color: var(--text-secondary); margin: 16px 0 6px; font-weight: 600; }
.card-form label:first-child { margin-top: 0; }
.card-form input, .card-form select, .card-form textarea {
  width: 100%; padding: 9px 12px; border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 14px; color: var(--text-primary); background: var(--bg-base); font-family: inherit;
}
.card-form input:focus, .card-form select:focus, .card-form textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-dim); }
.card-form textarea { resize: vertical; }
.form-actions { display: flex; gap: 10px; margin-top: 22px; }

/* --------------------------------------------------------------- login */
.login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; }
.login-card { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; width: 340px; box-shadow: var(--shadow-lg); }
.login-card .brand { margin-bottom: 4px; }
.login-card .sub { color: var(--text-muted); font-size: 13px; margin-bottom: 18px; }
.login-card label { display: block; font-size: 12px; color: var(--text-secondary); margin: 14px 0 6px; }
.login-card input { width: 100%; padding: 10px 12px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 14px; color: var(--text-primary); background: var(--bg-base); }
.login-card input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-dim); }
.login-card .btn-primary { width: 100%; margin-top: 20px; justify-content: center; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
