/* ── TOKENS ── */
:root {
  --ink: #0A0F1E;
  --ink2: #111827;
  --slate: #1E293B;
  --teal: #0DCFB4;
  --teal2: #09B89E;
  --sky: #EAF9F7;
  --red: #F04444;
  --amber: #F59E0B;
  --white: #FFFFFF;
  --off: #F8F9FA;
  --muted: #6B7280;
  --border: rgba(0, 0, 0, 0.07);
  --dborder: rgba(255, 255, 255, 0.08);
  --r: 8px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased
}

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: var(--ink);
  overflow-x: hidden
}

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

button {
  cursor: pointer;
  font-family: 'Inter', sans-serif
}

img {
  max-width: 100%
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}

nav.scrolled {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.06)
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px
}

.nav-logomark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 13px;
  color: var(--teal);
  letter-spacing: -.5px;
}

.nav-brand {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.3px
}

.nav-brand span {
  color: var(--teal)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s
}

.nav-links a:hover {
  color: var(--ink)
}

.nav-links a.active {
  color: var(--ink)
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px
}

.btn-nav-ghost {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid var(--border);
  transition: all .2s;
  background: none;
}

.btn-nav-ghost:hover {
  color: var(--ink);
  border-color: rgba(0, 0, 0, 0.2);
  background: var(--off)
}

.btn-nav-demo {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  padding: 9px 20px;
  border-radius: 6px;
  background: var(--ink);
  border: none;
  transition: all .2s;
  box-shadow: 0 2px 8px rgba(10, 15, 30, .2);
}

.btn-nav-demo:hover {
  background: var(--slate);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(10, 15, 30, .25)
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 120px 40px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #fff;
}

/* Subtle grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13, 207, 180, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 207, 180, .04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Radial glow */
.hero::after {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(13, 207, 180, .09) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sky);
  border: 1px solid rgba(13, 207, 180, .25);
  border-radius: 100px;
  padding: 5px 14px 5px 10px;
  margin-bottom: 36px;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .5;
    transform: scale(.7)
  }
}

.hero-badge span {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal2);
  letter-spacing: .3px
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: 24px;
}

.hero-h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--teal), #06B6D4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 19px;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 300;
  max-width: 580px;
  margin-bottom: 48px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 64px;
}

.btn-primary {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  background: var(--ink);
  border: none;
  box-shadow: 0 4px 20px rgba(10, 15, 30, .2);
  transition: all .25s;
}

.btn-primary:hover {
  background: var(--slate);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(10, 15, 30, .25)
}

.btn-secondary {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  padding: 14px 28px;
  border-radius: 8px;
  background: none;
  border: 1.5px solid var(--border);
  transition: all .2s;
}

.btn-secondary:hover {
  border-color: rgba(0, 0, 0, .2);
  background: var(--off)
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.hero-trust-avatars {
  display: flex;
  margin-right: 4px
}

.avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.avatar:first-child {
  margin-left: 0
}

/* Hero Dashboard */
.hero-dashboard {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
  margin-top: 64px;
}

.dash-window {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, .04),
    0 32px 80px rgba(0, 0, 0, .1),
    0 8px 20px rgba(0, 0, 0, .05);
  overflow: hidden;
}

.dash-titlebar {
  background: var(--off);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}

.tb-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%
}

.tb-dot.r {
  background: #FF5F57
}

.tb-dot.y {
  background: #FEBC2E
}

.tb-dot.g {
  background: #28C840
}

.tb-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  margin-left: 8px;
}

.dash-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 440px
}

/* Sidebar */
.dash-sidebar {
  background: var(--ink);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ds-logo {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -.3px;
  margin-bottom: 20px;
  padding: 0 8px;
}

.ds-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, .45);
  transition: all .15s;
  cursor: pointer;
}

.ds-item:hover,
.ds-item.active {
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .9)
}

.ds-item.active {
  background: rgba(13, 207, 180, .12);
  color: var(--teal)
}

.ds-icon {
  font-size: 13px;
  width: 16px;
  text-align: center;
  flex-shrink: 0
}

.ds-spacer {
  flex: 1
}

.ds-property {
  padding: 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .06);
  margin-top: 8px;
}

.ds-prop-name {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, .7)
}

.ds-prop-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, .3);
  margin-top: 2px
}

/* Main content */
.dash-main {
  padding: 24px;
  background: #FAFAFA;
  overflow: hidden
}

.dash-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.dash-greeting {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink)
}

.dash-date {
  font-size: 12px;
  color: var(--muted)
}

.dash-alert-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--red);
}

/* KPI strip */
.kpi-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px
}

