/* ============================================================
   Landing page — specific styles
   ============================================================ */

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 56px 0 56px;
  overflow: hidden;
}
.hero .ornament {
  position: absolute;
  top: -120px;
  right: -180px;
  width: 720px;
  height: 720px;
  color: var(--peach-yellow);
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
}
.hero .ornament svg { width: 100%; height: 100%; fill: currentColor; }

.hero .grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 64px;
  align-items: center;
}
.hero .hero-copy {
  padding-top: 12px;
}
.hero h1 {
  position: relative;
  z-index: 0;
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.035em;
  margin: 22px 0 26px;
  color: var(--martinique);
  text-wrap: balance;
}
.hero h1 .hl-plain {
  position: relative;
  z-index: 1;
}
.hero h1 .accent {
  position: relative;
  z-index: 0;
  background: var(--rajah);
  padding: 0.06em 0.12em;
  border-radius: 10px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hero h1 .underline {
  text-decoration: underline;
  text-decoration-color: var(--rajah);
  text-decoration-thickness: 8px;
  text-underline-offset: 6px;
}
.hero .lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 52ch;
  margin: 0 0 32px;
}
.hero .actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero .actions .or {
  font-size: 12px;
  color: var(--blue-violet);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0;
  margin: 0 4px;
  font-weight: 500;
}

/* Hero collage (right column) */
.hero .collage {
  position: relative;
  width: 100%;
}
.hero .hero-scene {
  position: absolute;
  left: -28px;
  bottom: -20px;
  width: 38%;
  max-width: 180px;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  z-index: 0;
  box-shadow: var(--shadow-md);
}
.hero .float-card {
  position: absolute;
  left: -20px;
  top: 12%;
  z-index: 4;
  background: var(--spring-wood);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  white-space: nowrap;
  border: 1px solid var(--border-subtle);
}
.hero .float-card .l {
  font-size: 10px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--fg-3);
  font-weight: 600;
  font-family: var(--font-mono);
}
.hero .float-card .v {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 500;
  color: var(--martinique);
  letter-spacing: -0.01em;
  line-height: 1;
}
.hero .float-card .pill {
  margin-top: 6px;
  background: var(--success-bg);
  color: var(--success);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
  width: max-content;
  font-family: var(--font-mono);
}
.hero .hero-preview {
  position: relative;
  z-index: 2;
}
.hero .hero-preview .tabs-row {
  margin-bottom: 14px;
}
.hero .hero-preview .preview-frame {
  padding: 14px;
}
.hero .hero-preview .screen,
.hero .hero-preview .mock {
  min-height: 360px;
}
.hero .hero-preview .mock {
  grid-template-columns: 1fr;
}
.hero .hero-preview .mock .mside {
  display: none;
}
.hero .hero-preview .tbl {
  display: none;
}
.hero .hero-preview .ksp {
  grid-template-columns: repeat(2, 1fr);
}
.hero .hero-preview .ksp .kpi:nth-child(n+3) {
  display: none;
}
.hero .hero-preview .charts {
  grid-template-columns: 1fr;
}
.hero .hero-preview .chartcard:nth-child(2) {
  display: none;
}

/* Hero footer line */
.hero-foot {
  margin-top: 56px;
  padding: 22px 0 0;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--fg-2);
}
.hero-foot .ex-label-inline {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-3);
  opacity: 0.75;
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 2px 6px;
  margin-left: 4px;
}
.hero-foot .pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  letter-spacing: 0;
  color: var(--fg-3);
}
.hero-foot .pulse .dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 999px;
  position: relative;
}
.hero-foot .pulse .dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--success);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(2.6); opacity: 0; } }

/* ---------- Logo strip ---------- */
.logos {
  padding: 28px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--cream-100);
}
.logos .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.logos .lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--fg-3);
}
.logos .brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--fg-2);
  opacity: 0.65;
  letter-spacing: -0.01em;
  transition: opacity 120ms var(--ease-out);
}
.logos .proof-item {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--fg-2);
  letter-spacing: -0.01em;
}
.logos .lbl + .proof-item::before,
.logos .proof-item:first-child::before {
  content: none;
  margin: 0;
}
.logos .proof-item::before {
  content: "·";
  margin-right: 24px;
  color: var(--blue-violet);
  font-weight: 700;
}

