/* ============================================================
   TOKENS
   ============================================================ */
:root {
  /* Neutral grayscale (HSL, like cursor.com's --gray scale) */
  --gray-0: hsl(0, 0%, 100%);
  --gray-1: hsl(0, 0%, 99%);
  --gray-2: hsl(0, 0%, 97.3%);
  --gray-3: hsl(0, 0%, 95.1%);
  --gray-4: hsl(0, 0%, 93%);
  --gray-5: hsl(0, 0%, 90.9%);
  --gray-6: hsl(0, 0%, 88.7%);
  --gray-8: hsl(0, 0%, 78%);
  --gray-9: hsl(0, 0%, 56.1%);
  --gray-10: hsl(0, 0%, 52.3%);
  --gray-11: hsl(0, 0%, 43.5%);
  --gray-12: hsl(0, 0%, 9%);

  /* Semantic */
  --bg: var(--gray-0);
  --bg-alt: var(--gray-2);
  --bg-dark: #0a0a0a;
  --ink: var(--gray-12);
  --ink-2: hsl(0, 0%, 22%);
  --ink-3: var(--gray-11);
  --muted: var(--gray-10);
  --line: var(--gray-4);
  --line-2: var(--gray-3);

  --accent: #ff4404;
  --accent-deep: #e53d03;

  /* Type */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  /* Layout */
  --container: 1280px;
  --header-h: 64px;
}

/* ============================================================
   BASE
   ============================================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
  transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-sm  { height: 36px; padding: 0 14px; font-size: 13px; }
.btn-lg  { height: 52px; padding: 0 24px; font-size: 15px; }

.btn-primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn-primary:hover { background: #000; }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-secondary:hover { background: var(--gray-2); border-color: var(--gray-6); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--line-2);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.brand-mark {
  display: inline-block;
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--accent);
  position: relative;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 2px;
  background: #fff;
}
.brand-name { color: var(--ink); }

.nav-links {
  display: flex;
  gap: 28px;
  justify-self: center;
}
.nav-links a {
  font-size: 14px;
  color: var(--ink-3);
  font-weight: 500;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--ink); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-signin {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-3);
}
.nav-signin:hover { color: var(--ink); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 120px 0 56px;
  background: var(--bg);
}
.hero-inner {
  text-align: center;
}
.hero-h1 {
  font-family: var(--font-sans);
  font-size: clamp(36px, 5.2vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.035em;
  font-weight: 500;
  color: var(--ink);
  margin: 0 auto;
}
.hero-h1 .h-line {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(-14px);
  animation: hero-line-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-h1 .h-line:nth-child(1) { animation-delay: 0.10s; }
.hero-h1 .h-line:nth-child(2) { animation-delay: 0.40s; }
.hero-h1 .h-line:nth-child(3) { animation-delay: 0.70s; }
@keyframes hero-line-in {
  to { opacity: 1; transform: translateY(0); }
}
.hero-actions {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   FEATURE EXPLORER
   ============================================================ */
