/* Lytz Relay — landing site */
:root {
  --paper: #FAF8F5;
  --paper-2: #F4F0E8;
  --ink: #18171C;
  --ink-soft: #4A4751;
  --ink-mute: #87838E;
  --rule: #E8E4DC;
  --rule-soft: #F0EBE0;
  --accent: #8B5CF6;
  --accent-2: #C4B5FD;
  --accent-wash: #F1ECFE;
  --up: #16A34A;
  --down: #DC2626;
  --serif: 'Playfair Display', 'Iowan Old Style', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  overflow-x: hidden;
}

/* Type primitives */
.serif { font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; }
.italic { font-style: italic; }
.mono { font-family: var(--mono); }
.smallcaps {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.smallcaps-mono {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.purple { color: var(--accent); }
.up { color: var(--up); }
.down { color: var(--down); }

/* Layout */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-tight {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 96px 0; position: relative; }
.section-tight { padding: 64px 0; }

.rule {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 0;
}
.rule-soft {
  border: 0;
  border-top: 1px solid var(--rule-soft);
  margin: 0;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: 1240px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), #A78BFA);
  position: relative;
  box-shadow: 0 4px 18px -4px rgba(139, 92, 246, 0.5);
}
.brand-mark::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: inset 0 0 0 2px var(--accent);
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 14px;
}
.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--ink); }

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--ink);
  padding: 4px 8px;
  line-height: 1;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--rule-soft);
}
.mobile-menu a {
  font-size: 17px;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule-soft);
}
.mobile-menu a:last-of-type { border-bottom: none; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover { background: var(--accent); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-purple {
  background: var(--accent);
  color: white;
}
.btn-purple:hover { background: #7C3AED; }

/* HERO */
.hero {
  padding: 64px 0 0;
  position: relative;
  overflow: hidden;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-wash);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(56px, 8vw, 116px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 0 0 32px;
  max-width: 16ch;
}
.hero h1 .it { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 0 40px;
}

/* Storefront illustration */
.storefront-wrap {
  margin-top: 56px;
  position: relative;
}
.storefront {
  position: relative;
  height: 480px;
  background: linear-gradient(180deg, #F4F0E8 0%, #ECE6D8 70%, #DDD4BF 100%);
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  border: 1px solid var(--rule);
  border-bottom: none;
}
.storefront-sky {
  position: absolute;
  inset: 0 0 65% 0;
  background: linear-gradient(180deg, #F8F4EC, #EFE9DA);
}
.storefront-ground {
  position: absolute;
  inset: 65% 0 0 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 60px, rgba(0,0,0,0.04) 60px 61px),
    linear-gradient(180deg, #DDD4BF, #C9BFA6);
}
.shop {
  position: absolute;
  bottom: 35%;
  left: 50%;
  transform: translateX(-50%);
  width: 56%;
  max-width: 600px;
  height: 280px;
  background: var(--paper);
  border: 1px solid var(--ink);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 -4px 0 rgba(0,0,0,0.04);
}
.shop-awning {
  position: absolute;
  top: -28px;
  left: -8px;
  right: -8px;
  height: 36px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 24px, #A78BFA 24px 48px);
  border-radius: 6px 6px 0 0;
  clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%);
}
.shop-sign {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  color: var(--ink);
  transition: opacity 0.25s ease;
  text-align: center;
}
.shop-windows {
  position: absolute;
  top: 80px;
  left: 28px;
  right: 28px;
  bottom: 70px;
  display: grid;
  grid-template-columns: 1fr 90px 1fr;
  gap: 14px;
}
.shop-window {
  background: linear-gradient(180deg, #F1ECFE 0%, #E9E1FB 100%);
  border: 1px solid var(--rule);
  border-radius: 4px;
  position: relative;
}
.shop-window::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 40%, rgba(255,255,255,0.4) 50%, transparent 60%);
}
.shop-door {
  background: var(--ink);
  border-radius: 4px 4px 0 0;
  position: relative;
}
.shop-door::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 2px rgba(196, 181, 253, 0.3);
}
.shop-floor {
  position: absolute;
  bottom: 0;
  left: 28px;
  right: 28px;
  height: 50px;
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
}

/* Beacon device on shop */
.beacon-on-shop {
  position: absolute;
  top: 92px;
  right: 38px;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: white;
  border: 1px solid var(--rule);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.15);
}
.beacon-on-shop::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--accent);
  animation: beacon-pulse 1.6s ease-in-out infinite;
}
@keyframes beacon-pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1); }
}

