/* Umet Technology — Product Marketing Site
   Black & red premium palette (matches product UI) */

:root {
  --ink: #0f0f10;
  --ink-2: #1a1a1c;
  --ink-3: #2a2a2e;
  --red: #dc2626;
  --red-soft: #ef4444;
  --red-deep: #9a1212;
  --red-glow: rgba(220, 38, 38, 0.22);
  --red-bg: rgba(220, 38, 38, 0.08);
  --gold: #e9c46a;
  --cream: #fffdfc;
  --bg: #f7f7f9;
  --surface: #ffffff;
  --border: #e4e4e7;
  --text-dim: #4b4b52;
  --text-mute: #8a8a92;
  --green: #16a34a;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', 'Inter', system-ui, sans-serif;
  --radius: 20px;
  --radius-sm: 14px;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.18);
  --shadow-red: 0 12px 40px rgba(220, 38, 38, 0.25);
  --max: 1180px;
  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--max), calc(100% - 3rem));
  margin-inline: auto;
}

/* ── Navigation ─────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

.site-nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-color: var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

/* Over dark hero — light logo & nav (before scroll) */
.site-nav:not(.scrolled) .brand-name {
  color: var(--cream);
}

.site-nav:not(.scrolled) .brand-tag {
  color: rgba(255, 253, 252, 0.55);
}

.site-nav:not(.scrolled) .nav-links a:not(.nav-cta) {
  color: rgba(255, 253, 252, 0.72);
}

.site-nav:not(.scrolled) .nav-links a:not(.nav-cta):hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.site-nav:not(.scrolled) .menu-toggle {
  color: var(--cream);
}

.site-nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 3rem));
  margin-inline: auto;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.brand-name {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1.1;
}

.brand-tag {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-dim);
  border-left: 2px solid var(--red);
  padding-left: 0.5rem;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dim);
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover { color: var(--ink); background: rgba(0, 0, 0, 0.04); }

.nav-cta {
  margin-left: 0.75rem;
  background: var(--red);
  color: #fff !important;
  font-weight: 600 !important;
  padding: 0.6rem 1.25rem !important;
  box-shadow: var(--shadow-red);
}

.nav-cta:hover {
  background: var(--red-soft) !important;
  color: #fff !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--ink);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 4rem) 0 5rem;
  background:
    radial-gradient(120% 80% at 50% 0%, #1a0608 0%, #0a0102 55%, #000 100%);
  color: var(--cream);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(220, 38, 38, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 10% 80%, rgba(220, 38, 38, 0.06) 0%, transparent 40%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hero showcase — equal panels + languages underneath */
.hero-showcase {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  max-width: 680px;
}

.hero-screens {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  align-items: stretch;
}

/* Hero panels: cart defines the height, live concierge stretches to match */
.hero-screens .app-screen {
  aspect-ratio: auto;
  height: auto;
}

.hero-screens .app-screen-concierge-live .ui-concierge-frame {
  height: 100%;
}

/* Unified phone screenshot frame — full image, no crop */
.app-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 614 / 674;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.5);
  background: #050001;
}

.app-screen-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
}

/* Live concierge frame — real product top bar + screenshot body */
.app-screen-concierge {
  display: flex;
  flex-direction: column;
  background: #0f0f10;
  container-type: inline-size;
  aspect-ratio: auto;
  height: auto;
}

.ui-concierge-frame {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  font-size: clamp(8px, 2.85cqi, 11px);
}

.ui-concierge-top {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6em;
  padding: 0.65em 1.25em;
  width: 100%;
  background: #0f0f10;
}

/* Product table badge — matches live concierge UI */
.table-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #fff;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.25);
  white-space: nowrap;
  line-height: 1.2;
}

.table-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

.ui-concierge-frame .table-badge {
  font-size: 0.72em;
  padding: 0.35em 0.7em;
  gap: 0.45em;
}

.ui-concierge-frame .table-dot {
  width: 0.55em;
  height: 0.55em;
}

.ui-concierge-frame .concierge-cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.45em 0.65em;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15em;
  line-height: 1;
  cursor: default;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ui-concierge-frame .concierge-cart-btn .cart-badge {
  position: absolute;
  top: -0.45em;
  right: -0.45em;
  background: #dc2626;
  color: #fff;
  font-size: 0.65em;
  font-weight: 700;
  min-width: 1.35em;
  height: 1.35em;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.4);
}

.ui-concierge-body {
  width: 100%;
  height: auto;
  display: block;
}

/* Live HTML concierge (hero) — fills the panel to match the cart height */
.app-screen-concierge-live {
  background: radial-gradient(120% 90% at 50% 0%, #2a0d10 0%, #140406 55%, #0c0203 100%);
}

.app-screen-concierge-live .ui-concierge-frame {
  font-size: clamp(9px, 3.1cqi, 13px);
}

.ui-concierge-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.85em;
  padding: 0.6em 1.1em 1.1em;
  min-height: 0;
}

.ui-concierge-brand {
  text-align: center;
  margin-top: 0.2em;
}