.kpi {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 14px;
}

.kpi-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 8px
}

.kpi-value {
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  font-family: 'Playfair Display', serif
}

.kpi-value.teal {
  color: var(--teal2)
}

.kpi-value.red {
  color: var(--red)
}

.kpi-value.amber {
  color: var(--amber)
}

.kpi-delta {
  font-size: 11px;
  margin-top: 4px
}

.kpi-delta.up {
  color: #16A34A
}

.kpi-delta.down {
  color: var(--red)
}

.kpi-delta.neutral {
  color: var(--muted)
}

/* Grid lower */
.dash-grid-lower {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.dash-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  overflow: hidden
}

.dc-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.dc-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px
}

.dc-badge.critical {
  background: #FEF2F2;
  color: var(--red)
}

.dc-badge.good {
  background: #F0FDF4;
  color: #16A34A
}

/* Inventory rows */
.inv-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid #F3F4F6
}

.inv-row:last-child {
  border-bottom: none
}

.inv-item {
  flex: 1;
  font-size: 12px;
  color: var(--ink)
}

.inv-count {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  min-width: 32px;
  text-align: right
}

.inv-bar {
  flex: 1;
  height: 4px;
  background: #F3F4F6;
  border-radius: 2px;
  overflow: hidden;
  margin: 0 8px
}

.inv-fill {
  height: 100%;
  border-radius: 2px;
  transition: width .5s
}

.inv-status {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 100px;
  white-space: nowrap
}

.s-ok {
  background: #F0FDF4;
  color: #15803D
}

.s-low {
  background: #FFFBEB;
  color: #B45309
}

.s-crit {
  background: #FEF2F2;
  color: var(--red)
}

/* Bar chart */
.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 72px;
  margin-bottom: 4px
}

.mc-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  transition: opacity .2s;
  cursor: pointer
}

.mc-bar:hover {
  opacity: .8
}

.mc-labels {
  display: flex;
  gap: 6px
}

.mc-lbl {
  flex: 1;
  font-size: 9px;
  color: var(--muted);
  text-align: center
}

/* ── SOCIAL PROOF STRIP ── */
.proof-strip {
  background: var(--off);
  border-top: 1px solid var(--border);
  padding: 28px 40px;
}

.proof-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.proof-strip-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.proof-logos {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap
}

.proof-logo-item {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 700;
  color: rgba(0, 0, 0, .2);
  letter-spacing: -.3px;
  white-space: nowrap;
}

/* ── PAIN SECTION ── */
.pain-sec {
  padding: 100px 40px;
  background: #fff;
}

.pain-inner {
  max-width: 1100px;
  margin: 0 auto
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal2);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.section-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 16px;
}

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

.section-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 300;
  max-width: 520px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 64px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(0, 0, 0, .04);
}

.pain-card {
  background: #fff;
  padding: 40px 36px;
  transition: background .2s;
}

.pain-card:hover {
  background: var(--off)
}

.pain-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
}

.pain-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
}

.pain-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 300
}

/* ── PLATFORM SECTION ── */
.platform-sec {
  padding: 100px 40px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.platform-sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(13, 207, 180, .07) 0%, transparent 70%);
  pointer-events: none;
}

.platform-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.platform-sec .section-label {
  color: var(--teal)
}

.platform-sec .section-h2 {
  color: #fff
}

.platform-sec .section-sub {
  color: rgba(255, 255, 255, .45)
}

.platform-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.platform-tier {
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--dborder);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: background .25s, border-color .25s;
  cursor: pointer;
}

.platform-tier:hover {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .15)
}

.platform-tier.tier-robotics {
  background: rgba(240, 68, 68, .04);
  border-color: rgba(240, 68, 68, .2);
}

.platform-tier.tier-robotics:hover {
  background: rgba(240, 68, 68, .08);
  border-color: rgba(240, 68, 68, .35);
}

.tier-number {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, .2);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.tier-robotics .tier-number {
  color: rgba(240, 68, 68, .4)
}

.tier-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.tier-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}

.tier-tagline {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.tier-desc {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .4);
  font-weight: 300;
  margin-bottom: 28px;
}

.tier-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px
}

.tier-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
}

.tier-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  flex-shrink: 0;
}

.tier-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .5px;
  border: 1px solid;
}

/* Connector arrow between tiers */
.tier-connector {
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink);
  border: 1px solid var(--dborder);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(255, 255, 255, .3);
}

