:root {
  --ink: #0b0e14;
  --ink-2: #12171f;
  --slab: rgba(18, 23, 31, 0.82);
  --slab-solid: #151b25;
  --slab-hot: rgba(24, 32, 44, 0.96);
  --line: rgba(238, 241, 244, 0.1);
  --line-hot: rgba(238, 241, 244, 0.24);
  --snow: #eef1f4;
  --haze: #9aa4b2;
  --mute: #6d7788;
  --ember: #ff7043;
  --ember-deep: #e85a30;
  --ember-glow: rgba(255, 112, 67, 0.34);
  --steel: #5b8fa8;
  --steel-soft: rgba(91, 143, 168, 0.28);
  --honey: #f0c35a;
  --scrim: rgba(8, 10, 14, 0.92);
  --radius: 6px;
  --radius-lg: 14px;
  --max: 1120px;
  --pad: clamp(16px, 4vw, 28px);
  --display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --body: "Sora", "Avenir Next", system-ui, sans-serif;
  --ease: 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--body);
  color: var(--snow);
  background: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; }
:focus-visible { outline: 2px solid var(--ember); outline-offset: 3px; }

.frame {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* Backdrop */
.veil {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.veil__layer { position: absolute; inset: 0; }
.veil__layer--phone { display: none; }
.veil__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  animation: floatView 32s ease-in-out infinite alternate;
}
.veil::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(165deg, rgba(11, 14, 20, 0.35) 0%, rgba(11, 14, 20, 0.62) 42%, rgba(11, 14, 20, 0.94) 100%),
    radial-gradient(ellipse 55% 40% at 18% 12%, rgba(255, 112, 67, 0.18), transparent 60%),
    radial-gradient(ellipse 45% 35% at 88% 70%, rgba(91, 143, 168, 0.16), transparent 55%),
    repeating-linear-gradient(
      -18deg,
      transparent 0 18px,
      rgba(238, 241, 244, 0.015) 18px 19px
    );
}
@media (max-width: 768px) {
  .veil__layer:not(.veil__layer--phone) { display: none; }
  .veil__layer--phone { display: block; }
}

@keyframes floatView {
  from { transform: scale(1.03) translate3d(0, 0, 0); }
  to { transform: scale(1.09) translate3d(1.2%, -0.8%, 0); }
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(22px) skewY(0.4deg); }
  to { opacity: 1; transform: translateY(0) skewY(0); }
}
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes emberPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 112, 67, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(255, 112, 67, 0); }
}

/* Age lock */
.lockbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--scrim);
  backdrop-filter: blur(12px);
}
.lockbox.is-gone { display: none; }
.lockbox__card {
  width: 100%;
  max-width: 440px;
  background:
    linear-gradient(145deg, rgba(255, 112, 67, 0.08), transparent 40%),
    linear-gradient(180deg, var(--slab-solid), var(--ink-2));
  border: 1px solid var(--line-hot);
  border-radius: var(--radius-lg);
  padding: 32px 26px 24px;
  text-align: left;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  animation: riseIn 0.55s var(--ease) both;
}
.lockbox__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  bottom: 0;
  background: linear-gradient(180deg, var(--ember), var(--steel));
}
.lockbox__badge {
  width: 64px;
  height: 64px;
  margin-bottom: 14px;
  border-radius: 4px 16px 4px 16px;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  color: #1a0e0a;
  background: linear-gradient(145deg, #ff8f66, var(--ember-deep));
  animation: emberPulse 2.6s ease-in-out infinite;
}
.lockbox__kicker {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 8px;
  font-weight: 600;
}
.lockbox__card h2 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 4vw, 1.85rem);
  margin-bottom: 10px;
  line-height: 1.15;
  font-weight: 650;
}
.lockbox__card > p {
  color: var(--haze);
  font-size: 0.94rem;
  margin-bottom: 22px;
}
.lockbox__actions {
  display: grid;
  gap: 10px;
}
.lockbox__yes,
.lockbox__no {
  border-radius: var(--radius);
  padding: 13px 16px;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform var(--ease), background var(--ease), border-color var(--ease);
}
.lockbox__yes {
  border: none;
  background: linear-gradient(135deg, var(--ember) 0%, var(--ember-deep) 100%);
  color: #1a0e0a;
  box-shadow: 0 10px 28px var(--ember-glow);
}
.lockbox__yes:hover { transform: translateY(-2px); }
.lockbox__no {
  background: transparent;
  border: 1px solid var(--line-hot);
  color: var(--haze);
}
.lockbox__no:hover {
  color: var(--snow);
  border-color: var(--steel);
}
.lockbox__denied {
  display: none;
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--mute);
}
.lockbox__denied.is-on { display: block; }

