@charset "utf-8";
/* ============================================================================
   AI Reels 4U — design system
   Concept: the cutting room. A small studio hand-cuts memory reels in a warm
   dark suite; the logo is already gold light on darkness, so the palette is
   built from it. The 9:16 frame is the product's shape and is used as the
   primary structural device rather than as decoration.
   ========================================================================== */

:root {
  /* Ground — warm near-black, biased toward the gold rather than a cold navy */
  --ink:        #17120b;
  --ink-2:      #211a10;
  --ink-3:      #2b2216;
  --ink-line:   #3a2f1e;

  /* The brand gold, taken from the logo's lens ring */
  --gold:       #fbbf24;
  --gold-2:     #e0a015;
  --gold-3:     #8a5f10;
  --gold-wash:  rgba(251, 191, 36, .12);

  /* Paper — warm, so uploaded photos sit on a neutral that flatters them */
  --paper:      #faf6ed;
  --surface:    #ffffff;
  --surface-2:  #f4eee1;
  --line:       #e7ddc9;
  --line-soft:  #f0e8d8;

  /* Text */
  --text:       #2a2216;
  --text-soft:  #6d6151;
  --text-faint: #948676;
  --on-ink:     #f6efe1;
  --on-ink-soft:#b9ac96;

  /* Semantic — deliberately separate from the gold accent */
  --good:       #2c7a58;
  --good-bg:    #e6f2ec;
  --warn:       #a86a0c;
  --warn-bg:    #fbf0dc;
  --bad:        #a83a2c;
  --bad-bg:     #f8e8e5;
  --info:       #2c6584;
  --info-bg:    #e6eef3;

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body:    "Karla", "Helvetica Neue", Arial, sans-serif;
  --font-mono:    "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Scale */
  --step--1: clamp(.82rem, .8rem + .1vw, .88rem);
  --step-0:  clamp(1rem, .97rem + .15vw, 1.06rem);
  --step-1:  clamp(1.2rem, 1.14rem + .3vw, 1.4rem);
  --step-2:  clamp(1.45rem, 1.34rem + .55vw, 1.85rem);
  --step-3:  clamp(1.8rem, 1.6rem + 1vw, 2.5rem);
  --step-4:  clamp(2.2rem, 1.8rem + 2vw, 3.6rem);
  --step-5:  clamp(2.7rem, 2rem + 3.4vw, 5rem);

  --radius:    14px;
  --radius-sm: 9px;
  --radius-lg: 22px;
  --shadow:    0 1px 2px rgba(40,30,10,.05), 0 8px 24px -12px rgba(40,30,10,.18);
  --shadow-lg: 0 2px 4px rgba(40,30,10,.06), 0 24px 56px -24px rgba(40,30,10,.3);

  /* Bootstrap bridge */
  --bs-body-font-family: var(--font-body);
  --bs-body-bg: var(--paper);
  --bs-body-color: var(--text);
  --bs-border-color: var(--line);
  --bs-link-color: var(--gold-3);
  --bs-link-hover-color: var(--text);
  --bs-primary: #2c6584;
  --bs-warning: var(--gold);
  --bs-border-radius: var(--radius);
  --bs-focus-ring-color: rgba(251,191,36,.4);
}

/* ---------- base ---------- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, .display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "SOFT" 0, "WONK" 0;
  line-height: 1.12;
  letter-spacing: -.015em;
  text-wrap: balance;
  color: inherit;
}

h1, .display-4, .display-5 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4, h5 { font-size: var(--step-1); font-weight: 600; }
p  { text-wrap: pretty; }

a { color: var(--gold-3); text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { color: var(--text); }

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

::selection { background: var(--gold); color: var(--ink); }

/* Numerals line up wherever they are compared */
.num, .amount, .mono, td.num, .tabular { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

/* Eyebrow — used only where a label genuinely classifies the section below it */
.eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-3);
  display: block;
  margin-bottom: .9rem;
}
.on-ink .eyebrow, .ink-section .eyebrow { color: var(--gold); }

