/* ============================================================
   SimplePlay2000 — Marketing site
   Dark theme matching the app's identity. Cyan / amber / purple
   accents = the three core source kinds (cues / annc / tracks).
   Yellow + red used sparingly for selection / warning.
   ============================================================ */

:root {
  --bg-app:        #0f1014;
  --bg-surface:    #14151a;
  --bg-deep:       #08080b;
  --bg-card:       #1a1c22;
  --border:        rgba(255, 255, 255, 0.08);
  --border-soft:   rgba(255, 255, 255, 0.04);

  --white:         #ffffff;
  --white-neutral: #e5e7eb;
  --gray:          #9ca3af;
  --gray-dim:      #6b7280;

  --cyan:          #22d3ee;
  --cyan-rgb:      34, 211, 238;
  --amber:         #f59e0b;
  --amber-rgb:     245, 158, 11;
  --purple:        #a78bfa;
  --purple-rgb:    167, 139, 250;
  --yellow:        #f0ff00;
  --green:         #22c55e;
  --red:           #ef4444;
  --lime:          #84cc16;   /* Cue "playing" drain — ported from app */

  --max-w:         1180px;
  --rad:           10px;
  --rad-sm:        6px;
  --shadow:        0 12px 40px rgba(0, 0, 0, 0.55);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-app);
  color: var(--white-neutral);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

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

code {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 1px 6px;
  font-size: 0.9em;
  color: var(--cyan);
}

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  background: rgba(15, 16, 20, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
}
.brand:hover { text-decoration: none; }
/* Brand mark — <img> pointing at assets/SP2kIcon1024x1024.png. The
   PNG carries its OWN rounded corners, cyan border, and glow halo —
   so no CSS border-radius (would clip the cyan border) and no box-
   shadow (would tint-mix with the cyan border on the edges). Just
   size it. Per Pat 2026-05-19. */
.brand-mark {
  display: inline-block;
  width: 36px;
  height: 36px;
  vertical-align: middle;
  flex-shrink: 0;
}
.brand-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.15;
}
.brand-name .wm-cyan  { color: var(--cyan); }
.brand-name .wm-amber { color: var(--amber); }
/* Nav brand stack — wordmark over tagline, sitting next to the
   icon. Footer brand uses its own block, so this styling is scoped
   to the .brand-text wrapper which only appears in the nav. */
.brand-text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.brand-tagline {
  font-size: 11px;
  color: var(--amber);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.2;
  white-space: nowrap;
}
@media (max-width: 540px) {
  /* On narrow phones, drop the tagline to keep the nav compact. */
  .brand-tagline { display: none; }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-links a {
  color: var(--gray);
  font-size: 14px;
  font-weight: 500;
}
.nav-links a:hover {
  color: var(--white);
  text-decoration: none;
}
/* Language pills — EN / ES toggle in the nav. Two separate pills (not
   a rotating one). The active language gets a cyan border + tint; the
   inactive pill stays muted gray. Visual only for now — translation
   wiring lives in script.js (placeholder). */
.lang-pills {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 4px;
}
.lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: transparent;
  border: 1px solid var(--gray-dim);
  border-radius: 14px;
  color: var(--gray);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease, border-color 0.12s ease;
}
.lang-pill:hover {
  border-color: var(--white-neutral);
  color: var(--white-neutral);
}
.lang-pill.is-active {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.08);
}
.lang-flag {
  width: 16px;
  height: 11px;
  display: block;
  border-radius: 1px;
  box-shadow: 0 0 0 0.5px rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.nav-cta {
  background: var(--cyan);
  color: #0f1014 !important;
  padding: 8px 18px;
  border-radius: 18px;
  font-weight: 700;
  box-shadow: 0 0 10px rgba(var(--cyan-rgb), 0.4);
}
.nav-cta:hover { filter: brightness(1.1); text-decoration: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 32px 80px;
  text-align: center;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
}
.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(34px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  text-shadow: 0 0 32px rgba(var(--cyan-rgb), 0.18);
}
.hero-sub {
  margin: 0 auto 36px;
  max-width: 680px;
  font-size: clamp(16px, 2vw, 19px);
  color: var(--gray);
  line-height: 1.55;
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.hero-fine {
  margin: 0;
  font-size: 13px;
  color: var(--gray-dim);
}
/* Soft glow accents */
.hero-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.20;
  z-index: 1;
  pointer-events: none;
}
.hero-glow.cyan   { background: var(--cyan);   top: -120px; left: 10%; }
.hero-glow.amber  { background: var(--amber);  top: 40px;   right: 8%; }
.hero-glow.purple { background: var(--purple); bottom: -120px; left: 35%; }

/* ============================================================
   SHARED: CTA buttons
   ============================================================ */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 26px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-decoration: none !important;
  transition: filter 120ms ease, transform 120ms ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.cta:hover { filter: brightness(1.12); transform: translateY(-1px); text-decoration: none; }
.cta.primary {
  background: var(--cyan);
  color: #0f1014;
  box-shadow: 0 8px 24px rgba(var(--cyan-rgb), 0.35);
}
.cta.secondary {
  background: transparent;
  color: var(--white-neutral);
  border: 1.5px solid var(--border);
}
.cta.secondary:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--cyan);
  color: var(--cyan);
}
.cta-big {
  padding: 18px 28px;
  min-width: 280px;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
}
.cta-small {
  padding: 11px 18px;
  font-size: 13px;
}
.cta-icon { font-size: 22px; line-height: 1; }
.cta-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
}
.cta-line-1 { font-size: 16px; font-weight: 700; }
.cta-line-2 { font-size: 12px; font-weight: 500; opacity: 0.7; letter-spacing: 0.02em; }
.cta.disabled, .cta[aria-disabled="true"] {
  opacity: 0.55;
  pointer-events: none;
}