.ui-concierge-logo {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.9em;
  letter-spacing: 0.06em;
  color: #fff;
  line-height: 1;
}

.ui-concierge-eyebrow {
  margin-top: 0.45em;
  font-size: 0.72em;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}

.ui-concierge-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  margin-top: 0.7em;
  padding: 0.35em 0.8em;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82em;
  color: rgba(255, 255, 255, 0.85);
}

.ui-concierge-status-dot {
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 0.18em rgba(52, 211, 153, 0.25);
}

.ui-concierge-bubble {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.9em;
  padding: 0.8em 0.9em;
}

.ui-concierge-bubble-label {
  display: block;
  font-size: 0.62em;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--red);
  margin-bottom: 0.4em;
}

.ui-concierge-bubble p {
  margin: 0;
  font-size: 0.85em;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

.ui-concierge-speak {
  text-align: center;
}

.ui-concierge-speak-label {
  display: block;
  font-size: 0.68em;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.6em;
}

.ui-concierge-langs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4em;
}

.ui-concierge-langs .cl {
  padding: 0.3em 0.7em;
  border-radius: 999px;
  font-size: 0.78em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

.ui-concierge-langs .cl.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.ui-concierge-mic-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7em;
  min-height: 0;
}

.ui-concierge-mic {
  width: 3.6em;
  height: 3.6em;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  box-shadow: 0 0.4em 1.2em rgba(220, 38, 38, 0.45), 0 0 0 0.5em rgba(220, 38, 38, 0.12);
}

.ui-concierge-mic svg {
  width: 1.5em;
  height: 1.5em;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ui-concierge-mic svg rect {
  fill: #fff;
  stroke: none;
}

.ui-concierge-mic-hint {
  font-size: 0.74em;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.ui-concierge-actions {
  display: flex;
  gap: 0.5em;
}

.ui-concierge-actions button {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35em;
  padding: 0.7em 0.4em;
  border-radius: 0.7em;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.68em;
  font-weight: 600;
  text-align: center;
  cursor: default;
  line-height: 1.2;
}

.ui-concierge-actions .ca-ico {
  font-size: 1.2em;
}

.app-screen-sm {
  width: min(200px, 100%);
  margin: 0 auto;
}

.app-screen-feature {
  width: min(280px, 100%);
  margin: 0 auto;
}

.app-screen-flow {
  width: min(220px, 100%);
  flex: none;
}

.hero-languages {
  padding: 0;
  margin: 0;
}

.hero-languages-label {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 253, 252, 0.45);
  margin-bottom: 0.75rem;
}

.hero-showcase .lang-grid {
  justify-content: center;
  max-width: none;
  gap: 0.35rem;
}

.hero-showcase .lang-tag {
  font-size: 0.65rem;
  padding: 0.3rem 0.6rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red-soft);
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--red-glow);
  border-radius: 999px;
  background: rgba(220, 38, 38, 0.08);
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red-soft);
  box-shadow: 0 0 10px var(--red-soft);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--red-soft);
}

.hero-lead {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(255, 253, 252, 0.72);
  max-width: 32rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-red);
}

.btn-primary:hover { background: var(--red-soft); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--cream);
}

.hero-stat span {
  font-size: 0.82rem;
  color: rgba(255, 253, 252, 0.55);
  letter-spacing: 0.02em;
}

.hero-float {
  position: absolute;
  background: rgba(15, 15, 16, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  font-size: 0.82rem;
  color: rgba(255, 253, 252, 0.85);
  max-width: 200px;
}

.hero-float.top { top: 8%; right: -8%; }
.hero-float.bottom { bottom: 12%; left: -10%; }

.hero-float strong {
  display: block;
  color: var(--red-soft);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.25rem;
}

/* ── Trust strip ────────────────────────────────────────────── */
.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.trust-icon {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--red-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.2rem;
}

.trust-item h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.trust-item p {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.45;
}

/* ── Section common ─────────────────────────────────────────── */
.section {
  padding: 6rem 0;
}

.section-dark {
  background: var(--ink);
  color: var(--cream);
}

.section-alt { background: var(--surface); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.85rem;
}

.section-dark .section-eyebrow { color: var(--red-soft); }

.section-header h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-header h2 em {
  font-style: italic;
  color: var(--red);
}

.section-dark .section-header h2 em { color: var(--red-soft); }

.section-header p {
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.65;
}

.section-dark .section-header p { color: rgba(255, 253, 252, 0.65); }

/* ── How it works ───────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 0.5rem;
}

.step-num {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--red);
  box-shadow: var(--shadow);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.step:hover .step-num {
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ── Feature split ──────────────────────────────────────────── */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.feature-split:last-child { margin-bottom: 0; }

.feature-split.reverse { direction: rtl; }
.feature-split.reverse > * { direction: ltr; }

.feature-copy h3 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.8vw, 2.35rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.feature-copy h3 em {
  font-style: italic;
  color: var(--red);
}

.section-dark .feature-copy h3 em { color: var(--red-soft); }

.feature-copy > p {
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.section-dark .feature-copy > p { color: rgba(255, 253, 252, 0.65); }

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.feature-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.section-dark .feature-list li { color: rgba(255, 253, 252, 0.7); }

.feature-list li::before {
  content: '';
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 0.45rem;
  box-shadow: 0 0 8px var(--red-glow);
}

.feature-list strong { color: var(--ink); font-weight: 600; }
.section-dark .feature-list strong { color: var(--cream); }

.feature-visual {
  position: relative;
}

.feature-visual img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.section-dark .feature-visual img {
  border-color: rgba(255, 255, 255, 0.1);
}

.feature-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--red);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  box-shadow: var(--shadow-red);
}