.explorer {
  padding: 0 0 56px;
  background: var(--bg);
}
.explorer-frame {
  background: var(--gray-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: clamp(16px, 1.8vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.explorer-tabs {
  display: flex;
  width: fit-content;
  margin: 0 auto 28px;
  padding: 4px;
  gap: 2px;
  background: var(--gray-3);
  border: 1px solid var(--line-2);
  border-radius: 999px;
}
.etab {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 10px 20px;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-3);
  cursor: pointer;
  border-radius: 999px;
  transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.etab:hover { color: var(--ink); }
.etab.is-active {
  background: var(--bg);
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(20,20,19,.06), 0 2px 6px rgba(20,20,19,.04);
}
.explorer-cols {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(16px, 1.8vw, 24px);
  align-items: stretch;
  flex: 1;
  min-height: 0;
}
.ei[hidden] { display: none; }

.explorer-aside {
  display: flex;
  flex-direction: column;
}
.explorer-aside .kicker {
  color: var(--accent);
  margin: 4px 0 12px;
  padding: 0 4px;
}

.explorer-icons-wrap {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 0 6px 0 0;
  margin-right: -6px;
  scrollbar-gutter: stable;
}
.explorer-icons-wrap::-webkit-scrollbar { width: 4px; }
.explorer-icons-wrap::-webkit-scrollbar-thumb {
  background: var(--gray-6);
  border-radius: 999px;
}
.explorer-icons-wrap::-webkit-scrollbar-thumb:hover { background: var(--gray-8); }
.explorer-icons-wrap::-webkit-scrollbar-track { background: transparent; }
.explorer-icons-wrap { scrollbar-width: thin; scrollbar-color: var(--gray-6) transparent; }

.explorer-icons {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.ei-group-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
  color: var(--accent);
  padding: 18px 12px 8px;
}
.ei-group-label:first-child { padding-top: 4px; }
.ei {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 10px 12px;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: background-color 0.12s ease, color 0.12s ease;
  font: inherit;
  text-align: left;
  width: 100%;
}
.ei:hover { background: rgba(20,20,19,.04); }
.ei.is-active { background: var(--bg); box-shadow: 0 1px 2px rgba(20,20,19,.04); }
.ei-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-10);
  transition: color 0.12s ease;
  flex-shrink: 0;
}
.ei-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ei:hover .ei-icon,
.ei.is-active .ei-icon { color: var(--ink); }
.ei-label {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.ei.is-active .ei-label { color: var(--ink); }

.explorer-main { min-width: 0; }
.explorer-canvas {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  height: 100%;
  min-height: 620px;
}
.orange-gradient {
  background:
    radial-gradient(ellipse 55% 50% at 18% 15%, rgba(255, 230, 190, 1) 0%, transparent 55%),
    radial-gradient(ellipse 45% 55% at 88% 82%, rgba(220, 95, 45, 0.6) 0%, transparent 55%),
    radial-gradient(ellipse 100% 95% at 60% 110%, rgba(15, 8, 4, 0.85) 0%, transparent 60%),
    linear-gradient(160deg, #e6b884 0%, #8a5538 45%, #1a0d06 100%);
}
.explorer-window {
  background: var(--bg);
  border-radius: var(--r-sm);
  border: 1px solid var(--line-2);
  box-shadow:
    0 22px 48px -18px rgba(0,0,0,.32),
    0 8px 20px -8px rgba(0,0,0,.18);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 480px;
}
.explorer-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--gray-2);
  border-bottom: 1px solid var(--line-2);
  flex-shrink: 0;
}
.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; background: var(--gray-5); }
.dot-r,
.dot-y,
.dot-g { background: var(--gray-5); }
.explorer-titlebar-text {
  margin-left: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  color: var(--muted);
}
.explorer-body {
  flex: 1;
  padding: 28px 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ---- Pitch layout (image left, sales copy right) ---- */
.pitch-eyebrow {
  display: inline-block;
  font-size: 11px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: -0.005em;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.pitch-row {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  min-height: 0;
  align-items: start;
}
.pitch-visual {
  background: transparent;
  border: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  width: 100%;
}
.pitch-visual > * {
  width: 100%;
  max-height: 100%;
}
.pitch-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}
.pitch-title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 12px;
}
.pitch-body {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.55;
  overflow-y: auto;
}
.pitch-body p { margin: 0 0 10px; }
.pitch-body p:last-child { margin-bottom: 0; }
.pitch-body strong {
  color: var(--ink);
  font-weight: 600;
}
.pitch-body .pitch-aside {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line-2);
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}

