/* ============================================================
   InsightRS Base Styles — extracted from home.html
   ============================================================ */

/* ------------------------------------------------------------
   NAV
   ------------------------------------------------------------ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 48px; background: rgba(17,17,20,0.96);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
}
.nav-logo img { height: 20px; width: auto; mix-blend-mode: screen; display: block; }
.nav-links { display: flex; list-style: none; }
.nav-links a {
  font-size: 13px; color: rgba(255,255,255,0.9);
  text-decoration: none; padding: 0 14px; line-height: 48px;
  transition: color 0.15s;
}
.nav-links a:hover { color: white; }
.nav-links a.active { color: rgba(255,255,255,0.4); }
.nav-cta {
  font-size: 13px; font-weight: 500;
  background: var(--blue); color: white;
  border: none; border-radius: 20px;
  padding: 7px 16px; text-decoration: none;
}

/* --- Apple-style "The System" mega dropdown --- */
.nav-trigger {
  font-family: inherit; font-size: 13px; color: rgba(255,255,255,0.9);
  background: none; border: none; cursor: pointer;
  padding: 0 14px; line-height: 48px; display: inline-flex; align-items: center; gap: 4px;
  transition: color 0.15s;
}
.nav-trigger:hover, nav.mega-open .nav-trigger { color: #fff; }
.nav-caret {
  display: inline-block; flex-shrink: 0;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  position: relative; top: -2px;
  transform: rotate(45deg);
  transition: transform 0.28s ease, top 0.28s ease;
}
nav.mega-open .nav-caret { transform: rotate(225deg); top: 1px; }

.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 4px; }
.nav-burger span { display: block; width: 20px; height: 1.5px; background: rgba(255,255,255,0.7); transition: transform 0.25s ease, opacity 0.25s ease; }
nav.mega-open .nav-burger span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
nav.mega-open .nav-burger span:nth-child(2) { opacity: 0; }
nav.mega-open .nav-burger span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.nav-mega {
  position: fixed; top: 48px; left: 0; right: 0; z-index: 99;
  background: rgba(17,17,20,0.98);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  opacity: 0; transform: translateY(-10px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: none;
}
nav.mega-open .nav-mega { opacity: 1; transform: translateY(0); pointer-events: auto; }
.nav-mega__inner {
  max-width: 1200px; margin: 0 auto; padding: 48px 48px 56px;
  display: grid; grid-template-columns: 1.2fr 1.1fr 0.85fr 0.7fr; gap: 36px;
}
.nav-mega__divider {
  height: 1px; background: rgba(255,255,255,0.1); margin: 20px 0;
}
.nav-mega__head {
  font-size: 12px; font-weight: var(--fw-head); letter-spacing: 0.4px;
  color: rgba(255,255,255,0.4); margin-bottom: 18px; display: block;
}
.nav-mega__col a {
  display: block; color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 15px; font-weight: 500; padding: 7px 0; transition: color 0.15s;
}
.nav-mega__col a:hover { color: #fff; }
.nav-mega__col--primary a { font-size: 20px; font-weight: var(--fw-head); letter-spacing: -0.3px; padding: 7px 0; color: #fff; }
.nav-mega__col--primary a:hover { color: var(--blue); }

/* --- Pillar deep-dive column (Cloud Back Office) --- */
.nav-mega__inner.has-pillar { grid-template-columns: 1.1fr 1fr 0.9fr 0.75fr 0.6fr; gap: 30px; }
.nav-mega__col--pillar { border-left: 1px solid rgba(255,255,255,0.08); padding-left: 30px; margin-left: -8px; }
.nav-mega__col--pillar .nav-mega__head { color: rgba(255,255,255,0.4); }
.nav-mega__col--pillar a.is-overview {
  font-weight: var(--fw-head); color: #fff;
  padding-bottom: 12px; margin-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
/* the parent link in The System that owns the expanded column —
   neutral by default (matches siblings); only accents on hover/focus,
   so it doesn't read as "already selected" when the menu first opens. */
.nav-mega__col--primary a.pillar-parent { color: #fff; }
.nav-mega__col--primary a.pillar-parent:hover { color: var(--blue); }
.nav-mega__col--primary a.pillar-parent::after { content: " \203A"; color: rgba(255,255,255,0.35); }

.nav-scrim {
  position: fixed; inset: 48px 0 0; z-index: 98;
  background: rgba(0,0,0,0.4); opacity: 0;
  transition: opacity 0.28s ease; pointer-events: none;
}
nav.mega-open .nav-scrim { opacity: 1; pointer-events: auto; }

@media (max-width: 820px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-scrim { display: none; }
  .nav-mega { top: 48px; bottom: auto; height: calc(100vh - 48px); overflow-y: auto; transform: none; }
  nav.mega-open .nav-mega { transform: none; }
  .nav-mega__inner { grid-template-columns: 1fr; gap: 36px; padding: 36px 28px 64px; }
  .nav-mega__inner.has-pillar { grid-template-columns: 1fr; }
  .nav-mega__col--primary a { font-size: 22px; }
  /* pillar column folds into the single-column mobile menu */
  .nav-mega__col--pillar { border-left: none; padding-left: 0; margin-left: 0; }
  .nav-mega__col--pillar .nav-mega__head { margin-top: 8px; }
}

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
footer { background: #080a0e; padding: 56px 48px 28px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-top { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand { display: flex; flex-direction: column; gap: 20px; }
.footer-logo img { height: 24px; width: auto; mix-blend-mode: screen; }
.footer-social { display: flex; align-items: center; gap: 16px; }
.footer-social a { color: rgba(255,255,255,0.35); display: inline-flex; transition: color 0.15s; }
.footer-social a:hover { color: #fff; }
.footer-cols { display: contents; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-head { font-size: 12px; font-weight: var(--fw-head); letter-spacing: 0.4px; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
/* Mobile browsers (iOS Safari) override tel: link color with system blue —
   force it to match surrounding nav/footer text. Scoped to nav + footer so it
   can't clobber .btn-primary buttons that also use href="tel:..." (those set
   color:white directly and must keep it — a[href^="tel"] specificity would win
   over .btn-primary otherwise, turning button text black). */
.footer-col a[href^="tel"],
.nav-mega__col a[href^="tel"] { color: inherit; text-decoration: none; }
.footer-bottom { max-width: 1200px; margin: 44px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.2); }
.footer-tagline { font-size: 11px; color: rgba(255,255,255,0.12); letter-spacing: 1px; text-transform: uppercase; }

/* ------------------------------------------------------------
   BUTTONS
   ------------------------------------------------------------ */
.btn-primary {
  padding: 14px 28px; background: var(--blue); color: white;
  font-size: 15px; font-weight: 500; border-radius: 24px;
  text-decoration: none; border: none; cursor: pointer;
  display: inline-block; transition: background 0.2s;
}
.btn-primary:hover { background: var(--blue-dark); }
.btn-ghost {
  padding: 14px 28px; background: rgba(255,255,255,0.08); color: white;
  font-size: 15px; border-radius: 24px; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15); display: inline-block;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
/* Deep-dive link — the secondary "go deeper" affordance. Arrow slides on hover.
   Pairs with btn-primary (the BUY-shaped slot) at the foot of any pod/page.
   .btn-deep = light sections (blue) · .btn-deep-light = dark sections (white). */
.btn-deep, .btn-deep-light {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 15px; font-weight: var(--fw-head); text-decoration: none;
  padding: 14px 6px; transition: opacity 0.2s;
}
.btn-deep { color: var(--blue); }
.btn-deep-light { color: #fff; }
.btn-deep:hover, .btn-deep-light:hover { opacity: 0.75; }
.btn-deep::after, .btn-deep-light::after { content: "→"; transition: transform 0.2s; }
.btn-deep:hover::after, .btn-deep-light:hover::after { transform: translateX(4px); }

/* ------------------------------------------------------------
   SECTION PRIMITIVES — home.html style (lowercase eyebrow, no UPPERCASE)
   ------------------------------------------------------------ */
.divider { height: 1px; background: var(--rule); }
.divider-dark { height: 1px; background: rgba(255,255,255,0.06); }

.section { padding: 88px 48px; max-width: 1080px; margin: 0 auto; }
.section-full { padding: 88px 0; }
.section-inner { max-width: 1080px; margin: 0 auto; padding: 0 48px; }

.eyebrow {
  /* Site standard section eyebrow — matches the POS Workstation page + hardware pod
     (.syspod__eyebrow). Was 14px; bumped to the bigger scale 2026-06-17 as the base for all. */
  font-size: clamp(16px, 1.7vw, 20px); font-weight: var(--fw-head);
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 16px; display: block;
}
.eyebrow.light { color: #00b3ff; }   /* dark surface → bright accent (matches hero-eyebrow + feature-item.light) */

.section-h2 {
  font-family: var(--font-head);
  font-size: var(--fs-h2);   /* Apple section-headline range */
  font-weight: var(--fw-head); line-height: 1.08;   /* Apple: semibold, not bold */
  letter-spacing: -0.022em;              /* Apple tight tracking */
  color: var(--ink); margin-bottom: 16px;
}
.section-h2.light { color: white; }

.section-h3 {
  font-family: var(--font-head);
  font-size: var(--fs-h3);
  font-weight: var(--fw-head); line-height: 1.12;
  letter-spacing: -0.019em;
  color: var(--ink); margin-bottom: 14px;
}
.section-h3.light { color: white; }

.section-lead {
  font-family: var(--font-sans);     /* was Lora italic — sans, Apple's bigger breathing deck */
  font-size: var(--fs-deck);
  font-weight: 400; color: var(--mid);
  line-height: 1.45; letter-spacing: -0.01em;
  margin-bottom: 16px; display: block; max-width: 640px;
}
.section-lead.light { color: rgba(255,255,255,0.55); }

.section-body {
  font-size: 18px; color: var(--mid);
  line-height: 1.7; max-width: 600px;
}
.centered { text-align: center; }
.centered .section-body { margin: 0 auto; }

/* Blue glow — the signature radial overlay (no PNG asset; pure CSS) */
.blue-glow-bg {
  position: absolute; inset: -40px;
  background: radial-gradient(
    ellipse 90% 60% at 50% 40%,
    rgba(0,87,231,0.22) 0%,
    rgba(83,74,183,0.12) 45%,
    transparent 72%
  );
  pointer-events: none; z-index: 1;
}

/* ------------------------------------------------------------
   PRODUCT/PAGE SECTION CONTAINERS — extracted from product.html
   .product-section is a full-width wrapper. .product-inner is the
   constrained content column. Use these when a section needs a
   stronger frame than .section (e.g. background changes, full-bleed
   bg with constrained content).
   ------------------------------------------------------------ */
.product-section { background: var(--white); }
.product-section.gray { background: var(--surface); }
.product-section.dark { background: var(--ink); }
.product-inner {
  max-width: 1080px; margin: 0 auto;
  padding: 96px 48px;
}

/* SECTION HEADERS — centered, generous spacing */
.section-head { text-align: center; margin-bottom: 72px; }
.section-sub {
  font-size: 18px; color: var(--mid);
  line-height: 1.7; max-width: 560px; margin: 0 auto;
}
.section-sub.light { color: rgba(255,255,255,0.5); }

/* FLOATING PRODUCT PHOTOS */
.product-photo-float {
  display: block; width: 72%; max-width: 700px; margin: 0 auto 64px;
  border-radius:var(--card-radius);
}
.product-photo-float-sm {
  display: block; width: 52%; max-width: 500px; margin: 0 auto 48px;
}
.product-photo-dark {
  display: block; width: 100%; border-radius:var(--card-radius);
}
/* Transparent product cutout on a light surface: no blue glow — a natural
   drop-shadow that follows the device silhouette grounds it on white. */
.product-photo-dark.photo-grounded {
  border-radius:var(--card-radius);
  filter: drop-shadow(0 18px 22px rgba(0,0,0,0.22));
}
.product-photo-real {
  display: block; width: 100%; border-radius:var(--card-radius);
}

/* SPLIT LAYOUTS — image on one side, content on the other */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.split.flip { direction: rtl; }
.split.flip > * { direction: ltr; }
.split-wide {
  display: grid; grid-template-columns: 3fr 2fr;
  gap: 72px; align-items: start;
}

/* STAT CALLOUTS — vertical stack of large stats with description */
.stat-stack { display: flex; flex-direction: column; }
.stat-item {
  padding: 24px 0; border-bottom: 1px solid var(--rule);
}
.stat-item:last-child { border-bottom: none; }
.stat-item.light { border-bottom-color: rgba(255,255,255,0.08); }
.stat-num {
  font-family: var(--font-head); font-size: 52px; font-weight: var(--fw-head);
  color: var(--ink); letter-spacing: -1px; line-height: 1; margin-bottom: 6px;
}
.stat-num.light { color: white; }
.stat-num.blue { color: var(--blue); }
.stat-label { font-size: 14px; color: var(--mid); line-height: 1.6; }
.stat-label.light { color: rgba(255,255,255,0.45); }

/* FEATURE LIST — title + body rows, each marked with a vertical blue left-accent
   (the site's port-card / caps-why language). Bar spans the text height; gap between. */
.feature-list { list-style: none; }

/* No-image feature-list: use the full width as a balanced 2-col grid of
   title+body blocks instead of a jammed-left single column in an empty split. */
.split.no-media { grid-template-columns: 1fr; }
.split.no-media .feature-list { display: grid; grid-template-columns: 1fr 1fr; column-gap: 64px; row-gap: 32px; }
.split.no-media .feature-item { margin-bottom: 0; }
@media (max-width: 760px) {
  .split.no-media .feature-list { grid-template-columns: 1fr; }
}
.feature-item {
  display: flex; gap: 16px; align-items: flex-start;
  border-left: 3px solid var(--blue); padding: 0 0 0 20px; margin-bottom: 28px;
}
.feature-item.light { border-left-color: #00b3ff; }   /* dark surface → bright accent (matches pos-showcase) */
.feature-item:last-child { margin-bottom: 0; }
.fi-dot { display: none; }   /* the accent bar replaces the leading dot */

/* Disabled menu item (placeholder — no destination yet): visible but inert. */
.menu-disabled { opacity: 0.4; cursor: default; pointer-events: none; }
.fi-title { font-size: 17px; font-weight: var(--fw-head); color: var(--ink); margin-bottom: 5px; }
.fi-title.light { color: white; }
.fi-body { font-size: 15px; color: var(--mid); line-height: 1.6; }
.fi-body.light { color: rgba(255,255,255,0.45); }

/* PORT GRID — labeled port-spec callouts beneath a hardware photo */
.port-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 48px; }
.port-item {
  background: var(--surface); border-radius:var(--card-radius);
  padding: 18px 20px; border-left: 3px solid var(--blue);
}
.port-item.dark {
  background: rgba(255,255,255,0.05);
  border-left: 3px solid var(--blue);
}
.port-name {
  font-size: 14px; font-weight: var(--fw-head); color: var(--ink); margin-bottom: 5px;
  font-family: var(--font-sans); letter-spacing: 0.2px;
}
.port-name.light { color: white; }
.port-desc { font-size: 12px; color: var(--mid); line-height: 1.55; }
.port-desc.light { color: rgba(255,255,255,0.45); }

/* CALLOUT BOX — dark callout used inline within sections */
.callout-box {
  background: var(--ink); border-radius:var(--card-radius);
  padding: 28px 32px; margin-top: 40px;
}
.callout-box p {
  font-family: var(--font-head); font-size: 18px; font-weight: var(--fw-head);
  color: white; line-height: 1.5;
}
.callout-box p em { color: rgba(255,255,255,0.4); font-style: italic; }

/* COMPARISON — side-by-side cards: us (featured/dark) vs them (light) */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
.compare-card {
  background: var(--surface); border-radius:var(--card-radius);
  padding: 28px 32px; border: 1px solid var(--rule);
}
.compare-card.featured { background: var(--blue); border-color: var(--blue); }
.cc-label {
  font-size: 11px; font-weight: var(--fw-head); letter-spacing: 2px; text-transform: uppercase;
  color: var(--mid); margin-bottom: 14px;
}
.compare-card.featured .cc-label { color: rgba(255,255,255,0.3); }
.cc-title { font-size: 20px; font-weight: var(--fw-head); color: var(--ink); margin-bottom: 20px; }
.compare-card.featured .cc-title { color: white; }
.cc-list { list-style: none; }
.cc-row { display: flex; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--rule); font-size: 15px; }
.compare-card.featured .cc-row { border-bottom-color: rgba(255,255,255,0.07); }
.cc-row:last-child { border-bottom: none; }
.cc-check { color: #059669; font-weight: var(--fw-head); flex-shrink: 0; }
.cc-x { color: #dc2626; font-weight: var(--fw-head); flex-shrink: 0; }
.cc-text { color: var(--mid); line-height: 1.5; }
.compare-card.featured .cc-text { color: rgba(255,255,255,0.9); }
.compare-card.featured .cc-label { color: rgba(255,255,255,0.6); }
.compare-card.featured .cc-row { border-bottom-color: rgba(255,255,255,0.15); }
.compare-card.featured .cc-check { color: #4ade80; }
.cc-check--yes { color: #4ade80 !important; font-weight: var(--fw-head); }

/* SPEC TABLE — full hardware specifications */
.spec-section { border-top: 1px solid var(--rule); padding-top: 48px; margin-top: 72px; }
.spec-group { margin-bottom: 48px; }
.spec-group-title {
  font-size: 14px; font-weight: var(--fw-head); color: var(--ink);
  padding-bottom: 12px; border-bottom: 2px solid var(--blue);
  margin-bottom: 0; letter-spacing: 0.2px;
}
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid var(--rule); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td { padding: 14px 0; font-size: 15px; vertical-align: top; }
.spec-table td:first-child { font-weight: var(--fw-head); color: var(--ink); width: 36%; padding-right: 24px; }
.spec-table td:last-child { color: var(--mid); }

/* HIGHLIGHTS CARDS V2 — richer 5-up dark cards (icon + title + stat + sub + link) */
.highlights-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.highlights-title-big {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: var(--fw-head); line-height: 1.1;
  letter-spacing: -0.5px; color: white;
}
.highlights-cards-v2 {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 12px; max-width: 1200px; margin: 0 auto;
}
.highlights-cards-v2.four-up { grid-template-columns: repeat(4, 1fr); max-width: 1080px; }
.highlights-cards-v2.three-up { grid-template-columns: repeat(3, 1fr); max-width: 1000px; }
.hl-card-v2 {
  background: rgba(255,255,255,0.04); border-radius:var(--card-radius);
  padding: 28px 22px 24px;
  border: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  text-decoration: none;
  display: flex; flex-direction: column;
  min-height: 240px;
}
.hl-card-v2:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(0,87,231,0.35);
  transform: translateY(-2px);
}
.hlv2-icon { font-size: 28px; margin-bottom: 16px; }
.hlv2-title {
  font-family: var(--font-head); font-size: 20px; font-weight: var(--fw-head);
  color: white; letter-spacing: -0.3px; margin-bottom: 6px;
}
.hlv2-stat {
  font-size: 12.5px; font-weight: var(--fw-head); letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--blue); margin-bottom: 14px;
}
.hlv2-sub {
  font-size: 14.5px; color: rgba(255,255,255,0.6);
  line-height: 1.55; flex-grow: 1; margin-bottom: 18px;
}
.hlv2-link {
  font-size: 12px; font-weight: var(--fw-head);
  color: rgba(255,255,255,0.65); letter-spacing: 0.3px;
}
.hl-card-v2:hover .hlv2-link { color: var(--blue); }

/* ------------------------------------------------------------
   REVEAL animation
   ------------------------------------------------------------ */
/* Reveal-on-scroll is a progressive enhancement: content is visible by default,
   and only starts hidden once JS confirms the animation clock is live by adding
   html.js-anim. If requestAnimationFrame never fires (frozen/throttled renderers,
   some embedded preview panes), js-anim is never set and content just shows —
   it can never get stranded blank. */
.reveal { opacity: 1; transform: none; }
html.js-anim .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.65s ease, transform 0.65s ease; }
html.js-anim .reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* DIVIDER DARK — for dark-surface sections */
.divider-dark { height: 1px; background: rgba(255,255,255,0.06); }

/* STAT BAR — 3-up dark variant (tobacco page) */
.stat-bar-3up { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--ink); }
.stat-bar-3up .stat-cell { padding: 40px 32px; border-right: 1px solid rgba(255,255,255,0.06); }
.stat-bar-3up .stat-cell:last-child { border-right: none; }
.stat-bar-3up .stat-num { font-family: var(--font-head); font-size: 42px; font-weight: var(--fw-head); color: white; letter-spacing: -1px; line-height: 1; margin-bottom: 8px; }
.stat-bar-3up .stat-num span { color: var(--blue); }
.stat-bar-3up .stat-label { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.5; }

/* TIER CARDS — scan data certification tiers */
.tier-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.tier-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius:var(--card-radius); padding: 24px; }
.tier-card.active { border-color: var(--blue); background: rgba(0,87,231,0.08); }
.tier-card.coming { border-color: rgba(251,191,36,0.3); background: rgba(251,191,36,0.06); }
.tier-badge { font-size: 11px; font-weight: var(--fw-head); letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.tier-card.coming .tier-badge { color: #fbbf24; }
.tier-name { font-size: 16px; font-weight: var(--fw-head); color: white; margin-bottom: 8px; }
.tier-body { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* COMPETITOR BOX — red-tinted callout for competitive contrast */
.competitor-box { background: rgba(153,27,27,0.1); border: 1px solid rgba(153,27,27,0.3); border-radius:var(--card-radius); padding: 20px 24px; margin-top: 24px; font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.competitor-box p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.competitor-box strong { color: #f87171; }

/* MONEY BOX — scan data rebate callout */
.money-box { background: rgba(25,118,210,0.12); border: 1px solid rgba(25,118,210,0.28); border-radius:var(--card-radius); padding: 32px; margin-bottom: 24px; }
.money-num { font-family: var(--font-head); font-size: 56px; font-weight: var(--fw-head); color: #00b3ff; letter-spacing: -2px; margin-bottom: 12px; }
.money-label { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* DELIVERY CALLOUT — dark image-bg interior section (mid-page mini-hero) */
.delivery-callout { position: relative; min-height: 500px; display: flex; align-items: center; overflow: hidden; }
.dc-bg { position: absolute; inset: 0; background-size: cover; background-position: center center; filter: brightness(0.25); }
.dc-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 60%, transparent 100%); }
.dc-content { position: relative; z-index: 2; padding: 80px 64px; max-width: 600px; }
@media (max-width: 768px) { .dc-content { padding: 64px 24px; } }

/* PAYMENTS CLAIM — dark quote box inside payments section */
.payments-claim { background: rgba(0,87,231,0.08); border: 1px solid rgba(0,87,231,0.2); border-radius:var(--card-radius); padding: 32px; margin-bottom: 24px; }
.payments-claim p { font-family: var(--font-head); font-size: 22px; font-weight: var(--fw-head); color: white; line-height: 1.4; }

/* SECTION FULL DARK — dark full-bleed section wrapper */
.section-full-dark { background: var(--ink); padding: 96px 0; }
.section-full-dark .section-full-inner { max-width: 1080px; margin: 0 auto; padding: 0 64px; }
@media (max-width: 900px) { .section-full-dark .section-full-inner { padding: 0 40px; } }
@media (max-width: 768px) { .section-full-dark .section-full-inner { padding: 0 20px; } .section-full-dark { padding: 64px 0; } }

/* SCAN DATA DEEP — tobacco scan data section with full tier grid */
.scan-section { background: var(--ink); padding: 96px 0; }
.scan-inner { max-width: 1080px; margin: 0 auto; padding: 0 64px; }
.scan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
@media (max-width: 900px) { .scan-inner { padding: 0 40px; } .scan-grid { grid-template-columns: 1fr; gap: 48px; } .tier-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .scan-inner { padding: 0 20px; } .scan-section { padding: 64px 0; } }
.handoff-band { background: var(--surface); border-bottom: 1px solid var(--rule); padding: 32px 48px; }
.handoff-inner { max-width: 1080px; margin: 0 auto; display: flex; align-items: center; gap: 24px; }
.handoff-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.handoff-text p { font-size: 15px; color: var(--ink-soft); line-height: 1.6; }
.handoff-text strong { color: var(--ink); }

/* CAPABILITIES / SPEC REGISTER — Apple tech-specs treatment for the complete,
   categorized feature list. No boxes: a quiet category header + hairline, then
   feature name (semibold) · description · subordinate "why it matters". */
.caps { margin-top: 44px; }
.caps-group { margin-top: 52px; }
.caps-group:first-child { margin-top: 28px; }
.caps-cat {
  font-size: 13px; font-weight: var(--fw-head); letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue); margin: 0 0 28px;
  padding-bottom: 14px; border-bottom: 1px solid var(--rule);
}
.caps-items { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 56px; }
.caps-name {
  font-size: 19px; font-weight: var(--fw-head); color: var(--ink);
  letter-spacing: -0.014em; line-height: 1.25; margin: 0 0 9px;
}
.caps-desc { font-size: 15px; line-height: 1.6; color: var(--mid); margin: 0; }
.caps-why {
  font-size: 14px; line-height: 1.55; color: var(--ink-soft);
  margin: 14px 0 0; padding: 12px 14px; border-radius: var(--card-radius);
  background: rgba(25,118,210,0.06); border-left: 3px solid var(--blue);
}
.caps-why-label { font-weight: var(--fw-head); color: var(--blue); }
@media (max-width: 760px){ .caps-items { grid-template-columns: 1fr; gap: 32px; } }

/* REPACK SECTION — repackaging deep dive */
.repack-section { background: var(--white); }   /* white pod tile — uniform with the other catalog pods */
.repack-inner { max-width: 1080px; margin: 0 auto; padding: 88px 48px; }
.repack-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-top: 48px; }
.repack-diagram { background: white; border-radius:var(--card-radius); padding: 32px; border: 1px solid var(--rule); }
.repack-diagram h4 { font-size: 14px; font-weight: var(--fw-head); color: var(--ink); margin-bottom: 20px; }
.rd-item { display: flex; align-items: flex-start; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--rule); }
.rd-item:last-child { border-bottom: none; }
.rd-badge { padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: var(--fw-head); flex-shrink: 0; margin-top: 2px; }
.badge-m { background: #dbeafe; color: #1e40af; }
.badge-c { background: #fef3c7; color: #92400e; }
.badge-s { background: #d1fae5; color: #065f46; }
.rd-info strong { display: block; font-size: 14px; font-weight: var(--fw-head); color: var(--ink); margin-bottom: 3px; }
.rd-info span { font-size: 12px; color: var(--mid); }
.rd-arrow { text-align: center; padding: 6px 0; color: var(--rule); font-size: 18px; }
.repack-points { list-style: none; }
.repack-points li { padding: 16px 0; border-bottom: 1px solid var(--rule); display: flex; gap: 14px; font-size: 15px; }
.repack-points li:last-child { border-bottom: none; }
.rp-arrow { color: var(--blue); font-weight: var(--fw-head); flex-shrink: 0; margin-top: 1px; }
.rp-text strong { display: block; font-weight: var(--fw-head); color: var(--ink); margin-bottom: 3px; }
.rp-text span { color: var(--mid); font-size: 14px; line-height: 1.55; }

/* SCAN DATA SECTION */
.scan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 48px; }
.scan-stat { background: var(--ink); border-radius:var(--card-radius); padding: 40px; }
.ss-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 10px; }
.ss-num { font-family: var(--font-head); font-size: 64px; font-weight: var(--fw-head); color: white; line-height: 1; letter-spacing: -1px; }
.ss-sub { font-size: 15px; color: rgba(255,255,255,0.45); margin-top: 8px; line-height: 1.5; }
.ss-div { height: 1px; background: rgba(255,255,255,0.08); margin: 24px 0; }
.ss-note { font-size: 13px; color: rgba(255,255,255,0.3); line-height: 1.65; }
.scan-list { list-style: none; }
.scan-list li { padding: 16px 0; border-bottom: 1px solid var(--rule); display: flex; gap: 14px; font-size: 15px; }
.scan-list li:last-child { border-bottom: none; }

/* PROMO REPORT SHOWCASE (Sales: Promotion reproduction) */
.prc-wrap { max-width: 900px; margin: 48px auto 0; }
.prc-card { background: var(--white); border: 1px solid var(--rule); border-radius: var(--card-radius); box-shadow: var(--pod-shadow); overflow: hidden; }
.prc-head { display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: linear-gradient(90deg, var(--blue), #00b3ff); color: #fff; padding: 16px 22px; }
.prc-title { font-family: var(--font-sans); font-weight: var(--fw-head); font-size: 17px; letter-spacing: -0.01em; }
.prc-date { font-size: 13px; font-weight: 600; opacity: 0.92; font-variant-numeric: tabular-nums; }
.prc-scroll { overflow-x: auto; }
.prc-table { width: 100%; border-collapse: collapse; font-family: var(--font-sans); font-size: 14px; color: var(--ink-soft); min-width: 560px; }
.prc-table th { text-align: left; font-size: 11px; font-weight: var(--fw-head); letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--mid); padding: 12px 18px; border-bottom: 1px solid var(--rule); white-space: nowrap; }
.prc-table td { padding: 12px 18px; border-bottom: 1px solid #ececed; vertical-align: middle; }
.prc-l { text-align: left; } .prc-r { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.prc-code { color: var(--mid); font-size: 12.5px; letter-spacing: 0.02em; font-feature-settings: "tnum"; }
.prc-group td { background: var(--surface); text-transform: uppercase; letter-spacing: 0.08em; font-size: 11px;
  font-weight: var(--fw-head); color: var(--mid); padding: 10px 18px; }
.prc-sub td { background: #fdf3dc; font-weight: var(--fw-head); color: var(--ink); border-bottom: 1px solid #f3e6c4; }
.prc-total td { font-weight: var(--fw-head); color: var(--ink); font-size: 15px; padding: 16px 18px; border-top: 2px solid var(--rule); border-bottom: none; }
.prc-caption { max-width: 760px; margin: 18px auto 0; text-align: center; font-size: 14px; color: var(--mid); line-height: 1.6; }
@media (max-width: 700px) { .prc-caption { padding: 0 12px; } }

/* MERCHANDISE HIERARCHY (C5) — the drill-down cascade */
.mh-split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 72px; align-items: center; margin-top: 48px; }
.mh-cascade { background: var(--surface); border: 1px solid var(--rule); border-radius: var(--card-radius); padding: 28px 32px 32px; }
.mh-cap { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid); font-weight: var(--fw-head); margin-bottom: 20px; }
.mh-level { position: relative; padding: 9px 0; }
.mh-tier { display: block; font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--mid); }
.mh-val { display: block; font-size: 17px; font-weight: var(--fw-head); color: var(--ink); letter-spacing: -0.01em; line-height: 1.25; }
/* Elbow connector from each level up to its parent (skip the first/root). */
.mh-level:not(:first-of-type)::before {
  content: ''; position: absolute; left: -16px; top: -9px; width: 13px; height: 26px;
  border-left: 2px solid var(--rule); border-bottom: 2px solid var(--rule); border-bottom-left-radius: 8px;
}
/* The leaf — the actual bottle/SKU — reads as the resolved item. */
.mh-leaf .mh-val { color: var(--blue); }
.mh-leaf::after {
  content: 'the SKU'; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue);
  background: rgba(25,118,210,0.08); border: 1px solid rgba(25,118,210,0.25); border-radius: 20px; padding: 3px 10px;
}
.mh-points { align-self: center; }
.mh-caption { max-width: 820px; margin: 36px auto 0; text-align: center; font-size: 14px; color: var(--mid); line-height: 1.65; }
@media (max-width: 760px) {
  .mh-split { grid-template-columns: 1fr; gap: 36px; }
  .mh-level[style] { margin-left: 0 !important; }
  .mh-level:not(:first-of-type)::before { display: none; }
}

/* PAYMENTS BAND */
.payments-band { background: var(--surface); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 64px 48px; }
.payments-inner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.pay-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--light-green); color: var(--green); padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: var(--fw-head); margin-bottom: 20px; }
.pay-title { font-family: var(--font-head); font-size: 28px; font-weight: var(--fw-head); color: var(--ink); margin-bottom: 14px; letter-spacing: -0.5px; }
.pay-body { font-size: 16px; color: var(--mid); line-height: 1.7; }
.pay-body strong { color: var(--ink); }
.pay-list { list-style: none; }
.pay-list li { padding: 14px 0; border-bottom: 1px solid var(--rule); display: flex; gap: 12px; font-size: 14px; }
.pay-list li:last-child { border-bottom: none; }
.pl-check { color: var(--green); font-weight: var(--fw-head); flex-shrink: 0; margin-top: 1px; }
.pl-text strong { display: block; font-weight: var(--fw-head); color: var(--ink); margin-bottom: 3px; }
.pl-text span { color: var(--mid); line-height: 1.5; }

/* ------------------------------------------------------------ */
@media (max-width: 900px) {
  .section, .section-inner { padding: 72px 40px; }
  .product-inner { padding: 72px 40px; }
  .highlights-cards-v2 { grid-template-columns: repeat(3, 1fr); }
  .split, .split.flip, .split-wide { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
  .compare-grid { grid-template-columns: 1fr; }
  .port-grid { grid-template-columns: 1fr; }
  .feature-grid, .repack-grid, .scan-grid, .payments-inner { grid-template-columns: 1fr; gap: 32px; }
  .feature-card.full { grid-column: 1; }
  .repack-inner { padding: 72px 40px; }
  .handoff-band, .payments-band { padding: 40px 40px; }
}
@media (max-width: 768px) {
  nav { padding: 0 16px; }
  .nav-links { display: none; }
  .section, .section-inner { padding: 56px 20px; }
  .product-inner { padding: 56px 20px; }
  .repack-inner { padding: 56px 20px; }
  .handoff-band, .payments-band { padding: 32px 20px; }
  .highlights-cards-v2 { grid-template-columns: 1fr; gap: 10px; }
  .hl-card-v2 { min-height: 0; padding: 20px 16px; }
  .compare-grid { grid-template-columns: 1fr; }
  .compare-card { padding: 24px 20px; }
  .cc-row { font-size: 12px; }
}
@media (max-width: 480px) {
  .stat-num { font-size: 40px; }
  .spec-table td { font-size: 13px; }
  .split { display: block; }
  .split-image-wrap { margin-bottom: 32px; }
  .split-image-wrap img { max-width: 100%; height: auto; }
  .feature-list { max-width: 100%; }
  .feature-item { gap: 12px; }
  .fi-title { font-size: 14px; }
  .fi-body { font-size: 13px; }
  footer { padding: 44px 24px 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
