/* ═══════════════════════════════════════════════════════════════════════════
   Card Vendor Showcase — standalone marketing site.
   Self-contained: brand tokens + component styles inlined so this folder hosts
   anywhere. Mirrors the design-system components (Button, Badge, CardTile,
   SlabLabel, PriceTag, LiveDot) as plain CSS. Light "room" only.
   ═══════════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wdth,wght@100,400;100,600;100,700;125,800;125,900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  /* Base palette */
  --ink: #141210; --ink-pure: #0E0C0A; --riser: #221E1A; --riser-2: #2C2824; --riser-line: #3A352F;
  --paper: #F6F4EF; --paper-card: #FFFFFF; --paper-sunk: #EFEBE2; --paper-line: #E3DDD1;
  --brass: #D99A2B; --brass-deep: #B97F1C; --brass-lift: #E8B85A; --brass-tint: #F3E4C4; --brass-glow: rgba(217,154,43,0.30);
  --stone-50:#F6F4EF; --stone-100:#ECE8E0; --stone-200:#DCD6CA; --stone-300:#C4BCAC; --stone-400:#A89E8C;
  --stone-500:#877D6C; --stone-600:#655D50; --stone-700:#4A443A; --stone-800:#322E28; --stone-900:#1F1C18;
  --ok:#5E8C4F; --ok-tint:#E6EEDD; --warn:#C8861F; --warn-tint:#F6E8C9;
  --danger:#B0472F; --danger-tint:#F3DDD5; --info:#3F6E8C; --info-tint:#DDE8EE;
  --foil: linear-gradient(100deg,#54E0E6 0%,#C77BE8 38%,#E8B14B 72%,#54E0E6 100%);

  /* Semantic — light room */
  --site-bg:var(--paper); --site-surface:var(--paper-card); --site-surface-sunk:var(--paper-sunk);
  --site-line:var(--paper-line); --site-line-strong:var(--stone-200);
  --text-body:var(--ink); --text-strong:var(--ink-pure); --text-muted:var(--stone-600); --text-faint:var(--stone-400);
  --display-text:var(--paper); --display-text-muted:rgba(246,244,239,0.62); --display-text-faint:rgba(246,244,239,0.34); --display-line:var(--riser-line);

  /* Type */
  --font-display:'Archivo','Arial Narrow',system-ui,sans-serif;
  --font-body:'Plus Jakarta Sans',system-ui,-apple-system,sans-serif;
  --font-data:'IBM Plex Mono',ui-monospace,'SFMono-Regular',monospace;

  /* Space / radius / shadow / motion */
  --page-max:1200px; --reading-max:680px;
  --r-sm:7px; --r-md:12px; --r-lg:18px; --r-xl:26px; --r-card:7px; --r-pill:999px;
  --shadow-sm:0 1px 2px rgba(20,18,16,0.06),0 1px 1px rgba(20,18,16,0.04);
  --shadow-md:0 4px 14px rgba(20,18,16,0.08),0 1px 3px rgba(20,18,16,0.05);
  --shadow-lg:0 18px 44px rgba(20,18,16,0.14),0 4px 12px rgba(20,18,16,0.08);
  --shadow-card:0 12px 34px rgba(20,18,16,0.16);
  --spotlight:radial-gradient(120% 90% at 50% 0%,rgba(217,154,43,0.16) 0%,rgba(217,154,43,0.04) 36%,rgba(0,0,0,0) 70%);
  --ease-out:cubic-bezier(0.16,1,0.3,1);
}

/* ── Reset ─────────────────────────────────────────────────────────────── */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--site-bg); color: var(--text-body);
  font-family: var(--font-body); font-size: 16px; line-height: 1.5;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--brass-tint); }
h1,h2,h3,h4,p { margin: 0; }
:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--brass-glow); border-radius: var(--r-sm); }

