/* ============================================================
   BURGER CLUB — Case Study
   Brand: black + bright yellow, bold sans-serif
   ============================================================ */

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

:root {
  --bc-black: #0A0A0A;
  --bc-ink: #111111;
  --bc-ink-2: #1A1A1A;
  --bc-ink-3: #232323;
  --bc-line: rgba(255, 255, 255, 0.08);
  --bc-line-strong: rgba(255, 255, 255, 0.14);
  --bc-yellow: #FFC929;
  --bc-yellow-hot: #FFD400;
  --bc-yellow-soft: #FFE680;
  --bc-yellow-deep: #E5A800;
  --bc-text: #FFFFFF;
  --bc-text-mute: rgba(255, 255, 255, 0.62);
  --bc-text-faint: rgba(255, 255, 255, 0.36);
  --bc-red: #E94B3C;
  --bc-green: #2DD081;
}

html { scroll-behavior: smooth; }
html, body {
  background: var(--bc-black);
  color: var(--bc-text);
  font-family: 'Manrope', 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "ss01" on, "cv11" on;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }
.upper { text-transform: uppercase; letter-spacing: 0.16em; font-size: 11px; font-weight: 600; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
[data-reveal="left"]  { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="zoom"]  { transform: scale(0.95); }
[data-reveal="fade"]  { transform: none; }
[data-reveal].is-in {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal-stagger].is-in > * { opacity: 1; transform: translateY(0); }
[data-reveal-stagger].is-in > *:nth-child(1)  { transition-delay: 0.04s; }
[data-reveal-stagger].is-in > *:nth-child(2)  { transition-delay: 0.10s; }
[data-reveal-stagger].is-in > *:nth-child(3)  { transition-delay: 0.16s; }
[data-reveal-stagger].is-in > *:nth-child(4)  { transition-delay: 0.22s; }
[data-reveal-stagger].is-in > *:nth-child(5)  { transition-delay: 0.28s; }
[data-reveal-stagger].is-in > *:nth-child(6)  { transition-delay: 0.34s; }
[data-reveal-stagger].is-in > *:nth-child(7)  { transition-delay: 0.40s; }
[data-reveal-stagger].is-in > *:nth-child(8)  { transition-delay: 0.46s; }
[data-reveal-stagger].is-in > *:nth-child(9)  { transition-delay: 0.52s; }
[data-reveal-stagger].is-in > *:nth-child(10) { transition-delay: 0.58s; }

@keyframes pulse-yellow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 201, 41, 0.5); }
  50%      { box-shadow: 0 0 0 12px rgba(255, 201, 41, 0); }
}
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes float-y-soft {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.3; }
}
@keyframes dot-load {
  0%, 80%, 100% { opacity: 0.25; transform: scale(0.7); }
  40%           { opacity: 1; transform: scale(1); }
}

/* ============================================================
   TOP STRIP
   ============================================================ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 56px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 100;
  border-bottom: 1px solid var(--bc-line);
}
.topbar-inner {
  height: 100%;
  max-width: 1760px;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}
.topbar .left {
  display: flex; align-items: center; gap: 16px;
  letter-spacing: 0.22em; text-transform: uppercase; font-size: 10px;
  color: var(--bc-text-mute);
}
.topbar .left .vt { color: #fff; letter-spacing: 0.34em; }
.topbar .left .sep { opacity: 0.4; }
.topbar .left .crumb { color: var(--bc-yellow); }
.topbar .right { display: flex; align-items: center; gap: 28px; }
.topbar .right a {
  color: var(--bc-text-mute);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.2s;
}
.topbar .right a:hover { color: var(--bc-yellow); }
.topbar .cta {
  padding: 9px 18px;
  background: var(--bc-yellow);
  color: #0a0a0a;
  border-radius: 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.25s;
}
.topbar .cta:hover { background: var(--bc-yellow-hot); transform: translateY(-1px); }

/* ============================================================
   SECTION SCAFFOLDING
   ============================================================ */
section { position: relative; padding: 140px 60px; }
.container       { max-width: 1640px; margin: 0 auto; }
.container-mid   { max-width: 1280px; margin: 0 auto; }
.container-tight { max-width: 960px;  margin: 0 auto; }