/* Two floating windows on the gradient canvas */
.vwin {
  position: absolute;
  background: var(--bg);
  border: 1px solid rgba(20, 20, 19, 0.08);
  border-radius: 12px;
  box-shadow:
    0 24px 48px -16px rgba(0, 0, 0, 0.35),
    0 10px 22px -8px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.vwin--big {
  top: 7%;
  left: 5%;
  width: 70%;
  height: 70%;
  z-index: 1;
}
.vwin--big-phone {
  top: 6%;
  left: 6%;
  width: 38%;
  height: 84%;
}
.vwin--small {
  bottom: 7%;
  right: 5%;
  width: 42%;
  height: 38%;
  z-index: 2;
}
.vwin-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--gray-2);
  border-bottom: 1px solid var(--line-2);
  flex-shrink: 0;
  cursor: grab;
  user-select: none;
}
.vwin-bar:active { cursor: grabbing; }
.vwin-bar .dot { width: 9px; height: 9px; }
.vwin-bar .vwin-title {
  margin-left: 8px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  color: var(--muted);
}
.vwin-body {
  flex: 1;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  overflow: hidden;
}
.vwin-body--big {
  padding: 28px 32px;
  overflow: hidden;
}
.vwin-body--phone {
  padding: 0;
  overflow: hidden;
}
.vwin-body--small {
  padding: 22px 24px;
}
.bare-ui {
  width: 100%;
  height: 100%;
  padding: 40px 48px;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
}

/* AI Pick Routes — pick run UI */
.pick {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
}
.pick-head { display: flex; flex-direction: column; gap: 10px; }
.pick-head-row {
  display: flex; align-items: center; justify-content: space-between;
}
.pick-title {
  font-size: 14px; font-weight: 600; color: var(--ink);
  letter-spacing: -0.005em;
}
.pick-meta {
  font-size: 12px; color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.pick-progress {
  height: 4px; background: var(--gray-3); border-radius: 999px; overflow: hidden;
}
.pick-progress-fill {
  height: 100%; background: var(--accent); border-radius: 999px;
}

.pick-card {
  position: relative;
  background: var(--gray-2);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pick-card-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--accent);
}
.pick-card-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}
.pick-card-row {
  display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 16px;
}
.pick-bin-label {
  font-size: 11px; color: var(--muted); margin-bottom: 4px;
}
.pick-bin {
  font-size: 32px; font-weight: 600; letter-spacing: -0.03em; line-height: 1;
  color: var(--ink); font-variant-numeric: tabular-nums;
  margin-bottom: 8px;
}
.pick-item {
  font-size: 13px; color: var(--ink-2);
}
.pick-sku {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  margin-left: 6px;
}
.pick-qty {
  text-align: right;
}
.pick-qty-num {
  font-size: 32px; font-weight: 600; line-height: 1; color: var(--accent);
  font-variant-numeric: tabular-nums; letter-spacing: -0.02em;
}
.pick-qty-label {
  font-size: 11px; color: var(--muted); margin-top: 4px;
}
.pick-btn {
  background: var(--accent); color: #fff;
  font-family: inherit; font-size: 13px; font-weight: 600;
  padding: 10px 14px;
  border: 0; border-radius: 8px; cursor: pointer;
  width: 100%;
  transition: background 0.15s ease;
}
.pick-btn:hover { background: var(--accent-deep); }

.pick-upcoming {
  display: flex; flex-direction: column;
}
.pick-up-head {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 8px;
}
.pick-route-chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 8px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  color: var(--ink-2); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0; text-transform: none;
  background: var(--bg);
}
.pick-route-chip svg { color: var(--accent); }

.pick-up-row {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--line-2);
  font-size: 13px;
}
.pick-up-bin {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11.5px; font-weight: 500;
  color: var(--ink);
  background: var(--gray-2);
  padding: 3px 7px;
  border-radius: 5px;
}
.pick-up-name { color: var(--ink-2); }
.pick-up-qty {
  color: var(--muted); font-variant-numeric: tabular-nums;
  font-size: 12px;
}
.vwin-h {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 14px;
}
.vwin-desc {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.55;
}
.vwin-desc p { margin: 0 0 12px; }
.vwin-desc p:last-child { margin-bottom: 0; }
.vwin-desc strong { color: var(--ink); font-weight: 600; }
.vwin-desc .pitch-aside {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line-2);
  font-size: 12.5px;
  font-style: italic;
  color: var(--muted);
}

/* Stat content inside small window */
.vstat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  height: 100%;
}
.vstat-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 4px;
}
.vstat-num {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 10px;
}
.vstat-unit {
  font-size: 0.42em;
  color: var(--accent);
  font-weight: 500;
}
.vstat-label {
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.5;
  margin: 0;
}