/* ── Layout ────────────────────────────────────────────────────────────── */
.wrap { max-width: var(--page-max); margin: 0 auto; padding-inline: 40px; }
.reading { max-width: var(--reading-max); margin: 0 auto; padding-inline: 40px; }
.section { padding-block: 88px; }
.section-sm { padding-block: 56px; }
.divider-top { border-top: 1px solid var(--site-line); }
.bg-sunk { background: var(--paper-sunk); }

/* ── Type helpers ──────────────────────────────────────────────────────── */
.display {
  font-family: var(--font-display); font-weight: 900; font-stretch: 125%;
  letter-spacing: -0.025em; line-height: 0.98; color: var(--ink);
  text-wrap: balance; margin: 0;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-muted);
}
.eyebrow::before { content: ""; width: 18px; height: 1.5px; background: var(--stone-400); }
.eyebrow.no-rule::before { display: none; }
.lede { font-size: 19px; line-height: 1.55; color: var(--text-muted); }
.muted { color: var(--text-muted); }
.mono { font-family: var(--font-data); }

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 42px; padding-inline: 18px; border-radius: var(--r-sm);
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  letter-spacing: 0.01em; line-height: 1; border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: background 140ms ease, box-shadow 200ms ease, transform 100ms ease, color 140ms ease;
}
.btn-lg { height: 52px; padding-inline: 26px; font-size: 16px; gap: 10px; }
.btn-sm { height: 34px; padding-inline: 14px; font-size: 13px; gap: 7px; }
.btn-primary { background: var(--brass); color: var(--ink); }
.btn-primary:hover { background: var(--brass-lift); box-shadow: 0 6px 18px rgba(217,154,43,0.32); }
.btn-primary:active { background: var(--brass-deep); transform: translateY(1px); box-shadow: none; }
.btn-secondary { background: transparent; color: var(--text-body); border-color: var(--site-line-strong); }
.btn-secondary:hover { background: var(--paper-sunk); }
.btn-secondary:active { transform: translateY(1px); }
.btn-ghost { background: transparent; color: var(--text-muted); }
.btn-ghost:hover { background: var(--paper-sunk); }
/* dark-room buttons (footer) */
.on-ink .btn-secondary { color: var(--display-text); border-color: var(--display-line); }
.on-ink .btn-secondary:hover { background: rgba(246,244,239,0.06); }

.btn svg { width: 18px; height: 18px; }

/* ── Logo lockup ───────────────────────────────────────────────────────── */
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo-mark { display: block; flex: none; }
.logo-words { display: flex; flex-direction: column; line-height: 1; }
.logo-l1 {
  font-family: var(--font-display); font-weight: 800; font-stretch: 100%;
  font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 3px;
}
.logo-l2 {
  font-family: var(--font-display); font-weight: 900; font-stretch: 125%;
  font-size: 19px; letter-spacing: -0.01em; text-transform: uppercase; color: var(--ink);
}
.on-ink .logo-l1 { color: var(--display-text-muted); }
.on-ink .logo-l2 { color: var(--display-text); }

/* ── Header / nav ──────────────────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,244,239,0.82); backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--site-line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-link {
  font-size: 14.5px; font-weight: 600; color: var(--text-muted);
  transition: color 140ms ease; padding-block: 4px;
}
.nav-link:hover { color: var(--text-body); }
.nav-link.active { color: var(--text-body); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-burger { display: none; }

/* ── Badge / tag / live dot ────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 6px; height: 22px; padding-inline: 9px;
  border-radius: var(--r-pill); font-family: var(--font-body); font-weight: 700;
  font-size: 11.5px; letter-spacing: 0.02em; white-space: nowrap;
}
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.badge-ok { background: var(--ok-tint); color: #3F6234; }
.badge-warn { background: var(--warn-tint); color: var(--brass-deep); }
.badge-info { background: var(--info-tint); color: var(--info); }
.badge-solid-danger { background: var(--danger); color: #fff; }
.tag {
  display: inline-flex; align-items: center; height: 26px; padding-inline: 12px;
  border-radius: var(--r-pill); border: 1px solid var(--site-line-strong);
  font-size: 13px; font-weight: 600; color: var(--text-muted); background: var(--paper-card);
}
.live-dot { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-data); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.live-dot .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--brass); box-shadow: 0 0 0 0 var(--brass-glow); animation: pulse 2.2s var(--ease-out) infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(217,154,43,0.4); } 70% { box-shadow: 0 0 0 7px rgba(217,154,43,0); } 100% { box-shadow: 0 0 0 0 rgba(217,154,43,0); } }

/* ── Price (mono) ──────────────────────────────────────────────────────── */
.price { font-family: var(--font-data); font-weight: 600; color: var(--brass-deep); letter-spacing: 0.01em; line-height: 1; white-space: nowrap; }
.price .cur { font-size: 0.62em; font-weight: 500; margin-right: 0.1em; opacity: 0.8; }