/* ============================================================
   SHARED: Section scaffolding
   ============================================================ */
.section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 100px 32px;
}
.section-title {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--white);
}
.section-sub {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
  color: var(--gray);
  font-size: 17px;
  line-height: 1.55;
}

/* ============================================================
   DEMO SECTION — real cue-button styles ported from the app
   ============================================================ */

.section-demo { position: relative; }

.demo-formats {
  margin: -6px 0 18px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gray-dim);
  font-variant-numeric: tabular-nums;
  text-transform: uppercase;
}

.demo-stage {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 6px;
  max-width: 100%;
}

/* Mini "files" panel — draggable pills the user can drop onto a cue. */
.demo-files {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 18px;
  padding: 12px 14px;
  background: var(--bg-deep);
  border: 1px dashed var(--border);
  border-radius: 8px;
}
.demo-files-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-dim);
  margin-right: 6px;
}
.demo-file {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: var(--bg-surface);
  border: 1px solid var(--cyan);
  border-radius: 6px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 500;
  cursor: grab;
  user-select: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}
.demo-file:hover {
  border-color: var(--white-neutral);
  box-shadow: 0 0 0 1px var(--cyan), 0 4px 14px rgba(34, 211, 238, 0.18);
  transform: translateY(-1px);
}
.demo-file:active { cursor: grabbing; }
.demo-file.dragging-source { opacity: 0.4; }
.demo-file-icon { font-size: 14px; line-height: 1; display: inline-flex; align-items: center; }
.demo-file-name { font-variant-numeric: tabular-nums; }

/* SOLO / MIX mode pills + Reset cluster — pushed to the right edge of
   the files panel via `margin-left: auto` on the first pill (SOLO).
   Styling lifted byte-for-byte from the real app's .solo-pill / .mix-pill
   rules (styles.css line ~3030 in Simpleplay2000): padding 5px 16px,
   border-radius 12px, font-size 10px, letter-spacing 0.15em. Hex values
   spelled out (not via CSS vars) so the website matches even though it
   doesn't share the app's --pink / --lime / --gray / --bg-app vars.
   Per Pat 2026-05-24: "why dont they look like th eapp - YOU HAV ETHE
   CODE IN THE APP". */
.demo-mode-pill {
  padding: 5px 16px;
  background: transparent;
  border: 1px solid #6b6e7a;        /* app's --gray */
  border-radius: 12px;
  color: #6b6e7a;                   /* app's --gray */
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease, border-color 0.12s ease;
}
/* Tight wrapper for SOLO + MIX — matches the app's .solo-mix-toggle
   (display: flex; gap: 4px). The wrapper carries the margin-left:auto
   so the SOLO/MIX pair + Reset cluster sits right-aligned in the
   demo-files row. */