/* Caution ribbon */
.caution {
  background: linear-gradient(90deg, #1a120e, #2a1810 35%, #1f2a30 100%);
  border-bottom: 1px solid rgba(255, 112, 67, 0.35);
}
.caution__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}
.caution__mark {
  flex-shrink: 0;
  min-width: 34px;
  height: 28px;
  padding: 0 6px;
  border-radius: 3px;
  border: 1px dashed var(--ember);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--display);
  color: var(--ember);
}
.caution__text {
  font-size: 0.86rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.35;
  color: #f3d7c8;
}

/* Header */
.crest {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(11, 14, 20, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.crest__bar {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.mark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.mark img {
  height: 40px;
  width: auto;
  max-width: min(250px, 62vw);
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(255, 112, 67, 0.2));
}

.switcher {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(238, 241, 244, 0.04);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.switcher span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--snow);
  transition: transform var(--ease), opacity var(--ease);
}
.switcher[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.switcher[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.switcher[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.routes {
  display: flex;
  align-items: center;
  gap: 4px;
}
.routes a {
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--haze);
  padding: 10px 14px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: color var(--ease), background var(--ease), border-color var(--ease), transform var(--ease);
}
.routes a:hover,
.routes a[aria-current="page"] {
  color: var(--snow);
  background: rgba(255, 112, 67, 0.1);
  border-color: rgba(255, 112, 67, 0.3);
}

@media (max-width: 860px) {
  .switcher { display: flex; }
  .routes {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px var(--pad) 18px;
    background: rgba(11, 14, 20, 0.98);
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .routes.is-open { display: flex; animation: dropIn 0.25s ease; }
  .routes a { padding: 13px 14px; }
}

/* Hero */
main { flex: 1; }

.beacon {
  position: relative;
  padding: clamp(36px, 7vw, 78px) var(--pad) clamp(24px, 4vw, 36px);
  max-width: var(--max);
  margin: 0 auto;
}
.beacon__copy {
  max-width: 720px;
  position: relative;
  padding-left: 18px;
}
.beacon__copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: linear-gradient(180deg, var(--ember), var(--steel));
  border-radius: 2px;
  animation: riseIn 0.7s 0.1s both;
}
.beacon__brand {
  width: min(420px, 88vw);
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.55));
  animation: riseIn 0.65s var(--ease) both;
}
.beacon h1 {
  font-family: var(--display);
  font-size: clamp(1.55rem, 3.8vw, 2.45rem);
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  animation: riseIn 0.65s 0.08s var(--ease) both;
}
.beacon__lead {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--haze);
  max-width: 540px;
  font-weight: 400;
  animation: riseIn 0.65s 0.16s var(--ease) both;
}

/* Ranking */
.ledger {
  padding: 8px 0 56px;
}
.ledger__stack {
  display: grid;
  gap: 20px;
}