/* ── Card tile ─────────────────────────────────────────────────────────── */
.card-tile { display: flex; flex-direction: column; gap: 10px; }
.card-tile .img {
  position: relative; aspect-ratio: 2.5 / 3.5; border-radius: var(--r-card); overflow: hidden;
  background: var(--paper-sunk); border: 1px solid var(--site-line); box-shadow: var(--shadow-sm);
  transition: box-shadow 200ms ease, transform 200ms var(--ease-out);
}
.card-tile .img img { width: 100%; height: 100%; object-fit: cover; }
.card-tile .img .badge { position: absolute; top: 9px; right: 9px; }
a.card-tile { cursor: pointer; }
a.card-tile:hover .img { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.card-tile .foot { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.card-tile .t-title { font-weight: 700; font-size: 14px; line-height: 1.25; color: var(--text-body); }
.card-tile .t-meta { font-weight: 500; font-size: 12px; margin-top: 2px; color: var(--text-faint); }
.card-tile .price { font-size: 14px; }

/* ── Slab label (signature) ────────────────────────────────────────────── */
.slab {
  display: flex; align-items: stretch; background: var(--paper-card); color: var(--ink);
  border: 1px solid var(--site-line); border-radius: var(--r-sm); overflow: hidden; box-shadow: var(--shadow-sm);
}
.slab.on-dark { border: none; box-shadow: 0 10px 30px rgba(0,0,0,0.45); }
.slab .grade {
  display: flex; align-items: center; padding-inline: 16px; background: var(--ink); color: var(--paper);
  font-family: var(--font-display); font-weight: 900; font-stretch: 125%; font-size: 18px; letter-spacing: -0.01em; white-space: nowrap;
}
.slab .body { flex: 1; min-width: 0; padding: 10px 16px; display: flex; flex-direction: column; justify-content: center; gap: 3px; }
.slab .s-title { font-weight: 800; font-size: 15px; letter-spacing: -0.01em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.slab .s-meta { font-weight: 500; font-size: 12px; color: var(--stone-600); white-space: nowrap; }
.slab .s-cert { font-family: var(--font-data); font-weight: 500; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--stone-500); margin-top: 1px; }
.slab .s-price { display: flex; align-items: center; justify-content: center; padding-inline: 18px; border-left: 1px solid var(--paper-line); }
.slab .s-price .price { font-size: 26px; }

/* ── Display hero mock (the dark case) ─────────────────────────────────── */
.case {
  position: relative; border-radius: var(--r-xl); overflow: hidden; background: var(--ink);
  border: 1px solid var(--display-line); box-shadow: var(--shadow-lg); padding: 28px 28px 26px;
  background-image: var(--spotlight);
}
.case .case-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.case .case-top .live-dot { color: var(--brass); }
.case .handle { font-family: var(--font-data); font-size: 12px; color: var(--display-text-faint); letter-spacing: 0.04em; }
.case .stage { display: flex; justify-content: center; padding: 4px 0 28px; }
.case .stage .holder { position: relative; }
.case .stage img { width: 188px; border-radius: var(--r-card); box-shadow: 0 26px 60px rgba(0,0,0,0.6); }
.case .stage .shelf { position: absolute; left: -22%; right: -22%; bottom: -14px; height: 16px; background: var(--riser); border-radius: 50%; filter: blur(6px); opacity: 0.8; }

/* ── Generic surface card ──────────────────────────────────────────────── */
.surface { background: var(--site-surface); border: 1px solid var(--site-line); border-radius: var(--r-md); box-shadow: var(--shadow-sm); }

/* ── Step / feature blocks ─────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.step .step-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.step .step-n { font-family: var(--font-data); font-size: 12px; color: var(--text-faint); letter-spacing: 0.1em; }
.step h3 { font-weight: 800; font-size: 21px; letter-spacing: -0.01em; margin-bottom: 8px; }
.step p { font-size: 15px; line-height: 1.55; color: var(--text-muted); }
.icon { width: 22px; height: 22px; color: var(--ink); flex: none; }
.icon-lg { width: 26px; height: 26px; }

/* ── Pricing ───────────────────────────────────────────────────────────── */
.plans { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: start; }
.plan { padding: 30px 28px 32px; display: flex; flex-direction: column; gap: 18px; }
.plan.featured { border-color: var(--brass); box-shadow: var(--shadow-md); position: relative; }
.plan .plan-name { font-family: var(--font-display); font-weight: 900; font-stretch: 125%; font-size: 24px; letter-spacing: -0.01em; text-transform: uppercase; }
.plan .plan-price { display: flex; align-items: baseline; gap: 6px; }
.plan .plan-price .amt { font-family: var(--font-data); font-weight: 600; font-size: 40px; color: var(--ink); line-height: 1; }
.plan .plan-price .per { font-size: 14px; color: var(--text-faint); }
.plan ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.plan li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--text-body); }
.plan li svg { width: 18px; height: 18px; color: var(--ok); flex: none; margin-top: 1px; }
.plan .plan-blurb { font-size: 14px; color: var(--text-muted); line-height: 1.5; }
.ribbon { position: absolute; top: 18px; right: 18px; }