/* ---------- Audience split ---------- */
.audience { padding: 64px 0 100px; }
.audience .heading {
  text-align: center;
  margin-bottom: 60px;
}
.audience .heading h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 auto 14px;
  max-width: 18ch;
  line-height: 1.04;
}
.audience .heading p {
  font-size: 17px;
  color: var(--fg-2);
  max-width: 56ch;
  margin: 0 auto;
  line-height: 1.55;
}
.audience .split { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.panel {
  padding: 40px 36px 36px;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 460px;
  position: relative;
  overflow: hidden;
}
.panel .eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 0.7;
}
.panel h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0;
  max-width: 24ch;
  line-height: 1.05;
}
.panel p {
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 42ch;
  margin: 0;
  opacity: 0.82;
}
.panel ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.panel li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  line-height: 1.5;
}
.panel li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.panel .actions { margin-top: auto; display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

.panel.retailer { background: var(--martinique); color: var(--spring-wood); }
.panel.retailer h3 { color: var(--spring-wood); }
.panel.retailer p,
.panel.retailer li { color: rgba(241, 238, 230, 0.82); }
.panel.retailer .stamp {
  position: absolute;
  top: 32px;
  right: 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--rajah);
}
.panel.retailer .accent-shape,
.panel.brand .accent-shape {
  display: none;
}
.panel.brand { background: var(--rajah); color: var(--martinique); }
.panel.brand h3,
.panel.brand p,
.panel.brand li { color: var(--martinique); }
.panel .btn-ghost-retailer { color: var(--rajah) !important; }
.panel .btn-ghost-brand { color: var(--martinique) !important; }