.bg-black { background: var(--bc-black); }
.bg-ink   { background: var(--bc-ink); }
.bg-ink-2 { background: var(--bc-ink-2); }
.bg-yellow { background: var(--bc-yellow); color: #0a0a0a; }

/* ============================================================
   SECTION HEADER PATTERN
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--bc-yellow);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 24px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: currentColor;
}
.bg-yellow .eyebrow { color: #0a0a0a; }

.title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 5.6vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 32px;
}
.title em {
  font-style: normal;
  color: var(--bc-yellow);
}
.title .stroke {
  -webkit-text-stroke: 1.5px var(--bc-yellow);
  color: transparent;
}
.bg-yellow .title { color: #0a0a0a; }
.bg-yellow .title em { color: #0a0a0a; background: #0a0a0a; color: var(--bc-yellow); padding: 0 0.15em; }

.lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--bc-text-mute);
  max-width: 720px;
  margin-bottom: 64px;
  font-weight: 400;
}
.bg-yellow .lede { color: rgba(0, 0, 0, 0.72); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  padding: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 60% 55% at 80% 30%, rgba(255, 201, 41, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 15% 80%, rgba(255, 201, 41, 0.08) 0%, transparent 65%),
    var(--bc-black);
}
.hero::before {
  /* dotted texture */
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
  opacity: 0.6;
}

/* Giant outline word in background */
.hero-bgword {
  position: absolute;
  bottom: -8vw;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Manrope', sans-serif;
  font-weight: 900;
  font-size: 28vw;
  line-height: 0.85;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
  color: transparent;
  pointer-events: none;
  letter-spacing: -0.04em;
  white-space: nowrap;
  user-select: none;
}

.hero-grid {
  position: relative;
  width: 100%;
  max-width: 1760px;
  margin: 0 auto;
  padding: 140px 60px 80px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
  z-index: 2;
}

/* Brand lockup */
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 48px;
}
.brand-lockup .maple {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-lockup .maple svg { width: 100%; height: 100%; }
.brand-lockup .word {
  font-family: 'Manrope', sans-serif;
  font-weight: 900;
  font-size: 32px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--bc-yellow);
}
.brand-lockup .word .small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--bc-text-mute);
  font-weight: 600;
  margin-top: 8px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bc-yellow);
  margin-bottom: 28px;
  font-weight: 700;
  padding: 8px 16px;
  border: 1px solid rgba(255, 201, 41, 0.35);
  border-radius: 999px;
  background: rgba(255, 201, 41, 0.06);
}
.hero-tag .live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--bc-yellow);
  animation: blink 2s ease-in-out infinite;
  box-shadow: 0 0 12px var(--bc-yellow);
}

.hero-h1 {
  font-family: 'Manrope', sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 6.6vw, 124px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: #fff;
  margin-bottom: 36px;
}
.hero-h1 em {
  font-style: normal;
  color: var(--bc-yellow);
  position: relative;
}
.hero-h1 em::after {
  content: '';
  position: absolute;
  bottom: 0.12em;
  left: 0; right: 0;
  height: 4px;
  background: var(--bc-yellow);
  opacity: 0.3;
}

.hero-sub {
  font-size: 20px;
  line-height: 1.55;
  color: var(--bc-text-mute);
  max-width: 580px;
  margin-bottom: 48px;
  font-weight: 400;
}
.hero-sub strong { color: #fff; font-weight: 600; }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  background: var(--bc-yellow);
  color: #0a0a0a;
  border-radius: 10px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.4) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.7s;
}
.btn-primary:hover { background: var(--bc-yellow-hot); transform: translateY(-2px); box-shadow: 0 16px 36px rgba(255, 201, 41, 0.35); }
.btn-primary:hover::before { transform: translateX(100%); transition: transform 0.7s; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  background: transparent;
  color: #fff;
  border: 1px solid var(--bc-line-strong);
  border-radius: 10px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.25s;
}
.btn-ghost:hover { border-color: var(--bc-yellow); color: var(--bc-yellow); }