/* ── Persona tabs ───────────────────────────────────────────── */
.persona-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.persona-tab {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-dim);
  cursor: pointer;
  transition: all 0.25s;
}

.persona-tab.active,
.persona-tab:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: var(--shadow-red);
}

.persona-panel {
  display: none;
  animation: fadeUp 0.45s ease;
}

.persona-panel.active { display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.persona-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.persona-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.25s, box-shadow 0.25s;
}

.persona-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.persona-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--red-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.persona-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.persona-card p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.55;
}

/* ── Venue types ────────────────────────────────────────────── */
.venue-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.venue-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: default;
}

.venue-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--ink-2), var(--ink));
  transition: transform 0.4s;
}

.venue-card:hover .venue-card-bg { transform: scale(1.05); }

.venue-card-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 70%);
  color: var(--cream);
}

.venue-card-content h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
}

.venue-card-content p {
  font-size: 0.78rem;
  color: rgba(255, 253, 252, 0.65);
  margin-top: 0.25rem;
}

/* ── Pillars ────────────────────────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar {
  padding: 2rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.3s;
}

.pillar:hover { border-color: rgba(220, 38, 38, 0.35); }

.pillar-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--red-soft);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.pillar h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.pillar p {
  font-size: 0.9rem;
  color: rgba(255, 253, 252, 0.6);
  line-height: 1.6;
}

/* ── Quote ──────────────────────────────────────────────────── */
.quote-section {
  background: var(--surface);
  padding: 5rem 0;
}

.quote-block {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.quote-block blockquote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.quote-block blockquote em { color: var(--red); font-style: italic; }

.quote-metric {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red-bg);
  color: var(--red);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.quote-author {
  font-size: 0.9rem;
  color: var(--text-dim);
}

.quote-author strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--ink);
}

.faq-question span {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--red-bg);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.3s, background 0.3s;
}

.faq-item.open .faq-question span {
  transform: rotate(45deg);
  background: var(--red);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ── CTA ────────────────────────────────────────────────────── */
.cta-section {
  padding: 5rem 0;
  background:
    radial-gradient(80% 100% at 50% 100%, rgba(220, 38, 38, 0.15) 0%, transparent 60%),
    var(--ink);
  color: var(--cream);
  text-align: center;
}

.cta-section h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.cta-section p {
  color: rgba(255, 253, 252, 0.65);
  max-width: 520px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

.cta-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-form input {
  flex: 1;
  min-width: 220px;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.95rem;
}

.cta-form input::placeholder { color: rgba(255, 253, 252, 0.4); }

.cta-form input:focus {
  outline: none;
  border-color: var(--red-soft);
}

.cta-note {
  font-size: 0.78rem;
  color: rgba(255, 253, 252, 0.4);
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: #000;
  color: rgba(255, 253, 252, 0.55);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand .brand-name { color: var(--cream); }

.footer-brand p {
  font-size: 0.88rem;
  margin-top: 0.85rem;
  line-height: 1.55;
  max-width: 280px;
}

.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cream);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  padding: 0.3rem 0;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--red-soft); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
}

/* ── Reveal animations ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid,
  .feature-split { grid-template-columns: 1fr; gap: 2.5rem; }

  .feature-split.reverse { direction: ltr; }

  .hero-visual { order: -1; }

  .hero-float { display: none; }

  .trust-grid,
  .steps,
  .persona-cards,
  .venue-grid,
  .pillars { grid-template-columns: repeat(2, 1fr); }

  .steps::before { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-cta { margin-left: 0; width: 100%; text-align: center; }

  .menu-toggle { display: block; }

  .trust-grid,
  .steps,
  .persona-cards,
  .venue-grid,
  .pillars { grid-template-columns: 1fr; }

  .hero-stats { gap: 1.5rem; }

  .footer-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   Scroll progress, orbs, premium animations
   ═══════════════════════════════════════════════════════════════ */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  z-index: 10001;
  background: linear-gradient(90deg, var(--red), var(--gold));
  width: 0%;
  transition: width 0.1s linear;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  transition: transform 0.3s ease-out;
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(220, 38, 38, 0.15);
  top: 10%;
  right: 5%;
  animation: orbDrift 12s ease-in-out infinite;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(233, 196, 106, 0.08);
  bottom: 15%;
  left: 0;
  animation: orbDrift 15s ease-in-out infinite reverse;
}

@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -20px); }
}