/* ── Forms ─────────────────────────────────────────────────────────────── */
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 13px; font-weight: 700; color: var(--text-body); }
.input, .textarea {
  font-family: var(--font-body); font-size: 15px; color: var(--text-body);
  background: var(--paper-card); border: 1px solid var(--site-line-strong); border-radius: var(--r-sm);
  padding: 12px 14px; width: 100%; transition: border-color 140ms ease, box-shadow 140ms ease;
}
.input::placeholder, .textarea::placeholder { color: var(--text-faint); }
.input:focus, .textarea:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px var(--brass-glow); }
.textarea { resize: vertical; min-height: 130px; }

/* ── Footer ────────────────────────────────────────────────────────────── */
.site-foot { background: var(--ink); color: var(--display-text); }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-block: 56px 40px; }
.foot-blurb { font-size: 14px; color: var(--display-text-muted); max-width: 240px; margin-top: 16px; line-height: 1.55; }
.foot-col h4 { font-weight: 700; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--display-text-faint); margin-bottom: 14px; }
.foot-col .links { display: flex; flex-direction: column; gap: 10px; }
.foot-col a { font-size: 14px; color: var(--display-text-muted); transition: color 140ms ease; }
.foot-col a:hover { color: var(--display-text); }
.foot-bar { border-top: 1px solid var(--display-line); padding-block: 20px; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; font-family: var(--font-data); font-size: 12px; color: var(--display-text-faint); }
.foot-legal { display: flex; gap: 22px; align-items: center; }
.foot-bar a { color: var(--display-text-muted); transition: color 140ms ease; }
.foot-bar a:hover { color: var(--display-text); }