.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--bc-line);
  max-width: 700px;
}
.hero-meta .item .k {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bc-yellow);
  margin-bottom: 10px;
  font-weight: 700;
}
.hero-meta .item .v {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* HERO VISUAL — kiosk display */
.hero-visual {
  position: relative;
  height: 760px;
}
.hero-visual .glow {
  position: absolute;
  top: 30%; left: 40%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255, 201, 41, 0.25) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   UNIFIED KIOSK FRAME (for consistency across screens)
   ============================================================ */
.kiosk {
  position: relative;
  display: inline-block;
}
.kiosk-bezel {
  background: #111;
  border-radius: 26px;
  padding: 22px 22px 0;
  position: relative;
  box-shadow:
    0 60px 100px -20px rgba(0, 0, 0, 0.7),
    0 30px 60px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  z-index: 2;
}
.kiosk-bezel::before {
  /* top sensor strip */
  content: '';
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
}
.kiosk-screen {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  line-height: 0;
  aspect-ratio: 600 / 1000;
  position: relative;
}
.kiosk-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.kiosk-stripe {
  /* yellow brand stripe on bezel below screen */
  height: 28px;
  margin: 14px -22px 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.2) 50%, transparent 100%),
    var(--bc-yellow);
  border-bottom-left-radius: 26px;
  border-bottom-right-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.34em;
  color: #0a0a0a;
}
.kiosk-base {
  /* the platform/base shadow underneath */
  position: relative;
  height: 32px;
  margin: 0 18px;
  background: linear-gradient(to bottom, #0a0a0a, transparent);
  border-bottom-left-radius: 40% 100%;
  border-bottom-right-radius: 40% 100%;
  z-index: 1;
  opacity: 0.7;
}

.kiosk.sm .kiosk-bezel { padding: 14px 14px 0; border-radius: 18px; }
.kiosk.sm .kiosk-stripe { height: 20px; margin: 10px -14px 0; border-bottom-left-radius: 18px; border-bottom-right-radius: 18px; font-size: 7px; letter-spacing: 0.3em; }

.kiosk-step-num {
  position: absolute;
  top: -16px; left: -16px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bc-yellow);
  color: #0a0a0a;
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 12px 28px rgba(255, 201, 41, 0.4);
}

/* Hero kiosk styling */
.hero-kiosk {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 360px;
  animation: float-y-soft 7s ease-in-out infinite;
}
.hero-kiosk-2 {
  position: absolute;
  top: 55%; right: -10%;
  transform: translateY(-50%) rotate(6deg);
  z-index: 1;
  width: 240px;
  opacity: 0.85;
  filter: blur(0.5px);
  animation: float-y 6s ease-in-out infinite 0.5s;
}
.hero-kiosk-3 {
  position: absolute;
  top: 60%; left: -8%;
  transform: translateY(-50%) rotate(-6deg);
  z-index: 1;
  width: 220px;
  opacity: 0.75;
  filter: blur(0.5px);
  animation: float-y 7s ease-in-out infinite 1s;
}

/* ============================================================
   MARQUEE STRIP (Tomato‑red brand-style)
   ============================================================ */
.marquee {
  background: var(--bc-yellow);
  color: #0a0a0a;
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  border-top: 2px solid #0a0a0a;
  border-bottom: 2px solid #0a0a0a;
}
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  gap: 60px;
  font-family: 'Manrope', sans-serif;
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.01em;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 30px;
}
.marquee-track .dot {
  width: 12px; height: 12px;
  background: #0a0a0a;
  border-radius: 50%;
  display: inline-block;
}

/* ============================================================
   SNAPSHOT STRIP
   ============================================================ */