/* Platform CTA row */
.platform-cta-row {
  margin-top: 48px;
  padding: 32px 40px;
  background: rgba(13, 207, 180, .06);
  border: 1px solid rgba(13, 207, 180, .15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.pca-text {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, .7);
  line-height: 1.5;
  max-width: 560px
}

.pca-text strong {
  color: #fff
}

/* ── HOW IT WORKS ── */
.how-sec {
  padding: 100px 40px;
  background: #fff
}

.how-inner {
  max-width: 1100px;
  margin: 0 auto
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 64px
}

.how-step {
  display: grid;
  grid-template-columns: 80px 1fr 1.1fr;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  background: #fff;
  transition: box-shadow .25s, border-color .25s;
  overflow: hidden;
}

.how-step:hover {
  border-color: rgba(0, 0, 0, .12);
  box-shadow: 0 8px 40px rgba(0, 0, 0, .05)
}

.step-num-col {
  padding: 48px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border);
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: rgba(0, 0, 0, .08);
}

.step-copy {
  padding: 48px 40px
}

.step-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--teal2);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
}

.step-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 20px
}

.step-details {
  display: flex;
  flex-direction: column;
  gap: 7px
}

.step-detail {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--muted);
}

.step-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0
}

.step-visual {
  border-left: 1px solid var(--border);
  background: var(--off);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

/* Mini UI panels */
.mini-panel {
  width: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .06);
}

.mp-bar {
  background: var(--off);
  padding: 8px 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 6px;
}

.mp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%
}

.mp-dot.r {
  background: #FF5F57
}

.mp-dot.y {
  background: #FEBC2E
}

.mp-dot.g {
  background: #28C840
}

.mp-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  margin-left: 6px
}

.mp-body {
  padding: 14px
}

/* Calendar mini */
.mini-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  margin-bottom: 10px
}

.mcd {
  aspect-ratio: 1;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 600
}

.mcd.em {
  background: #F9FAFB;
  color: #D1D5DB
}

.mcd.lo {
  background: rgba(13, 207, 180, .12);
  color: var(--teal2)
}

.mcd.md {
  background: rgba(59, 130, 246, .1);
  color: #2563EB
}

.mcd.hi {
  background: rgba(245, 158, 11, .12);
  color: #B45309
}

.mcd.so {
  background: rgba(240, 68, 68, .1);
  color: var(--red)
}

.mcd.today {
  outline: 2px solid var(--teal)
}

/* Inventory mini */
.mi-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid #F3F4F6;
}

.mi-row:last-child {
  border-bottom: none
}

.mi-name {
  font-size: 11px;
  color: var(--ink);
  flex: 1
}

.mi-bar {
  height: 4px;
  border-radius: 2px;
  background: #F3F4F6;
  flex: 1
}

.mi-fill {
  height: 100%;
  border-radius: 2px
}

.mi-val {
  font-size: 10px;
  font-weight: 600;
  min-width: 28px;
  text-align: right
}

.mi-badge {
  font-size: 9px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 100px
}

.mi-ok {
  background: #F0FDF4;
  color: #15803D
}

.mi-low {
  background: #FFFBEB;
  color: #B45309
}

.mi-crit {
  background: #FEF2F2;
  color: var(--red)
}

/* Delivery mini */
.md-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid #F3F4F6;
}

.md-row:last-child {
  border-bottom: none
}

.md-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  min-width: 44px
}

.md-label {
  font-size: 11px;
  color: var(--ink);
  flex: 1
}

.md-chip {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px
}

.mc-sched {
  background: rgba(59, 130, 246, .08);
  color: #2563EB
}

.mc-conf {
  background: #F0FDF4;
  color: #15803D
}

.mc-auto {
  background: #FFFBEB;
  color: #B45309
}

/* ── ROI SECTION ── */
.roi-sec {
  padding: 100px 40px;
  background: var(--off)
}

.roi-inner {
  max-width: 1100px;
  margin: 0 auto
}

.roi-calc {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: 64px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(0, 0, 0, .04);
}

.roi-card {
  background: #fff;
  padding: 36px 32px;
  transition: background .2s;
}

.roi-card:hover {
  background: var(--sky)
}

.roi-card-icon {
  font-size: 24px;
  margin-bottom: 16px
}

.roi-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.roi-card-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 20px
}

.roi-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px
}

.roi-num-box {
  background: var(--off);
  border-radius: 8px;
  padding: 14px 12px;
  text-align: center
}

.roi-num-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 4px
}

.roi-num-val {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink)
}

.roi-num-val.teal {
  color: var(--teal2)
}

.roi-saving {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--sky);
  border: 1px solid rgba(13, 207, 180, .2);
  border-radius: 6px;
  padding: 10px 14px;
}

.roi-saving-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--teal2);
  text-transform: uppercase;
  letter-spacing: .5px
}