/* ── Hero variants ─────────────────────────────────────────────────────── */
.hero-split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; padding-block: 72px 56px; }
.hero-split .h1 { font-size: 64px; }
.hero-meta { display: flex; gap: 28px; margin-top: 40px; font-size: 14px; color: var(--text-faint); flex-wrap: wrap; }
.cta-row { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }

/* Centered marquee hero (direction B) */
.hero-center { text-align: center; padding-block: 84px 0; }
.hero-center .h1 { font-size: 78px; margin-inline: auto; max-width: 13ch; }
.hero-center .lede { margin: 22px auto 0; max-width: 540px; }
.hero-center .cta-row { justify-content: center; }
.fan {
  margin-top: 64px; position: relative; height: 360px;
  background: var(--ink); background-image: var(--spotlight);
  border-radius: var(--r-xl) var(--r-xl) 0 0; border: 1px solid var(--display-line); border-bottom: none;
  display: flex; align-items: flex-end; justify-content: center; overflow: hidden;
}
.fan .fan-row { display: flex; gap: 18px; align-items: flex-end; padding-bottom: 0; transform: translateY(36px); }
.fan .fan-card { width: 150px; border-radius: var(--r-card); box-shadow: 0 26px 60px rgba(0,0,0,0.6); transition: transform 300ms var(--ease-out); }
.fan .fan-card.lift { width: 178px; }
.fan-tag { position: absolute; top: 22px; left: 50%; transform: translateX(-50%); }

/* ── Layout switcher (exploration only) ────────────────────────────────── */
.switcher {
  position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%); z-index: 90;
  display: inline-flex; gap: 4px; padding: 5px; background: var(--ink); border-radius: var(--r-pill);
  box-shadow: var(--shadow-lg); font-family: var(--font-data); font-size: 12px;
}
.switcher a { padding: 7px 16px; border-radius: var(--r-pill); color: var(--display-text-muted); letter-spacing: 0.04em; }
.switcher a.on { background: var(--brass); color: var(--ink); font-weight: 600; }

/* ── Misc page bits ────────────────────────────────────────────────────── */
.kicker-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.stat { font-family: var(--font-data); }
.stat .num { font-size: 38px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
.stat .lab { font-family: var(--font-body); font-size: 14px; color: var(--text-muted); margin-top: 4px; }
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature-list { display: flex; flex-direction: column; gap: 22px; }
.feature-item { display: flex; gap: 16px; }
.feature-item .fi-icon { width: 44px; height: 44px; border-radius: var(--r-md); background: var(--paper-sunk); display: grid; place-items: center; flex: none; }
.feature-item h4 { font-size: 17px; font-weight: 800; margin-bottom: 5px; }
.feature-item p { font-size: 14.5px; color: var(--text-muted); line-height: 1.5; }
.placeholder {
  background-color: var(--paper-sunk);
  background-image: repeating-linear-gradient(135deg, transparent 0 11px, rgba(20,18,16,0.035) 11px 22px);
  border: 1px solid var(--site-line); border-radius: var(--r-md);
  display: grid; place-items: center; color: var(--text-faint);
  font-family: var(--font-data); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
}

/* ── Vendor identity (the showcase subject) ────────────────────────────── */
.vendor-id { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.vendor-name { font-family: var(--font-display); font-weight: 900; font-stretch: 125%; font-size: 19px; letter-spacing: -0.01em; text-transform: uppercase; color: var(--paper); line-height: 1; }
.case-foot { display: flex; align-items: center; gap: 7px; margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--display-line); font-family: var(--font-data); font-size: 11.5px; letter-spacing: 0.04em; color: var(--display-text-muted); }
.case-foot svg { width: 14px; height: 14px; flex: none; }
.avatar { width: 84px; height: 84px; border-radius: var(--r-md); flex: none; display: grid; place-items: center; background: var(--ink); color: var(--brass); font-family: var(--font-display); font-weight: 900; font-stretch: 125%; font-size: 34px; }
.spec-tags { display: flex; flex-wrap: wrap; gap: 8px; }

/* Curation callout — "a few, on purpose" */
.curated-trio { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; max-width: 760px; }
.count-pill { display: inline-flex; align-items: center; gap: 7px; height: 26px; padding-inline: 12px; border-radius: var(--r-pill); background: var(--ink); color: var(--paper); font-family: var(--font-data); font-size: 12px; letter-spacing: 0.04em; }
.count-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brass); }