.snap {
  padding: 80px 60px;
  background: var(--bc-ink);
  border-bottom: 1px solid var(--bc-line);
}
.snap-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  max-width: 1640px;
  margin: 0 auto;
}
.snap-item {
  padding: 0 28px;
  border-right: 1px solid var(--bc-line);
}
.snap-item:last-child { border-right: none; }
.snap-item:first-child { padding-left: 0; }
.snap-item .k {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bc-yellow);
  margin-bottom: 12px;
  font-weight: 700;
}
.snap-item .v {
  font-family: 'Manrope', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.snap-item .v em { font-style: normal; color: var(--bc-yellow); }

/* ============================================================
   CHALLENGE — pain vs gain
   ============================================================ */
.chal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}
.chal-col-h {
  font-family: 'Manrope', sans-serif;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.chal-col-h .badge {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 700;
}
.chal-col-h.pain .badge { background: rgba(233, 75, 60, 0.15); color: var(--bc-red); }
.chal-col-h.gain .badge { background: rgba(45, 208, 129, 0.15); color: var(--bc-green); }

.chal-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.chal-list li {
  display: flex;
  gap: 18px;
  padding: 22px 26px;
  background: var(--bc-ink-2);
  border: 1px solid var(--bc-line);
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--bc-text-mute);
  transition: all 0.3s;
}
.chal-list li:hover {
  transform: translateX(4px);
  border-color: var(--bc-yellow);
}
.chal-list li strong { color: #fff; font-weight: 600; }
.chal-list li .ic {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  margin-top: -2px;
}
.chal-list.pain li .ic { background: rgba(233, 75, 60, 0.15); color: var(--bc-red); }
.chal-list.gain li .ic { background: rgba(45, 208, 129, 0.15); color: var(--bc-green); }

/* ============================================================
   USER JOURNEY — 6 kiosks in a row
   ============================================================ */
.journey-wrap {
  position: relative;
  margin-top: 80px;
}
.journey-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
  position: relative;
}
.journey-step {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.journey-step .kiosk { transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.journey-step:hover .kiosk { transform: translateY(-10px) scale(1.03); }
.journey-step .info {
  padding: 0 8px;
}
.journey-step .info .step-k {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bc-yellow);
  font-weight: 700;
  margin-bottom: 8px;
}
.journey-step .info .step-t {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.journey-step .info .step-d {
  font-size: 13px;
  color: var(--bc-text-mute);
  line-height: 1.5;
}

/* Connecting arrow line behind kiosks */
.journey-arrow-line {
  position: absolute;
  top: 30%;
  left: 0; right: 0;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--bc-yellow) 0 12px, transparent 12px 24px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   FEATURE — admin panel
   ============================================================ */
.feature {
  padding: 140px 60px;
}
.feature-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
  max-width: 1760px;
  margin: 0 auto;
}
.feature-grid.reverse { grid-template-columns: 1.15fr 0.85fr; }
.feature-grid.reverse .feature-copy { order: 2; }
.feature-num {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bc-yellow);
  font-weight: 700;
  margin-bottom: 14px;
}
.feature-t {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 4.4vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 28px;
}
.feature-t em { color: var(--bc-yellow); font-style: normal; }
.feature-d {
  font-size: 17px;
  color: var(--bc-text-mute);
  line-height: 1.65;
  margin-bottom: 32px;
}
.feature-bullets { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--bc-text-mute);
}
.feature-bullets li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--bc-yellow);
  border-radius: 50%;
  margin-top: 9px;
  flex-shrink: 0;
}
.feature-bullets li strong { color: #fff; font-weight: 600; }

.browser {
  background: #050505;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 50px 100px -20px rgba(0, 0, 0, 0.6),
    0 24px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--bc-line);
}
.browser-bar {
  height: 32px;
  background: #050505;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 7px;
  border-bottom: 1px solid var(--bc-line);
}
.browser-bar .dot { width: 10px; height: 10px; border-radius: 50%; background: #444; }
.browser-bar .dot:nth-child(1) { background: #FF5F57; }
.browser-bar .dot:nth-child(2) { background: #FEBC2E; }
.browser-bar .dot:nth-child(3) { background: #28C840; }
.browser-bar .url {
  margin-left: 16px;
  flex: 1;
  height: 18px;
  background: var(--bc-ink-2);
  border-radius: 5px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 10px;
  color: var(--bc-text-mute);
  font-family: 'JetBrains Mono', monospace;
  max-width: 360px;
}
.browser-body { background: var(--bc-ink); line-height: 0; }
.browser-body img { width: 100%; display: block; }

/* ============================================================
   iiko INTEGRATION DIAGRAM
   ============================================================ */
.iiko-diagram {
  background: var(--bc-ink-2);
  border: 1px solid var(--bc-line);
  border-radius: 18px;
  padding: 40px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 90px 1fr 90px 1fr;
  gap: 20px;
  align-items: center;
}
.iiko-card {
  background: var(--bc-ink);
  border: 1px solid var(--bc-line);
  border-radius: 12px;
  padding: 22px 20px;
  text-align: center;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  position: relative;
}
.iiko-card.kiosk-card { border-color: var(--bc-yellow); }
.iiko-card.kiosk-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 201, 41, 0.2), transparent);
  z-index: -1;
}
.iiko-card .ic {
  width: 48px; height: 48px;
  background: var(--bc-yellow);
  color: #0a0a0a;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  margin: 0 auto;
}
.iiko-card .ic.dark { background: #0a0a0a; color: var(--bc-yellow); border: 1px solid var(--bc-yellow); }
.iiko-card .nm {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.iiko-card .sb { font-size: 11px; color: var(--bc-text-mute); line-height: 1.4; }
.iiko-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
}
.iiko-arrow .line {
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--bc-yellow) 0 6px, transparent 6px 14px);
}
.iiko-arrow .lbl {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bc-yellow);
  font-weight: 700;
}
.iiko-arrow .head {
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 6px solid var(--bc-yellow);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.iiko-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.iiko-feat {
  background: var(--bc-ink-2);
  border: 1px solid var(--bc-line);
  border-radius: 12px;
  padding: 22px 20px;
  transition: all 0.3s;
}
.iiko-feat:hover { border-color: var(--bc-yellow); transform: translateY(-3px); }
.iiko-feat .ic {
  width: 36px; height: 36px;
  background: rgba(255, 201, 41, 0.12);
  color: var(--bc-yellow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 14px;
}
.iiko-feat .nm {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.iiko-feat .d {
  font-size: 12px;
  color: var(--bc-text-mute);
  line-height: 1.5;
}

/* ============================================================
   PAYMENTS / FISCAL FLOW
   ============================================================ */
.flow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  background: var(--bc-ink-2);
  border: 1px solid var(--bc-line);
  border-radius: 18px;
  overflow: hidden;
  margin-top: 40px;
}
.flow-step {
  padding: 28px 20px;
  border-right: 1px solid var(--bc-line);
  position: relative;
  transition: background 0.3s;
}
.flow-step:hover { background: var(--bc-ink-3); }
.flow-step:last-child { border-right: none; }
.flow-step .n {
  display: inline-flex;
  width: 28px; height: 28px;
  background: var(--bc-yellow);
  color: #0a0a0a;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 14px;
}
.flow-step .t {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.flow-step .d { font-size: 11px; color: var(--bc-text-mute); line-height: 1.45; }

.api-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.api-card {
  background: var(--bc-ink-2);
  border: 1px solid var(--bc-line);
  border-radius: 14px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.api-card:hover { border-color: var(--bc-yellow); }
.api-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--bc-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.api-card:hover::before { transform: scaleX(1); }
.api-card .kn {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--bc-yellow);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.api-card .nm {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 12px;
}
.api-card .d {
  font-size: 13px;
  color: var(--bc-text-mute);
  line-height: 1.55;
  margin-bottom: 16px;
}
.api-card .mt {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.api-card .mt span {
  font-size: 10px;
  font-family: 'JetBrains Mono', monospace;
  padding: 3px 8px;
  background: rgba(255, 201, 41, 0.08);
  color: var(--bc-yellow);
  border-radius: 4px;
  letter-spacing: 0.04em;
}

/* ============================================================
   TECH STACK
   ============================================================ */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--bc-line);
  border: 1px solid var(--bc-line);
  border-radius: 14px;
  overflow: hidden;
}
.stack-cell {
  background: var(--bc-ink);
  padding: 32px 28px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  transition: background 0.3s;
}
.stack-cell:hover { background: var(--bc-ink-2); }
.stack-cell .k {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bc-yellow);
  font-weight: 700;
}
.stack-cell .v {
  font-family: 'Manrope', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #fff;
}
.stack-cell .v em { color: var(--bc-yellow); font-style: normal; }
.stack-cell .d {
  font-size: 13px;
  color: var(--bc-text-mute);
  line-height: 1.5;
}

/* ============================================================
   HARDWARE SECTION
   ============================================================ */
.hw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hw-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hw-photo {
  position: relative;
  max-width: 400px;
  filter: drop-shadow(0 50px 80px rgba(0, 0, 0, 0.5));
}
.hw-photo img {
  width: 100%;
  height: auto;
}
/* Diagonal labels pointing to parts of the kiosk */
.hw-pin {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hw-pin .pdot {
  width: 8px; height: 8px;
  background: var(--bc-yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 201, 41, 0.2);
  animation: pulse-yellow 2.4s ease-out infinite;
  flex-shrink: 0;
}
.hw-pin .pline {
  width: 100px;
  height: 1px;
  background: var(--bc-yellow);
}
.hw-pin.right { right: -180px; }
.hw-pin.right .pdot { order: 2; }
.hw-pin.right .pline { order: 1; }
.hw-pin.left { left: -180px; flex-direction: row-reverse; }

.hw-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.hw-spec {
  padding: 18px 20px;
  background: var(--bc-ink-2);
  border: 1px solid var(--bc-line);
  border-radius: 12px;
}
.hw-spec .k {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bc-yellow);
  font-weight: 700;
  margin-bottom: 8px;
}
.hw-spec .v {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}

/* ============================================================
   STATS / RESULTS BANNER
   ============================================================ */
.stats-banner {
  background: var(--bc-yellow);
  color: #0a0a0a;
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}
.stats-banner::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.08) 0%, transparent 60%);
}
.stats-inner { position: relative; z-index: 1; max-width: 1640px; margin: 0 auto; }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.stat {
  padding: 56px 32px;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}