.lede { font-size: var(--step-1); color: var(--text-soft); line-height: 1.5; max-width: 60ch; }
.prose { max-width: 68ch; }
.prose h2 { font-size: var(--step-2); margin: 2.4rem 0 .7rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 1.1rem; color: var(--text-soft); }

/* ---------- the film rail: a real divider, not an ornament ---------- */

.rail {
  height: 14px;
  background:
    repeating-linear-gradient(90deg,
      transparent 0 14px,
      var(--gold) 14px 22px,
      transparent 22px 36px);
  opacity: .5;
  border-block: 1px solid var(--ink-line);
}
.rail--paper {
  background:
    repeating-linear-gradient(90deg,
      transparent 0 14px,
      var(--gold-2) 14px 22px,
      transparent 22px 36px);
  opacity: .35;
  border-block-color: var(--line);
}

/* Safety net: a Bootstrap row whose gutter is wider than its container's own
   padding pulls past the container edge via its negative margins, and inside an
   overflow-hidden section that silently clips content. Keep the container's
   padding in step whenever a wide gutter is used. */
.container:has(> .row.g-5),  .container:has(> .row.gx-5),
.container:has(> .row.g-lg-5), .container:has(> .row.gx-lg-5) { --bs-gutter-x: 3rem; }

/* ---------- dark sections ---------- */

.ink-section {
  background: var(--ink);
  color: var(--on-ink);
  position: relative;
  overflow: hidden;
}
.ink-section h1, .ink-section h2, .ink-section h3 { color: var(--on-ink); }
.ink-section p  { color: var(--on-ink-soft); }
.ink-section .lede { color: var(--on-ink-soft); }

/* A single warm light source, low and off-centre, like a lamp in an edit suite */
.ink-section::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto -10%;
  height: 90%;
  background: radial-gradient(60% 60% at 50% 40%, rgba(251,191,36,.16), transparent 70%);
  pointer-events: none;
}
.ink-section > * { position: relative; z-index: 1; }

/* ---------- the 9:16 frame — the shape of the product ---------- */

.frame916 {
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, var(--ink-3), var(--ink));
  border: 1px solid var(--ink-line);
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.9), 0 0 0 1px rgba(251,191,36,.12);
  position: relative;
  overflow: hidden;
}
/* sprocket holes down both edges */
.frame916::before,
.frame916::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 13px;
  background:
    repeating-linear-gradient(180deg,
      transparent 0 12px,
      rgba(251,191,36,.5) 12px 20px,
      transparent 20px 32px);
  opacity: .55;
}
.frame916::before { left: 6px; }
.frame916::after  { right: 6px; }

.frame916 .frame916-body {
  position: absolute;
  inset: 0 26px;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 1.5rem;
  gap: .6rem;
}

/* ---------- buttons ---------- */

.btn {
  --bs-btn-border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: .005em;
  padding: .72rem 1.6rem;
  border-radius: 999px;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease, color .16s ease;
}
.btn-lg { padding: .95rem 2.1rem; font-size: 1.02rem; }
.btn:active { transform: translateY(1px); }

.btn-gold, .btn-warning {
  background: var(--gold);
  border: 1px solid var(--gold-2);
  color: var(--ink);
  box-shadow: 0 10px 26px -12px rgba(224,160,21,.9);
}
.btn-gold:hover, .btn-warning:hover,
.btn-gold:focus-visible, .btn-warning:focus-visible {
  background: #ffd257;
  border-color: var(--gold-2);
  color: var(--ink);
  box-shadow: 0 16px 34px -14px rgba(224,160,21,1);
}