/* "Where to find me" show list */
.shows { display: flex; flex-direction: column; }
.show-row { display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; padding: 16px 0; border-top: 1px solid var(--site-line); }
.show-row:last-child { border-bottom: 1px solid var(--site-line); }
.show-when { font-family: var(--font-data); font-size: 13px; color: var(--brass-deep); white-space: nowrap; }
.show-name { font-weight: 700; font-size: 16px; color: var(--text-body); }
.show-where { font-size: 13.5px; color: var(--text-muted); margin-top: 2px; }
.show-booth { font-family: var(--font-data); font-size: 12.5px; color: var(--text-muted); white-space: nowrap; }

/* What-the-app-offers card */
.offer { padding: 26px 24px 28px; display: flex; flex-direction: column; gap: 12px; height: 100%; }
.offer .o-icon { width: 44px; height: 44px; border-radius: var(--r-md); background: var(--paper-sunk); display: grid; place-items: center; }
.offer h3 { font-weight: 800; font-size: 19px; letter-spacing: -0.01em; }
.offer p { font-size: 14.5px; line-height: 1.55; color: var(--text-muted); }

/* ── The kiosk mock (the actual product) ──────────────────────────────────── */
.kiosk { background: var(--ink); background-image: var(--spotlight); border: 1px solid var(--display-line); border-radius: var(--r-xl); box-shadow: var(--shadow-lg); padding: 24px; }
.kiosk-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.k-name { font-family: var(--font-display); font-weight: 900; font-stretch: 125%; font-size: 18px; letter-spacing: -0.01em; text-transform: uppercase; color: var(--paper); }
.k-primary { display: flex; align-items: center; gap: 16px; padding: 18px 20px; border-radius: var(--r-lg); background: var(--riser); border: 1px solid var(--brass); box-shadow: 0 0 0 1px var(--brass), 0 16px 40px rgba(0,0,0,0.35); margin-bottom: 14px; color: var(--paper); }
.k-well { width: 48px; height: 48px; border-radius: var(--r-md); flex: none; display: grid; place-items: center; background: rgba(217,154,43,0.16); color: var(--brass); }
.k-lab { font-family: var(--font-body); font-weight: 800; font-size: 18px; color: var(--paper); letter-spacing: -0.01em; }
.k-sub { font-family: var(--font-body); font-size: 13px; color: var(--display-text-muted); margin-top: 2px; }
.k-arrow { margin-left: auto; color: var(--display-text-muted); display: flex; }
.k-arrow .k-ic { width: 22px; height: 22px; }
.kiosk-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.k-tile { display: flex; flex-direction: column; gap: 10px; padding: 18px; border-radius: var(--r-lg); background: var(--riser); border: 1px solid var(--display-line); color: var(--paper); }
.k-tile .k-lab { font-size: 16px; }
.k-tile .k-sub { font-size: 12px; }
.k-ic { width: 26px; height: 26px; flex: none; }