.roi-saving-num {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--teal2)
}

/* Property size toggle */
.roi-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
}

.roi-size-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500
}

.roi-size-btns {
  display: flex;
  gap: 6px
}

.roi-size-btn {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 6px;
  border: 1.5px solid var(--border);
  background: none;
  color: var(--muted);
  transition: all .2s;
}

.roi-size-btn.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.roi-size-btn:hover:not(.active) {
  border-color: rgba(0, 0, 0, .2);
  color: var(--ink)
}

/* ROI total bar */
.roi-total {
  margin-top: 2px;
  background: var(--ink);
  border-radius: 0 0 12px 12px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 48px;
}

.roi-total-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, .35);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px
}

.roi-total-num {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1
}

.roi-total-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, .35);
  margin-top: 6px
}

.roi-divider {
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, .08)
}

.roi-total-right {
  text-align: right
}

.roi-roi-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, .35);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px
}

.roi-roi-num {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  line-height: 1
}

.roi-roi-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, .35);
  margin-top: 6px
}

/* ── PROOF ── */
.proof-sec {
  padding: 100px 40px;
  background: #fff
}

.proof-inner {
  max-width: 1100px;
  margin: 0 auto
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.proof-card {
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}

.proof-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, .08);
  transform: translateY(-4px);
  border-color: rgba(0, 0, 0, .1);
}

.proof-stars {
  color: var(--amber);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px
}

.proof-quote {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-style: italic;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 24px;
}

.proof-author {
  display: flex;
  align-items: center;
  gap: 12px
}

.proof-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
  flex-shrink: 0;
}

.proof-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink)
}

.proof-role {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px
}

.proof-hotel {
  font-size: 11px;
  font-weight: 700;
  color: rgba(0, 0, 0, .2);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-top: 4px
}

/* ── ROBOTICS ── */
.robotics-sec {
  padding: 120px 40px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.robotics-sec::before {
  content: '';
  position: absolute;
  bottom: -300px;
  right: -200px;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 68, 68, .06) 0%, transparent 70%);
  pointer-events: none;
}

.robotics-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

.robotics-sec .section-label {
  color: var(--red)
}

.robotics-sec .section-h2 {
  color: #fff;
  font-size: clamp(36px, 4.5vw, 60px)
}

.robotics-sec .section-h2 em {
  color: var(--red)
}

.robotics-sec .section-sub {
  color: rgba(255, 255, 255, .4);
  max-width: 100%
}

.robotics-feats {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px
}

.rob-feat {
  display: flex;
  gap: 18px
}

.rob-feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(240, 68, 68, .08);
  border: 1px solid rgba(240, 68, 68, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.rob-feat-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.rob-feat-desc {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .4);
  font-weight: 300
}

.robotics-ctas {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap
}

.btn-robot-primary {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  padding: 13px 28px;
  border-radius: 7px;
  background: var(--red);
  border: none;
  box-shadow: 0 4px 20px rgba(240, 68, 68, .3);
  transition: all .2s;
}

.btn-robot-primary:hover {
  background: #E53E3E;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(240, 68, 68, .4)
}

.btn-robot-ghost {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, .6);
  padding: 13px 24px;
  border-radius: 7px;
  background: none;
  border: 1px solid rgba(255, 255, 255, .12);
  transition: all .2s;
}

.btn-robot-ghost:hover {
  border-color: rgba(255, 255, 255, .3);
  color: #fff
}

/* Waitlist card */
.waitlist-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(240, 68, 68, .2);
  border-radius: 16px;
  padding: 40px;
}

.wl-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.wl-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2s infinite
}

.wl-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px
}

.wl-stat {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 10px;
  padding: 18px;
}

.wl-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.wl-stat-num span {
  font-size: 20px;
  color: var(--red)
}

.wl-stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, .3);
  margin-top: 5px;
  line-height: 1.4
}

.wl-partners-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, .2);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px
}

.wl-partners {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px
}

.wl-partner {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 4px;
  color: rgba(255, 255, 255, .35);
}

.wl-form {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding-top: 24px
}

.wl-form-label {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 12px
}

.wl-input-row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px
}

.wl-input {
  flex: 1;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 6px;
  padding: 11px 14px;
  font-size: 13px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border .2s;
}

.wl-input:focus {
  border-color: var(--red)
}

.wl-input::placeholder {
  color: rgba(255, 255, 255, .25)
}

.wl-submit {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  padding: 11px 20px;
  border-radius: 6px;
  background: var(--red);
  border: none;
  white-space: nowrap;
  transition: all .2s;
}

.wl-submit:hover {
  background: #E53E3E
}

