/* ============================================================
   U Storage Partner Deck — shared stylesheet
   ============================================================ */

:root {
  /* ============================================================
     U Storage brand palette (2026-05-20)
     ============================================================
     Mapped from the brand swatches:
       - Deepest near-black navy → --navy (primary dark surface)
       - Slate navy              → --navy-2 (secondary dark / gradients)
       - Champagne / beige       → --khaki  (brand neutral, matches logo)
       - Royal blue              → --brand  (primary CTA / action color)
  */
  --navy:        #0a1124;
  --navy-2:      #2a3645;
  --brand:       #1b3cdc;
  --brand-hover: #1530a8;
  --brand-soft:  #e8edfd;   /* very pale brand blue for backgrounds */
  --khaki:       #c8bca6;
  --khaki-soft:  #e0d8c8;
  --khaki-pale:  #f0ebe0;   /* extra-pale for card surfaces */

  /* Neutrals — slightly warm-toned to harmonize with the khaki accent */
  --ink:        #1a2233;
  --ink-soft:   #4a5568;
  --paper:      #ffffff;
  --paper-2:    #f5f2ec;
  --paper-3:    #eae4d6;
  --line:       #d5cfc0;
  --good:       #1d8a5b;

  /* Legacy aliases — keep so any old class that still references
     --coral / --gold / --teal doesn't break while we sweep the codebase.
     These will be removed once nothing references them. */
  --coral: var(--brand);
  --gold:  var(--khaki);
  --teal:  var(--brand);

  --shadow-sm: 0 1px 2px rgba(10, 17, 36, .06), 0 1px 3px rgba(10, 17, 36, .08);
  --shadow-md: 0 8px 24px rgba(10, 17, 36, .10), 0 2px 6px rgba(10, 17, 36, .06);
  --shadow-lg: 0 24px 64px rgba(10, 17, 36, .20);
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --max: 1180px;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 .5em 0;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1.02rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--teal); }

p { margin: 0 0 1em 0; }
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

.eyebrow {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 1rem;
  display: inline-block;
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ============================================================
   Logo
   ============================================================ */

.logo {
  display: inline-block;
  height: 36px;
  width: auto;
  vertical-align: middle;
}
.logo-sm { height: 28px; }
.logo-md { height: 44px; }
.logo-lg { height: 64px; }
.logo-xl { height: 96px; }

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  font-family: inherit;
  border: 0;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { transform: translateY(-1px); background: var(--brand-hover); text-decoration: none; }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-2); transform: translateY(-1px); text-decoration: none; }
.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.3); }
.btn-ghost:hover { background: rgba(255,255,255,.2); text-decoration: none; }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; text-decoration: none; }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 8px 16px; font-size: .9rem; }

/* ============================================================
   Splash / lead-capture page
   ============================================================ */

.splash {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--navy);
  color: #fff;
}
.splash-hero {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(27, 60, 220, .28), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(200, 188, 166, .18), transparent 55%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
}
.splash-hero .brand {
  font-size: .85rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  opacity: .7;
  margin-bottom: 2rem;
}
.splash-hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin-bottom: .8rem;
}
.splash-hero .sub {
  font-size: 1.15rem;
  opacity: .85;
  max-width: 480px;
  line-height: 1.5;
}
.splash-hero .badges {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 2.5rem;
}
.splash-hero .badge {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  font-size: .85rem;
  font-weight: 500;
}
.splash-hero .footnote {
  margin-top: auto;
  padding-top: 2rem;
  font-size: .85rem;
  opacity: .55;
}

.splash-form-wrap {
  background: var(--paper);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--ink);
}
.splash-form-wrap h2 {
  margin-bottom: .4rem;
  color: var(--navy);
}
.splash-form-wrap .form-intro {
  color: var(--ink-soft);
  margin-bottom: 2rem;
}
.splash-form { display: grid; gap: 14px; max-width: 460px; }
.splash-form label { font-size: .85rem; font-weight: 600; color: var(--ink); display: block; margin-bottom: 4px; }
.splash-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.splash-form input, .splash-form select {
  width: 100%;
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
  background: var(--paper);
  transition: border-color .15s, box-shadow .15s;
}
.splash-form input:focus, .splash-form select:focus {
  outline: 0;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(31, 122, 140, .15);
}
.splash-form .submit { margin-top: 8px; }
.splash-form .privacy { font-size: .8rem; color: var(--ink-soft); margin-top: 4px; }
.splash-form .err {
  background: #fee;
  color: #b32424;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  display: none;
}
.splash-form .err.show { display: block; }