.demo-mode-toggle {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.demo-mode-pill:hover {
  border-color: #f1f5f9;             /* white-neutral */
  color: #f1f5f9;
}
/* Active states — exact match to the app:
   .solo-pill.active { background: var(--pink); ... color: var(--bg-app); }
   .mix-pill.active  { background: var(--lime); ... color: var(--bg-app); } */
.demo-mode-pill.is-active.demo-mode-solo {
  background: #ec4899;               /* app's --pink */
  border-color: #ec4899;
  color: #14151a;                    /* app's --bg-app */
}
.demo-mode-pill.is-active.demo-mode-mix {
  background: #84cc16;               /* app's --lime (NOT a generic green) */
  border-color: #84cc16;
  color: #14151a;
}

/* Reset button — sits at the very right of the cluster. No
   margin-left:auto anymore (moved to #demo-mode-solo so the SOLO/MIX/
   Reset trio clusters together). */
.demo-reset {
  background: transparent;
  border: 1px solid var(--gray-dim);
  border-radius: 6px;
  color: var(--gray);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease, border-color 0.12s ease;
}
.demo-reset:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.06);
}
.demo-reset:active {
  background: rgba(34, 211, 238, 0.12);
}

/* ---------- The "C" common-transport row ----------
   Sits beneath the cue grid as two dark boxes side-by-side:
   - LEFT box (blurb): explains the C flow
   - RIGHT box (launcher): TRY C → label + the round C button
   Click each cue's small (c) badge to load it into the C set, then
   press the big C button (or keyboard C) to fire everything loaded
   at the same time. Mirrors the real app's C button. */
.demo-c-row {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.demo-c-blurb-box {
  flex: 1 1 auto;
  min-width: 240px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  background: var(--bg-deep);
  border: 1px dashed var(--border);
  border-radius: 10px;
  font-size: 18px;      /* was 12px — bumped 1.5x per Pat 2026-05-24 */
  line-height: 1.5;
  color: var(--white-neutral);
  letter-spacing: 0.01em;
}
.demo-c-launcher-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: #000;
  border: 1px dashed var(--border);
  border-radius: 10px;
}
.demo-c-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 27px;          /* was 18 — 1.5x per Pat 2026-05-24 */
  height: 27px;
  border-radius: 50%;
  border: 1.5px solid var(--cyan);
  color: var(--cyan);
  font-size: 15px;      /* was 10 — 1.5x per Pat 2026-05-24 */
  font-weight: 800;
  letter-spacing: 0;
  background: var(--bg-deep);
  vertical-align: middle;
  /* Horizontal breathing room so the badges don't crowd the surrounding
     text. Per Pat 2026-05-24: "create space around the c's". */
  margin: 0 4px;
}
/* Gray variant — matches the per-cue (c) badge in its unarmed/neutral
   state. Used in the blurb when describing the small (c) on each cue. */
.demo-c-inline.is-gray {
  border-color: var(--gray-dim);
  color: var(--gray-dim);
}
/* Big variant — matches the actual round C button. Used in the blurb
   when pointing at the real C button. */
.demo-c-inline.is-big {
  width: 39px;          /* was 26 — 1.5x per Pat 2026-05-24 */
  height: 39px;
  border-width: 2px;
  font-size: 20px;      /* was 13 — 1.5x per Pat 2026-05-24 */
  /* Wider breathing room on the big variant — it's the real
     clickable target, so it earns more space around its circle
     than the inline-badge counterparts. Per Pat 2026-05-24. */
  margin: 0 10px;
}
/* When the inline (C) is a real <button> (clickable, fires armed cues
   just like the big C), strip the default button chrome so it visually
   matches the span variants. */
button.demo-c-inline {
  padding: 0;
  margin: 0;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.12s ease, transform 0.06s ease, box-shadow 0.12s ease;
}
button.demo-c-inline:hover {
  background: rgba(34, 211, 238, 0.14);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.18);
}
button.demo-c-inline:active {
  transform: scale(0.92);
}
.demo-c-button {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  background: var(--bg-deep);
  color: var(--cyan);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-left: auto;
  transition: background 0.12s ease, color 0.12s ease, transform 0.06s ease, box-shadow 0.12s ease;
}
.demo-c-button:hover {
  background: rgba(34, 211, 238, 0.12);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.18);
}
.demo-c-button:active {
  transform: scale(0.92);
  background: rgba(34, 211, 238, 0.24);
}
/* Pulse the C button when at least one cue is loaded — visual nudge
   that the operator now has something to fire. */
.demo-c-button.has-loaded {
  animation: demo-c-pulse 1.6s ease-in-out infinite;
}
@keyframes demo-c-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.45); }
  50%      { box-shadow: 0 0 0 6px rgba(34, 211, 238, 0); }
}

/* Bottom guard — invisible 18px strip pinned to the bottom of every
   cue button. Captures clicks in the (c)-badge / caret zone so a tap
   near the badge doesn't accidentally cue the cue. The (c) badge sits
   ON TOP of the guard (higher z-index) so its own click still toggles
   armed state. */