.btn-ink, .btn-dark {
  background: var(--ink-2);
  border: 1px solid var(--ink-line);
  color: var(--on-ink);
}
.btn-ink:hover, .btn-dark:hover { background: var(--ink-3); color: #fff; }

.btn-quiet, .btn-outline-dark, .btn-outline-secondary {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
}
.btn-quiet:hover, .btn-outline-dark:hover, .btn-outline-secondary:hover {
  background: var(--surface-2);
  border-color: var(--text-faint);
  color: var(--text);
}
.ink-section .btn-quiet, .on-ink .btn-quiet, .site-nav .btn-quiet {
  border-color: rgba(246,239,225,.28);
  color: var(--on-ink);
  background: transparent;
}
.ink-section .btn-quiet:hover, .on-ink .btn-quiet:hover, .site-nav .btn-quiet:hover {
  background: rgba(246,239,225,.08);
  color: #fff;
}

/* Bootstrap's .btn:disabled is more specific than a plain .btn-gold, and its
   disabled background defaults to transparent — so state it explicitly here. */
.btn:disabled, .btn.disabled { opacity: 1; cursor: not-allowed; box-shadow: none; }
.btn-gold:disabled, .btn-gold.disabled,
.btn-warning:disabled, .btn-warning.disabled {
  background: var(--surface-2);
  border-color: var(--line);
  color: var(--text-faint);
}
.btn-quiet:disabled, .btn-ink:disabled, .btn-primary:disabled, .btn-success:disabled,
.btn-outline-primary:disabled, .btn-outline-danger:disabled {
  background: var(--surface-2);
  border-color: var(--line);
  color: var(--text-faint);
}

.btn-outline-primary { border: 1px solid var(--info); color: var(--info); background: transparent; }
.btn-outline-primary:hover { background: var(--info); color: #fff; }
.btn-outline-danger { border: 1px solid var(--bad); color: var(--bad); background: transparent; }
.btn-outline-danger:hover { background: var(--bad); color: #fff; }
.btn-success { background: var(--good); border: 1px solid var(--good); color: #fff; }
.btn-success:hover { background: #246347; border-color: #246347; color: #fff; }
.btn-primary { background: var(--info); border: 1px solid var(--info); color: #fff; }
.btn-primary:hover { background: #24556e; color: #fff; }

/* ---------- cards ---------- */

.card {
  --bs-card-bg: var(--surface);
  --bs-card-border-color: var(--line);
  --bs-card-border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card-header { background: var(--surface); border-bottom: 1px solid var(--line); }

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.6rem;
}
.panel--flush { padding: 0; overflow: hidden; }

/* A quiet card that lifts only on real interaction */
.lift { transition: transform .2s ease, box-shadow .2s ease; }
.lift:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* ---------- status ---------- */

.pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .6rem;
  border-radius: 5px;
  border: 1px solid transparent;
  white-space: nowrap;
}
.pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.pill-good { background: var(--good-bg); color: var(--good); border-color: #c6e0d4; }
.pill-warn { background: var(--warn-bg); color: var(--warn); border-color: #ecd9b0; }
.pill-bad  { background: var(--bad-bg);  color: var(--bad);  border-color: #e8c9c3; }
.pill-info { background: var(--info-bg); color: var(--info); border-color: #c6d7e1; }
.pill-mute { background: var(--surface-2); color: var(--text-soft); border-color: var(--line); }

/* Severity stripe: state readable before any text is parsed */
.striped { border-left: 3px solid var(--line); }
.striped-good { border-left-color: var(--good); }
.striped-warn { border-left-color: var(--warn); }
.striped-bad  { border-left-color: var(--bad); }
.striped-info { border-left-color: var(--info); }

/* ---------- forms ---------- */

.form-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .86rem;
  color: var(--text);
  margin-bottom: .4rem;
}
.form-hint { font-size: var(--step--1); color: var(--text-faint); margin-top: .35rem; }

.form-control, .form-select {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: .7rem .9rem;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-control:focus, .form-select:focus {
  background: var(--surface);
  border-color: var(--gold-2);
  box-shadow: 0 0 0 3px rgba(251,191,36,.22);
  color: var(--text);
}
.form-control::placeholder { color: var(--text-faint); }
.form-control-lg, .form-select-lg { padding: .85rem 1rem; font-size: 1.02rem; }
.form-check-input:checked { background-color: var(--gold-2); border-color: var(--gold-2); }
.form-check-input:focus { box-shadow: 0 0 0 3px rgba(251,191,36,.22); border-color: var(--gold-2); }

/* Auth pages sit on the dark ground; their fields need the inverse treatment */
.on-ink .form-control, .on-ink .form-select {
  background: rgba(255,255,255,.05);
  border-color: rgba(246,239,225,.2);
  color: var(--on-ink);
}
.on-ink .form-control::placeholder { color: rgba(185,172,150,.75); }
.on-ink .form-control:focus, .on-ink .form-select:focus {
  background: rgba(255,255,255,.08);
  border-color: var(--gold);
  color: #fff;
}
.on-ink .form-label { color: var(--on-ink); }

/* ---------- alerts ---------- */

.alert {
  border-radius: var(--radius-sm);
  border: 1px solid;
  padding: .85rem 1.1rem;
  font-size: .95rem;
}
.alert-success, .alert-info-good { background: var(--good-bg); border-color: #c6e0d4; color: #1e5b40; }
.alert-danger  { background: var(--bad-bg);  border-color: #e8c9c3; color: #7f2b20; }
.alert-warning { background: var(--warn-bg); border-color: #ecd9b0; color: #7d4e08; }
.alert-info    { background: var(--info-bg); border-color: #c6d7e1; color: #204b63; }
.alert-secondary { background: var(--surface-2); border-color: var(--line); color: var(--text-soft); }

/* ---------- navigation ---------- */

.site-nav {
  background: rgba(23,18,11,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ink-line);
  padding: .55rem 0;
}
.site-nav .navbar-brand img { height: 40px; width: auto; display: block; }
.site-nav .nav-link {
  color: var(--on-ink-soft) !important;
  font-size: .93rem;
  font-weight: 600;
  padding: .5rem .9rem !important;
  border-radius: 7px;
  transition: color .15s ease, background-color .15s ease;
}
.site-nav .nav-link:hover { color: var(--on-ink) !important; background: rgba(246,239,225,.06); }
.site-nav .nav-link.active { color: var(--gold) !important; }
.site-nav .dropdown-menu {
  background: var(--ink-2);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-sm);
  padding: .35rem;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,.8);
}
.site-nav .dropdown-item {
  color: var(--on-ink-soft);
  border-radius: 6px;
  padding: .5rem .8rem;
  font-size: .92rem;
}
.site-nav .dropdown-item:hover { background: rgba(246,239,225,.08); color: var(--on-ink); }
.site-nav .dropdown-item.text-danger { color: #e8998c !important; }
.site-nav .navbar-toggler { border-color: var(--ink-line); padding: .35rem .6rem; }
/* The nav sits on the dark ground, so Bootstrap's default dark hamburger is invisible. */
.site-nav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28246,239,225,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.site-nav .dropdown-toggle::after { color: var(--on-ink-soft); }
.site-nav .navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(251,191,36,.3); }

@media (max-width: 991.98px) {
  .site-nav .navbar-collapse {
    background: var(--ink-2);
    border: 1px solid var(--ink-line);
    border-radius: var(--radius);
    padding: .8rem;
    margin-top: .7rem;
  }
}

/* ---------- page header ---------- */

.page-head { padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2rem, 4vw, 3rem); text-align: center; }
.page-head h1 { font-size: var(--step-4); margin: 0 0 .6rem; }
.page-head p { color: var(--on-ink-soft); font-size: var(--step-1); margin: 0; }

/* ---------- footer ---------- */

.site-footer { background: var(--ink); color: var(--on-ink-soft); padding: 3.5rem 0 1.75rem; }
.site-footer h5 {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}
.site-footer a { color: var(--on-ink-soft); text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.site-footer img { height: 46px; width: auto; }
.site-footer .footer-base {
  border-top: 1px solid var(--ink-line);
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  font-size: var(--step--1);
  color: var(--text-faint);
}

/* ---------- steps: numbered only because the order is real ---------- */

.steps { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); counter-reset: step; }
.step {
  counter-increment: step;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  position: relative;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .1em;
  color: var(--gold-3);
  display: block;
  margin-bottom: .8rem;
}
.step h3 { font-size: var(--step-1); margin: 0 0 .45rem; }
.step p  { color: var(--text-soft); font-size: .95rem; margin: 0; }
.ink-section .step { background: var(--ink-2); border-color: var(--ink-line); }
.ink-section .step::before { color: var(--gold); }

/* ---------- upload dropzone ---------- */

.dropzone {
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
  padding: 2.75rem 1.5rem;
  text-align: center;
  transition: border-color .18s ease, background-color .18s ease;
  cursor: pointer;
}
.dropzone:hover { border-color: var(--gold-2); background: #fdf8ec; }
.dropzone.is-dragging { border-color: var(--gold); background: var(--gold-wash); }
.dropzone .dz-icon { font-size: 2.4rem; color: var(--gold-2); display: block; margin-bottom: .6rem; }

/* Thumbnails keep the product's vertical shape */
.thumb-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); gap: .6rem; }
.thumb {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--ink-2);
  border: 1px solid var(--line);
}
.thumb img, .thumb video { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumb-remove {
  position: absolute; top: 4px; right: 4px;
  width: 22px; height: 22px; padding: 0;
  border: none; border-radius: 50%;
  background: rgba(23,18,11,.82); color: #fff;
  font-size: 13px; line-height: 1;
  display: grid; place-items: center;
  cursor: pointer;
}
.thumb-remove:hover { background: var(--bad); }

/* Upload progress shown inside the checkout dialog */
.up-progress {
  height: 26px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.up-progress > span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-2), var(--gold));
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 26px;
  text-align: center;
  transition: width .2s ease;
}

/* ---------- meter ---------- */

.meter { height: 7px; background: var(--surface-2); border-radius: 999px; overflow: hidden; border: 1px solid var(--line); }
.meter > span { display: block; height: 100%; background: linear-gradient(90deg, var(--gold-2), var(--gold)); transition: width .3s ease; }

/* ---------- tables ---------- */

.table { --bs-table-bg: transparent; color: var(--text); margin: 0; }
.table > thead th {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-faint);
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
  padding: .7rem .85rem;
  white-space: nowrap;
}
.table > tbody td { border-bottom: 1px solid var(--line-soft); padding: .8rem .85rem; vertical-align: middle; }
.table > tbody tr:hover { background: var(--surface-2); }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.table-wrap .table > thead th:first-child { border-top-left-radius: var(--radius); }
.table-wrap .table > thead th:last-child  { border-top-right-radius: var(--radius); }

/* ---------- stat tiles ---------- */

.stat-row { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
}
.stat .stat-label {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-faint);
  display: block;
  margin-bottom: .35rem;
}
.stat .stat-value {
  display: block;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--text);
}
.stat .stat-note { display: block; font-size: var(--step--1); color: var(--text-soft); margin-top: .25rem; }

/* ---------- misc ---------- */

.stack   { display: flex; flex-direction: column; gap: 1rem; }
.row-gap { display: flex; flex-wrap: wrap; gap: .6rem; }
.center-measure { max-width: 62rem; margin-inline: auto; }
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-sm { padding: clamp(2.5rem, 5vw, 3.5rem) 0; }
.text-soft { color: var(--text-soft) !important; }
.text-faint { color: var(--text-faint) !important; }
.text-gold { color: var(--gold) !important; }
.bg-paper { background: var(--paper) !important; }
.bg-surface { background: var(--surface) !important; }
.hairline { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }

.empty {
  text-align: center;
  padding: 3.5rem 1.5rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text-soft);
}
.empty .empty-icon { font-size: 2.2rem; color: var(--text-faint); display: block; margin-bottom: .7rem; }

/* Wide content never pushes the page sideways */
.scroll-x { overflow-x: auto; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .lift:hover { transform: none; }
}