@media (max-width: 880px) {
  .splash { grid-template-columns: 1fr; }
  .splash-hero { padding: 56px 28px 40px; }
  .splash-form-wrap { padding: 40px 28px 56px; }
}

/* ============================================================
   Deck — top nav + sections
   ============================================================ */

.topnav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.topnav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topnav .brand {
  font-weight: 800;
  color: var(--navy);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.topnav .brand small {
  font-weight: 500;
  font-size: .75rem;
  color: var(--ink-soft);
  letter-spacing: .18em;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}
.topnav .progress {
  position: absolute;
  bottom: -1px; left: 0; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--coral));
  width: 0%;
  transition: width .1s linear;
}

.deck-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}
.deck-section:nth-child(even) { background: var(--paper-2); }
.deck-section.alt-dark {
  background: var(--navy);
  color: #fff;
  border-bottom: 0;
}
.deck-section.alt-dark h2, .deck-section.alt-dark h3 { color: #fff; }
.deck-section.alt-dark h4 { color: var(--gold); }
.deck-section.alt-dark .eyebrow { color: var(--gold); }
.deck-section.alt-dark p { color: rgba(255,255,255,.85); }

.section-hd { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-hd p { font-size: 1.1rem; color: var(--ink-soft); }
.alt-dark .section-hd p { color: rgba(255,255,255,.8); }

/* ============================================================
   Hero (deck top)
   ============================================================ */

.deck-hero {
  padding: 120px 0 100px;
  background:
    radial-gradient(circle at 80% 20%, rgba(27, 60, 220, .10), transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(200, 188, 166, .35), transparent 55%),
    linear-gradient(135deg, #ffffff 0%, var(--paper-2) 100%);
  text-align: center;
}
.deck-hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 1.05; margin-bottom: 1.2rem; }
.deck-hero .school-tag { color: var(--teal); }
.deck-hero p.lead { font-size: 1.3rem; color: var(--ink-soft); max-width: 680px; margin: 0 auto 2.5rem; }
.deck-hero .stat-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 40px;
  margin-top: 4rem;
}
.deck-hero .stat .num {
  font-size: 2.4rem; font-weight: 800; color: var(--navy);
  font-family: var(--font-display);
}
.deck-hero .stat .lbl { font-size: .85rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .1em; }

/* ============================================================
   Cards & grids
   ============================================================ */

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 880px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.card h3 { color: var(--navy); margin-bottom: .5rem; }
.card .icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--paper-3); color: var(--teal);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 14px;
}
.alt-dark .card {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.12);
  color: #fff;
}
.alt-dark .card .icon { background: rgba(255,255,255,.08); color: var(--gold); }
.alt-dark .card p { color: rgba(255,255,255,.75); }

.card.coral { border-top: 4px solid var(--coral); }
.card.teal { border-top: 4px solid var(--teal); }
.card.gold { border-top: 4px solid var(--gold); }

/* ============================================================
   Two-up comparison panels (DIY vs U Storage)
   ============================================================ */

.compare {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  align-items: stretch;
}
@media (max-width: 880px) { .compare { grid-template-columns: 1fr; } }