/* Walking people */
.sidewalk {
  position: absolute;
  bottom: 14%;
  left: 0;
  right: 0;
  height: 70px;
  pointer-events: none;
  z-index: 4;
}
.person {
  position: absolute;
  bottom: 0;
  width: 14px;
  height: 50px;
  will-change: transform;
  opacity: 0.92;
}
.person-head {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  margin: 0 auto;
  background: var(--ink);
}
.person-body {
  width: 14px;
  height: 24px;
  margin: 2px auto 0;
  background: var(--ink);
  border-radius: 4px 4px 0 0;
}
.person-legs {
  width: 12px;
  height: 11px;
  margin: 0 auto;
  background: var(--ink-soft);
  border-radius: 0 0 2px 2px;
}
.person.walked-in .person-body { background: var(--accent); }
.person.walked-in .person-head { background: var(--accent); }

.person-detected::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -8px;
  right: -8px;
  bottom: -4px;
  border: 1.5px solid var(--accent);
  border-radius: 999px;
  opacity: 0;
  animation: detect 0.6s ease-out;
}
@keyframes detect {
  0% { opacity: 0; transform: scale(0.5); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: scale(1.6); }
}

/* HUD overlay */
.hud {
  position: absolute;
  top: 32px;
  right: 32px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 18px 22px;
  width: 260px;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.15);
  z-index: 5;
}
.hud-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 0;
}
.hud-row-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.hud-row + .hud-row { border-top: 1px solid var(--rule-soft); }
.hud-label {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hud-num {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.hud-num.small { font-size: 18px; }
.hud-delta {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
}

.hud-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.hud-live::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.4s ease-in-out infinite;
}

/* Section heads */
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 14px;
  margin-bottom: 48px;
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 44px;
  letter-spacing: -0.02em;
  margin: 0;
}
.section-head h2 .it { font-style: italic; color: var(--accent); }
.section-head .meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* Cards */
.card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 24px;
}
.card-tight { padding: 18px; }
.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat .num {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat .num.small { font-size: 36px; }
.stat .label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.stat .delta {
  font-family: var(--mono);
  font-size: 12px;
}

/* Demo: hourly chart */
.hourly-chart {
  height: 220px;
  position: relative;
  margin-top: 12px;
}
.hourly-chart svg { width: 100%; height: 100%; display: block; }
.hour-axis {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: 0.1em;
  margin-top: 8px;
}

/* Slider */
.scrub {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--rule);
  border-radius: 999px;
  outline: none;
  cursor: pointer;
}
.scrub::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--paper);
  box-shadow: 0 4px 12px -2px rgba(139, 92, 246, 0.5);
  cursor: grab;
}
.scrub::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--paper);
  cursor: grab;
}

/* Waitlist */
.waitlist {
  background: var(--ink);
  color: var(--paper);
  border-radius: 24px;
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
}
.waitlist h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  max-width: 14ch;
}
.waitlist h2 .it { font-style: italic; color: var(--accent-2); }
.waitlist-form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin-top: 32px;
}
.waitlist-input {
  flex: 1;
  padding: 16px 20px;
  font-family: var(--sans);
  font-size: 15px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--paper);
  border-radius: 999px;
  outline: none;
}
.waitlist-input::placeholder { color: rgba(255,255,255,0.4); }
.waitlist-input:focus { border-color: var(--accent-2); }
.waitlist-btn {
  background: var(--accent);
  color: white;
  border: none;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.18s;
}
.waitlist-btn:hover { background: #A78BFA; }

.waitlist-counter {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.waitlist-counter .num {
  font-family: var(--serif);
  font-size: 36px;
}
.waitlist-counter .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* Footer */
.footer {
  padding: 64px 32px 48px;
  border-top: 1px solid var(--rule);
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}
.footer .smallcaps-mono { font-size: 10px; }

.demo-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: center;
}
.demo-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  border-top: 1px solid var(--rule);
  padding-top: 24px;
}

.ab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.heatmap-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Heatmap */
.heatmap-grid {
  display: grid;
  grid-template-columns: 36px repeat(24, 1fr);
  gap: 3px;
  font-family: var(--mono);
  font-size: 10px;
}
.heatmap-cell {
  aspect-ratio: 1.4 / 1;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.1s;
}
.heatmap-cell:hover { transform: scale(1.15); outline: 1px solid var(--ink); }
.heatmap-row-label {
  display: flex;
  align-items: center;
  font-size: 10.5px;
  color: var(--ink-mute);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.heatmap-axis {
  display: grid;
  grid-template-columns: 36px repeat(24, 1fr);
  gap: 3px;
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--ink-mute);
  margin-top: 6px;
}

/* Walk-by vs walk-in */
.bigstat-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.bigstat {
  padding: 32px 28px;
  border-right: 1px solid var(--rule);
}
.bigstat:last-child { border-right: 0; }
.bigstat .num {
  font-family: var(--serif);
  font-size: 80px;
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.025em;
}
.bigstat .num.purple { color: var(--accent); }
.bigstat .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 10px;
}
.bigstat .desc {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 8px;
  line-height: 1.5;
}