.anim-float { animation: floatY 5s ease-in-out infinite; }
.anim-float-delay { animation: floatY 5s ease-in-out 0.8s infinite; }
.anim-float-delay-2 { animation: floatY 5s ease-in-out 1.6s infinite; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(22, 163, 74, 0.6);
  animation: pulse 1.6s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════════
   Device frames & UI mockups
   ═══════════════════════════════════════════════════════════════ */

.device-frame {
  position: relative;
  width: min(290px, 100%);
  margin: 0 auto;
  border-radius: 32px;
  padding: 10px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
}

.device-frame-dark {
  background: #0a0102;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.device-frame-light {
  background: #f0f0f2;
  border: 1px solid var(--border);
}

.device-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #000;
  border-radius: 0 0 12px 12px;
  z-index: 2;
}

.mock-screen {
  border-radius: 24px;
  overflow: hidden;
  font-size: 0.72rem;
}

.mock-concierge {
  background: radial-gradient(120% 100% at 50% 0%, #260c0f 0%, #0a0203 60%, #000 100%);
  color: var(--cream);
  padding: 2.5rem 1rem 1rem;
  min-height: 480px;
  display: flex;
  flex-direction: column;
}

.mock-concierge-compact { min-height: 520px; }

.mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.mock-header-light { color: var(--ink); }

.mock-logo {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
}

.mock-table-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.62rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(220, 38, 38, 0.18);
  color: #fca5a5;
  border: 1px solid rgba(220, 38, 38, 0.35);
}

.mock-table-pill-light {
  background: rgba(220, 38, 38, 0.08);
  color: var(--red);
}

.mock-tagline {
  text-align: center;
  font-size: 0.65rem;
  color: var(--red-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
}

.mock-chat {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
  padding: 0 0.25rem;
}

.mock-chat-tall { padding-bottom: 0.5rem; }

.mock-bubble {
  max-width: 92%;
  padding: 0.55rem 0.75rem;
  border-radius: 14px;
  line-height: 1.45;
  font-size: 0.68rem;
}

.mock-bubble-user {
  align-self: flex-end;
  background: rgba(220, 38, 38, 0.25);
  border: 1px solid rgba(220, 38, 38, 0.35);
  color: #fecaca;
}

.mock-bubble-ai {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 253, 252, 0.85);
}

.mock-bubble-ai strong { color: #fff; }

.mock-bubble-user.anim-chat-1 { animation: bubbleIn 0.6s ease 0.5s both; }
.mock-bubble-ai.anim-chat-2 { animation: bubbleIn 0.6s ease 1.4s both; }

@keyframes bubbleIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.typing-dots {
  display: inline-flex;
  gap: 3px;
  margin-right: 4px;
}

.typing-dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fca5a5;
  animation: dotBounce 1s infinite;
}

.typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.typing-dots span:nth-child(3) { animation-delay: 0.3s; }

@keyframes dotBounce {
  0%, 80%, 100% { opacity: 0.3; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-3px); }
}

.mock-lang-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 0.75rem;
}

.mock-lang-label {
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red-soft);
  width: 100%;
  margin-bottom: 0.15rem;
}

.mock-lang-pill {
  font-size: 0.58rem;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 253, 252, 0.55);
}

.mock-lang-pill.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.mock-mic-row {
  display: flex;
  justify-content: center;
  padding: 0.75rem 0 0.25rem;
}

.mock-mic {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.45);
}

.anim-mic-pulse { animation: micPulse 2s ease-in-out infinite; }

@keyframes micPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(220, 38, 38, 0.45), 0 0 0 0 rgba(220, 38, 38, 0.2); }
  50% { box-shadow: 0 8px 24px rgba(220, 38, 38, 0.55), 0 0 0 12px rgba(220, 38, 38, 0); }
}

.mock-cart-preview {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0.85rem;
  margin-top: 0.5rem;
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 12px;
  font-size: 0.68rem;
}

.mock-cart-cta { color: var(--red-soft); font-weight: 600; }

/* Menu mockup */
.mock-menu {
  background: var(--surface);
  color: var(--ink);
  padding: 1rem;
  min-height: 460px;
}

.mock-menu-full { min-height: 520px; }

.mock-menu-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  border-bottom: 2px solid var(--red);
  padding-bottom: 0.25rem;
  margin-bottom: 0.5rem;
}

.mock-menu-title-sm {
  font-size: 0.95rem;
  margin-top: 0.75rem;
}

.mock-menu-cat {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  background: var(--red-bg);
  padding: 3px 8px;
  border-radius: 999px;
  margin-bottom: 0.65rem;
}

.mock-menu-item {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
}

.mock-menu-item.highlight-item {
  background: var(--red-bg);
  margin: 0 -0.5rem;
  padding: 0.55rem 0.5rem;
  border-radius: 8px;
  border-bottom: none;
}

.mock-item-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 0.78rem;
}

.mock-item-desc {
  font-size: 0.62rem;
  color: var(--text-dim);
  margin-top: 2px;
  line-height: 1.35;
}

.mock-item-price {
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--red);
  white-space: nowrap;
}