.scorecard {
  position: relative;
  background: var(--slab);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: visible;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease), background var(--ease);
}
.scorecard::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  background: var(--steel);
  border-radius: 0 2px 2px 0;
  opacity: 0.55;
}
.scorecard:hover {
  border-color: rgba(255, 112, 67, 0.4);
  background: var(--slab-hot);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.scorecard:hover::before {
  background: var(--ember);
  opacity: 1;
}
.scorecard--gold {
  border: 1px solid rgba(240, 195, 90, 0.55);
  box-shadow: 0 0 0 1px rgba(240, 195, 90, 0.08), 0 18px 40px rgba(240, 195, 90, 0.1);
}
.scorecard--gold::before { background: var(--honey); opacity: 1; }
.scorecard--silver { border-color: rgba(170, 188, 204, 0.45); }
.scorecard--bronze { border-color: rgba(255, 160, 110, 0.45); }

.scorecard__stamp {
  position: absolute;
  top: -12px;
  left: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  font-family: var(--display);
  font-weight: 700;
  line-height: 1;
  padding: 7px 14px 8px;
  border-radius: 3px;
  pointer-events: none;
  transform: rotate(-2deg);
}
.scorecard__stamp i {
  font-style: normal;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  opacity: 0.85;
}
.scorecard__stamp--1 {
  font-size: 1.1rem;
  color: #1a1205;
  background: linear-gradient(135deg, #ffe7a8, var(--honey) 50%, #d4a42e);
  box-shadow: 0 10px 22px rgba(240, 195, 90, 0.35);
}
.scorecard__stamp--2 {
  font-size: 1rem;
  color: #101820;
  background: linear-gradient(135deg, #f5f8fb, #b8c7d4);
}
.scorecard__stamp--3 {
  font-size: 1rem;
  color: #2a1408;
  background: linear-gradient(135deg, #ffc29a, #ff8f66 55%, var(--ember-deep));
}

.scorecard__hit {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}
.scorecard__body {
  pointer-events: none;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "logo note"
    "blurb blurb"
    "cta cta"
    "fine fine";
  gap: 12px 14px;
  align-items: center;
  padding: 26px 16px 16px 18px;
}
.scorecard__logo {
  grid-area: logo;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 10px 14px;
  width: fit-content;
}
.scorecard__logo img {
  width: 136px;
  height: 60px;
  object-fit: contain;
  object-position: center;
}
.scorecard__note {
  grid-area: note;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 78px;
  min-height: 88px;
  margin-left: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(91, 143, 168, 0.4);
  background:
    linear-gradient(180deg, rgba(91, 143, 168, 0.16), transparent 70%),
    rgba(11, 14, 20, 0.5);
  clip-path: polygon(0 0, 100% 0, 100% 88%, 50% 100%, 0 88%);
}
.scorecard__note strong {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}
.scorecard__note span {
  font-size: 0.62rem;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.scorecard__blurb {
  grid-area: blurb;
  text-align: left;
  color: var(--haze);
  font-size: 0.92rem;
  line-height: 1.55;
}
.scorecard__cta {
  grid-area: cta;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 18px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--ember) 0%, var(--ember-deep) 100%);
  color: #1a0e0a;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 24px var(--ember-glow);
  transition: transform var(--ease), box-shadow var(--ease);
}
.scorecard:hover .scorecard__cta {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(255, 112, 67, 0.48);
}
.scorecard__fine {
  grid-area: fine;
  text-align: center;
  font-size: 0.72rem;
  color: var(--mute);
}

@media (min-width: 769px) {
  .scorecard__body {
    grid-template-columns: 160px 86px 1fr auto;
    grid-template-areas:
      "logo note blurb cta"
      "logo note fine fine";
    gap: 14px 18px;
    padding: 28px 24px 16px 22px;
  }
  .scorecard__cta {
    min-width: 210px;
    min-height: 52px;
    font-size: 0.82rem;
  }
  .scorecard__note {
    width: 86px;
    min-height: 96px;
    margin: 0;
  }
  .scorecard__fine { text-align: left; }
}

/* Inner pages */
.pagehead {
  padding: clamp(40px, 7vw, 72px) var(--pad) 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.pagehead h1 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  max-width: 640px;
}
.pagehead p {
  color: var(--haze);
  max-width: 560px;
}
.article {
  padding: 12px 0 56px;
}
.article-card {
  background: var(--slab);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 4vw, 34px);
  max-width: 820px;
  margin: 0 auto 16px;
  position: relative;
}
.article-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 3px;
  background: linear-gradient(180deg, var(--ember), var(--steel));
  border-radius: 0 2px 2px 0;
}
.article-card h2 {
  font-family: var(--display);
  font-size: 1.15rem;
  margin: 0 0 10px;
}
.article-card p {
  color: var(--haze);
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.article-card p:last-child { margin-bottom: 0; }
.article-card ul {
  margin: 0 0 14px 1.1rem;
  color: var(--haze);
}
.article-card li { margin-bottom: 6px; }
.article-card a { color: var(--ember); }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}
.pillar {
  background: var(--slab);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  position: relative;
  overflow: hidden;
}
.pillar::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ember), var(--steel));
}
.pillar .idx {
  font-family: var(--display);
  color: var(--ember);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.pillar h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.pillar p {
  color: var(--haze);
  font-size: 0.9rem;
}
@media (max-width: 800px) {
  .pillars { grid-template-columns: 1fr; }
}

/* Footer */
.footing {
  margin-top: auto;
  padding: 44px 0 112px;
  border-top: 1px solid var(--line);
  background: rgba(8, 10, 14, 0.8);
  backdrop-filter: blur(10px);
}
.footing__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footing__brand {
  margin-bottom: 22px;
}
.footing__brand img {
  height: 46px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
}
.footing__title {
  font-family: var(--display);
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  margin-bottom: 22px;
}
.footing__block {
  width: 100%;
  max-width: 880px;
  margin-bottom: 18px;
}
.footing__block h3 {
  font-family: var(--display);
  font-size: 0.98rem;
  margin-bottom: 8px;
}
.footing__block p {
  color: var(--haze);
  font-size: 0.9rem;
  line-height: 1.65;
}
.footing__block a {
  color: var(--ember);
  text-underline-offset: 2px;
}
.footing__rule {
  width: 100%;
  max-width: 880px;
  height: 1px;
  background: var(--line);
  margin: 10px 0 20px;
}
.regrow {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 12px 16px;
  margin-bottom: 8px;
  padding: 14px;
  width: 100%;
  max-width: 880px;
  background: #080a0e;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.regrow a,
.regrow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 4px 6px;
  min-height: 48px;
  transition: opacity var(--ease), transform var(--ease);
}
.regrow a:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.regrow img {
  height: 40px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}
.regrow__age img {
  height: 40px;
  width: 40px;
  max-width: 40px;
}
.footing__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 16px;
}
.footing__links a {
  text-decoration: none;
  color: var(--haze);
  font-size: 0.85rem;
}
.footing__links a:hover { color: var(--ember); }
.footing__copy {
  font-size: 0.78rem;
  color: var(--mute);
}

