/* ============================================================
   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: 600; 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: 600; 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: 600; 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: 600; 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; }
.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: 600; 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 {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 16px; display: block;
}
.eyebrow.light { color: rgba(255,255,255,0.35); }

.section-h2 {
  font-family: 'Lora', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700; line-height: 1.08;
  letter-spacing: -0.8px;
  color: var(--ink); margin-bottom: 16px;
}
.section-h2.light { color: white; }

.section-h3 {
  font-family: 'Lora', serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--ink); margin-bottom: 14px;
}
.section-h3.light { color: white; }

.section-lead {
  font-family: 'Lora', serif; font-style: italic;
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 400; color: var(--mid);
  line-height: 1.4; letter-spacing: 0;
  margin-bottom: 16px; display: block; max-width: 600px;
}
.section-lead.light { color: rgba(255,255,255,0.55); }

.section-body {
  font-size: 17px; 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: 12px;
}
.product-photo-float-sm {
  display: block; width: 52%; max-width: 500px; margin: 0 auto 48px;
}
.product-photo-dark {
  display: block; width: 100%; border-radius: 10px;
}
/* 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: 0;
  filter: drop-shadow(0 18px 22px rgba(0,0,0,0.22));
}
.product-photo-real {
  display: block; width: 100%; border-radius: 12px;
}

/* 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: 'Lora', serif; font-size: 52px; font-weight: 700;
  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 — bulleted list with title + body */
.feature-list { list-style: none; border-top: 1px solid var(--rule); }
.feature-list.light { border-top-color: rgba(255,255,255,0.08); }

/* 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: 4px; border-top: none; }
.split.no-media .feature-item { border-bottom: none; padding: 20px 0; }
@media (max-width: 760px) {
  .split.no-media .feature-list { grid-template-columns: 1fr; }
}
.feature-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px 0; border-bottom: 1px solid var(--rule);
}
.feature-item.light { border-bottom-color: rgba(255,255,255,0.08); }
.feature-item:last-child { border-bottom: none; }
.fi-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--blue); flex-shrink: 0; margin-top: 9px; }
.fi-dot.light { background: rgba(255,255,255,0.3); }
.fi-title { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.fi-title.light { color: white; }
.fi-body { font-size: 14px; 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: 10px;
  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: 13px; font-weight: 700; color: var(--ink); margin-bottom: 5px;
  font-family: 'Courier New', monospace; letter-spacing: 0.5px;
}
.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: 14px;
  padding: 28px 32px; margin-top: 40px;
}
.callout-box p {
  font-family: 'Lora', serif; font-size: 18px; font-weight: 600;
  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: 14px;
  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: 700; 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: 18px; font-weight: 600; 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: 10px 0; border-bottom: 1px solid var(--rule); font-size: 13px; }
.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: 700; flex-shrink: 0; }
.cc-x { color: #dc2626; font-weight: 700; 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: 700; }

/* 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: 700; 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: 13px 0; font-size: 14px; vertical-align: top; }
.spec-table td:first-child { font-weight: 600; 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: 'Lora', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700; 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: 16px;
  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: 'Lora', serif; font-size: 20px; font-weight: 700;
  color: white; letter-spacing: -0.3px; margin-bottom: 6px;
}
.hlv2-stat {
  font-size: 11px; font-weight: 600; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--blue); margin-bottom: 14px;
}
.hlv2-sub {
  font-size: 13px; color: rgba(255,255,255,0.52);
  line-height: 1.55; flex-grow: 1; margin-bottom: 18px;
}
.hlv2-link {
  font-size: 12px; font-weight: 600;
  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: 'Lora', serif; font-size: 42px; font-weight: 700; 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: 12px; 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: 700; 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: 600; 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: 12px; 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(0,87,231,0.12); border: 1px solid rgba(0,87,231,0.2); border-radius: 16px; padding: 32px; margin-bottom: 24px; }
.money-num { font-family: 'Lora', serif; font-size: 56px; font-weight: 700; color: var(--blue); 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: 16px; padding: 32px; margin-bottom: 24px; }
.payments-claim p { font-family: 'Lora', serif; font-size: 22px; font-weight: 600; 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); }

/* FEATURE CARD GRID — 2-column feature deep-dive cards */
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.feature-card {
  background: var(--surface); border-radius: 16px;
  padding: 32px; border: 1px solid var(--rule);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.feature-card:hover { border-color: var(--blue); box-shadow: 0 4px 24px rgba(0,87,231,0.08); }
.feature-card.featured { background: var(--ink); border-color: var(--ink); }
.feature-card.full { grid-column: 1 / -1; }
.fc-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; display: block; }
.feature-card.featured .fc-eyebrow { color: rgba(255,255,255,0.35); }
.fc-title { font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.feature-card.featured .fc-title { color: white; }
.fc-body { font-size: 14px; color: var(--mid); line-height: 1.65; }
.feature-card.featured .fc-body { color: rgba(255,255,255,0.55); }
.fc-why { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--rule); }
.feature-card.featured .fc-why { border-top-color: rgba(255,255,255,0.1); }
.fc-why-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--green); margin-bottom: 6px; display: block; }
.feature-card.featured .fc-why-label { color: #4cd99a; }
.fc-why p { font-size: 13px; color: var(--ink-soft); line-height: 1.6; }
.feature-card.featured .fc-why p { color: rgba(255,255,255,0.4); }

/* REPACK SECTION — repackaging deep dive */
.repack-section { background: var(--surface); }
.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: 16px; padding: 32px; border: 1px solid var(--rule); }
.repack-diagram h4 { font-size: 14px; font-weight: 600; 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: 700; 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: 600; 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: 700; flex-shrink: 0; margin-top: 1px; }
.rp-text strong { display: block; font-weight: 600; 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: 16px; 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: 'Lora', serif; font-size: 64px; font-weight: 700; 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; }

/* 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: 600; margin-bottom: 20px; }
.pay-title { font-family: 'Lora', serif; font-size: 28px; font-weight: 700; 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: 700; flex-shrink: 0; margin-top: 1px; }
.pl-text strong { display: block; font-weight: 600; 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; }
}