/* ---------- How it works ---------- */
.how {
  padding: 100px 0;
  background: var(--cream-100);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.how .heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
  align-items: flex-end;
}
.how h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0;
  max-width: 16ch;
  line-height: 1.04;
}
.how .heading p {
  font-size: 16.5px;
  color: var(--fg-2);
  line-height: 1.55;
  max-width: 52ch;
  margin: 0;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--border-subtle), var(--blue-violet), var(--border-subtle));
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}
.step {
  background: var(--spring-wood);
  border-radius: 18px;
  padding: 26px 24px;
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--border-subtle);
  position: relative;
  z-index: 1;
}
.step:nth-child(even) .icon { background: var(--white); }
.step:nth-child(odd) .icon { background: var(--peach-yellow); }
.step .n {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-3);
  letter-spacing: 0;
  font-weight: 500;
}
.step h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--martinique);
}
.step p {
  font-size: 14px;
  color: var(--fg-2);
  margin: 0;
  line-height: 1.5;
}
.step .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--martinique);
  margin-bottom: 4px;
}
.step .icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Stats band ---------- */
.stats-band {
  padding: 56px 0;
  background: var(--martinique);
  color: var(--spring-wood);
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(248, 194, 108, 0.14), transparent 65%);
  pointer-events: none;
}
.stats-band .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.stats-band .stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 20px;
  border-left: 2px solid rgba(248, 194, 108, 0.35);
}
.stats-band .stat-v {
  font-family: var(--font-mono);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 500;
  color: var(--rajah);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stats-band .stat-l {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(241, 238, 230, 0.72);
  max-width: 22ch;
}

/* ---------- Aisle before/after compare ---------- */
.aisle { padding: 100px 0; }
.aisle .heading {
  text-align: center;
  margin-bottom: 56px;
}
.aisle .heading h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 auto 14px;
  max-width: 18ch;
  line-height: 1.04;
}
.aisle .heading p {
  font-size: 17px;
  color: var(--fg-2);
  max-width: 56ch;
  margin: 0 auto;
  line-height: 1.55;
}
.compare-wrap {
  position: relative;
  max-width: 1020px;
  margin: 0 auto;
}
.compare {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  background: var(--cream-300);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
  cursor: ew-resize;
  touch-action: pan-y;
}
.compare img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
.compare .img-before {
  filter: saturate(0.35) brightness(0.97) contrast(0.96);
}
.compare .img-after {
  filter: saturate(1.06);
}
.compare .after-clip {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 var(--pos));
}
.compare .divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 3px;
  transform: translateX(-1.5px);
  background: var(--spring-wood);
  box-shadow: 0 0 14px rgba(27, 27, 56, 0.35);
  z-index: 2;
}
.compare .knob {
  position: absolute;
  top: 50%;
  left: var(--pos);
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--martinique);
  color: var(--rajah);
  border: 2px solid var(--spring-wood);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  cursor: ew-resize;
  z-index: 3;
}
.compare .knob:focus-visible {
  outline: 3px solid var(--blue-violet);
  outline-offset: 2px;
}
.compare .knob svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.compare .tag {
  position: absolute;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  pointer-events: none;
}
.compare .tag-before {
  top: 16px;
  left: 16px;
  background: rgba(40, 40, 80, 0.82);
  color: var(--spring-wood);
}
.compare .tag-after {
  bottom: 16px;
  right: 16px;
  background: var(--rajah);
  color: var(--martinique);
}
.aisle-badge {
  position: absolute;
  z-index: 4;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  white-space: nowrap;
}
.aisle-badge .l {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--fg-3);
}
.aisle-badge .v {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 500;
  color: var(--martinique);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.aisle-badge.ab-1 { top: -20px; right: -18px; transform: rotate(2deg); }
.aisle-badge.ab-2 { top: 32%; left: -24px; transform: rotate(-2deg); }
.aisle-badge.ab-3 { bottom: 20%; right: -26px; transform: rotate(1.5deg); }
.aisle-badge.ab-4 { bottom: -22px; left: 8%; transform: rotate(-1.5deg); }

/* ---------- Product preview ---------- */
.product { padding: 110px 0; overflow: hidden; }
.product .heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-end;
  margin-bottom: 56px;
}
.product .heading h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0;
  max-width: 18ch;
  line-height: 1.04;
}
.product .heading p {
  font-size: 16.5px;
  color: var(--fg-2);
  line-height: 1.55;
  max-width: 52ch;
  margin: 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 48px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-xs);
}
.feature-card .feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--navy-100);
  color: var(--blue-violet);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-card .feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--martinique);
}
.feature-card p {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--fg-2);
  margin: 0;
}
.product-caption {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--fg-2);
  margin: 0 0 24px;
  font-family: var(--font-mono);
}
.product-caption .badge-building {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  background: var(--peach-yellow);
  color: var(--martinique);
  padding: 4px 10px;
  border-radius: 999px;
}
.preview-widget .ptab {
  cursor: pointer;
}
.preview-widget .preview-frame {
  position: relative;
}
.preview-widget .tabs-row {
  display: flex;
  gap: 6px;
  margin-bottom: 28px;
  background: var(--cream-100);
  padding: 6px;
  border-radius: 14px;
  width: max-content;
  border: 1px solid var(--border-subtle);
}
.preview-widget .ptab {
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 16px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--fg-2);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 160ms var(--ease-out);
}
.preview-widget .ptab.active {
  background: var(--martinique);
  color: var(--spring-wood);
  box-shadow: var(--shadow-xs);
}
.preview-widget .ptab .ico {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.preview-frame {
  background: var(--martinique);
  border-radius: 24px;
  padding: 20px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.preview-frame .chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 4px 12px;
}
.preview-frame .chrome .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(241, 238, 230, 0.18);
}
.preview-frame .chrome .url {
  margin-left: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(241, 238, 230, 0.55);
}
.preview-frame .screen {
  background: var(--cream-100);
  border-radius: 14px;
  overflow: hidden;
  min-height: 540px;
  position: relative;
}
.preview-pane { display: none; }
.preview-pane.active { display: block; }