.cue-bottom-guard {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 18px;
  z-index: 2;
  cursor: default;
}
/* Per-cue C badge — always present (gray when not loaded into the C
   set, cyan when armed, lime when playing). Real <button> so clicks
   register without firing the cue. Mirrors the real app's persistent
   (c) indicator next to the caret. */
.cue-c-badge {
  position: absolute;
  bottom: 3px;
  left: 24px;
  width: 16px;
  height: 16px;
  min-width: 0;
  border-radius: 50%;
  border: 1.5px solid var(--gray-dim);
  background: var(--bg-deep);
  color: var(--gray-dim);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: border-color 0.12s ease, color 0.12s ease, transform 0.06s ease;
}
.cue-c-badge:hover {
  transform: scale(1.15);
}
.cue-button.is-c-armed .cue-c-badge {
  border-color: var(--cyan);
  color: var(--cyan);
}
/* NOTE: (c) badge color is independent of the playing state — it tracks
   armed-or-not, never lime. Per Pat: "dont let the C be manipulated by
   the lime fill". */

/* Cue button highlight when a file pill is being dragged over it. */
.cue-button.file-drag-over {
  outline: 2px dashed var(--cyan);
  outline-offset: -2px;
  background: rgba(34, 211, 238, 0.08);
}
/* Brief "received file" flash after a successful file-pill drop. */
.cue-button.cue-just-loaded {
  animation: cue-just-loaded-flash 0.7s ease-in-out 1;
}
@keyframes cue-just-loaded-flash {
  0%, 100% { box-shadow: none; border-color: var(--cyan); }
  40%      { box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.5), 0 0 24px rgba(34, 211, 238, 0.6);
             border-color: var(--white-neutral); }
  100%     { box-shadow: none; border-color: var(--cyan); }
}

.cue-button {
  position: relative;
  background: var(--bg-deep);
  border: 1px solid var(--cyan);
  border-radius: 4px;
  aspect-ratio: 1.2;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.15s ease;
}
.cue-button:hover { border-color: var(--white-neutral); }

.cue-filename {
  position: absolute;
  top: 5px; left: 7px; right: 28px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--cyan);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: break-word;
  pointer-events: none;
  z-index: 2;
}
.cue-ghost-letter {
  font-size: clamp(40px, 6vw, 70px);
  font-weight: 700;
  color: var(--cyan);
  opacity: 0.18;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}
.cue-caret {
  position: absolute;
  bottom: 3px; left: 4px;
  background: transparent;
  border: none;
  color: var(--cyan);
  font-size: 11px;
  line-height: 1;
  padding: 3px 4px;
  cursor: default;
  z-index: 2;
}
.cue-time {
  position: absolute;
  bottom: 5px; right: 28px;
  font-size: 11px;
  color: var(--cyan);
  font-variant-numeric: tabular-nums;
  pointer-events: none;
  z-index: 2;
}
.cue-slider {
  position: absolute;
  right: 6px; top: 6px; bottom: 22px;
  width: 12px;
  background: rgba(34, 211, 238, 0.10);
  border-radius: 2px;
  overflow: hidden;
}
.cue-slider-fill {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--cyan);
  border-radius: 2px;
}

/* The drain — lime "remaining audio" overlay. Sits at z-index 0 so the
   text + ghost letter stay readable. */
.cue-drain {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  background: var(--lime);
  opacity: 0.30;
  pointer-events: none;
  z-index: 0;
  display: none;
}
.cue-button.is-playing .cue-drain        { display: block; animation: cue-drain-sweep var(--cue-dur, 1.5s) linear forwards; }
.cue-button.is-playing .cue-ghost-letter { color: var(--lime); opacity: 0.30; }
.cue-button.is-playing .cue-filename     { color: var(--lime); }
.cue-button.is-playing .cue-caret        { color: var(--lime); }
.cue-button.is-playing .cue-time         { color: var(--lime); }
.cue-button.is-playing .cue-slider-fill  { background: var(--lime); }
@keyframes cue-drain-sweep {
  0%   { width: 100%; }
  100% { width: 0%; }
}

