:root {
  --blue: #103d69;
  --blue-soft: #e8eff6;
  --green: #61a810;
  --green-soft: #eef5e4;
  --lightgreen: #a8d96f;
  --teal: #187c8f;
  --accent-1: #45b7e8;
  --accent-2: #61a810;
  --ink: #0b0f17;
  --navy: #103d69;
  --muted: #667085;
  --soft: #f6f5f1;
  --paper: #fbfaf7;
  --line: #dedbd2;
  --line-dark: #0c2947;
  --white: #ffffff;
  --panel: #103d69;
  --radius: 12px;
  --shadow: 0 18px 45px rgba(16, 24, 40, .08);
  --font-display: 'Oswald', ui-sans-serif, system-ui, sans-serif;
  --font-mono: 'Space Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --font-body: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}
body.light-page { background: var(--paper); color: var(--ink); }
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; height: auto; }
.wrap { width: min(1240px, calc(100% - 40px)); margin: 0 auto; }

/* ===== Header ===== */
.pf-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(251, 250, 247, .98);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}
.pf-nav { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.pf-logo { display: flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 15px; letter-spacing: -.005em; text-transform: uppercase; }
.pf-logo .dot { width: 7px; height: 7px; border-radius: 1px; background: var(--green); }
.pf-links { display: flex; align-items: center; gap: 24px; font-size: 13px; font-weight: 700; color: #475467; }
.pf-links a { padding: 24px 0 22px; border-bottom: 2px solid transparent; }
.pf-links a:hover, .pf-links a.active { color: var(--ink); border-bottom-color: var(--ink); }
.pf-cta { display: flex; align-items: center; gap: 10px; }
@media (max-width: 980px) { .pf-links { display: none; } .pf-nav { min-height: 62px; } }
@media (max-width: 560px) { .pf-logo span:last-child { display: none; } .pf-cta .ghost { display: none; } }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 11px 20px;
  border-radius: 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .03em;
  border: 1px solid transparent;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--blue); color: #fff; box-shadow: 0 14px 28px rgba(16,61,105,.28); }
.btn.primary:hover { background: #0c2e4e; }
.btn.secondary { background: #fff; color: var(--ink); border-color: #cfd5df; }
.btn.secondary:hover { border-color: var(--ink); }
.btn.ghost { background: transparent; color: #475467; border-color: transparent; }
.btn.ghost:hover { color: var(--ink); background: var(--soft); }

/* ===== Sections & type ===== */
section { padding: 82px 0; }
.section-tight { padding: 48px 0; }
main > section:first-child:not(.product-shell) {
  background: linear-gradient(180deg, #fff 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--line);
}
.section-head { max-width: 760px; margin: 0 auto 36px; text-align: center; }
.section-head.is-left { text-align: left; margin-left: 0; margin-right: 0; max-width: 820px; }
.kicker {
  color: var(--teal);
  font-family: var(--font-mono);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 11px;
}
.kicker:before { content: "\00A7 "; opacity: .6; }
h1 {
  margin: 16px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(40px, 6.2vw, 84px);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.015em;
  color: var(--ink);
  max-width: 900px;
  text-transform: uppercase;
}
h2 {
  margin: 8px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 52px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.01em;
  color: var(--ink);
}
h3 { color: var(--ink); font-family: var(--font-display); font-weight: 600; letter-spacing: -.005em; }
h1 .accent, h2 .accent, .grad-text {
  color: var(--blue);
}
[data-count], .table-row, .table-head, .price-amount, .metric-tile b, .kpi-box b, .stat-list b, .order-price, .mini-code, .mini-code code {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}
.stat-list { display: grid; gap: 0; margin: 8px 0; }
.stat-list .stat-row { padding: 20px 0; border-top: 1px solid var(--line); }
.stat-list .stat-row:last-child { border-bottom: 1px solid var(--line); }
.stat-list .stat-row b {
  display: block;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 850;
  letter-spacing: -.02em;
  color: var(--ink);
}
.stat-list .stat-row b.grad { color: var(--blue); font-family: var(--font-mono); }
.stat-list .stat-row span { display: block; color: var(--muted); font-size: 13px; margin-top: 6px; }
.lead {
  font-size: clamp(17px, 1.45vw, 21px);
  color: #475467;
  max-width: 740px;
}
.lead strong { color: var(--ink) !important; }
.section-head p { font-size: 17px; color: var(--muted); margin: 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--soft);
  border: 1px solid var(--line);
  color: #344054;
  font-weight: 820;
  font-size: 12px;
}

/* ===== Cards / grids ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cards.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: none;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.card:hover { transform: translateY(-4px); border-color: #c7c1b4; box-shadow: 0 18px 42px rgba(16, 24, 40, .08); }
.card .icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--soft);
  color: var(--ink);
  font-size: 18px;
  margin-bottom: 14px;
}
.card .icon img { width: 22px; height: 22px; object-fit: contain; display: block; }
.card h3 { margin: 0 0 8px; font-size: 20px; letter-spacing: -.015em; }
.card p { color: var(--muted); margin: 0 0 14px; }
.card ul { margin: 0; padding: 0; list-style: none; }
.card li { margin: 10px 0; color: #344054; display: flex; gap: 10px; font-size: 14.5px; }
.card li:before { content:""; flex: 0 0 7px; width: 7px; height: 7px; border-radius: 50%; background: var(--green); margin-top: 8px; }
.tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-mono);
  letter-spacing: .02em;
}

/* ===== New product-led homepage ===== */
.product-shell {
  padding: 34px 0 32px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
  overflow: hidden;
}
.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  gap: 34px;
  align-items: center;
}
.product-hero-grid h1 { font-size: clamp(36px, 5vw, 66px); margin: 10px 0 12px; }
.product-hero-grid .lead { margin: 0; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 18px 0 0; }
.retailer-marquee {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
  color: #475467;
  font-size: 12px;
  font-weight: 800;
}
.retailer-marquee span {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 12px;
  background: #fff;
  height: 28px;
}
.retailer-marquee span img { height: 15px; width: auto; max-width: 64px; object-fit: contain; display: block; }
.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.hero-proof {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 14px;
}
.hero-proof b { display: block; font-size: 20px; letter-spacing: -.03em; color: var(--ink); }
.hero-proof span { display: block; color: var(--muted); font-size: 12px; margin-top: 3px; }
/* ===== Receipt / ledger signature hero panel ===== */
.product-console {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 26px 70px rgba(16, 24, 40, .14);
  overflow: hidden;
  position: relative;
  animation: consoleFloat 7s ease-in-out infinite;
}
.product-console:after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 10px;
  background: linear-gradient(135deg, transparent 50%, var(--paper) 50%) 0 0/12px 12px repeat-x,
              linear-gradient(-135deg, transparent 50%, var(--paper) 50%) 0 0/12px 12px repeat-x;
  background-position: 0 0, 6px 0;
}
.console-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px 12px;
  border-bottom: 1.5px dashed var(--line);
}
.console-title { font-family: var(--font-mono); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.console-status { color: var(--teal); font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.console-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  min-height: 430px;
}
.order-stream {
  border-right: 1.5px dashed var(--line);
  padding: 16px;
  display: grid;
  gap: 8px;
  align-content: start;
}
.order-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: baseline;
  padding: 6px 0;
  animation: itemIn .55s ease both;
  font-family: var(--font-mono);
}
.order-item:nth-child(2) { animation-delay: .08s; }
.order-item:nth-child(3) { animation-delay: .16s; }
.order-item:nth-child(4) { animation-delay: .24s; }
.order-logo {
  width: auto;
  height: auto;
  border-radius: 0;
  display: inline;
  background: none;
  color: var(--teal);
  font-size: 10px;
  font-weight: 700;
}
.order-item b { display: block; font-size: 12px; font-weight: 700; font-family: var(--font-body); color: var(--ink); }
.order-item small { display: block; color: var(--muted); font-size: 10.5px; margin-top: 1px; font-family: var(--font-body); }
.order-price { font-size: 13px; font-weight: 700; color: var(--ink); }
.verified-check { color: var(--green); font-weight: 700; }
.data-panel {
  padding: 16px;
  display: grid;
  gap: 14px;
  align-content: start;
  background: var(--soft);
}
.data-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}
.data-panel h3 { color: var(--ink); margin: 0; font-size: 17px; letter-spacing: -.01em; }
.data-panel p { margin: 4px 0 0; color: var(--muted); font-size: 12px; }
.metric-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.metric-tile {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: #fff;
  transition: transform .22s ease, border-color .22s ease;
}
.metric-tile:hover { transform: translateY(-2px); border-color: var(--accent-1); }
.metric-tile small { display: block; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .07em; font-weight: 700; font-family: var(--font-mono); }
.metric-tile b { display: block; color: var(--ink); margin-top: 4px; font-size: 18px; }
.metric-tile em { display: block; color: var(--green); font-style: normal; font-size: 11px; margin-top: 2px; font-family: var(--font-mono); }
.signal-bars { display: grid; gap: 10px; }
.signal-row { display: grid; grid-template-columns: 68px 1fr 36px; gap: 10px; align-items: center; font-size: 11px; color: var(--muted); font-family: var(--font-mono); }
.signal-track { height: 6px; border-radius: 999px; background: #e5e0d3; overflow: hidden; }
.signal-track span { display: block; height: 100%; background: var(--green); border-radius: 999px; transform-origin: left center; animation: barGrow .9s ease both; }
.analyst-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fff;
}
.analyst-box b { display: block; font-size: 11px; color: var(--teal); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .06em; font-family: var(--font-mono); }
.analyst-box p { color: #344054; margin: 0; font-size: 12.5px; }
.connection-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.connection-pill {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 10px;
  background: #fff;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
}
.connection-pill span { color: var(--green); display: block; margin-top: 2px; font-weight: 700; font-family: var(--font-mono); font-size: 10px; }
.retail-signal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.insight-card {
  padding: 24px;
  min-height: 188px;
  background: #fff;
  border-right: 1px solid var(--line);
  transition: background .24s ease, transform .24s ease;
}
.insight-card:hover { background: #eaf3fc; transform: translateY(-2px); }
.insight-card:last-child { border-right: 0; }
.insight-card small { display: block; color: var(--teal); font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; margin-bottom: 24px; }
.insight-card b { display: block; color: var(--ink); font-size: 30px; line-height: .95; letter-spacing: -.035em; margin-bottom: 10px; }
.insight-card p { margin: 0; color: #475467; font-size: 14px; }
.preview-panel {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  position: relative;
}
.preview-nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 18px;
  border-bottom: 1.5px dashed var(--line);
  background: var(--soft);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.preview-nav span:last-child { color: var(--teal); }
.preview-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 0;
}
.preview-main { padding: 22px; border-right: 1px solid var(--line); }
.preview-side { padding: 22px; display: grid; gap: 14px; align-content: start; background: #fcfcfd; }
.table-head, .table-row {
  display: grid;
  grid-template-columns: 1.2fr .8fr .75fr .65fr;
  gap: 12px;
  align-items: center;
}
.table-head { color: var(--muted); font-size: 10.5px; text-transform: uppercase; letter-spacing: .06em; font-weight: 700; padding-bottom: 10px; border-bottom: 1.5px dashed var(--line); }
.table-row { padding: 13px 0; border-bottom: 1px dotted var(--line); font-size: 13px; color: #344054; }
.table-row:last-child { border-bottom: 0; }
.table-row b { color: var(--ink); font-family: var(--font-body); font-weight: 700; }
.mini-bars { display: grid; gap: 12px; }
.mini-bar { display: grid; gap: 6px; color: #344054; font-size: 12px; font-weight: 700; font-family: var(--font-mono); }
.mini-bar div { height: 8px; background: #e8edf5; border-radius: 999px; overflow: hidden; }
.mini-bar span { display: block; height: 100%; border-radius: 999px; background: var(--blue); }
.ask-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fff;
}
.ask-card small { color: var(--teal); font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; font-family: var(--font-mono); }
.ask-card p { margin: 9px 0 0; color: #344054; font-size: 13px; }
.system-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.system-step {
  padding: 24px;
  border-right: 1px solid var(--line);
  background: #fff;
  transition: background .24s ease, transform .24s ease;
}
.system-step:hover { background: #f8f7f3; transform: translateY(-2px); }
.system-step:last-child { border-right: 0; }
.system-step small { display: block; color: var(--green); font-family: var(--font-mono); font-size: 12px; font-weight: 700; margin-bottom: 30px; }
.system-step b { display: block; font-size: 18px; letter-spacing: -.02em; margin-bottom: 8px; }
.system-step span { display: block; color: #667085; font-size: 14px; }
.value-exchange-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.pill-stepper { display: flex; align-items: center; gap: 8px; margin: 22px 0 26px; flex-wrap: wrap; }
.pill-step { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800; color: var(--muted); white-space: nowrap; }
.pill-step b { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 999px; background: var(--soft); border: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.pill-step.active { color: var(--ink); }
.pill-step.active b { background: var(--accent-1); border-color: var(--accent-1); color: #fff; }
.pill-line { width: 32px; height: 2px; background: var(--line); border-radius: 2px; }
.pill-line.active { background: var(--accent-1); }
.signin-mock { background: #fff; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); max-width: 360px; margin: 0 auto; position: relative; z-index: 1; }
.signin-mock-head { background: linear-gradient(120deg, var(--accent-1), var(--accent-2)); color: #fff; padding: 26px 22px; text-align: center; font-size: 17px; font-weight: 800; letter-spacing: -.01em; }
.signin-mock-body { padding: 22px; }
.signin-mock-body b { display: block; font-size: 18px; margin-bottom: 16px; color: var(--ink); }
.signin-mock-body label { display: block; font-size: 12px; font-weight: 700; color: var(--muted); margin-bottom: 5px; }
.signin-mock-body input { width: 100%; box-sizing: border-box; border: 1px solid var(--line); border-radius: 8px; padding: 10px 12px; margin-bottom: 14px; font-size: 14px; background: #f9fafb; color: #98a2b3; }
.signin-mock-body .btn[disabled] { opacity: 1; cursor: default; }
.signin-mock-body .btn[disabled]:hover { transform: none; }
.signin-mock-trust { text-align: center; font-size: 11px; color: var(--muted); margin-top: 10px; }
@media (max-width: 860px) { .value-exchange-grid { grid-template-columns: 1fr; } }
.impact-layer {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 24px;
  align-items: stretch;
}
.impact-note {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  background: var(--green);
  color: #fff;
}
.impact-note h2 { color: #fff; font-size: clamp(28px, 3vw, 44px); }
.impact-note p { color: #eaf5ea; }
.impact-note-list { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 12px; }
.impact-note-list li { color: #eaf5ea; font-size: 13.5px; line-height: 1.5; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.18); }
.impact-note-list strong { color: #fff; }
.flat-cta {
  border-radius: 22px;
  border: 3px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(120deg, #d6ecff 0%, #eef6e6 45%, #e2f4d9 100%) border-box;
  padding: 44px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow);
  position: relative;
}
.flat-cta h2 { color: var(--ink); margin: 0 0 8px; }
.flat-cta p { margin: 0; color: var(--muted); }

.shot-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.shot-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform .28s ease, box-shadow .28s ease;
}
.shot-card:hover { transform: translateY(-4px); box-shadow: 0 24px 54px rgba(16,24,40,.14); }
.shot-card img, .shot-card iframe { display: block; width: 100%; height: 210px; object-fit: cover; }
.before-after-preview {
  display: block;
  position: relative;
  height: 210px;
  overflow: hidden;
  background: #e8edf2;
}
.before-after-preview img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.before-after-preview .after { clip-path: inset(0 0 0 50%); animation: compareReveal 6s ease-in-out infinite; }
.before-after-preview .divider {
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 50%;
  width: 3px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(15,23,42,.18);
  animation: compareDivider 6s ease-in-out infinite;
}
.before-after-preview .divider:after {
  content: "↔";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(15,23,42,.18);
}
@keyframes compareReveal {
  0%, 100% { clip-path: inset(0 0 0 72%); }
  45%, 55% { clip-path: inset(0 0 0 28%); }
}
@keyframes compareDivider {
  0%, 100% { left: 72%; }
  45%, 55% { left: 28%; }
}
@media (prefers-reduced-motion: reduce) {
  .before-after-preview .after, .before-after-preview .divider { animation: none; }
}
.shot-card figcaption { padding: 14px 16px; }
.shot-card figcaption b { display: block; font-size: 14px; color: var(--ink); letter-spacing: -.01em; }
.shot-card figcaption span { display: block; color: var(--muted); font-size: 12.5px; margin-top: 4px; line-height: 1.4; }
.shot-card-link { display: inline-block; margin-top: 8px; color: var(--accent-1); font-size: 12px; font-weight: 800; }
.shot-card-link:hover { text-decoration: underline; }
.fine-print { margin: 16px 0 0; color: var(--muted); font-size: 12px; font-style: italic; }
.launcher-note { max-width: 100%; }
@media (max-width: 900px) { .shot-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .shot-gallery { grid-template-columns: 1fr; } }

/* ===== Existing shared components made flat ===== */
.proof-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 28px; }
.proof-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; box-shadow: none; }
.proof-card strong { display: block; font-size: 26px; color: var(--ink); line-height: 1.1; }
.proof-card span { color: var(--muted); font-size: 13px; font-weight: 650; }
.shot-frame { border-radius: 14px; border: 1px solid var(--line); background: #fff; overflow: hidden; box-shadow: var(--shadow); }
.mockup-stage {
  position: relative;
  padding: 46px;
  border-radius: 24px;
  background: linear-gradient(135deg, #dcefff 0%, #f6f5f1 42%, #e3f5da 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mockup-stage > * { width: 100%; }
.mockup-stage .shot-frame, .mockup-stage .preview-panel { position: relative; z-index: 1; }
@media (max-width: 760px) { .mockup-stage { padding: 22px; border-radius: 18px; } }
.shot-body { padding: 22px; }
.shot-caption { padding: 14px 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; font-weight: 650; }
.kpi-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px,1fr)); gap: 10px; margin-bottom: 16px; }
.kpi-box { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; }
.kpi-box small { display: block; color: var(--muted); font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: .05em; font-weight: 700; }
.kpi-box b { display: block; margin-top: 4px; font-size: 19px; color: var(--ink); font-variant-numeric: tabular-nums; }
.mini-chart { height: 120px; border-radius: 12px; background: #fff; border: 1px solid var(--line); overflow: hidden; }
.mini-chart svg { width: 100%; height: 100%; }
.chat-bubble { border-radius: 14px; padding: 12px 15px; font-size: 13.5px; max-width: 82%; margin-bottom: 10px; }
.chat-bubble.user { background: var(--blue-soft); color: var(--blue); margin-left: auto; }
.chat-bubble.ai { background: #f7f8fa; color: #111827; border: 1px solid var(--line); }
.flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step { text-align: left; position: relative; border: 1px solid var(--line); border-radius: 12px; padding: 20px; background: #fff; }
.step:not(:last-child):after { display: none; }
.step-icon { width: 34px; height: 34px; border-radius: 10px; border: 1px solid var(--line); background: #fff; display: grid; place-items: center; margin: 0 0 30px; font-size: 15px; color: var(--ink); }
.step b { display: block; color: var(--ink); }
.step span { color: var(--muted); font-size: 13.5px; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease; }
.price-card:hover { transform: translateY(-4px); border-color: #c7c1b4; box-shadow: 0 18px 42px rgba(16, 24, 40, .08); }
.price-card.featured { border-color: var(--ink); box-shadow: var(--shadow); }
.price-card.featured:hover { box-shadow: 0 24px 54px rgba(16,24,40,.14); }
.price-card h3 { margin: 0 0 4px; font-size: 19px; color: var(--ink); }
.price-amount { font-size: 30px; font-weight: 700; color: var(--ink); margin: 10px 0 4px; }
.price-amount small { font-size: 13px; font-weight: 700; color: var(--muted); }
.price-card p.desc { color: var(--muted); font-size: 13.5px; margin: 0 0 16px; min-height: 40px; }
.price-card .btn { margin-top: auto; }
.faq { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 20px; }
.faq-item b { color: var(--ink); display: block; margin-bottom: 8px; }
.faq-item p { margin: 0; color: var(--muted); font-size: 14px; }
.cta-band {
  border-radius: 22px;
  border: 3px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(120deg, #d6ecff 0%, #eef6e6 45%, #e2f4d9 100%) border-box;
  padding: 44px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow);
  position: relative;
}
.cta-band h2 { color: var(--ink); margin: 0 0 8px; }
.cta-band p { margin: 0; color: var(--muted); }
.cta-actions { display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap; }
.pf-footer { padding: 44px 0 40px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.pf-footer .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; align-items: center; }
.pf-footer-links { display: flex; gap: 18px; flex-wrap: wrap; font-weight: 700; }
.pf-footer-links a:hover { color: var(--ink); }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
[data-count] { font-variant-numeric: tabular-nums; }

/* ===== Advertiser-page depth, neutral B2B palette ===== */
.split-feature {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 24px;
  align-items: stretch;
}
.feature-copy {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  background: #fff;
}
.feature-copy h2 { font-size: clamp(30px, 3.5vw, 52px); }
.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.feature-list div {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: start;
  color: #344054;
  font-size: 14px;
}
.feature-list b {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  font-size: 12px;
}
.launch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.launch-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  background: #fff;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.launch-card:hover { transform: translateY(-5px); border-color: #bdb5a6; box-shadow: 0 20px 50px rgba(16,24,40,.09); }
.launch-card small { color: var(--green); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; font-size: 11px; }
.launch-card h3 { margin: 16px 0 8px; font-size: 24px; letter-spacing: -.025em; }
.launch-card p { color: var(--muted); margin: 0 0 16px; }
.launch-card ul { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 8px; color: #344054; font-size: 14px; }
.launch-card li:before { content: ""; display: inline-block; width: 6px; height: 6px; margin: 0 9px 2px 0; border-radius: 50%; background: var(--green); }
.launch-card .btn { margin-top: auto; align-self: flex-start; }
.card-img-placeholder {
  margin-top: 16px;
  border: 1.5px dashed var(--line);
  border-radius: 12px;
  background: var(--soft);
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 700;
  text-align: center;
  padding: 12px;
}
.card-img-featured {
  border: none;
  padding: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: 14px;
  text-decoration: none;
  background: #fff;
}
.card-img-featured img { display: block; width: 100%; height: 220px; object-fit: contain; background: #fff; }
.channel-icons { display: flex; flex-wrap: wrap; gap: 7px; margin: 4px 0 14px; }
.channel-icons span {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 11px;
  background: var(--soft);
  color: #344054;
  font-size: 12px;
  font-weight: 750;
}
.snippet-pills { display: flex; gap: 8px; margin: 4px 0 12px; }
.snippet-headline { font-size: 14px; font-weight: 800; color: var(--ink); margin: 14px 0 10px; }
.share-link-examples { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 16px; }
.share-link-examples a { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px; background: var(--soft); color: var(--accent-1); font-size: 12px; font-weight: 800; transition: border-color .2s ease, background .2s ease; }
.share-link-examples a:hover { border-color: var(--accent-1); background: #fff; }
.mini-code {
  margin: 0 0 4px;
  background: var(--navy);
  color: #cfe6ff;
  border-radius: 6px;
  padding: 14px 16px;
  font-size: 11px;
  line-height: 1.6;
  overflow-x: auto;
  white-space: pre;
}
.platform-logos { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 16px; }
.platform-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  height: 30px;
  padding: 0 12px;
  background: #fff;
  opacity: 1;
  transition: border-color .2s ease;
}
.platform-logo img { height: 14px; width: auto; max-width: 68px; object-fit: contain; display: block; }
.platform-logo:hover { border-color: var(--accent-1); }
.platform-logo.optional { opacity: 1; border-style: dashed; }
.engage-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.engage-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 16px;
  transition: transform .28s ease, box-shadow .28s ease;
}
.engage-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.engage-shot {
  border-radius: 10px;
  overflow: hidden;
  height: 130px;
  margin-bottom: 14px;
  background: var(--soft);
}
.engage-shot img, .engage-shot video { width: 100%; height: 100%; object-fit: cover; display: block; }
.engage-card:nth-child(1) .engage-shot img { object-position: center 34%; }
.engage-card:nth-child(3) .engage-shot img { object-position: center 30%; }
.engage-card:nth-child(4) .engage-shot img { object-position: 62% center; }
.engage-card h3 { margin: 0 0 10px; font-size: 16px; letter-spacing: -.015em; }
.engage-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; }
.engage-card li { color: #475467; font-size: 12.5px; line-height: 1.4; padding-left: 14px; position: relative; }
.engage-card li:before { content: ""; position: absolute; left: 0; top: 6px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-1); }
@media (max-width: 1080px) { .engage-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .engage-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .engage-grid { grid-template-columns: 1fr; } }

#platform-back-to-top {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 999;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-1), #72c8f8);
  color: #fff;
  box-shadow: 0 10px 25px rgba(45,143,232,.3);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  cursor: pointer;
}
#platform-back-to-top.visible { opacity: 1; transform: none; pointer-events: auto; }
#platform-back-to-top svg { width: 19px; }
.motion-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}
.motion-strip div {
  padding: 22px;
  border-right: 1px solid var(--line);
}
.motion-strip div:last-child { border-right: 0; }
.motion-strip b { display: block; font-family: var(--font-mono); font-size: 22px; letter-spacing: -.01em; color: var(--teal); }
.motion-strip span { color: var(--muted); font-size: 13px; }

@keyframes consoleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes itemIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes barGrow {
  from { transform: scaleX(.08); opacity: .55; }
  to { transform: scaleX(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}

@media (max-width: 1080px) {
  .product-hero-grid,
  .preview-grid,
  .split-feature,
  .impact-layer { grid-template-columns: 1fr; }
  .product-hero-grid { gap: 28px; }
  .preview-main { border-right: 0; border-bottom: 1px solid var(--line); }
  .retail-signal-grid,
  .system-flow,
  .motion-strip { grid-template-columns: repeat(2, 1fr); }
  .insight-card:nth-child(2),
  .system-step:nth-child(2) { border-right: 0; }
  .insight-card:nth-child(-n+2),
  .system-step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  section { padding: 56px 0; }
  .cards,
  .cards.cols-2,
  .proof-row,
  .hero-proof-grid,
  .launch-grid,
  .flow,
  .pricing-grid,
  .faq { grid-template-columns: 1fr; }
  .flat-cta,
  .cta-band { grid-template-columns: 1fr; padding: 30px; }
  .cta-actions { justify-content: flex-start; }
}
@media (max-width: 680px) {
  .wrap { width: min(100% - 28px, 1240px); }
  .product-shell { padding-top: 34px; }
  .console-grid,
  .metric-strip,
  .connection-row,
  .retail-signal-grid,
  .system-flow,
  .motion-strip { grid-template-columns: 1fr; }
  .order-stream { border-right: 0; border-bottom: 1.5px dashed var(--line); }
  .insight-card,
  .system-step,
  .motion-strip div { border-right: 0; border-bottom: 1px solid var(--line); }
  .insight-card:last-child,
  .system-step:last-child { border-bottom: 0; }
  .table-head { display: none; }
  .table-row { grid-template-columns: 1fr; gap: 4px; }
  h1 { font-size: clamp(40px, 14vw, 64px); }
}
