:root {
  --cream: #FAF5E8;
  --cream-2: #F4EEDD;
  --ink: #0F0F0E;
  --ink-soft: #2A2926;
  --line: #0F0F0E;
  --yellow: #FFE066;
  --pink: #FFB4C6;
  --mint: #B8F2C9;
  --blue: #B8DCFF;
  --lav: #DCC7FF;
  --peach: #FFCFA8;
  --hot: #FF5A3C;
  --grape: #7B3AED;
  --lime: #C6F542;

  --shadow: 5px 5px 0 var(--ink);
  --shadow-lg: 8px 8px 0 var(--ink);
  --radius: 22px;
  --radius-sm: 14px;

  --sans: 'Space Grotesk', ui-sans-serif, system-ui;
  --display: 'Archivo Black', 'Space Grotesk', system-ui;
  --serif: 'Instrument Serif', 'Times New Roman', serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { overflow-x: clip; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  max-width: 100vw;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
em { font-family: var(--serif); font-style: italic; font-weight: 400; }

.grain {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 100;
  background-image:
    radial-gradient(rgba(15,15,14,0.09) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: multiply;
  opacity: 0.35;
}

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px;
  background: var(--cream);
  border-bottom: 2px solid var(--ink);
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  background: var(--ink); color: var(--yellow);
  font-family: var(--display); font-size: 20px;
  border-radius: 10px;
  transform: rotate(-4deg);
}
.brand-mark.big { width: 46px; height: 46px; font-size: 26px; border-radius: 12px; }
.brand-word {
  font-family: var(--display);
  font-size: 22px; letter-spacing: -0.02em;
}
.nav-links { display: none; gap: 22px; font-weight: 500; }
.nav-links a:hover { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }
.nav-cta {
  padding: 10px 16px;
  background: var(--ink); color: var(--cream);
  border-radius: 999px; font-weight: 600; font-size: 14px;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--hot);
  transition: transform .15s, box-shadow .15s;
}
.nav-cta:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--hot); }