/* Below the demo grid — small hint text encouraging interaction. */
.demo-hint {
  margin: 22px 0 0;
  text-align: center;
  font-size: 13px;
  color: var(--gray-dim);
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.demo-hint strong {
  color: var(--white-neutral);
  font-weight: 700;
}
.demo-hint-extra {
  margin-top: 8px;
  color: var(--gray);
}

/* ------------------------------------------------------------
   File-drop-in animation — looping demo on the first cue.
   A floating "♪ Walk-In Music.mp3" badge falls into the cue
   from above every ~5 s, then the cue briefly flashes cyan
   to show "file loaded". Pure CSS, no JS required.
   ------------------------------------------------------------ */
.cue-drop-ghost {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: rgba(34, 211, 238, 0.10);
  border: 1px dashed var(--cyan);
  border-radius: 4px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 600;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-110%);
  z-index: 3;
  padding: 4px;
  text-align: center;
}
.cue-drop-icon {
  font-size: 22px;
  line-height: 1;
}
.cue-drop-label {
  font-size: 10px;
  letter-spacing: 0.02em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}
/* The demo cue starts BLANK — filename + time hidden, slot empty. The
   file-drop-in animation runs ONCE on page load, ends with the cue in a
   normal "loaded" state, and never loops. After interaction (click or
   drag) the cue snaps straight to loaded so we can never end up with a
   ghost label that disagrees with the cue underneath (post-swap). */
.cue-button[data-demo-drop="1"] .cue-filename,
.cue-button[data-demo-drop="1"] .cue-time,
.cue-button[data-demo-drop="1"] .cue-caret,
.cue-button[data-demo-drop="1"] .cue-slider {
  opacity: 0;
  animation: cue-text-reveal 4s ease-in-out 1 forwards;
}
.cue-button[data-demo-drop="1"] .cue-drop-ghost {
  animation: cue-file-drop 4s ease-in-out 1 forwards;
}
.cue-button[data-demo-drop="1"] {
  animation: cue-receive-flash 4s ease-in-out 1 forwards;
}
@keyframes cue-file-drop {
  0%, 10%  { opacity: 0; transform: translateY(-110%); }
  25%      { opacity: 1; transform: translateY(-110%); }
  55%      { opacity: 1; transform: translateY(0%); }
  70%      { opacity: 0; transform: translateY(0%); }
  100%     { opacity: 0; transform: translateY(0%); }
}
@keyframes cue-text-reveal {
  0%, 60%  { opacity: 0; }
  75%, 100% { opacity: 1; }
}
@keyframes cue-receive-flash {
  0%, 50%  { box-shadow: none; border-color: var(--cyan); }
  62%      { box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.45), 0 0 24px rgba(34, 211, 238, 0.55);
             border-color: var(--white-neutral); }
  78%, 100% { box-shadow: none; border-color: var(--cyan); }
}
/* If the user interacts before the animation completes, JS adds
   .demo-dropped — snap the cue straight to its loaded state and hide
   the in-flight ghost. */
.demo-stage.demo-dropped .cue-button[data-demo-drop="1"] .cue-drop-ghost {
  display: none;
  animation: none;
}
.demo-stage.demo-dropped .cue-button[data-demo-drop="1"] .cue-filename,
.demo-stage.demo-dropped .cue-button[data-demo-drop="1"] .cue-time,
.demo-stage.demo-dropped .cue-button[data-demo-drop="1"] .cue-caret,
.demo-stage.demo-dropped .cue-button[data-demo-drop="1"] .cue-slider {
  opacity: 1;
  animation: none;
}
.demo-stage.demo-dropped .cue-button[data-demo-drop="1"] {
  animation: none;
}

/* ============================================================
   TWO VIEWS — full-app screenshots side-by-side
   ============================================================ */
.section-twoviews { position: relative; }

.twoviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 8px;
}
@media (max-width: 900px) {
  .twoviews-grid { grid-template-columns: 1fr; }
}