.stat:last-child { border-right: none; }
.stat .v {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(64px, 7vw, 124px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: #0a0a0a;
  font-weight: 900;
}
.stat .v em { font-style: normal; color: rgba(0, 0, 0, 0.5); font-size: 0.55em; margin-left: 4px; }
.stat .l {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.5;
  margin-top: 14px;
  letter-spacing: 0.02em;
  font-weight: 500;
}

/* ============================================================
   OUTRO
   ============================================================ */
.outro {
  padding: 200px 60px;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255, 201, 41, 0.2) 0%, transparent 60%),
    var(--bc-black);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.outro::before {
  content: 'BURGER CLUB';
  position: absolute;
  bottom: -10vw;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Manrope', sans-serif;
  font-weight: 900;
  font-size: 26vw;
  line-height: 0.85;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.04);
  color: transparent;
  pointer-events: none;
  letter-spacing: -0.04em;
  white-space: nowrap;
  user-select: none;
}
.outro h2 {
  font-family: 'Manrope', sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 6.4vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  position: relative;
}
.outro h2 em { color: var(--bc-yellow); font-style: normal; }
.outro p {
  font-size: 19px;
  color: var(--bc-text-mute);
  max-width: 640px;
  margin: 0 auto 56px;
  line-height: 1.6;
  position: relative;
}

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  background: #050505;
  color: var(--bc-text-faint);
  padding: 36px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  border-top: 1px solid var(--bc-line);
}
.foot .l {
  display: flex;
  align-items: center;
  gap: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.foot .l b { color: #fff; letter-spacing: 0.34em; font-weight: 700; }
.foot .sep { opacity: 0.3; }

/* ============================================================
   HERO v2 — kinetic redesign
   ============================================================ */
.hero-v2 {
  min-height: 100vh;
  padding: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(255, 201, 41, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 12% 80%, rgba(255, 201, 41, 0.06) 0%, transparent 65%),
    var(--bc-black);
}
.hero-v2 .h-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.7;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 30%, transparent 80%);
}
.hero-v2 .h-spot {
  position: absolute;
  top: 0; left: 0;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 201, 41, 0.18) 0%, transparent 65%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  mix-blend-mode: screen;
  z-index: 1;
}