/* mock dashboard inside .screen */
.mock {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 540px;
}
.mock .mside {
  background: var(--martinique);
  color: var(--spring-wood);
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mock .mside .mbrand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 8px 16px;
  border-bottom: 1px solid rgba(241, 238, 230, 0.12);
  margin-bottom: 12px;
}
.mock .mside .mbrand svg { width: 24px; color: var(--rajah); }
.mock .mside .mbrand .nm {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}
.mock .mside .mbrand .sb {
  font-size: 10px;
  color: rgba(241, 238, 230, 0.55);
  font-family: var(--font-mono);
  letter-spacing: 0;
  text-transform: uppercase;
}
.mock .mside .nit {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 9px;
  font-size: 13px;
  color: rgba(241, 238, 230, 0.78);
  cursor: default;
}
.mock .mside .nit.act { background: rgba(241, 238, 230, 0.08); color: var(--spring-wood); }
.mock .mside .nit svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mock .mside .nit .bdg {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 10px;
  background: var(--rajah);
  color: var(--martinique);
  padding: 1px 7px;
  border-radius: 999px;
  font-weight: 600;
}
.mock .mmain {
  padding: 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mock .mtop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
}
.mock .mtop .crumb {
  font-size: 13px;
  color: var(--fg-3);
}
.mock .mtop .crumb b { color: var(--martinique); }
.mock .mtop .pill-period {
  font-family: var(--font-mono);
  font-size: 11px;
  background: var(--white);
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  color: var(--fg-2);
}
.mock .ksp { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.mock .ksp .kpi {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 14px 16px;
}
.mock .ksp .kpi .l {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-3);
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.mock .ksp .kpi .v {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 500;
  color: var(--martinique);
  letter-spacing: -0.01em;
}
.mock .ksp .kpi .d {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--success);
  margin-top: 4px;
}
.mock .ksp .kpi .d.down { color: var(--danger); }
.mock .ksp .kpi.hl { background: var(--peach-yellow); border-color: transparent; }
.mock .ksp .kpi.hl .v { color: var(--martinique); }

.mock .charts {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 14px;
}
.mock .chartcard {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 16px 18px;
}
.mock .chartcard .ttl {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--martinique);
  margin-bottom: 4px;
}
.mock .chartcard .sub {
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--fg-3);
  margin-bottom: 14px;
}
.mock .bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 120px;
  padding-top: 6px;
}
.mock .bars .bar {
  flex: 1;
  background: var(--navy-100);
  border-radius: 4px 4px 0 0;
  position: relative;
}
.mock .bars .bar.hi { background: var(--rajah); }
.mock .bars .bar.mid { background: var(--blue-violet); opacity: 0.5; }
.mock .donut {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: conic-gradient(var(--rajah) 0 62%, var(--blue-violet) 62% 84%, var(--cream-300) 84% 100%);
  margin: 8px auto 0;
  position: relative;
}
.mock .donut::after {
  content: "";
  position: absolute;
  inset: 22px;
  background: var(--white);
  border-radius: 50%;
}
.mock .donut .ctr {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  color: var(--martinique);
  z-index: 2;
}
.mock .donut .ctr .v { font-size: 22px; font-weight: 500; letter-spacing: -0.01em; }
.mock .donut .ctr .l {
  font-size: 9px;
  color: var(--fg-3);
  text-transform: uppercase;
  letter-spacing: 0;
  margin-top: 2px;
}
.mock .lgnd { display: flex; gap: 12px; justify-content: center; margin-top: 16px; font-size: 11px; }
.mock .lgnd .lk { display: flex; align-items: center; gap: 5px; color: var(--fg-2); }
.mock .lgnd .sq { width: 9px; height: 9px; border-radius: 3px; }
.mock .lgnd .sq.y { background: var(--rajah); }
.mock .lgnd .sq.v { background: var(--blue-violet); }
.mock .lgnd .sq.c { background: var(--cream-300); }