.twoview {
  margin: 0;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.twoview:hover {
  transform: translateY(-3px);
  border-color: var(--cyan);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
}
.twoview-img {
  display: block;
  width: 100%;
  height: auto;
  background: var(--bg-deep);
}
.twoview figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.twoview-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  flex-shrink: 0;
}
.twoview-tag.tag-cyan   { color: var(--bg-deep); background: var(--cyan); }
.twoview-tag.tag-purple { color: #fff;          background: var(--purple); }
.twoview-tag.tag-red    { color: #fff;          background: #ef4444; }
.twoview-tag.tag-amber  { color: #1a0f00;       background: var(--amber); }
.twoview-tag.tag-lime   { color: #0a1a00;       background: var(--lime); }
.twoview-cap {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.45;
}

/* ============================================================
   ANNOUNCEMENT SLOT DEEP-DIVE — image + labeled legend
   ============================================================ */
.section-ann-deep { position: relative; }

.ann-slot-split {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 8px;
}
@media (max-width: 760px) {
  .ann-slot-split { grid-template-columns: 1fr; gap: 24px; }
}
.ann-slot-figure {
  margin: 0;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ann-slot-img {
  display: block;
  max-width: 100%;
  height: auto;
}
.ann-slot-legend {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.ann-slot-legend li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: start;
  font-size: 14px;
  line-height: 1.5;
  color: var(--white-neutral);
}
.ann-key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.14);
  color: var(--amber);
  border: 1px solid rgba(245, 158, 11, 0.45);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.10em;
  height: 26px;
  font-variant-numeric: tabular-nums;
}
/* Cue/playlist variants (SOLO, MIX, DIVA, DUET, 32 CUES, PAGES) use
   the real pill shape — fully rounded, solid filled — to match how
   those toggle buttons render in the actual app. Announcement legend
   chips (VOL/PRE/POST/FADE/DUCK/ATA) stay square because those are
   slider labels, not pills, in the app. */
.ann-key.key-cyan,
.ann-key.key-pink,
.ann-key.key-green {
  border-radius: 999px;
  padding: 4px 16px;
  white-space: nowrap;
  min-width: 84px;
  letter-spacing: 0.08em;
}

/* C button — outlined cyan circle, not a pill. Matches the real
   .cue-up-all-button in the app (26 px circle, cyan border, dark
   interior, cyan letter). Sized up slightly for legend visibility. */
.ann-key.key-circle {
  width: 36px;
  height: 36px;
  min-width: 0;
  padding: 0;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 2px solid var(--cyan);
  color: var(--cyan);
  letter-spacing: 0;
  font-size: 14px;
}
/* Solid filled pills — match the "active" state of the real toggle
   buttons in the app (SOLO pink, MIX green, DIVA pink, DUET green, etc.).
   Dark text on bright fill, no translucent washout. */
.ann-key.key-cyan {
  background: var(--cyan);
  color: #0a1a22;
  border-color: var(--cyan);
}
.ann-key.key-pink {
  background: #ec4899;
  color: #0a0010;
  border-color: #ec4899;
}
.ann-key.key-green {
  background: var(--lime);
  color: #0a1a00;
  border-color: var(--lime);
}

/* ============================================================
   CUE GRID DEEP-DIVE — image + labeled legend
   ============================================================ */
.section-cues-deep { position: relative; }

.cues-deep-split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 8px;
}
@media (max-width: 900px) {
  .cues-deep-split { grid-template-columns: 1fr; gap: 24px; }
}
.cues-deep-figure {
  margin: 0;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.cues-deep-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.cues-deep-legend {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.cues-deep-legend li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  align-items: center;
  font-size: 14px;
  line-height: 1.5;
  color: var(--white-neutral);
}
/* Standalone legend block placed below the before/after C demo —
   constrain width and center so it doesn't stretch full-bleed. */
.cues-deep-legend-after {
  max-width: 720px;
  margin: 28px auto 0;
}
/* Override the wide 110 px chip column for the standalone legend rows
   below the before/after — the C circle (and DIVA / DUET) are narrower
   than the legend pills, so pull the description text right up against
   the chip instead of letting a fat empty column open up between them. */
.cues-deep-legend-after li {
  grid-template-columns: auto 1fr;
}

/* "What C does" — before/after mini-callout. */
.c-demo-row {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}
@media (max-width: 760px) {
  .c-demo-row { grid-template-columns: 1fr; gap: 14px; }
  .c-demo-arrow { transform: rotate(90deg); justify-self: center; }
}
.c-demo {
  margin: 0;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}
.c-demo-img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
.c-demo figcaption {
  font-size: 13px;
  line-height: 1.4;
  color: var(--gray);
}
.c-demo figcaption strong {
  color: var(--cyan);
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-right: 4px;
}
.c-demo-arrow {
  font-size: 36px;
  font-weight: 700;
  color: var(--cyan);
  text-align: center;
  user-select: none;
}

/* ============================================================
   TRAINING
   ============================================================ */
.training-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}
.training-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  overflow: hidden;
  text-decoration: none !important;
  transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}
.training-card:hover {
  transform: translateY(-3px);
  border-color: var(--cyan);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}
.training-thumb {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.training-thumb-cyan   { background: linear-gradient(135deg, rgba(var(--cyan-rgb),   0.20), rgba(var(--cyan-rgb),   0.05)); }
.training-thumb-amber  { background: linear-gradient(135deg, rgba(var(--amber-rgb),  0.20), rgba(var(--amber-rgb),  0.05)); }
.training-thumb-purple { background: linear-gradient(135deg, rgba(var(--purple-rgb), 0.20), rgba(var(--purple-rgb), 0.05)); }
.training-thumb-yellow { background: linear-gradient(135deg, rgba(240, 255, 0, 0.20), rgba(240, 255, 0, 0.05)); }
.training-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: var(--white);
  font-size: 22px;
  padding-left: 4px;
}
.training-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: var(--bg-card);
}
.training-title {
  color: var(--white-neutral);
  font-size: 14px;
  font-weight: 600;
}
.training-len {
  color: var(--gray-dim);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}