/* Floating word in background */
.hero-v2 .h-bgword {
  position: absolute;
  bottom: -7vw;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Manrope', sans-serif;
  font-weight: 900;
  font-size: 26vw;
  line-height: 0.85;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.045);
  color: transparent;
  letter-spacing: -0.045em;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.hero-v2 .h-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1760px;
  margin: 0 auto;
  padding: 130px 60px 70px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}

/* === Left column === */

/* Brand chip — proper burger SVG */
.bc-brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 12px 22px 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  margin-bottom: 36px;
}
.bc-brand-chip .bc-burger {
  width: 38px; height: 38px;
  background: var(--bc-yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(255, 201, 41, 0.12);
}
.bc-brand-chip .bc-burger svg { width: 26px; height: 26px; }
.bc-brand-chip .bc-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--bc-yellow);
  line-height: 1;
}
.bc-brand-chip .bc-name small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bc-text-mute);
  font-weight: 600;
  margin-top: 5px;
}

/* Live tag */
.bc-live-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--bc-yellow);
  margin-bottom: 28px;
}
.bc-live-tag .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--bc-yellow);
  box-shadow: 0 0 10px var(--bc-yellow);
  animation: blink 1.8s ease-in-out infinite;
}

/* Big H1 */
.bc-h1 {
  font-family: 'Manrope', sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 7vw, 132px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: #fff;
  margin-bottom: 32px;
}
.bc-h1 .y {
  display: inline-block;
  position: relative;
  color: var(--bc-yellow);
}
.bc-h1 .y::after {
  content: '';
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 0.07em;
  height: 0.12em;
  background: var(--bc-yellow);
  opacity: 0.22;
  border-radius: 2px;
}
.bc-h1 .rotor {
  display: inline-flex;
  height: 1em;
  overflow: hidden;
  vertical-align: -0.06em;
  position: relative;
  padding: 0 0.05em;
}
.bc-h1 .rotor-track {
  display: flex;
  flex-direction: column;
  animation: rotor 9s ease-in-out infinite;
}
.bc-h1 .rotor-track > span {
  display: block;
  height: 1em;
  line-height: 1;
  color: var(--bc-yellow);
}
@keyframes rotor {
  0%, 18%   { transform: translateY(0); }
  22%, 40%  { transform: translateY(-1em); }
  44%, 62%  { transform: translateY(-2em); }
  66%, 84%  { transform: translateY(-3em); }
  88%, 100% { transform: translateY(0); }
}

.bc-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--bc-text-mute);
  max-width: 580px;
  margin-bottom: 40px;
  font-weight: 400;
}
.bc-sub strong { color: #fff; font-weight: 600; }

.bc-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Live order ticker */
.bc-ticker {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 12px 20px 12px 12px;
  border: 1px solid rgba(255, 201, 41, 0.25);
  background: rgba(255, 201, 41, 0.04);
  border-radius: 14px;
  margin-bottom: 48px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--bc-text-mute);
}
.bc-ticker .ic {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--bc-yellow);
  color: #0a0a0a;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 900;
  font-size: 12px;
  flex-shrink: 0;
}
.bc-ticker .val {
  color: var(--bc-yellow);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.bc-ticker .arrow {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--bc-green);
  font-weight: 700;
}