/* Grouped bars — paired series per day (brand view) */
.mock .bars.grouped { gap: 7px; }
.mock .bars.grouped .grp {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 100%;
}
.mock .bars.grouped .grp .bar { flex: 1; }
.mock .bars .bar.lo { background: var(--cream-300); }

/* Horizontal bars — ranking (brand view) */
.mock .hbars {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding-top: 4px;
}
.mock .hbars .hrow {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  align-items: center;
  gap: 10px;
}
.mock .hbars .hlabel {
  font-size: 11px;
  color: var(--fg-2);
  white-space: nowrap;
}
.mock .hbars .htrack {
  height: 13px;
  background: var(--spring-wood);
  border-radius: 7px;
  overflow: hidden;
}
.mock .hbars .hfill {
  display: block;
  height: 100%;
  border-radius: 7px;
  background: var(--blue-violet);
}
.mock .hbars .hfill.hi { background: var(--rajah); }
.mock .hbars .hval {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--martinique);
}

.mock .tbl {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
}
.mock .tbl .thead {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  padding: 10px 16px;
  background: var(--cream-200);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--fg-3);
  font-weight: 600;
}
.mock .tbl .trow {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  padding: 12px 16px;
  font-size: 12.5px;
  align-items: center;
  border-top: 1px solid var(--border-subtle);
  color: var(--fg-1);
}
.mock .tbl .trow .nm { font-weight: 600; }
.mock .tbl .trow .nm small {
  display: block;
  font-weight: 400;
  font-family: var(--font-mono);
  color: var(--fg-3);
  font-size: 10.5px;
}
.mock .tbl .trow .v { font-family: var(--font-mono); color: var(--martinique); }
.mock .tbl .trow .status {
  font-size: 10.5px;
  padding: 3px 8px;
  border-radius: 999px;
  width: max-content;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}
.mock .tbl .trow .status.live { background: #e3f0e8; color: #3a7d5c; }
.mock .tbl .trow .status.draft { background: var(--cream-300); color: var(--fg-2); }
.mock .tbl .trow .status.review { background: var(--peach-yellow); color: var(--warning); }

/* ---------- ROI Calculator ---------- */
.roi {
  padding: 100px 0;
  background: var(--martinique);
  color: var(--spring-wood);
  position: relative;
  overflow: hidden;
}
.roi::before {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -180px;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(248, 194, 108, 0.18), transparent 65%);
  pointer-events: none;
}
.roi .grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: center;
  position: relative;
}
.roi h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 16px 0 18px;
  color: var(--spring-wood);
  max-width: 18ch;
}
.roi p.lede {
  font-size: 16.5px;
  color: rgba(241, 238, 230, 0.75);
  line-height: 1.55;
  max-width: 48ch;
  margin: 0;
}
.roi .lbl-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--rajah);
}
.roi .calc {
  background: rgba(241, 238, 230, 0.06);
  border: 1px solid rgba(241, 238, 230, 0.1);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(4px);
}
.roi .calc .field { margin-bottom: 22px; }
.roi .calc label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
  font-weight: 500;
  color: rgba(241, 238, 230, 0.85);
  margin-bottom: 10px;
  font-family: var(--font-sans);
}
.roi .calc label .v {
  font-family: var(--font-mono);
  color: var(--rajah);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.roi .calc input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: rgba(241, 238, 230, 0.12);
  border-radius: 999px;
  outline: 0;
}
.roi .calc input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--rajah);
  border: 3px solid var(--martinique);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.roi .calc input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--rajah);
  border: 3px solid var(--martinique);
  cursor: pointer;
}
.roi .calc .ticks {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(241, 238, 230, 0.45);
  margin-top: 6px;
  letter-spacing: 0;
}
.roi .calc .seg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  background: rgba(241, 238, 230, 0.08);
  padding: 4px;
  border-radius: 12px;
}
.roi .calc .seg button {
  background: transparent;
  color: rgba(241, 238, 230, 0.7);
  border: 0;
  padding: 9px 8px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  border-radius: 9px;
  cursor: pointer;
  transition: all 120ms var(--ease-out);
}
.roi .calc .seg button.act {
  background: var(--rajah);
  color: var(--martinique);
}