.training-note {
  text-align: center;
  color: var(--gray-dim);
  font-size: 14px;
  margin: 0;
}

/* ============================================================
   FEATURES
   ============================================================ */
.section-features {
  background: var(--bg-surface);
  max-width: 100%;
  margin: 0;
  padding: 100px 32px;
}
.section-features .section-title,
.section-features .features-grid {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 32px;
}
.feature {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  padding: 26px;
  overflow: hidden;       /* clip the bg image to the rounded card */
  isolation: isolate;     /* contain the stacking context */
  transition: border-color 150ms ease, transform 200ms ease;
}
.feature:hover {
  border-color: rgba(255, 255, 255, 0.20);
  transform: translateY(-2px);
}
/* Card-specific screenshot background. Each card class points at a
   file in assets/. If the file is missing, the card simply shows no
   image — text + dot still work. Image sits behind text at low
   opacity, brightens on hover. A dark gradient overlay ensures the
   text stays readable over any image. */
.feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.12;
  z-index: -2;
  transition: opacity 250ms ease;
}
.feature::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
              rgba(26, 28, 34, 0.85) 0%,
              rgba(26, 28, 34, 0.45) 100%);
  z-index: -1;
  pointer-events: none;
}
.feature:hover::before {
  opacity: 0.32;
}
/* Map each card class to its screenshot. Drop these files into
   assets/ to make the backgrounds appear. */