.mock-add-btn {
  margin-top: 0.75rem;
  text-align: center;
  padding: 0.55rem;
  background: var(--red);
  color: #fff;
  font-weight: 600;
  font-size: 0.72rem;
  border-radius: 10px;
}

.anim-add-pulse { animation: addPulse 2s ease-in-out infinite; }

@keyframes addPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); box-shadow: 0 4px 16px rgba(220, 38, 38, 0.35); }
}

/* Cart mockup */
.mock-cart {
  background: var(--surface);
  color: var(--ink);
  min-height: 460px;
  display: flex;
  flex-direction: column;
}

.mock-cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  font-size: 0.78rem;
}

.mock-cart-close { opacity: 0.6; font-size: 1rem; }

.mock-cart-items { flex: 1; padding: 0.75rem 1rem; }

.mock-cart-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.5rem;
  align-items: start;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.68rem;
}

.mock-cart-name { font-weight: 600; }

.mock-cart-note {
  font-size: 0.58rem;
  color: var(--red);
  margin-top: 2px;
}

.mock-cart-qty {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-dim);
}

.mock-cart-qty span {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.65rem;
}

.mock-cart-price { font-weight: 600; white-space: nowrap; }

.mock-cart-total {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  font-size: 0.78rem;
  border-top: 1px solid var(--border);
}

.mock-cart-total strong {
  font-family: var(--serif);
  font-size: 1.1rem;
}

.mock-place-order {
  margin: 0 1rem 1rem;
  padding: 0.65rem;
  background: var(--red);
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 0.78rem;
  border-radius: 10px;
}

.anim-order-pulse { animation: orderPulse 1.5s ease-in-out infinite; }

@keyframes orderPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(220, 38, 38, 0); }
}

/* Kitchen ticket */
.mock-kitchen-ticket {
  background: #fff;
  color: var(--ink);
  width: min(260px, 100%);
  margin: 0 auto;
  padding: 1.25rem;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  font-family: 'Courier New', monospace;
  font-size: 0.72rem;
  border: 1px dashed #ccc;
}