.roi .calc .out {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px dashed rgba(241, 238, 230, 0.15);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.roi .calc .out .b {
  background: rgba(241, 238, 230, 0.06);
  border-radius: 14px;
  padding: 16px;
}
.roi .calc .out .b.hi {
  background: var(--rajah);
  color: var(--martinique);
}
.roi .calc .out .l {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 8px;
}
.roi .calc .out .v {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--spring-wood);
}
.roi .calc .out .b.hi .v { color: var(--martinique); }
.roi .calc .out .sub {
  font-size: 11px;
  font-family: var(--font-mono);
  margin-top: 6px;
  opacity: 0.6;
}
.roi .calc .out .b.hi .sub { opacity: 0.7; }
.roi .calc .note {
  font-size: 11px;
  font-family: var(--font-mono);
  color: rgba(241, 238, 230, 0.45);
  margin-top: 18px;
  line-height: 1.5;
}

/* ---------- Testimonial ---------- */
.testimonial { padding: 100px 0; background: var(--spring-wood); }
.testimonial .sec-eyebrow { margin-bottom: 28px; }
.testimonial .container { max-width: 980px; }
.testimonial .quote {
  background: var(--peach-yellow);
  border-radius: 28px;
  padding: 56px 56px 44px;
  position: relative;
}
.testimonial .quote::before {
  content: "“";
  position: absolute;
  top: 24px;
  left: 38px;
  font-family: var(--font-display);
  font-size: 140px;
  color: var(--rajah);
  line-height: 1;
  opacity: 0.6;
}
.testimonial .quote blockquote {
  margin: 0 0 32px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--martinique);
  text-wrap: balance;
  position: relative;
  z-index: 1;
  padding-top: 28px;
}
.testimonial .who {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial .who .av {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--martinique);
  color: var(--rajah);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}
.testimonial .who .nm {
  font-weight: 600;
  font-size: 15px;
  color: var(--martinique);
}
.testimonial .who .ttl {
  font-size: 12px;
  color: var(--fg-2);
  font-family: var(--font-mono);
  margin-top: 2px;
}

/* ---------- FAQ ---------- */
.faq { padding: 100px 0; background: var(--cream-100); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.faq .container { display: grid; grid-template-columns: 360px 1fr; gap: 80px; }
.faq h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.6vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 14px;
}
.faq .help {
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.55;
  margin: 0 0 22px;
}
.faq details {
  border-bottom: 1px solid var(--border-subtle);
  padding: 22px 0;
}
.faq details:first-of-type { border-top: 1px solid var(--border-subtle); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--martinique);
  letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--peach-yellow);
  color: var(--martinique);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 200ms var(--ease-out);
}
.faq summary .pm svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; }
.faq details[open] summary .pm { transform: rotate(45deg); background: var(--blue-violet); color: var(--spring-wood); }
.faq details p {
  margin: 16px 0 0;
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.6;
  max-width: 64ch;
}

/* ---------- Contact ---------- */
.contact { padding: 110px 0 100px; }
.contact .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}
.contact h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0 0 18px;
}
.contact .lede { font-size: 17px; color: var(--fg-2); line-height: 1.55; max-width: 46ch; margin: 0 0 32px; }
.contact .info-list { display: flex; flex-direction: column; gap: 22px; margin-top: 8px; }
.contact .info-list .it { display: flex; gap: 14px; align-items: flex-start; }
.contact .info-list .ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--peach-yellow);
  color: var(--martinique);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact .info-list .ico svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact .info-list .lbl { font-size: 11px; font-family: var(--font-mono); letter-spacing: 0; text-transform: uppercase; color: var(--fg-3); margin-bottom: 4px; font-weight: 500; }