.feature.feature-cue-grid::before      { background-image: url('assets/feature-cue-grid.png'); }
.feature.feature-playlists::before     { background-image: url('assets/feature-playlists.png'); }
.feature.feature-announcements::before { background-image: url('assets/feature-announcements.png'); }
.feature.feature-recorder::before      { background-image: url('assets/feature-recorder.png'); }
.feature.feature-trim::before          { background-image: url('assets/feature-trim.png'); }
.feature.feature-showfiles::before     { background-image: url('assets/feature-showfiles.png'); }
.feature.feature-locale::before        { background-image: url('assets/feature-locale.png'); }
.feature h3 {
  margin: 14px 0 8px;
  font-size: 18px;
  color: var(--white);
  font-weight: 700;
}
.feature p {
  margin: 0;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.55;
}
.feature-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}
.feature-dot-cyan   { background: var(--cyan);   box-shadow: 0 0 12px rgba(var(--cyan-rgb), 0.5); }
.feature-dot-purple { background: var(--purple); box-shadow: 0 0 12px rgba(var(--purple-rgb), 0.5); }
.feature-dot-amber  { background: var(--amber);  box-shadow: 0 0 12px rgba(var(--amber-rgb), 0.5); }
.feature-dot-red    { background: var(--red);    box-shadow: 0 0 12px rgba(239, 68, 68, 0.5); }
.feature-dot-green  { background: var(--green);  box-shadow: 0 0 12px rgba(34, 197, 94, 0.5); }
.feature-dot-white  { background: var(--white);  box-shadow: 0 0 12px rgba(255, 255, 255, 0.4); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 44px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  text-align: center;
}
.pricing-badge {
  display: inline-block;
  background: transparent;
  color: var(--cyan);
  border: 1px solid rgba(var(--cyan-rgb), 0.45);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 6px;
}
.pricing-activations {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
}
.pricing-cta-row .cta.primary {
  box-shadow: none;
}
.pricing-cta-row .cta.primary:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}
.pricing-headline {
  margin: 0 0 22px;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
}
.pricing-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  text-align: left;
  display: grid;
  gap: 9px;
}
.pricing-list li {
  font-size: 14.5px;
  color: var(--white-neutral);
  padding-left: 4px;
}
.pricing-list li::first-letter {
  color: var(--cyan);
  font-weight: 700;
}
.pricing-cta-row {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.pricing-fine {
  margin: 0;
  font-size: 12.5px;
  color: var(--gray-dim);
  line-height: 1.55;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   DOWNLOAD
   ============================================================ */
.section-download {
  text-align: center;
}
.download-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}
.download-mark {
  display: block;
  width: 240px;
  height: 240px;
  image-rendering: -webkit-optimize-contrast;
  filter: drop-shadow(0 12px 36px rgba(0, 0, 0, 0.55));
}
.download-wordmark {
  margin: 4px 0 0;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
}
.download-wordmark .wm-cyan  { color: var(--cyan); }
.download-wordmark .wm-amber { color: var(--amber); }
.download-tagline {
  margin: 0;
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--amber);
  letter-spacing: 0.01em;
}
@media (max-width: 600px) {
  .download-mark { width: 170px; height: 170px; }
}
.download-row {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.download-notify {
  max-width: 480px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  padding: 24px;
}
.download-notify p {
  margin: 0 0 14px;
  color: var(--white-neutral);
  font-weight: 600;
  font-size: 15px;
}
.notify-form {
  display: flex;
  gap: 8px;
}
.notify-form input {
  flex: 1;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 18px;
  color: var(--white-neutral);
  padding: 11px 18px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 120ms ease;
}
.notify-form input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(var(--cyan-rgb), 0.15);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 50px 32px 32px;
  margin-top: 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-soft);
}
.footer-brand .brand-mark { width: 36px; height: 36px; font-size: 12px; }
.footer-brand .brand-name { display: inline-block; margin-left: 6px; vertical-align: middle; }
.footer-tagline {
  margin: 12px 0 0;
  color: var(--amber);
  font-size: 13px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.footer-col h4 {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}
.footer-col a {
  display: block;
  color: var(--white-neutral);
  font-size: 14px;
  margin-bottom: 8px;
}
.footer-col a:hover {
  color: var(--cyan);
  text-decoration: none;
}
.footer-bottom {
  max-width: var(--max-w);
  margin: 24px auto 0;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  color: var(--gray-dim);
  font-size: 12px;
  flex-wrap: wrap;
}
.footer-bottom-sep { opacity: 0.5; }

/* Personal sign-off from the maker — lives just below the download
   buttons. Larger and italic so it reads as a hand-written note rather
   than another data row. */
.download-note {
  max-width: 720px;
  margin: 48px auto 0;
  text-align: center;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.55;
  font-style: italic;
  color: var(--white-neutral);
}

/* Footer keyword line — pure black on the dark footer background.
   Discoverable to crawlers and screen readers (no display:none, no
   visibility:hidden, no aria-hidden) but visually unobtrusive against
   the dark site chrome. */
.footer-keywords {
  margin: 18px auto 0;
  max-width: var(--max-w);
  text-align: center;
  font-size: 12px;
  line-height: 1.6;
  color: #000;
}

/* ============================================================
   RESPONSIVE — mobile-friendly tightening
   ============================================================ */
@media (max-width: 720px) {
  .site-nav { padding: 12px 16px; }
  .nav-links { gap: 14px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero { padding: 60px 20px 50px; }
  .section { padding: 60px 20px; }
  .section-features { padding: 60px 20px; }
  .demo-stage { padding: 30px 16px 50px; }
  .demo-grid { grid-template-columns: repeat(3, 1fr); }
  .demo-cue-4, .demo-cue-5 { display: none; }
  .cta-big { min-width: 0; width: 100%; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
  .pricing-card { padding: 28px 20px; }
}

/* ============================================================
   STUB PAGES (Terms / Privacy)
   ============================================================ */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 32px 100px;
}
.legal-page h1 {
  font-size: 38px;
  color: var(--white);
  margin: 0 0 8px;
}
.legal-page .legal-updated {
  color: var(--gray-dim);
  font-size: 13px;
  margin: 0 0 32px;
}
.legal-page h2 {
  font-size: 20px;
  color: var(--white);
  margin: 32px 0 10px;
}
.legal-page p, .legal-page li {
  color: var(--white-neutral);
  font-size: 15px;
  line-height: 1.65;
}
.legal-page ul { padding-left: 22px; }
.legal-page .legal-disclaimer {
  background: rgba(var(--amber-rgb), 0.10);
  border: 1px solid rgba(var(--amber-rgb), 0.30);
  border-radius: var(--rad);
  padding: 14px 18px;
  font-size: 13.5px;
  color: var(--amber);
  margin: 24px 0 32px;
}