/* Sign options */
.sign-picker {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.sign-chip {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.15s;
  -webkit-appearance: none;
}
.sign-chip:hover { border-color: var(--ink); }
.sign-chip.active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* Features list */
.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.feature {
  padding: 36px 28px 36px 0;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
}
.feature:nth-child(3n) { border-right: 0; padding-right: 0; }
.feature:nth-child(3n+1) { padding-left: 0; }
.feature:not(:nth-child(3n+1)) { padding-left: 28px; }
.feature .num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.2em;
}
.feature h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.01em;
  margin: 16px 0 10px;
}
.feature h3 .it { font-style: italic; color: var(--accent); }
.feature p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step {
  position: relative;
}
.step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 80px;
  line-height: 1;
  color: var(--accent);
  font-weight: 500;
}
.step h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin: 8px 0 8px;
}
.step p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.55;
}

/* Testimonials */
.quote {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.quote-attr {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 14px;
}

/* ROI calculator */
.roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.roi-input-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
}
.roi-input-row:last-child { border-bottom: 0; }
.roi-input-row label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.roi-input-row .label-name {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.roi-input-row .label-val {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.roi-input-row .label-val .it { font-style: italic; color: var(--accent); }

/* Dashboard preview iPhone */
.iphone {
  width: 320px;
  height: 660px;
  border: 12px solid var(--ink);
  border-radius: 44px;
  background: var(--paper);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.3);
  flex-shrink: 0;
}
.iphone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 22px;
  background: var(--ink);
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.iphone-screen {
  width: 100%;
  height: 100%;
  padding: 32px 18px 18px;
  position: relative;
}

/* Demo dashboard inside iphone */
.dash-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  margin-bottom: 14px;
}
.dash-title {
  text-align: center;
  margin-bottom: 6px;
}
.dash-title .name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
}
.dash-title .id {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: 0.1em;
}
.dash-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 11px;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 5px 10px;
  margin: 6px auto 14px;
}
.dash-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.dash-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.dash-stat {
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 10px 12px;
}
.dash-stat .l {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.dash-stat .n {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  margin: 4px 0 2px;
  color: var(--accent);
}
.dash-stat .n.ink { color: var(--ink); }
.dash-stat .d {
  font-family: var(--mono);
  font-size: 10px;
}
.dash-card {
  margin-top: 10px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 12px;
}
.dash-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}
.dash-card-title {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
}
.dash-card-meta {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Responsive */
@media (max-width: 880px) {
  .container, .container-tight { padding: 0 20px; }
  .section { padding: 64px 0; }
  .hero h1 { font-size: clamp(36px, 10vw, 72px); }
  .section-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .section-head h2 { font-size: 32px; }
  .feature-list { grid-template-columns: 1fr; }
  .feature { padding: 24px 0 !important; border-right: 0 !important; }
  .steps { grid-template-columns: 1fr; }
  .roi-grid { grid-template-columns: 1fr; gap: 32px; }
  .bigstat-row { grid-template-columns: 1fr; }
  .bigstat { border-right: 0; border-bottom: 1px solid var(--rule); }
  .bigstat:last-child { border-bottom: 0; }
  .bigstat .num { font-size: 56px; }
  .waitlist { padding: 48px 28px; }
  .waitlist h2 { font-size: 40px; }
  .waitlist-form { flex-direction: column; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .hud { right: 16px; top: 16px; width: 180px; padding: 14px 16px; }
  .storefront { height: 380px; }
  .heatmap-grid { grid-template-columns: 30px repeat(24, 1fr); }
  .iphone { width: 260px; height: 540px; }
  .demo-grid { grid-template-columns: 1fr; gap: 40px; }
  body { overflow-x: hidden; }
  .demo-grid .iphone { margin: 0 auto; }
  .demo-stats { grid-template-columns: 1fr; }
  .ab-grid { grid-template-columns: 1fr; gap: 32px; }
  .heatmap-layout { grid-template-columns: 1fr; gap: 32px; }
  .heatmap-grid { overflow: hidden; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(28px, 9vw, 40px); }
  .hero-sub { font-size: 15px; }
  .waitlist h2 { font-size: 30px; }
  .waitlist { padding: 36px 20px; }
  .nav-inner { padding: 14px 20px; }
  .section { padding: 48px 0; }
  .section-head h2 { font-size: 26px; }
  .iphone { width: 220px; height: 460px; }
  .hud { width: 160px; font-size: 11px; }
}

/* Subtle animations */
.fade-in {
  animation: fadeIn 0.6s ease both;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Tweaks integration: applied colors via CSS vars */
[data-warm="true"] {
  --paper: #FAF6EE;
  --paper-2: #F0E9D8;
  --rule: #E5DFD0;
  --rule-soft: #EFE9D8;
}
[data-cool="true"] {
  --paper: #F6F7FA;
  --paper-2: #ECEFF5;
  --rule: #E1E5EE;
  --rule-soft: #ECEFF5;
}