.contact .info-list .val { font-size: 15px; color: var(--martinique); font-weight: 500; }
.contact .info-list .sub { font-size: 12px; color: var(--fg-3); margin-top: 2px; font-family: var(--font-mono); }

.contact form {
  background: var(--white);
  border-radius: 24px;
  padding: 36px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact form .field { display: flex; flex-direction: column; gap: 7px; }
.contact form label {
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--fg-3);
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 500;
}
.contact form input,
.contact form select,
.contact form textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--martinique);
  background: var(--cream-100);
  border: 0;
  border-radius: 10px;
  padding: 12px 14px;
  box-shadow: inset 0 0 0 1px var(--border);
  transition: box-shadow 120ms var(--ease-out);
}
.contact form input:focus,
.contact form select:focus,
.contact form textarea:focus {
  outline: 0;
  box-shadow: inset 0 0 0 1px var(--blue-violet), 0 0 0 3px rgba(88, 86, 177, 0.12);
}
.contact form textarea { min-height: 110px; resize: vertical; }
.contact .role-seg { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; background: var(--cream-100); padding: 4px; border-radius: 11px; box-shadow: inset 0 0 0 1px var(--border); }
.contact .role-seg input { display: none; }
.contact .role-seg label {
  text-align: center;
  padding: 10px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: var(--fg-2);
  border-radius: 8px;
  cursor: pointer;
  transition: all 160ms var(--ease-out);
}
.contact .role-seg input:checked + label { background: var(--martinique); color: var(--spring-wood); }
.contact form .submit-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 8px; flex-wrap: wrap; }
.contact form .fineprint { font-size: 11px; font-family: var(--font-mono); color: var(--fg-3); max-width: 28ch; line-height: 1.5; }
.contact-confirm {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.contact-confirm h3 { font-family: var(--font-display); font-size: 28px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; margin: 0; }
.contact-confirm p { font-size: 17px; color: var(--fg-2); margin: 0; }

/* ---------- Closing CTA ---------- */
.closing { padding: 110px 0 90px; text-align: center; position: relative; overflow: hidden; }
.closing-dark {
  background: var(--martinique);
  color: var(--spring-wood);
  margin-top: 0;
}
.closing-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(248, 194, 108, 0.12), transparent 70%);
  pointer-events: none;
}
.closing-dark h2 {
  color: var(--spring-wood);
  position: relative;
}
.closing-dark h2 .hl-accent {
  background: var(--rajah);
  color: var(--martinique);
  padding: 0 0.12em;
  border-radius: 10px;
}
.closing-dark p {
  color: rgba(241, 238, 230, 0.75);
  position: relative;
}
.closing-dark .actions {
  position: relative;
}
.closing:not(.closing-dark)::before {
  content: "";
  position: absolute;
  inset: 50% -200px auto -200px;
  height: 0;
  width: auto;
  border-top: 1px solid var(--border-subtle);
}
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  line-height: 0.98;
  text-wrap: balance;
}
.closing p {
  font-size: 17px;
  color: var(--fg-2);
  max-width: 50ch;
  margin: 0 auto 32px;
}
.closing .actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero .grid { grid-template-columns: 1fr; gap: 48px; }
  .hero .collage { max-width: 480px; margin: 0 auto; }
  .audience .split,
  .how .heading,
  .product .heading,
  .roi .grid,
  .faq .container,
  .contact .grid { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .mock { grid-template-columns: 1fr; }
  .mock .mside { display: none; }
  .feature-grid,
  .stats-band .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero .hero-scene,
  .hero .float-card { display: none; }
  .steps::before { display: none; }
  .aisle-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 18px;
  }
  .aisle-badge {
    position: static;
    transform: none;
    box-shadow: var(--shadow-sm);
  }
  nav.top ul { display: none; }
  footer.site .footer-main { grid-template-columns: 1fr; gap: 32px; }
  footer.site .cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .stats-band .stats-grid,
  .feature-grid { grid-template-columns: 1fr; }
}