/* Sticky raft */
.raft {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: rgba(11, 14, 20, 0.96);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 36px rgba(0, 0, 0, 0.45);
  transform: translateY(110%);
  transition: transform 0.34s var(--ease);
}
.raft.is-up { transform: translateY(0); }
.raft__row {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px var(--pad);
  display: flex;
  align-items: center;
  gap: 14px;
}
.raft__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}
.raft__meta strong {
  font-family: var(--display);
  font-size: 0.72rem;
  color: var(--honey);
  letter-spacing: 0.04em;
}
.raft__meta span {
  font-size: 0.65rem;
  color: var(--mute);
}
.raft__logo {
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--radius);
  padding: 6px 10px;
  flex-shrink: 0;
}
.raft__logo img {
  height: 30px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
}
.raft__score {
  flex: 1;
  text-align: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
}
.raft__cta {
  flex-shrink: 0;
  text-decoration: none;
  background: linear-gradient(135deg, var(--ember), var(--ember-deep));
  color: #1a0e0a;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 16px;
  border-radius: var(--radius);
  box-shadow: 0 8px 20px var(--ember-glow);
}
@media (max-width: 640px) {
  .raft__meta { display: none; }
  .raft__cta { padding: 10px 12px; font-size: 0.66rem; }
  .raft__score { font-size: 1rem; }
}

/* Cookie crumb */
.crumb {
  position: fixed;
  bottom: 16px;
  left: 16px;
  z-index: 950;
  width: min(340px, calc(100vw - 24px));
  background: var(--slab-solid);
  border: 1px solid var(--line-hot);
  border-left: 3px solid var(--ember);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow);
  display: none;
}
.crumb.is-on { display: block; animation: riseIn 0.35s ease; }
.crumb p {
  font-size: 0.82rem;
  color: var(--haze);
  margin-bottom: 12px;
  line-height: 1.5;
}
.crumb a { color: var(--ember); }
.crumb button {
  width: 100%;
  border: none;
  border-radius: var(--radius);
  padding: 11px;
  background: linear-gradient(135deg, var(--ember), var(--ember-deep));
  color: #1a0e0a;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}