.compare-panel {
  border-radius: var(--radius);
  padding: 32px;
}
.compare-panel.bad {
  background: #fff5f4;
  border: 1px solid #ffd5d1;
}
.compare-panel.good {
  background: #e8f5f1;
  border: 1px solid #b8e0d0;
}
.compare-panel h3 { display: flex; align-items: center; gap: 10px; }
.compare-panel .tag {
  display: inline-block;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.compare-panel.bad .tag { background: #ffd5d1; color: #b32424; }
.compare-panel.good .tag { background: #b8e0d0; color: var(--good); }
.compare-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.compare-list li {
  padding: 12px 0;
  display: flex; gap: 12px;
  border-top: 1px solid rgba(0,0,0,.06);
}
.compare-list li:first-child { border-top: 0; }
.compare-list li .icn {
  flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700;
  margin-top: 2px;
}
.compare-panel.bad .icn { background: #ffd5d1; color: #b32424; }
.compare-panel.good .icn { background: #b8e0d0; color: var(--good); }
.compare-list li strong { display: block; color: var(--ink); margin-bottom: 2px; }
.compare-list li span { color: var(--ink-soft); font-size: .95rem; }

/* ============================================================
   Timeline
   ============================================================ */

.timeline { position: relative; padding: 20px 0; }
.timeline::before {
  content: "";
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal), var(--coral));
  transform: translateX(-50%);
}
.tl-step {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 32px;
}
.tl-step .dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--paper);
  border: 3px solid var(--teal);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.tl-step .body {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
}
.tl-step .season {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--coral);
  font-weight: 700;
  margin-bottom: 4px;
}
.tl-step .body h4 { color: var(--navy); margin-bottom: 4px; text-transform: none; letter-spacing: 0; font-size: 1.05rem; }
.tl-step .body p { margin: 0; color: var(--ink-soft); font-size: .95rem; }
.tl-step.left .body { text-align: right; grid-column: 1; }
.tl-step.left .spacer { grid-column: 3; }
.tl-step.right .spacer { grid-column: 1; }
.tl-step.right .body { grid-column: 3; }
@media (max-width: 880px) {
  .timeline::before { left: 20px; }
  .tl-step { grid-template-columns: 40px 1fr; }
  .tl-step .dot { grid-column: 1; grid-row: 1; }
  .tl-step .body { grid-column: 2 !important; grid-row: 1; text-align: left !important; }
  .tl-step .spacer { display: none; }
}

/* ============================================================
   Calculator
   ============================================================ */

.calc-shell {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 880px) { .calc-shell { grid-template-columns: 1fr; padding: 28px; } }

.calc-shell h3 { color: #fff; margin-bottom: .25rem; }
.calc-shell .calc-sub { color: rgba(255,255,255,.7); margin-bottom: 1.5rem; font-size: .95rem; }
.calc-inputs label { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; opacity: .75; margin: 14px 0 6px; }
.calc-inputs input[type="number"] {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 1.15rem;
  font-family: inherit;
  font-weight: 600;
}
.calc-inputs input[type="number"]:focus {
  outline: 0;
  border-color: var(--gold);
  background: rgba(255,255,255,.1);
}
.calc-inputs input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  height: 6px;
  background: rgba(255,255,255,.15);
  border-radius: 999px;
  margin-top: 8px;
}
.calc-inputs input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  background: var(--coral);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,.3);
}
.calc-results {
  display: flex; flex-direction: column; justify-content: center;
}
.calc-result-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 14px;
}
.calc-result-card.feature {
  background: linear-gradient(135deg, rgba(244, 180, 0, .15), rgba(242, 92, 84, .12));
  border-color: var(--gold);
}
.calc-result-card .lbl {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  opacity: .7;
  margin-bottom: 6px;
}
.calc-result-card .val {
  font-size: 2.4rem;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}
.calc-result-card.feature .val { color: var(--gold); }
.calc-result-card .sub { font-size: .85rem; opacity: .65; margin-top: 4px; }

/* ============================================================
   Comparison table
   ============================================================ */