/* Tiny UI primitives for big window content */
.tui-eyebrow {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 6px;
}
.tui-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 5px;
  font-size: 11px;
  background: var(--gray-2);
}
.tui-row + .tui-row { margin-top: 4px; }
.tui-row--best { background: var(--accent); color: #fff; }
.tui-row--best .tui-muted { color: rgba(255,255,255,0.85); }
.tui-row--best .tui-strike { color: rgba(255,255,255,0.65); }
.tui-mono { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.tui-muted { color: var(--muted); font-size: 10px; }
.tui-spacer { flex: 1; }
.tui-pill {
  font-size: 9px;
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
  color: #fff;
}
.tui-badge {
  font-size: 9px;
  padding: 2px 5px;
  border-radius: 4px;
  background: var(--accent);
  color: #fff;
  font-weight: 500;
}
.tui-list { display: flex; flex-direction: column; gap: 4px; }
.tui-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
}
.tui-chip {
  font-size: 9px;
  padding: 5px 4px;
  background: var(--gray-2);
  border-radius: 4px;
  text-align: center;
  color: var(--ink-3);
  font-weight: 500;
}
.tui-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: var(--ink);
}
.tui-dot-green { width: 6px; height: 6px; border-radius: 50%; background: #15803d; }
.tui-strike { color: var(--muted); text-decoration: line-through; }
.tui-accent { color: var(--accent); font-weight: 500; }
.tui-big-num {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
}
.tui-btn {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 500;
}
.tui-svg-shelves rect { fill: #f0f0f0; stroke: none; }
.tui-svg-route { fill: none; stroke: var(--ink); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.tui-svg-pt circle { fill: var(--accent); }
.tui-svg-pt text { fill: #fff; font-size: 8px; font-weight: 600; text-anchor: middle; font-family: var(--font-sans); }
.tui-svg-start { fill: var(--ink); }

/* Cards / rows */
.mock-card {
  background: var(--gray-2);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}
.mock-card + .mock-card { margin-top: 8px; }
.mock-card-id {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: var(--muted);
  font-size: 12px;
}
.mock-card-name { font-weight: 500; color: var(--ink); }
.mock-card-meta { margin-left: auto; color: var(--ink-3); font-size: 12px; }
.mock-card-tag {
  background: var(--ink);
  color: #fff;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
}
.mock-card--best { border-color: var(--ink); background: var(--bg); }

/* AI Pick Routes */
.pick-stage {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pick-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.pick-eyebrow {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  color: var(--muted);
}
.pick-eta {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.pick-map {
  width: 100%;
  height: auto;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 8px;
  padding: 6px 4px;
}
.pick-shelves rect {
  fill: #fff;
  stroke: var(--line-2);
  stroke-width: 1;
}
.pick-route {
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pick-points circle {
  fill: var(--accent);
}
.pick-points text {
  fill: #fff;
  font-size: 9px;
  font-weight: 600;
  text-anchor: middle;
  font-family: var(--font-sans);
}
.pick-start { fill: var(--ink); }

.pick-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  overflow: hidden;
}
.pick-list li {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 8px 14px;
  font-size: 13px;
  border-bottom: 1px solid var(--line-2);
}
.pick-list li:last-child { border-bottom: 0; }
.pick-li-bay {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
}
.pick-li-sku {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: var(--ink);
  font-size: 12px;
}
.pick-li-qty {
  color: var(--ink-3);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.pick-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--gray-2);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  font-size: 13px;
}
.pick-footer-label { color: var(--ink-3); }
.pick-footer-val { color: var(--accent); font-weight: 600; }
.pick-strike { color: var(--muted); text-decoration: line-through; }

/* Scan */
.mock-scan {
  background: var(--gray-2);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.mock-bars {
  display: flex;
  gap: 2px;
  align-items: center;
}
.mock-bars span {
  display: inline-block;
  width: 3px;
  background: var(--ink);
  border-radius: 1px;
}
.mock-check {
  margin-left: auto;
  color: #15803d;
  font-size: 18px;
  font-weight: 600;
}

/* Merge */
.mock-merge {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
}
.mock-stack { display: flex; flex-direction: column; gap: 6px; }
.mock-merge-arrow {
  font-size: 18px;
  color: var(--muted);
  text-align: center;
}

/* Status banner */
.mock-banner {
  background: var(--gray-2);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 16px 18px;
  margin-top: 10px;
}
.mock-banner-h {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mock-banner-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: #15803d;
  display: inline-block;
}
.mock-banner-text { font-size: 13px; color: var(--ink-3); line-height: 1.5; }

/* Bar chart */
.mock-bars-chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 64px;
  margin: 10px 0 14px;
}
.mock-bars-chart span {
  flex: 1;
  background: var(--ink);
  border-radius: 4px 4px 0 0;
  opacity: 0.75;
}
.mock-bars-chart span:last-child { opacity: 1; background: var(--accent); }

/* Receipt */
.mock-receipt {
  background: var(--gray-2);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 14px 16px;
}
.mock-row-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding: 6px 0;
}
.mock-row-flex + .mock-row-flex { border-top: 1px solid var(--line-2); }
.mock-row-flex .label { color: var(--ink-3); }
.mock-row-flex .val { color: var(--ink); font-weight: 500; font-variant-numeric: tabular-nums; }
.mock-row-flex .val-strike { color: var(--muted); text-decoration: line-through; }

/* Address suggest */
.mock-addr {
  background: var(--gray-2);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 13px;
}
.mock-addr-bad { color: var(--muted); text-decoration: line-through; }
.mock-addr-fix { color: var(--ink); font-weight: 500; margin-top: 6px; }
.mock-addr-chip {
  display: inline-block;
  margin-left: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 999px;
}

/* Channels */
.mock-channels {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}
.mock-channel {
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  padding: 14px 4px;
  background: var(--gray-2);
  border: 1px solid var(--line-2);
  border-radius: 8px;
  color: var(--ink);
}

/* Bulk counter */
.mock-bulk {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  background: var(--gray-2);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 16px 18px;
}
.mock-bulk-num {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
}
.mock-bulk-sub { font-size: 12px; color: var(--ink-3); margin-top: 4px; }
.mock-bulk-btn {
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 500;
}

/* Profile card */
.mock-profile {
  background: var(--gray-2);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  gap: 14px;
}
.mock-avatar {
  width: 40px; height: 40px;
  background: var(--gray-4);
  border-radius: 999px;
  flex-shrink: 0;
}
.mock-profile-name { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.mock-profile-meta { font-size: 12px; color: var(--ink-3); }
.mock-stats-row { display: flex; gap: 18px; margin-top: 10px; }
.mock-stat-item { font-size: 12px; }
.mock-stat-item strong { display: block; font-size: 16px; color: var(--ink); margin-bottom: 2px; }
.mock-stat-item span { color: var(--muted); }

/* Insight bubble */
.mock-insight {
  border: 1px solid var(--line-2);
  background: var(--gray-2);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.5;
}
.mock-insight em {
  display: block;
  font-style: normal;
  font-size: 11px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 4px;
  letter-spacing: 0;
}

/* Freight */
.mock-freight {
  background: var(--gray-2);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.mock-freight-cell .label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.mock-freight-cell .val { font-size: 14px; color: var(--ink); font-weight: 500; }

/* ============================================================
   LOGOS
   ============================================================ */
.logos {
  padding: 32px 0 48px;
  background: var(--bg);
}
.logos-eyebrow {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 36px;
  font-weight: 500;
}
.logos-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
}
.logo-cell {
  background: var(--gray-2);
  border-radius: 12px;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 18px;
  transition: background-color 0.15s ease;
}
.logo-cell:hover { background: var(--gray-3); }
.logo-img {
  max-width: 100%;
  max-height: 22px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0);
  opacity: 0.85;
}
img[src*="liquid-death"] { max-height: 60px; }
img[src*="summer-fridays"] { max-height: 44px; }
img[src*="just-ingredients"] { max-height: 38px; }

/* ============================================================
   FEATURE SECTIONS
   ============================================================ */
.feature {
  padding: 88px 0;
  background: var(--bg);
}
.feature--alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
.feature-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 72px;
}
.kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.005em;
  margin-bottom: 20px;
}
.feature-h2 {
  font-family: var(--font-sans);
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: var(--ink);
}
.feature-sub {
  margin-top: 22px;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-3);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   CALCULATOR CARD
   ============================================================ */
.calc-card {
  max-width: 620px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--r-xl);
  padding: 36px clamp(24px, 3vw, 40px) 28px;
  box-shadow: 0 32px 80px -40px rgba(20, 20, 19, 0.15);
}

.calc-result {
  text-align: center;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-2);
  margin-bottom: 40px;
}
.calc-result-eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 16px;
}
.calc-result-number {
  font-size: clamp(44px, 5.6vw, 72px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  margin-bottom: 14px;
}
.calc-result-pct {
  font-size: 16px;
  color: var(--ink-3);
}
.calc-result-pct #calcPct {
  color: var(--accent);
  font-weight: 600;
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}
.calc-row-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}
.calc-row-label {
  font-size: 14px;
  color: var(--ink-3);
  font-weight: 500;
}
.calc-row-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--gray-4);
  border-radius: 999px;
  outline: none;
  cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--ink);
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(20, 20, 19, 0.18);
  cursor: grab;
  transition: transform 0.12s ease;
}
.calc-slider::-webkit-slider-thumb:active { transform: scale(1.12); cursor: grabbing; }
.calc-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--ink);
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(20, 20, 19, 0.18);
  cursor: grab;
}