/* Meta tiles */
.bc-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--bc-line);
  border-bottom: 1px solid var(--bc-line);
  max-width: 720px;
}
.bc-meta .it {
  padding: 22px 24px 22px 0;
  border-right: 1px solid var(--bc-line);
}
.bc-meta .it:last-child { border-right: none; }
.bc-meta .it:first-child { padding-left: 0; }
.bc-meta .it:not(:first-child) { padding-left: 24px; }
.bc-meta .it .k {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bc-yellow);
  font-weight: 700;
  margin-bottom: 10px;
}
.bc-meta .it .v {
  font-family: 'Manrope', sans-serif;
  font-size: 19px;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* === Right column — kiosk stage === */
.bc-stage {
  position: relative;
  height: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bc-stage::before {
  content: '';
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 32px;
  background: radial-gradient(ellipse at center, rgba(255, 201, 41, 0.25) 0%, transparent 70%);
  filter: blur(20px);
  z-index: 0;
}

.bc-kiosk-main, .bc-kiosk-back-l, .bc-kiosk-back-r {
  position: absolute;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.bc-kiosk-main {
  z-index: 4;
  width: 340px;
  animation: float-y-soft 7s ease-in-out infinite;
}
.bc-kiosk-back-l {
  z-index: 2;
  width: 220px;
  left: -2%;
  top: 22%;
  transform: rotate(-7deg);
  opacity: 0.92;
  animation: float-y 6s ease-in-out infinite 0.8s;
}
.bc-kiosk-back-r {
  z-index: 2;
  width: 220px;
  right: -2%;
  top: 30%;
  transform: rotate(7deg);
  opacity: 0.92;
  animation: float-y 6.5s ease-in-out infinite 0.3s;
}

/* Floating order badge — easter egg */
.bc-badge-order {
  position: absolute;
  top: 8%;
  right: -4%;
  background: var(--bc-yellow);
  color: #0a0a0a;
  padding: 14px 22px;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(255, 201, 41, 0.3);
  z-index: 6;
  animation: float-y 5s ease-in-out infinite 0.5s;
  transform: rotate(6deg);
}
.bc-badge-order .k {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.75;
  margin-bottom: 4px;
}
.bc-badge-order .v {
  font-family: 'Manrope', sans-serif;
  font-weight: 900;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.bc-badge-order .v small {
  font-size: 14px;
  opacity: 0.6;
  font-weight: 800;
}

/* Floating chip — sync stat */
.bc-badge-sync {
  position: absolute;
  bottom: 14%;
  left: -6%;
  background: rgba(15, 15, 15, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 201, 41, 0.3);
  color: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float-y 6s ease-in-out infinite 1.2s;
  transform: rotate(-4deg);
}
.bc-badge-sync .ic {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(45, 208, 129, 0.18);
  color: var(--bc-green);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
}
.bc-badge-sync .ic::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--bc-green);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(45, 208, 129, 0.5);
  animation: pulse-green 1.8s ease-out infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(45, 208, 129, 0.5); }
  50%      { box-shadow: 0 0 0 8px rgba(45, 208, 129, 0); }
}
.bc-badge-sync .text {
  font-size: 12px;
  line-height: 1.3;
}
.bc-badge-sync .text strong { color: var(--bc-yellow); font-weight: 700; }
.bc-badge-sync .text small { display: block; color: var(--bc-text-mute); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }

/* Scroll cue */
.bc-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 700;
  z-index: 3;
}
.bc-scroll-cue::before,
.bc-scroll-cue::after {
  content: '';
  width: 40px;
  height: 1px;
  background: rgba(255, 201, 41, 0.4);
}
.bc-scroll-cue .arrow {
  display: inline-block;
  animation: bounce-y 1.8s ease-in-out infinite;
  color: var(--bc-yellow);
}
@keyframes bounce-y {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(4px); }
}