@media (min-width: 720px) {
  .nav { padding: 18px 40px; }
  .nav-links { display: flex; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 36px 20px 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
}
.hero-copy { min-width: 0; }

.ticker {
  display: inline-flex; gap: 18px; flex-wrap: wrap;
  padding: 8px 14px;
  background: var(--cream-2);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-size: 12px; font-weight: 500;
  margin-bottom: 22px;
  box-shadow: 3px 3px 0 var(--ink);
}
.ticker span:nth-child(2), .ticker span:nth-child(3), .ticker span:nth-child(4) { display: none; }
@media (min-width: 900px) {
  .ticker span { display: inline !important; }
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(52px, 13vw, 130px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
}
.rainbow {
  background: linear-gradient(92deg, #FF5A3C 0%, #FFB4C6 25%, #DCC7FF 55%, #B8DCFF 78%, #B8F2C9 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-style: italic;
  font-family: var(--serif);
  font-weight: 400;
  padding-right: 4px;
}

.hero-sub {
  font-size: clamp(17px, 2.2vw, 22px);
  max-width: 540px;
  margin: 0 0 28px;
  color: var(--ink-soft);
}

.waitlist {
  display: flex;
  gap: 8px;
  padding: 6px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: var(--shadow);
  max-width: 520px;
}
.waitlist input {
  flex: 1;
  border: 0; outline: 0; background: transparent;
  padding: 10px 16px;
  font: inherit; font-size: 15px;
  min-width: 0;
}
.waitlist button {
  border: 0;
  padding: 12px 18px;
  background: var(--ink); color: var(--cream);
  border-radius: 999px;
  font-weight: 600; font-size: 14px;
  white-space: nowrap;
  transition: transform .15s, background .2s;
}
.waitlist button:hover { background: var(--hot); transform: translateX(2px); }
.waitlist.big { max-width: 620px; }
.waitlist.big input { font-size: 17px; padding: 14px 18px; }
.waitlist.big button { padding: 16px 22px; font-size: 15px; }

.hero-signal {
  margin-top: 14px;
  font-size: 14px;
  color: var(--ink-soft);
}
.hero-signal strong { color: var(--ink); }

/* Hero phone */
.hero-phone {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  padding: 20px 0 40px;
}
.phone {
  position: relative;
  width: min(320px, 82vw);
  aspect-ratio: 9 / 19;
  background: var(--ink);
  border-radius: 42px;
  padding: 10px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-3deg);
}
.phone-notch {
  position: absolute; top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 22px;
  background: var(--ink); border-radius: 999px;
  z-index: 3;
}
.phone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #FFF7DF 0%, #FFE9F0 100%);
  border-radius: 32px;
  overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
}
.chat-head {
  display: flex; align-items: center; gap: 10px;
  padding: 42px 16px 14px;
  border-bottom: 1px solid rgba(15,15,14,0.08);
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(6px);
}
.chat-avatar {
  width: 38px; height: 38px;
  border-radius: 12px;
  background: var(--ink); color: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 18px;
  transform: rotate(-6deg);
}
.chat-name { font-family: var(--display); font-size: 15px; }
.chat-status { font-size: 11px; color: var(--ink-soft); display: flex; align-items: center; gap: 5px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: #2fbb5c; box-shadow: 0 0 0 3px rgba(47,187,92,0.2); }

.chat-body {
  flex: 1;
  padding: 14px 12px;
  display: flex; flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.msg {
  max-width: 78%;
  padding: 9px 13px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(6px);
  animation: pop .28s ease forwards;
}
.msg.in {
  background: #fff;
  border: 1px solid rgba(15,15,14,0.08);
  border-bottom-left-radius: 6px;
  align-self: flex-start;
}
.msg.out {
  background: var(--ink); color: #fff;
  border-bottom-right-radius: 6px;
  align-self: flex-end;
}
.msg.img {
  padding: 6px;
  background: #fff;
  border: 1px solid rgba(15,15,14,0.08);
  border-bottom-right-radius: 6px;
  align-self: flex-end;
}
.msg.img .thumbs {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px;
}
.msg.img .thumb {
  aspect-ratio: 1;
  border-radius: 8px;
}
.msg.img .thumb:nth-child(1) { background: linear-gradient(135deg, #FFB4C6, #FF5A3C); }
.msg.img .thumb:nth-child(2) { background: linear-gradient(135deg, #B8DCFF, #7B3AED); }
.msg.img .thumb:nth-child(3) { background: linear-gradient(135deg, #B8F2C9, #C6F542); }

.typing {
  display: inline-flex; gap: 4px; padding: 12px 14px;
  background: #fff;
  border: 1px solid rgba(15,15,14,0.08);
  border-radius: 18px; border-bottom-left-radius: 6px;
  align-self: flex-start;
  animation: pop .28s ease forwards;
}
.typing i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ink-soft);
  animation: bounce 1.2s infinite;
}
.typing i:nth-child(2) { animation-delay: .15s; }
.typing i:nth-child(3) { animation-delay: .3s; }
@keyframes bounce { 0%,60%,100% { transform: translateY(0); opacity: .5; } 30% { transform: translateY(-4px); opacity: 1; } }
@keyframes pop { to { opacity: 1; transform: translateY(0); } }

.chat-input {
  padding: 12px 14px 18px;
  border-top: 1px solid rgba(15,15,14,0.08);
  background: rgba(255,255,255,0.5);
  font-size: 12px; color: var(--ink-soft);
  text-align: center;
  letter-spacing: 0.02em;
}

.sticker {
  position: absolute;
  font-family: var(--display);
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  z-index: 4;
  white-space: nowrap;
}
.sticker-1 { top: 8%; right: 2%; background: var(--yellow); transform: rotate(8deg); }
.sticker-2 { bottom: 22%; left: 0%; background: var(--mint); transform: rotate(-9deg); }
.sticker-3 { bottom: 6%; right: 4%; background: var(--pink); transform: rotate(6deg); }

@media (min-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    padding: 70px 60px 70px;
    gap: 60px;
    align-items: center;
  }
  .hero-phone { padding: 0; }
  .phone { width: 340px; }
}

/* ---------- MARQUEE ---------- */
.marquee {
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding: 16px 0;
}
.marquee-track {
  display: inline-flex; gap: 28px;
  white-space: nowrap;
  font-family: var(--display);
  font-size: clamp(22px, 3.4vw, 34px);
  animation: scroll 28s linear infinite;
  padding-left: 28px;
}
.marquee-track span:nth-child(even) { color: var(--lime); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- HOW ---------- */
.section-head {
  padding: 60px 22px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-head.center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--ink); color: var(--lime);
  padding: 5px 10px; border-radius: 6px;
}
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(38px, 7vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 18px 0 12px;
}
.section-head p {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0;
}
.section-head.center p { margin: 0 auto; }

.how { padding-bottom: 40px; }
.steps {
  display: grid;
  gap: 20px;
  padding: 20px 22px;
  max-width: 1200px; margin: 0 auto;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 30px 40px; }
}
.step {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.step-1 { background: linear-gradient(180deg, #fff 60%, var(--yellow) 60%); }
.step-2 { background: linear-gradient(180deg, #fff 60%, var(--pink) 60%); }
.step-3 { background: linear-gradient(180deg, #fff 60%, var(--mint) 60%); }
.step-num {
  font-family: var(--display);
  font-size: 14px;
  display: inline-block;
  padding: 4px 10px;
  background: var(--ink); color: var(--cream);
  border-radius: 6px;
  margin-bottom: 12px;
}
.step h3 {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.step p {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0 0 18px;
}

/* Step visuals */
.step-visual { min-height: 190px; position: relative; }

.scan-viz .scan-frame {
  position: relative;
  height: 190px;
  border-radius: 14px;
  background:
    linear-gradient(45deg, rgba(0,0,0,0.05) 25%, transparent 25%, transparent 75%, rgba(0,0,0,0.05) 75%),
    linear-gradient(45deg, rgba(0,0,0,0.05) 25%, transparent 25%, transparent 75%, rgba(0,0,0,0.05) 75%),
    #fff;
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  border: 2px dashed var(--ink);
  overflow: hidden;
}
.scan-line {
  position: absolute; left: 0; right: 0; height: 3px;
  background: var(--hot);
  box-shadow: 0 0 12px var(--hot);
  animation: scan 2.4s ease-in-out infinite;
}
@keyframes scan {
  0%,100% { top: 8%; } 50% { top: 88%; }
}
.scan-tag {
  position: absolute;
  font-family: var(--display);
  font-size: 12px;
  padding: 5px 10px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  box-shadow: 2px 2px 0 var(--ink);
  white-space: nowrap;
}
.tag-a { top: 20%; left: 10%; background: var(--mint); transform: rotate(-4deg); }
.tag-b { top: 55%; right: 8%; background: var(--pink); transform: rotate(5deg); }
.tag-c { bottom: 12%; left: 20%; background: var(--blue); transform: rotate(-2deg); }

.chat-viz { display: flex; flex-direction: column; gap: 8px; padding-top: 10px; }
.bubble {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.35;
}
.bubble.in { background: #fff; border: 2px solid var(--ink); border-bottom-left-radius: 6px; align-self: flex-start; box-shadow: 2px 2px 0 var(--ink); }
.bubble.out { background: var(--ink); color: #fff; border-bottom-right-radius: 6px; align-self: flex-end; }

.pickup-viz { display: grid; gap: 12px; }
.map {
  position: relative;
  height: 110px;
  border-radius: 12px;
  border: 2px solid var(--ink);
  background:
    linear-gradient(90deg, rgba(15,15,14,0.06) 1px, transparent 1px) 0 0 / 18px 18px,
    linear-gradient(0deg, rgba(15,15,14,0.06) 1px, transparent 1px) 0 0 / 18px 18px,
    var(--cream-2);
  overflow: hidden;
}
.route {
  position: absolute; top: 55%; left: 10%; right: 12%;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--ink) 0 6px, transparent 6px 12px);
}
.pin {
  position: absolute;
  font-family: var(--display); font-size: 11px;
  padding: 4px 8px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
}
.pin-you { left: 6%; top: 40%; background: var(--yellow); }
.pin-driver { right: 6%; top: 40%; background: var(--pink); animation: drive 3s ease-in-out infinite; }
@keyframes drive { 0%,100% { transform: translateX(0); } 50% { transform: translateX(-40px); } }

.receipt {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
}
.receipt-row { display: flex; justify-content: space-between; padding: 3px 0; border-bottom: 1px dashed rgba(15,15,14,0.15); }
.receipt-row:last-of-type { border-bottom: 0; }
.receipt-total { display: flex; justify-content: space-between; margin-top: 6px; padding-top: 6px; border-top: 2px solid var(--ink); font-family: var(--display); }

/* ---------- COMPARE ---------- */
.compare {
  padding: 20px 22px 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.compare-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  margin-top: 30px;
}
@media (min-width: 800px) { .compare-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
.compare-col {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 26px;
}
.compare-col h3 {
  font-family: var(--display);
  font-size: 26px;
  margin: 0 0 16px;
}
.compare-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.compare-col li { padding: 10px 14px; border-radius: 12px; font-size: 15px; }
.compare-col.old { background: var(--cream-2); box-shadow: var(--shadow); }
.compare-col.old li { background: #fff; text-decoration: line-through; color: var(--ink-soft); }
.compare-col.new { background: var(--ink); color: var(--cream); box-shadow: 5px 5px 0 var(--hot); position: relative; }
.compare-col.new h3 { color: var(--lime); }
.compare-col.new li { background: rgba(255,255,255,0.06); font-weight: 500; }
.compare-badge {
  margin-top: 18px;
  padding: 12px 14px;
  background: var(--lime); color: var(--ink);
  border-radius: 12px;
  font-family: var(--display);
  text-align: center;
}

/* ---------- PROOF ---------- */
.proof {
  padding-bottom: 60px;
}
.proof-grid {
  display: grid;
  gap: 18px;
  padding: 20px 22px;
  max-width: 1200px;
  margin: 0 auto;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .proof-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .proof-grid { grid-template-columns: repeat(3, 1fr); } }
.tcard {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.tcard:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--ink); }
.tcard .quote {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 16px;
}
.tcard .who { display: flex; align-items: center; gap: 10px; }
.tcard .avatar {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 14px;
}
.tcard .name { font-weight: 600; font-size: 14px; }
.tcard .handle { font-size: 12px; color: var(--ink-soft); }
.tcard.color-1 { background: var(--yellow); }
.tcard.color-2 { background: var(--pink); }
.tcard.color-3 { background: var(--mint); }
.tcard.color-4 { background: var(--blue); }
.tcard.color-5 { background: var(--lav); }
.tcard.color-6 { background: var(--peach); }
.tcard .pill {
  position: absolute; top: -10px; right: 16px;
  padding: 4px 10px;
  background: var(--ink); color: var(--cream);
  font-family: var(--display); font-size: 11px;
  border-radius: 999px;
  transform: rotate(3deg);
}

/* ---------- STATS ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--cream-2);
}
@media (min-width: 800px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat {
  padding: 30px 22px;
  text-align: center;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.stat:nth-child(even) { background: var(--cream); }
@media (min-width: 800px) {
  .stat { border-bottom: 0; }
  .stat:last-child { border-right: 0; }
}
@media (max-width: 799px) {
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(n+3) { border-bottom: 0; }
}
.stat-num {
  font-family: var(--display);
  font-size: clamp(38px, 7vw, 60px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 8px;
  text-transform: lowercase;
  letter-spacing: 0.02em;
}

/* ---------- FAQ ---------- */
.faq { padding-bottom: 60px; }
.faq-list {
  max-width: 820px;
  margin: 20px auto 0;
  padding: 0 22px;
  display: grid;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 3px 3px 0 var(--ink);
}
.faq-q {
  width: 100%;
  background: transparent; border: 0;
  padding: 18px 20px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--display); font-size: 17px;
  text-align: left;
}
.faq-q .plus { font-family: var(--sans); font-size: 22px; transition: transform .3s; }
.faq-item[open] .faq-q .plus { transform: rotate(45deg); }
.faq-a { padding: 0 20px 18px; color: var(--ink-soft); font-size: 15px; }

/* ---------- CTA ---------- */
.cta {
  background: var(--ink); color: var(--cream);
  padding: 80px 22px 90px;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,90,60,0.35), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(198,245,66,0.28), transparent 45%);
  pointer-events: none;
}
.cta-inner { max-width: 780px; margin: 0 auto; text-align: center; position: relative; }
.cta h2 {
  font-family: var(--display);
  font-size: clamp(38px, 8vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.cta p { font-size: clamp(17px, 2vw, 21px); color: rgba(250,245,232,0.75); margin: 0 0 28px; }
.cta .waitlist { margin: 0 auto; background: #fff; }
.cta .waitlist input { color: var(--ink); }
.cta-share { margin-top: 22px; }
.share-btn {
  background: transparent; color: var(--cream);
  border: 2px solid var(--cream);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600; font-size: 14px;
  transition: background .2s, color .2s;
}
.share-btn:hover { background: var(--cream); color: var(--ink); }

/* ---------- FOOT ---------- */
.foot {
  padding: 40px 22px;
  background: var(--cream-2);
  border-top: 2px solid var(--ink);
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .foot { grid-template-columns: 1fr 2fr; padding: 60px 40px; } }
.foot-brand { display: flex; align-items: center; gap: 14px; }
.foot-name { font-family: var(--display); font-size: 22px; }
.foot-tag { font-size: 13px; color: var(--ink-soft); }
.foot-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.foot-head { font-family: var(--display); font-size: 13px; margin-bottom: 10px; }
.foot-cols a { display: block; font-size: 14px; color: var(--ink-soft); padding: 3px 0; }
.foot-cols a:hover { color: var(--ink); }
.foot-fine { grid-column: 1 / -1; font-size: 12px; color: var(--ink-soft); border-top: 1px solid rgba(15,15,14,0.12); padding-top: 20px; }

/* ---------- TOAST ---------- */
.toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--ink); color: var(--lime);
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--display); font-size: 14px;
  box-shadow: var(--shadow);
  z-index: 200;
  transition: transform .35s cubic-bezier(.2,.9,.3,1.3);
}
.toast.on { transform: translateX(-50%) translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