.calc-breakdown {
  display: flex;
  flex-direction: column;
  background: var(--gray-2);
  border-radius: var(--r-md);
  margin-bottom: 24px;
}
.calc-bd-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--line-2);
}
.calc-bd-row:last-child { border-bottom: 0; }
.calc-bd-label { color: var(--ink-3); }
.calc-bd-val {
  font-weight: 600;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.calc-bd-val-soft { color: var(--muted); font-weight: 500; }

.calc-foot {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
  max-width: 560px;
  margin: 0 auto;
}
.calc-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

/* ============================================================
   CARDS (3-up grid)
   ============================================================ */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 44px 36px 40px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.card:hover {
  border-color: var(--line);
  transform: translateY(-2px);
}
.card-num {
  font-family: var(--font-sans);
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 24px;
}
.card-num-soft {
  color: var(--muted);
  font-size: 0.45em;
  font-weight: 500;
  letter-spacing: 0;
  margin-left: 4px;
}
.card-h {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.012em;
  margin-bottom: 12px;
  color: var(--ink);
}
.card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-3);
}

.card--quiet {
  background: var(--bg);
  padding: 56px 32px;
  text-align: center;
}
.card-stat {
  font-family: var(--font-sans);
  font-size: clamp(40px, 4.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 14px;
}
.card-stat-label {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.5;
}

/* ============================================================
   STATEMENT SECTION
   ============================================================ */
.statement {
  padding: 144px 0;
  background: var(--bg);
  border-top: 1px solid var(--line-2);
}
.statement-inner {
  text-align: center;
}
.statement-h {
  font-family: var(--font-sans);
  font-size: clamp(36px, 5.2vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 500;
  color: var(--ink);
  max-width: 920px;
  margin: 0 auto;
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  padding: 160px 0;
  background: var(--bg-dark);
  color: #fff;
}
.cta-inner {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.cta-h {
  font-family: var(--font-sans);
  font-size: clamp(40px, 5.6vw, 80px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
}
.cta-sub {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 36px;
}
.cta-actions {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta .btn-primary {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.cta .btn-primary:hover { background: var(--gray-3); }
.cta .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}
.cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg);
  padding: 80px 0 32px;
  border-top: 1px solid var(--line-2);
}
.footer-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  margin-bottom: 80px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.brand--footer { font-size: 16px; }
.footer-tag {
  font-size: 14px;
  color: var(--muted);
  max-width: 240px;
  line-height: 1.5;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 6px;
}
.footer-col a {
  font-size: 14px;
  color: var(--ink-3);
  transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  font-size: 13px;
  color: var(--muted);
  padding-top: 24px;
  border-top: 1px solid var(--line-2);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .logos-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-inner { padding: 0 20px; }

  /* Hero: let lines wrap naturally on mobile */
  .hero { padding: 56px 0 32px; }
  .hero-h1 { font-size: clamp(30px, 8.5vw, 44px); line-height: 1.08; }
  .hero-h1 .h-line {
    white-space: normal;
    width: auto;
    max-width: 100%;
  }

  /* Pill category tabs */
  .explorer-tabs { margin-bottom: 20px; padding: 3px; gap: 0; }
  .etab { padding: 8px 14px; font-size: 13px; }

  /* Explorer frame */
  .explorer-frame { padding: 16px; border-radius: var(--r-md); }
  .explorer-cols {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Explorer aside: horizontal scrollable pill strip */
  .explorer-aside { display: block; }
  .explorer-icons-wrap {
    flex: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 4px;
    margin-right: 0;
    scrollbar-gutter: auto;
  }
  .explorer-icons-wrap::-webkit-scrollbar { height: 4px; }
  .explorer-icons {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 6px;
    min-width: min-content;
    padding-bottom: 4px;
  }
  .ei {
    flex: 0 0 auto;
    width: auto;
    flex-direction: row;
    padding: 8px 14px;
    border: 1px solid var(--line-2);
    border-radius: 999px;
    background: var(--bg);
    box-shadow: none;
    white-space: nowrap;
  }
  .ei .ei-label { font-size: 12px; }
  .ei.is-active { border-color: var(--ink); box-shadow: none; }
  .ei .ei-icon { width: 16px; height: 16px; }
  .ei-icon svg { width: 14px; height: 14px; }

  /* Canvas: stack the two windows vertically instead of absolute */
  .explorer-canvas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 14px;
    min-height: auto;
    height: auto;
  }
  .vwin {
    position: static;
    width: 100%;
    height: auto;
  }
  .vwin--big {
    width: 100%;
    height: 320px;
  }
  .vwin--big-phone {
    width: 100%;
    max-width: 320px;
    height: 460px;
    margin: 0 auto;
  }
  .vwin--small {
    width: 100%;
    height: auto;
  }
  .vwin-body--big { padding: 20px 22px; }
  .vwin-body--small { padding: 16px 18px; }
  .vwin-h { font-size: 20px; }
  .vstat-num { font-size: 28px; }

  /* Sections */
  .feature, .statement { padding: 72px 0; }
  .cta { padding: 96px 0; }
  .save, .proof { padding: 80px 0; }
  .cards-3 { grid-template-columns: 1fr; }
  .logos { padding: 24px 0 40px; }
  .logos-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .logo-cell { height: 88px; padding: 14px 16px; border-radius: 10px; }
  .logo-img { max-height: 28px; }
  img[src*="liquid-death"] { max-height: 44px; }
  img[src*="summer-fridays"] { max-height: 36px; }

  /* Calculator */
  .calc-card { padding: 28px 22px 22px; max-width: 100%; }
  .calc-result-number { font-size: clamp(36px, 11vw, 56px); }

  /* Feature heads */
  .feature-h2 { font-size: clamp(26px, 6vw, 40px); }
  .feature-sub { font-size: 16px; }
  .statement-h { font-size: clamp(30px, 7.5vw, 48px); }
  .cta-h { font-size: clamp(32px, 8vw, 56px); }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 40px; margin-bottom: 56px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .logos-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-actions { flex-direction: column; align-items: stretch; }
}


/* Dark mode intentionally disabled — site is always served in light mode. */

/* ============================================================
   ENZUZO COOKIE BANNER — themed to match site
   Broadened selectors so it catches any Enzuzo naming variation
   (older .enzuzo-* classes, newer .ez-* / [id^="ez-"], etc.).
   ============================================================ */

/* Typography on every Enzuzo element */
.enzuzo-cookiebanner-container *,
[class*="enzuzo"] *,
[id^="ez-cookie"] *,
[id^="ez-banner"] * {
  font-family: var(--font-sans) !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
}

/* Override Enzuzo's CSS variables wherever the root sits */
#ez-cookie-notification,
[id^="ez-cookie"],
[id^="ez-banner"],
.enzuzo-cookiebanner-container {
  --ez-banner-background-color: var(--bg) !important;
  --ez-banner-border-color: var(--line-2) !important;
  --ez-banner-text-color: var(--ink) !important;
  --ez-banner-link-color: var(--ink-3) !important;
  --ez-banner-allow-all-background-color: var(--accent) !important;
  --ez-banner-allow-all-background-color-hover: var(--accent-deep) !important;
  --ez-banner-allow-all-text-color: #ffffff !important;
  --ez-banner-allow-all-border-color: transparent !important;
  --ez-banner-decline-background-color: var(--gray-2) !important;
  --ez-banner-decline-background-color-hover: var(--gray-3) !important;
  --ez-banner-decline-text-color: var(--ink) !important;
  --ez-banner-decline-border-color: var(--line-2) !important;
}

/* Banner container — direct visual styling (don't rely on Enzuzo vars alone) */
.enzuzo-cookiebanner-container,
#ez-cookie-notification,
[id^="ez-cookie"][role="dialog"],
[id^="ez-banner"] {
  background: var(--bg) !important;
  color: var(--ink) !important;
  border: 1px solid var(--line-2) !important;
  border-radius: var(--r-md) !important;
  padding: 16px !important;
  box-shadow: 0 8px 24px -4px rgba(20, 20, 19, 0.12) !important;
  font-family: var(--font-sans) !important;
}

/* Accept All — orange */
#ez-cookie-notification__accept,
[id*="ez-cookie"][id*="accept"],
[class*="enzuzo"] [class*="accept"],
button[class*="allow-all"],
button[class*="acceptAll"] {
  background: var(--accent) !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: var(--r-sm) !important;
  padding: 10px 18px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: background-color 0.15s ease !important;
}
#ez-cookie-notification__accept:hover,
[id*="ez-cookie"][id*="accept"]:hover,
[class*="enzuzo"] [class*="accept"]:hover,
button[class*="allow-all"]:hover,
button[class*="acceptAll"]:hover {
  background: var(--accent-deep) !important;
}

/* Decline — gray secondary */
#ez-cookie-notification__decline,
[id*="ez-cookie"][id*="decline"],
[class*="enzuzo"] [class*="decline"],
button[class*="declineAll"] {
  background: var(--gray-2) !important;
  color: var(--ink) !important;
  border: 1px solid var(--line-2) !important;
  border-radius: var(--r-sm) !important;
  padding: 10px 18px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: background-color 0.15s ease !important;
}
#ez-cookie-notification__decline:hover,
[id*="ez-cookie"][id*="decline"]:hover,
[class*="enzuzo"] [class*="decline"]:hover,
button[class*="declineAll"]:hover {
  background: var(--gray-3) !important;
}

/* "Manage Cookies" — plain underlined link, never a button */
#notificationManagerLink,
[id*="notificationManagerLink"],
[class*="manage-cookies"],
[class*="manageCookies"] {
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  color: var(--ink-3) !important;
  text-decoration: underline !important;
  font-weight: 500 !important;
}

/* Mobile: action buttons side-by-side, Manage Cookies link below */
@media only screen and (max-width: 480px) {
  .enzuzo-notification-buttons,
  [class*="enzuzo"] [class*="notification-buttons"],
  [class*="enzuzo"] [class*="buttons"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }
  #notificationManagerLink,
  [id*="notificationManagerLink"] {
    order: 2 !important;
    align-self: center !important;
  }
  .enzuzo-cookieButtonWrap,
  [class*="enzuzo"] [class*="cookieButtonWrap"],
  [class*="enzuzo"] [class*="ButtonWrap"] {
    order: 1 !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 8px !important;
    width: 100% !important;
  }
  #ez-cookie-notification__decline,
  #ez-cookie-notification__accept,
  [id*="ez-cookie"][id*="decline"],
  [id*="ez-cookie"][id*="accept"] {
    flex: 1 !important;
  }
}