.ticket-header {
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.ticket-meta {
  text-align: center;
  font-size: 0.62rem;
  color: var(--text-dim);
  margin: 0.35rem 0;
}

.ticket-divider {
  border-top: 1px dashed #ccc;
  margin: 0.5rem 0;
}

.ticket-line { padding: 0.2rem 0; }
.ticket-line em { color: var(--text-dim); font-size: 0.62rem; }

.ticket-total {
  font-weight: 700;
  text-align: right;
  margin-top: 0.35rem;
}

.ticket-status {
  text-align: center;
  margin-top: 0.75rem;
  color: var(--green);
  font-weight: 600;
  font-size: 0.68rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.anim-ticket-print { animation: ticketPrint 0.8s ease; }

@keyframes ticketPrint {
  from { opacity: 0; transform: translateY(-20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Payment mockup */
.mock-payment {
  background: var(--surface);
  padding: 1.25rem;
  min-height: 400px;
}

.mock-pay-header {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.mock-pay-total {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
}

.mock-pay-sub {
  font-size: 0.68rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.mock-pay-options {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.mock-pay-opt {
  padding: 0.55rem 0.75rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 500;
}

.mock-pay-opt.active {
  border-color: var(--red);
  background: var(--red-bg);
  color: var(--red);
  font-weight: 600;
}

.mock-pay-methods {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.65rem;
  color: var(--text-dim);
}

.mock-pay-methods span {
  padding: 0.35rem 0.55rem;
  border: 1px solid var(--border);
  border-radius: 8px;
}

/* Owner dashboard mockup */
.mock-dashboard {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}

.anim-dashboard-glow {
  animation: dashGlow 4s ease-in-out infinite;
}

@keyframes dashGlow {
  0%, 100% { box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18); }
  50% { box-shadow: 0 24px 60px rgba(220, 38, 38, 0.12); }
}

.dash-nav {
  background: var(--ink);
  color: var(--cream);
  padding: 0.85rem 1rem;
}

.dash-logo {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

.dash-restaurant {
  font-size: 0.68rem;
  color: rgba(255, 253, 252, 0.55);
  margin-left: 0.5rem;
}

.dash-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.65rem;
}

.dash-tab {
  font-size: 0.62rem;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  color: rgba(255, 253, 252, 0.55);
}

.dash-tab.active {
  background: var(--red);
  color: #fff;
}

.dash-body { padding: 1rem; }

.dash-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.dash-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.dash-metric {
  padding: 0.65rem;
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 8px;
}

.dash-metric-label {
  display: block;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 0.2rem;
}

.dash-metric strong {
  font-family: var(--serif);
  font-size: 1.15rem;
}

.dash-metric em {
  font-size: 0.75rem;
  font-style: normal;
  color: var(--text-dim);
  font-weight: 400;
}

.dash-orders-title {
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.dash-order-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.5rem;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.65rem;
}

.dash-order-items {
  color: var(--text-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dash-order-status {
  font-size: 0.58rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
}

.dash-order-status.preparing { background: rgba(234, 179, 8, 0.15); color: #a16207; }
.dash-order-status.received { background: var(--red-bg); color: var(--red); }
.dash-order-status.served { background: rgba(22, 163, 74, 0.1); color: var(--green); }

/* Order flow section */
.order-flow-section { padding-bottom: 5rem; }

.order-flow-demo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.order-flow-visual {
  position: relative;
  width: 100%;
  max-width: 320px;
  min-height: 560px;
  margin: 0 auto;
}

.order-step {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.order-step.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.order-flow-labels {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.order-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 253, 252, 0.45);
  transition: color 0.3s;
}

.order-label span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.order-label.active {
  color: var(--cream);
}

.order-label.active span {
  background: var(--red);
  border-color: var(--red);
}

/* Feature cards (replaces broken bullet list) */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.feature-cards-3 { grid-template-columns: repeat(3, 1fr); }
.feature-cards-2 { grid-template-columns: repeat(2, 1fr); }

.feature-card {
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(220, 38, 38, 0.25);
}

.feature-card-dark {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.feature-card-dark:hover { border-color: rgba(220, 38, 38, 0.35); }

.fc-icon { font-size: 1.25rem; margin-bottom: 0.4rem; }

.feature-card h4 {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.feature-card p {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.45;
}

.section-dark .feature-card p { color: rgba(255, 253, 252, 0.55); }
.section-dark .feature-card h4 { color: var(--cream); }

/* Custom branding section */
.branding-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.branding-controls h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.branding-controls > p {
  color: var(--text-dim);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.theme-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.theme-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
}

.theme-btn.active,
.theme-btn:hover {
  border-color: var(--red);
  background: var(--red-bg);
}

.theme-swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.branding-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.branding-list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-bottom: 0.45rem;
}

.branding-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.brand-preview-wrap {
  display: flex;
  justify-content: center;
}

.brand-preview-screen {
  width: min(280px, 100%);
  border-radius: 24px;
  padding: 1.25rem;
  box-shadow: var(--shadow-lg);
  transition: background 0.4s, border-color 0.4s;
}

.brand-preview-screen.theme-umet {
  background: var(--surface);
  border: 2px solid var(--red);
}

.brand-preview-screen.theme-gold {
  background: #fffdf8;
  border: 2px solid #b8860b;
}

.brand-preview-screen.theme-forest {
  background: #f6faf7;
  border: 2px solid #166534;
}

.brand-preview-screen.theme-ocean {
  background: #f0f9ff;
  border: 2px solid #0369a1;
}

.theme-umet .bp-title { border-color: var(--red); color: var(--ink); }
.theme-umet .bp-price { color: var(--red); }
.theme-umet .bp-cart-bar { background: var(--red); }

.theme-gold .bp-title { border-color: #b8860b; color: #1a1a1c; }
.theme-gold .bp-price { color: #b8860b; }
.theme-gold .bp-cart-bar { background: #b8860b; }

.theme-forest .bp-title { border-color: #166534; color: #1a1a1c; }
.theme-forest .bp-price { color: #166534; }
.theme-forest .bp-cart-bar { background: #166534; }

.theme-ocean .bp-title { border-color: #0369a1; color: #1a1a1c; }
.theme-ocean .bp-price { color: #0369a1; }
.theme-ocean .bp-cart-bar { background: #0369a1; }

.bp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.bp-logo {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.bp-table {
  font-size: 0.58rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.bp-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.95rem;
  border-bottom: 2px solid;
  padding-bottom: 0.2rem;
  margin-bottom: 0.65rem;
}

.bp-title-sm { font-size: 0.82rem; margin-top: 0.65rem; }

.bp-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.bp-price { font-weight: 700; }

.bp-cart-bar {
  margin-top: 1rem;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  color: #fff;
  font-size: 0.72rem;
  text-align: center;
}

/* Hero float wider */
.hero-float {
  max-width: 240px;
}

/* CTA email link */
.cta-note a { color: var(--red-soft); text-decoration: underline; }
.cta-section .cta-note a { color: rgba(255, 253, 252, 0.7); }

/* Legal pages */
.legal-page { background: var(--surface); }

.legal-page .nav-links { display: flex; }

.legal-content {
  padding: calc(var(--nav-h) + 3rem) 0 4rem;
  max-width: 720px;
}

.legal-content h1 {
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.legal-updated {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 2rem 0 0.65rem;
}

.legal-content p,
.legal-content li {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 0.65rem;
}

.legal-content ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal-content a { color: var(--red); }

.legal-footer { padding: 2rem 0; }

.legal-footer .footer-bottom { border-top: none; padding-top: 0; }

.legal-footer a { color: rgba(255, 253, 252, 0.55); }

@media (max-width: 1024px) {
  .branding-showcase { grid-template-columns: 1fr; }
  .feature-cards-3 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .feature-cards,
  .feature-cards-2 { grid-template-columns: 1fr; }
  .order-flow-labels { flex-direction: column; align-items: flex-start; }
  .hero-phone-pair { flex-direction: column; }
  .hero-flow-arrow { transform: rotate(90deg); }
  .cashier-split { flex-direction: column; }
  .how-step-card { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   Real screenshots, hero showcase, expanded sections
   ═══════════════════════════════════════════════════════════════ */

.lang-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  max-width: 900px;
  margin: 0 auto;
}

.lang-tag {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 253, 252, 0.55);
  background: rgba(255, 255, 255, 0.04);
}

.lang-tag.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.hero-showcase { width: 100%; }

.hero-phone-pair {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.hero-flow-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  flex: none;
}

.flow-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red-soft), transparent);
  animation: flowPulse 1.8s ease-in-out infinite;
}

.flow-label {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red-soft);
  white-space: nowrap;
}

@keyframes flowPulse {
  0%, 100% { opacity: 0.4; transform: scaleX(0.8); }
  50% { opacity: 1; transform: scaleX(1); }
}

.shot-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
  flex: none;
}

.shot-wrap-concierge { width: min(220px, 42vw); }
.shot-wrap-cart { width: min(240px, 44vw); }
.shot-wrap-sm { width: min(200px, 100%); margin: 0 auto; }
.shot-wrap-feature { width: min(280px, 100%); margin: 0 auto; }
.shot-wrap-order { width: min(260px, 100%); margin: 0 auto; }

.shot-img {
  display: block;
  width: 100%;
  height: auto;
}

.shot-crop-menu {
  object-fit: cover;
  object-position: top center;
  max-height: 420px;
}

.shot-crop-menu-full {
  object-fit: cover;
  object-position: top center;
  max-height: 520px;
}

.shot-badge-mask {
  position: absolute;
  top: 4%;
  right: 22%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.34rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 2px 5px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  text-transform: uppercase;
}

.shot-badge-mask .live-dot {
  width: 4px;
  height: 4px;
}

.shot-badge-menu { top: 1.2%; right: 28%; font-size: 0.52rem; }
.shot-badge-menu-full { top: 0.8%; right: 22%; font-size: 0.5rem; padding: 3px 8px; }

/* How it works — expanded */
.how-steps-visual {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.how-step-card {
  display: grid;
  grid-template-columns: auto 1fr minmax(180px, 220px);
  gap: 1.5rem;
  align-items: center;
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, border-color 0.3s;
}

.how-step-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(220, 38, 38, 0.2);
}

.how-step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red-bg);
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--red);
  flex: none;
}

.how-step-body h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.how-step-body p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.how-step-body strong { color: var(--ink); }

.table-badge-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 88px;
  padding: 1.25rem 1rem;
  background: #0f0f10;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* Station tickets */
.station-tickets {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: min(260px, 100%);
  margin: 0 auto;
}

.station-tickets-inline { width: 100%; }

.station-ticket {
  background: #fff;
  color: var(--ink);
  padding: 0.85rem 1rem;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.68rem;
  border: 1px dashed #ccc;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.st-station {
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 0.35rem;
  margin-bottom: 0.35rem;
}

.st-meta { color: var(--text-dim); font-size: 0.6rem; margin-bottom: 0.35rem; }
.st-line { padding: 0.15rem 0; }
.st-line em { color: var(--text-dim); font-size: 0.58rem; }

/* Cashier section */
.cashier-split {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.cashier-bill,
.cashier-routing {
  flex: 0 1 380px;
  min-width: 0;
}

.cashier-bill {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.cashier-bill-header {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid var(--red);
}

.cashier-bill-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
}

.cashier-bill-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.85rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.cashier-bill-total strong {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--red);
}

.cashier-bill-note,
.cashier-routing-note {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 0.85rem;
  line-height: 1.5;
}

.routing-arrow {
  flex: 0 0 auto;
  font-size: 2rem;
  color: var(--red);
  line-height: 1;
  text-align: center;
}

.cashier-routing { text-align: center; }

/* Dashboard values — explicit visibility */
.dash-subtitle {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin: -0.35rem 0 1rem;
}

.dash-val {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f0f10;
  line-height: 1.2;
  margin-top: 0.15rem;
}

.dash-val-red { color: var(--red); }

.dash-val-sub {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dim);
}

.dash-metric-sub {
  display: block;
  font-size: 0.65rem;
  color: var(--text-mute);
  margin-top: 0.15rem;
}

.dash-metric-wide { grid-column: span 2; }

.dash-order-table { font-weight: 600; white-space: nowrap; }

/* Venue photos */
.venue-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.venue-card:hover .venue-card-img { transform: scale(1.06); }

.venue-card .venue-card-bg { display: none; }

/* CTA textarea */
.cta-form textarea {
  width: 100%;
  min-width: 100%;
  padding: 0.85rem 1.15rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.95rem;
  resize: vertical;
  min-height: 80px;
}

.cta-form textarea::placeholder { color: rgba(255, 253, 252, 0.4); }

.cta-form textarea:focus {
  outline: none;
  border-color: var(--red-soft);
}

.cta-form {
  flex-direction: column;
  max-width: 520px;
}

@media (max-width: 1024px) {
  .how-step-card { grid-template-columns: auto 1fr; }
  .how-step-visual { grid-column: 1 / -1; width: 100%; max-width: 280px; margin: 0 auto; }
  .cashier-split { flex-direction: column; }
  .routing-arrow { transform: rotate(90deg); }
  .order-flow-row { flex-direction: column; align-items: center; }
  .order-flow-arrow-icon { transform: rotate(90deg); }
  .hero-screens { grid-template-columns: 1fr 1fr; max-width: min(680px, 100%); margin: 0 auto; }
  .hero-showcase { max-width: 100%; margin: 0 auto; }
  .app-screen-sm { width: min(240px, 100%); }
}

/* ═══════════════════════════════════════════════════════════════
   Product UI — cart & menu (matches live app)
   ═══════════════════════════════════════════════════════════════ */

.ui-icon-cart {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ui-cart {
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--ink);
}

.ui-cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: #fff;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.88rem;
}

.ui-cart-head-left {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.ui-cart-head .ui-icon-cart { stroke: #fff; }

.ui-cart-close {
  opacity: 0.7;
  font-size: 1.2rem;
  line-height: 1;
}

.ui-cart-items { padding: 0.65rem 0.85rem; }

.ui-cart-item {
  display: flex;
  justify-content: space-between;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
}

.ui-cart-item:last-child { border-bottom: none; }

.ui-cart-item-name {
  font-weight: 600;
  font-size: 0.82rem;
  line-height: 1.3;
}

.ui-cart-item-price {
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: 2px;
}

.ui-cart-item-note {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.62rem;
  color: var(--red);
  border: 1px dashed rgba(220, 38, 38, 0.4);
  border-radius: 4px;
  padding: 1px 5px;
}

.ui-cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex: none;
  font-size: 0.75rem;
  color: var(--text-dim);
}

.ui-cart-item-qty button {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.85rem;
  line-height: 1;
  cursor: default;
  color: var(--text-dim);
}

.ui-cart-foot {
  padding: 0.75rem 0.85rem 0.85rem;
  border-top: 1px solid var(--border);
}

.ui-cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-dim);
}

.ui-cart-total-row strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
}

.ui-cart-submit {
  width: 100%;
  padding: 0.7rem;
  border: none;
  border-radius: 10px;
  background: var(--red);
  color: #fff;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: default;
}

.ui-cart-compact,
.ui-cart-feature { max-width: 260px; margin: 0 auto; }

.ui-cart-flow { width: min(240px, 100%); flex: none; }

/* Hero cart fills its app-screen panel (equal height with concierge) */
.app-screen-cart {
  background: var(--surface);
}

.ui-cart-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
  border: none;
  border-radius: 0;
}

.ui-cart-panel .ui-cart-items {
  flex: 1 1 auto;
  overflow: visible;
}

/* Menu UI */
.ui-menu {
  background: var(--bg);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.ui-menu-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.ui-menu-logo {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-right: auto;
}

.ui-menu-table {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.58rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(220, 38, 38, 0.08);
  color: var(--red);
  white-space: nowrap;
}

.ui-menu-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface-alt);
  color: var(--text-dim);
  cursor: default;
  flex: none;
}

.ui-menu-cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.ui-menu-cat {
  display: inline-block;
  margin: 0.65rem 0.85rem 0.35rem;
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  background: var(--red-bg);
  padding: 3px 8px;
  border-radius: 999px;
}

.ui-menu-card {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.65rem;
  margin: 0 0.65rem 0.55rem;
  padding: 0.75rem;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.ui-menu-card-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 0.2rem;
  color: var(--ink);
}

.ui-menu-card-desc {
  font-size: 0.68rem;
  color: var(--text-dim);
  line-height: 1.35;
  margin-bottom: 0.35rem;
}

.ui-menu-card-price {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--red);
}

.ui-menu-add {
  flex: none;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(220, 38, 38, 0.35);
  background: var(--red-bg);
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 700;
  cursor: default;
  white-space: nowrap;
}

.ui-menu-compact,
.ui-menu-feature { max-width: 280px; margin: 0 auto; }

.ui-menu-feature { max-width: 320px; }

.ui-menu-flow { width: min(240px, 100%); flex: none; }

/* Order flow horizontal — three equal panels with centered arrows */
.order-flow-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1rem;
  flex-wrap: nowrap;
}

.order-flow-row > .ui-menu-flow,
.order-flow-row > .ui-cart-flow,
.order-flow-row > .station-tickets-flow {
  width: 240px;
  flex: none;
  margin: 0;
}

.order-flow-arrow-icon {
  flex: 0 0 auto;
  align-self: center;
  color: var(--red);
  font-size: 1.75rem;
  line-height: 1;
  opacity: 0.85;
}

.order-flow-row > .ui-menu-flow {
  display: flex;
  flex-direction: column;
}

.station-tickets-flow {
  justify-content: space-between;
}

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; justify-content: center; }
  .hero-showcase { max-width: min(680px, 100%); }
  .hero-screens { grid-template-columns: 1fr 1fr; gap: 0.65rem; }
}