/* Customer-action + benefit grids */
.actions { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.action { padding: 22px 18px 24px; display: flex; flex-direction: column; gap: 12px; height: 100%; }
.action .a-ic { width: 44px; height: 44px; border-radius: var(--r-md); background: var(--paper-sunk); display: grid; place-items: center; }
.action h3 { font-weight: 800; font-size: 16px; letter-spacing: -0.01em; }
.action p { font-size: 13.5px; line-height: 1.5; color: var(--text-muted); }

/* ── Connect rows (join list · socials · pay) ──────────────────────────── */
.kiosk-label { font-family: var(--font-data); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--display-text-faint); margin-bottom: 9px; }
.next-show-chip { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: var(--r-sm); background: var(--riser); border: 1px solid var(--display-line); }
.next-show-chip .nd { width: 42px; height: 42px; flex: none; border-radius: var(--r-sm); background: var(--ink); display: flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1; }
.next-show-chip .nd .m { font-family: var(--font-data); font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brass); }
.next-show-chip .nd .d { font-family: var(--font-data); font-weight: 600; font-size: 17px; color: var(--paper); margin-top: 1px; }
.next-show-chip .nt { font-weight: 700; font-size: 14px; color: var(--paper); }
.next-show-chip .nm { font-family: var(--font-data); font-size: 11.5px; color: var(--display-text-muted); margin-top: 2px; }

.social-row { display: flex; gap: 8px; }
.social-chip { width: 40px; height: 40px; border-radius: var(--r-sm); display: grid; place-items: center; background: var(--riser); border: 1px solid var(--display-line); color: var(--display-text-muted); transition: color 140ms ease, border-color 140ms ease; }
.social-chip:hover { color: var(--paper); border-color: var(--stone-600); }
.social-chip svg { width: 19px; height: 19px; }
.pay-row { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-badge { display: inline-flex; align-items: center; gap: 7px; height: 38px; padding: 0 13px; border-radius: var(--r-sm); background: var(--riser); border: 1px solid var(--display-line); font-family: var(--font-data); font-size: 12.5px; color: var(--display-text-muted); white-space: nowrap; }
.pay-badge svg { width: 15px; height: 15px; }
/* light-room variants (public vendor card) */
.on-light .social-chip { background: var(--paper-card); border-color: var(--site-line-strong); color: var(--text-muted); }
.on-light .social-chip:hover { color: var(--ink); border-color: var(--stone-400); }
.on-light .pay-badge { background: var(--paper-card); border-color: var(--site-line-strong); color: var(--text-muted); }

/* big kiosk demo (showcase page) */
.kiosk-lg { max-width: 480px; margin: 0 auto; padding: 30px; }
.kiosk-lg .kiosk-top { margin-bottom: 22px; }
.kiosk-lg .k-name { font-size: 24px; }
.kiosk-feat { display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; margin: 16px 0; }
.kiosk-feat img { width: 100%; border-radius: 4px; border: 1px solid var(--display-line); }

/* real app screenshots dropped into placeholders */
.shot { width: 100%; height: auto; display: block; object-fit: cover; border-radius: var(--r-md); border: 1px solid var(--site-line); box-shadow: var(--shadow-md); background: var(--ink); }

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 920px) {
  .wrap { padding-inline: 24px; }
  .nav-links { display: none; }
  .hero-split { grid-template-columns: 1fr; gap: 40px; padding-block: 48px 36px; }
  .hero-split .h1 { font-size: 48px; }
  .hero-center .h1 { font-size: 52px; }
  .steps, .plans, .kicker-grid { grid-template-columns: 1fr; gap: 28px; }
  .feature-row { grid-template-columns: 1fr; gap: 32px; }
  .feature-row .placeholder[style*="order"] { order: 0 !important; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .feat-grid { grid-template-columns: repeat(2,1fr) !important; }
  .curated-trio { grid-template-columns: repeat(2,1fr); }
  .actions { grid-template-columns: repeat(2,1fr); }
  .show-row { grid-template-columns: auto 1fr; }
  .show-booth { grid-column: 2; }
  .contact-grid { grid-template-columns: 1fr !important; gap: 36px; }
  .section { padding-block: 60px; }
  .switcher { bottom: 12px; }
}
@media (min-width: 921px) and (max-width: 1180px) {
  .feat-grid { grid-template-columns: repeat(3,1fr) !important; }
  .actions { grid-template-columns: repeat(3,1fr); }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .live-dot .pulse { animation: none; }
}