.wl-note {
  font-size: 11px;
  color: rgba(255, 255, 255, .2)
}

/* ── PRICING ── */
.pricing-sec {
  padding: 100px 40px;
  background: var(--off)
}

.pricing-inner {
  max-width: 1000px;
  margin: 0 auto
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 64px
}

.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px;
  position: relative;
  transition: all .25s;
}

.price-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, .08);
  transform: translateY(-4px)
}

.price-card.featured {
  background: var(--ink);
  border-color: transparent;
  box-shadow: 0 8px 40px rgba(10, 15, 30, .3);
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .5px;
  white-space: nowrap;
}

.price-tier {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.price-card.featured .price-tier {
  color: rgba(255, 255, 255, .4)
}

.price-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}

.price-card.featured .price-num {
  color: #fff
}

.price-num sup {
  font-size: 24px;
  vertical-align: super
}

.price-unit {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px
}

.price-card.featured .price-unit {
  color: rgba(255, 255, 255, .4)
}

.price-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 24px
}

.price-card.featured .price-desc {
  color: rgba(255, 255, 255, .45)
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink)
}

.price-card.featured .price-features li {
  color: rgba(255, 255, 255, .7)
}

.pf-check {
  color: var(--teal2);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0
}

.btn-price {
  display: block;
  text-align: center;
  width: 100%;
  padding: 13px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  transition: all .2s;
}

.btn-price.outline {
  border: 1.5px solid var(--border);
  color: var(--ink)
}

.btn-price.outline:hover {
  border-color: rgba(0, 0, 0, .2);
  background: var(--off)
}

.btn-price.solid {
  background: var(--teal);
  color: var(--ink);
  border: none;
  box-shadow: 0 4px 16px rgba(13, 207, 180, .3)
}

.btn-price.solid:hover {
  background: var(--teal2);
  transform: translateY(-1px)
}

/* ── CTA ── */
.cta-sec {
  padding: 120px 40px;
  background: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 0%, rgba(13, 207, 180, .06) 0%, transparent 70%),
    linear-gradient(rgba(13, 207, 180, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 207, 180, .03) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
  pointer-events: none;
}

.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.cta-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: 24px;
}

.cta-h2 em {
  font-style: italic;
  color: var(--teal2)
}

.cta-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 48px
}

.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px
}

.cta-note {
  font-size: 13px;
  color: var(--muted)
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  padding: 64px 40px 36px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.3px;
  margin-bottom: 12px;
}

.footer-brand-name span {
  color: var(--teal)
}

.footer-brand-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, .3);
  line-height: 1.7;
  max-width: 260px
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, .3);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 10px;
  transition: color .2s;
}

.footer-col a:hover {
  color: rgba(255, 255, 255, .7)
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, .2)
}

.footer-links {
  display: flex;
  gap: 20px
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, .2);
  transition: color .2s
}

.footer-links a:hover {
  color: rgba(255, 255, 255, .5)
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp .7s ease forwards
}

.d1 {
  animation-delay: .1s
}

.d2 {
  animation-delay: .25s
}

.d3 {
  animation-delay: .4s
}

.d4 {
  animation-delay: .55s
}

.d5 {
  animation-delay: .7s
}

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

/* ── RESPONSIVE ── */
@media(max-width:960px) {
  nav {
    padding: 0 20px
  }

  .nav-links,
  .nav-actions .btn-nav-ghost {
    display: none
  }

  .hero {
    padding: 100px 24px 60px
  }

  .pain-grid,
  .platform-stack,
  .proof-grid,
  .pricing-grid {
    grid-template-columns: 1fr
  }

  .how-step {
    grid-template-columns: 1fr
  }

  .step-num-col {
    display: none
  }

  .step-visual {
    border-left: none;
    border-top: 1px solid var(--border);
    min-height: 200px
  }

  .roi-calc {
    grid-template-columns: 1fr
  }

  .roi-total {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px
  }

  .roi-divider {
    display: none
  }

  .roi-total-right {
    text-align: center
  }

  .robotics-inner {
    grid-template-columns: 1fr
  }

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

  section,
  .proof-strip,
  .hero {
    padding-left: 24px;
    padding-right: 24px
  }

  .dash-body {
    grid-template-columns: 1fr
  }

  .dash-sidebar {
    display: none
  }

  .kpi-strip {
    grid-template-columns: 1fr 1fr
  }
}


.footer-social {
   display: flex;
   gap: 16px;
   margin-top: 16px;
}
.footer-social a {
   color: #FFFFFF;
   opacity: 0.8;
   transition: opacity 0.2s;
}
.footer-social a:hover {
   opacity: 1;
}