.cmp-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  font-size: .95rem;
}
.cmp-table th, .cmp-table td {
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.cmp-table th { background: var(--navy); color: #fff; font-weight: 600; letter-spacing: .02em; }
.cmp-table th.us, .cmp-table td.us { background: linear-gradient(180deg, var(--khaki-pale) 0%, #fff 100%); font-weight: 700; }
.cmp-table th.us { background: var(--khaki); color: var(--navy); }
.cmp-table td.lbl { text-align: left; font-weight: 600; color: var(--navy); }
.cmp-table tr:last-child td { border-bottom: 0; }
.cmp-table .yes { color: var(--good); font-weight: 700; }
.cmp-table .no { color: #b32424; font-weight: 700; }
.cmp-table .maybe { color: var(--ink-soft); }
@media (max-width: 720px) {
  .cmp-table { font-size: .82rem; }
  .cmp-table th, .cmp-table td { padding: 10px 8px; }
}

/* ============================================================
   FAQ accordion
   ============================================================ */

.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}
.faq summary {
  padding: 18px 20px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--teal);
  transition: transform .2s;
  flex-shrink: 0;
}
.faq details[open] summary::after { content: "−"; }
.faq details[open] summary { border-bottom: 1px solid var(--line); }
.faq .answer { padding: 16px 20px; color: var(--ink-soft); }

/* ============================================================
   Testimonials
   ============================================================ */

.quote-card {
  background: var(--paper);
  border-left: 4px solid var(--coral);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 0;
}
.quote-card blockquote { margin: 0 0 12px 0; font-style: italic; color: var(--ink); font-size: 1.02rem; line-height: 1.55; }
.quote-card cite {
  font-style: normal;
  font-weight: 700;
  color: var(--navy);
  font-size: .92rem;
  display: block;
}
.quote-card cite small { display: block; font-weight: 500; color: var(--ink-soft); font-size: .82rem; margin-top: 2px; }

/* ============================================================
   CTA banner / footer
   ============================================================ */

.cta-banner {
  background: linear-gradient(135deg, var(--coral) 0%, #e84a40 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-banner h2 { color: #fff; margin-bottom: .5rem; }
.cta-banner p { color: rgba(255,255,255,.92); font-size: 1.1rem; max-width: 620px; margin: 0 auto 2rem; }
.cta-banner .btn { background: #fff; color: var(--navy); }
.cta-banner .btn:hover { background: #f8f8f8; }
.cta-banner .secondary {
  margin-top: 16px;
  font-size: .9rem;
  color: rgba(255,255,255,.85);
}
.cta-banner .secondary a { color: #fff; text-decoration: underline; }

.deck-footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 60px 0 30px;
  text-align: center;
}
.deck-footer .brand { color: #fff; font-weight: 800; font-size: 1.1rem; margin-bottom: 8px; letter-spacing: -.01em; }
.deck-footer .links { margin: 16px 0; }
.deck-footer .links a { color: rgba(255,255,255,.7); margin: 0 12px; font-size: .9rem; }
.deck-footer .copyright { font-size: .82rem; margin-top: 24px; opacity: .55; }

/* ============================================================
   Scroll reveal animation
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }

/* ============================================================
   Admin dashboard
   ============================================================ */

.admin-shell {
  min-height: 100vh;
  background: var(--paper-2);
}
.admin-nav {
  background: var(--navy);
  color: #fff;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-nav .brand { font-weight: 800; }
.admin-main { max-width: 1300px; margin: 0 auto; padding: 32px 24px; }
.admin-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-bottom: 32px;
}
@media (max-width: 880px) { .admin-stats { grid-template-columns: repeat(2, 1fr); } }
.stat-tile {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}
.stat-tile .lbl { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); }
.stat-tile .val { font-size: 2rem; font-weight: 800; color: var(--navy); margin-top: 6px; }

.admin-toolbar { display: flex; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; align-items: center; }
.admin-toolbar input[type="text"] {
  flex: 1;
  min-width: 220px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: .95rem;
}

.lead-table {
  width: 100%;
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  border-collapse: collapse;
  font-size: .92rem;
}
.lead-table th {
  background: var(--paper-3);
  text-align: left;
  padding: 12px 14px;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 700;
}
.lead-table td {
  padding: 14px;
  border-top: 1px solid var(--line);
  vertical-align: top;
}
.lead-table td .who { font-weight: 600; color: var(--navy); }
.lead-table td .org { color: var(--ink-soft); font-size: .85rem; margin-top: 2px; }
.lead-table .pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.pill.live { background: #e6f5ee; color: var(--good); }
.pill.complete { background: #eef2f8; color: var(--ink-soft); }
.pill.stopped { background: #fee; color: #b32424; }
.lead-table .actions { display: flex; gap: 6px; flex-wrap: wrap; }
.lead-table .btn-sm { padding: 6px 10px; font-size: .78rem; }

/* ============================================================
   Utility
   ============================================================ */

.center { text-align: center; }
.spinner {
  width: 18px; height: 18px;
  border: 2.5px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .8s linear infinite;
  display: inline-block;
  vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hidden { display: none !important; }