@media (max-width: 1100px) {
  .hero-v2 .h-grid { grid-template-columns: 1fr; padding: 110px 24px 60px; gap: 40px; }
  .bc-stage { height: 540px; }
  .bc-kiosk-main { width: 240px; }
  .bc-kiosk-back-l, .bc-kiosk-back-r { width: 160px; }
  .bc-badge-order { padding: 10px 14px; }
  .bc-badge-order .v { font-size: 22px; }
  .bc-meta { grid-template-columns: 1fr 1fr; }
  .bc-meta .it { padding: 16px 16px 16px 0 !important; border-bottom: 1px solid var(--bc-line); }
  .bc-meta .it:nth-child(odd) { padding-left: 0 !important; }
  .bc-meta .it:nth-child(even) { padding-left: 16px !important; border-right: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1280px) {
  .journey-track { grid-template-columns: repeat(3, 1fr); gap: 40px; }
  .iiko-diagram { grid-template-columns: 1fr; gap: 16px; padding: 24px; }
  .iiko-diagram .iiko-arrow { display: none; }
  .iiko-features, .api-grid, .hw-specs { grid-template-columns: repeat(2, 1fr); }
  .flow { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 800px) {
  section { padding: 80px 24px; }
  .hero-grid { grid-template-columns: 1fr; padding: 100px 24px 60px; gap: 40px; }
  .hero-visual { height: 480px; }
  .hero-meta { grid-template-columns: 1fr 1fr; gap: 24px; }
  .topbar-inner { padding: 0 18px; }
  .topbar .right a { display: none; }
  .chal-grid, .feature-grid, .feature-grid.reverse, .hw-grid { grid-template-columns: 1fr; gap: 50px; }
  .feature-grid.reverse .feature-copy { order: 0; }
  .snap-grid { grid-template-columns: 1fr 1fr; }
  .snap-item { padding: 14px 0; border-right: none; border-bottom: 1px solid var(--bc-line); }
  .journey-track { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stack-grid { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.2); padding: 36px 20px; }
  .flow { grid-template-columns: 1fr 1fr; }
  .hw-pin { display: none; }
  /* hardware image must fit on tablet/phone */
  .hw-photo { max-width: 320px; }
  .hw-specs { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   PHONE — tight breakpoint (<=560px)
   ============================================================ */
@media (max-width: 560px) {
  section { padding: 64px 18px; }
  .stats-banner { padding: 72px 18px; }
  .outro { padding: 110px 18px; }
  /* HERO — scale the kiosk stage so absolutely-positioned mockups/badges stay inside */
  .hero-v2 .h-grid { padding: 100px 18px 50px; gap: 28px; }
  .bc-stage { height: 420px; max-width: 100%; overflow: visible; }
  .bc-kiosk-main { width: 180px; }
  .bc-kiosk-back-l, .bc-kiosk-back-r { width: 118px; }
  .bc-kiosk-back-l { left: 4%; }
  .bc-kiosk-back-r { right: 4%; }
  .bc-badge-order { top: 4%; right: 0; padding: 8px 12px; }
  .bc-badge-order .v { font-size: 20px; }
  .bc-badge-order .v small { font-size: 11px; }
  .bc-badge-sync { bottom: 12%; left: 0; padding: 10px 12px; }
  .bc-badge-sync .text { font-size: 11px; }
  /* big headline must not push past the edge */
  .bc-h1 { font-size: clamp(40px, 13vw, 60px); overflow-wrap: break-word; word-break: break-word; }
  .bc-sub { font-size: 16px; }
  .bc-meta { grid-template-columns: 1fr 1fr; }
  .bc-brand-chip { flex-wrap: wrap; }
  /* journey kiosks one per row on phones */
  .journey-track { grid-template-columns: 1fr; gap: 36px; max-width: 280px; margin-left: auto; margin-right: auto; }
  /* heavy multi-column grids collapse to one */
  .snap-grid { grid-template-columns: 1fr 1fr; }
  .api-grid { grid-template-columns: 1fr; }
  .stack-grid { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr; }
  .flow-step { border-right: none; border-bottom: 1px solid var(--bc-line); }
  .flow-step:last-child { border-bottom: none; }
  .hw-specs { grid-template-columns: 1fr 1fr; }
  .hw-photo { max-width: 260px; }
  .marquee-track { font-size: 22px; }
  /* keep padded card lists comfortable */
  .chal-list li { padding: 18px 18px; }
}

/* ============================================================
   VERY SMALL PHONES (<=380px)
   ============================================================ */
@media (max-width: 380px) {
  section { padding: 56px 14px; }
  .bc-h1 { font-size: clamp(34px, 12vw, 48px); }
  .stack-grid { grid-template-columns: 1fr; }
  .stack-cell { min-height: 0; }
  .hw-specs { grid-template-columns: 1fr; }
  .snap-grid { grid-template-columns: 1fr; }
  .snap-item { border-bottom: 1px solid var(--bc-line); }
  .bc-meta { grid-template-columns: 1fr; }
  .bc-meta .it { border-right: none !important; padding-left: 0 !important; }
  .bc-stage { height: 360px; }
  .bc-kiosk-main { width: 150px; }
  .bc-kiosk-back-l, .bc-kiosk-back-r { width: 96px; }
}

/* phone fix: tech-stack 1 column to stop right-column clipping */
@media (max-width: 560px){.stack-grid{grid-template-columns:1fr !important;}}
