/* ============================================================
   nouz.co — sketch-faithful redesign
   ============================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-app);
  color: var(--fg-default);
  font-family: var(--font-sans);
  font-weight: 450;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
em { font-style: italic; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; padding: 0; }
::selection { background: var(--fg-ink); color: #fff; }
img, svg { display: block; max-width: 100%; }

:root {
  --site-max: 1200px;
  --site-pad: 28px;
  --section-y: 120px;
  --ink-deep: #0E0E10;
  --ink: #17171A;
  --warm: #F4F3EE;
}

.wrap { max-width: var(--site-max); margin: 0 auto; padding: 0 var(--site-pad); }

/* ───── Type primitives ──────────────────────────────── */
.h-section {
  font-family: var(--font-sans);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.026em;
  font-weight: 600;
  color: var(--fg-ink);
  margin: 0;
  text-wrap: balance;
}
.h-section em { font-weight: 500; font-style: italic; }
.h-section .muted { color: var(--fg-muted); }
.h-section.center { text-align: center; }

.lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--fg-default);
  max-width: 640px;
  margin: 24px 0 0;
}

/* ───── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px; padding: 0 22px;
  border-radius: 10px;
  font-weight: 500; font-size: 14px;
  letter-spacing: -0.005em;
  transition: all 160ms var(--ease-out-quint);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: #2a2a2a; }
.btn-on-ink { background: #fff; color: var(--ink); }
.btn-on-ink:hover { background: #f4f4f4; }
.btn-ghost-text {
  color: var(--ink); padding: 0 14px;
  background: transparent;
}
.btn-ghost-text:hover { background: rgba(23,23,26,0.05); }
.btn-lg { height: 52px; padding: 0 28px; font-size: 15px; border-radius: 12px; }
.btn .arr { width: 16px; height: 16px; margin-left: 8px; transition: transform 200ms var(--ease-out-quint); }
.btn:hover .arr { transform: translateX(3px); }

/* ───── Nav ──────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 250, 250, 0.82);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, background 200ms ease;
}
.nav.scrolled { border-bottom-color: rgba(229, 229, 229, 0.7); }
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
  gap: 24px;
}
.nav-brand {
  font-size: 22px; font-weight: 700;
  color: var(--ink); letter-spacing: -0.02em;
  justify-self: start;
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
  justify-self: center;
}
.nav-link {
  font-size: 14.5px;
  color: var(--fg-default);
  transition: color 150ms ease;
  position: relative;
}
.nav-link:hover { color: var(--ink); }
.nav-right {
  display: flex; align-items: center; gap: 16px;
  justify-self: end;
}
.nav-login {
  font-size: 14.5px;
  color: var(--fg-default);
}
.nav-login:hover { color: var(--ink); }
.nav-burger { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 8px; }
.nav-burger svg { width: 18px; height: 18px; color: var(--ink); }

@media (max-width: 820px) {
  .nav-links, .nav-login { display: none; }
  .nav-burger { display: flex; }
  .nav-inner { grid-template-columns: 1fr auto; height: 60px; }
  .nav-right { gap: 8px; }
}

/* Nav dropdown */
.nav-item { position: relative; display: inline-flex; }
.nav-dd-btn {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 14.5px;
  color: var(--fg-default);
  cursor: pointer;
  background: none; border: 0; padding: 0;
  font-family: inherit;
}
.nav-dd-btn:hover { color: var(--ink); }
.nav-caret { width: 9px; height: 6px; transition: transform 180ms ease; opacity: 0.6; }
.nav-dd.open .nav-caret { transform: rotate(180deg); }
/* Each nav-dd keeps its own positioning context for the button.
   The mega panels and stage use position: fixed (viewport-anchored)
   so they never affect the nav grid flow regardless of their width. */
.nav-dd { position: relative; }
.nav-dd-btn { position: relative; z-index: 1; }

.nav-dd-panel {
  position: fixed;
  top: 86px;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: min(1140px, calc(100vw - 64px));
  background: transparent;
  border: 0;
  border-radius: 18px;
  padding: 28px 32px 32px;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 80;
  display: grid;
  grid-template-columns: 2fr 2fr 1.2fr;
  gap: 28px;
}
.nav-dd-panel::before { display: none; }
.nav-dd.open .nav-dd-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Shared morphing stage backdrop — also viewport-anchored */
.nav-stage {
  position: fixed;
  top: 86px;
  left: 50%;
  width: var(--stage-w, 1140px);
  height: var(--stage-h, 320px);
  transform: translateX(-50%) translateX(var(--stage-x-delta, 0)) translateY(0);
  pointer-events: none;
  opacity: 0;
  z-index: 79;
  transition:
    opacity 220ms cubic-bezier(0.22, 1, 0.36, 1),
    width 380ms cubic-bezier(0.22, 1, 0.36, 1),
    height 380ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-stage.visible {
  opacity: 1;
  pointer-events: auto;
}
.nav-stage.first-open { transition: opacity 220ms ease; }
.nav-stage-bg {
  position: absolute;
  inset: 0;
  background: #fff;
  border: 1px solid var(--border-default);
  border-radius: 18px;
  box-shadow: 0 28px 70px -24px rgba(23,23,26,0.22), 0 2px 8px rgba(0,0,0,0.04);
}
.nav-stage-arrow {
  position: absolute;
  top: -7px;
  left: 0;
  width: 12px; height: 12px;
  background: #fff;
  border-top: 1px solid var(--border-default);
  border-left: 1px solid var(--border-default);
  transform: translateX(var(--arrow-x, 0)) translateX(-50%) translateY(0) rotate(45deg);
  transform-origin: center;
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.nav-stage.first-open .nav-stage-arrow { transition: none; }
.nav-dd.open .nav-caret { transform: rotate(180deg); }

/* Mega menu — column heading */
.nav-mega-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-mega-col-h {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 600;
  padding: 4px 12px 10px;
  border-bottom: 1px solid var(--border-default);
  margin-bottom: 4px;
}

.nav-dd-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  transition: background 150ms ease;
}
.nav-dd-item:hover { background: var(--bg-app); }
.ndi-ic {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--bg-app);
  display: grid; place-items: center;
  color: var(--ink);
  flex-shrink: 0;
}
.ndi-ic svg { width: 18px; height: 18px; }
.ndi-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.ndi-t { font-size: 14px; color: var(--ink); font-weight: 600; letter-spacing: -0.005em; }
.ndi-d { font-size: 12.5px; color: var(--fg-muted); line-height: 1.4; }

/* Active item indicator */
.nav-dd-item.nav-dd-item-on {
  background: var(--bg-app);
  position: relative;
}
.nav-dd-item.nav-dd-item-on .ndi-t { color: var(--ink); }
.nav-dd-item.nav-dd-item-on .ndi-ic { background: #fff; border: 1px solid var(--border-default); }
.nav-dd-item.nav-dd-item-on::before {
  content: '';
  position: absolute;
  left: 0; top: 12px; bottom: 12px;
  width: 2px;
  background: var(--color-accent-positive);
  border-radius: 2px;
}

/* Mega menu — featured card on the right */
.nav-mega-feat {
  background: linear-gradient(180deg, var(--bg-app), var(--bg-muted));
  border: 1px solid var(--border-default);
  border-radius: 14px;
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.nav-mega-feat::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(23,23,26,0.05) 1px, transparent 1.5px);
  background-size: 18px 18px;
  mask-image: radial-gradient(ellipse 80% 60% at 100% 0%, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 100% 0%, #000 30%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}
.nav-mega-feat > * { position: relative; }
.nav-mega-feat-eb {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
}
.nav-mega-feat-eb .d {
  width: 5px; height: 5px; border-radius: 99px;
  background: var(--color-accent-positive);
  box-shadow: 0 0 0 3px rgba(0,128,96,0.18);
}
.nav-mega-feat-t {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--ink);
  line-height: 1.25;
}
.nav-mega-feat-t em { font-style: italic; font-weight: 500; }
.nav-mega-feat-d {
  margin: 0;
  font-size: 12.5px;
  color: var(--fg-default);
  line-height: 1.45;
}
.nav-mega-feat-cta {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.nav-mega-feat-cta svg { width: 12px; height: 12px; transition: transform 200ms; }
.nav-mega-feat-cta:hover svg { transform: translateX(3px); }
.nav-mega-feat-vis {
  margin-top: 4px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border-default);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
}

/* Panel sizing variants */
.nav-dd-panel.nav-dd-panel-product   { grid-template-columns: 1.4fr 1.4fr 1fr; }
.nav-dd-panel.nav-dd-panel-solutions { grid-template-columns: 1.4fr 1.4fr 1fr; }
.nav-dd-panel.nav-dd-panel-resources { grid-template-columns: 1.4fr 1.4fr 1fr; }

@media (max-width: 1000px) {
  .nav-dd-panel,
  .nav-dd-panel.nav-dd-panel-product,
  .nav-dd-panel.nav-dd-panel-solutions {
    grid-template-columns: 1fr 1fr;
  }
  .nav-mega-feat { display: none; }
}

/* Logo bar */
.logobar {
  padding: 8px 0 80px;
  overflow: hidden;
}
.logobar-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.logobar-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.lb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding: 6px 14px 6px 11px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border-default);
  box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset, 0 6px 18px -10px rgba(23,23,26,0.06);
}
.lb-eyebrow .d {
  width: 6px; height: 6px;
  border-radius: 99px;
  background: var(--color-accent-positive);
  box-shadow: 0 0 0 3px rgba(0,128,96,0.14);
}
.lb-title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.022em;
  font-weight: 500;
  color: var(--ink);
  text-wrap: balance;
  max-width: 720px;
}
.lb-title em {
  font-style: italic;
  font-weight: 500;
  font-family: var(--font-mono);
  font-size: 0.92em;
  letter-spacing: 0;
  color: var(--color-accent-positive);
  padding: 0 4px;
  font-variant-numeric: tabular-nums;
}

.logobar-bound {
  position: relative;
  overflow: hidden;
  padding: 22px 0;
  background: transparent;
}
.logobar-bound::before,
.logobar-bound::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.logobar-bound::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-app), transparent);
}
.logobar-bound::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-app), transparent);
}
.logobar-track {
  display: flex;
  width: max-content;
  gap: 0;
}
.lt-row {
  display: flex;
  align-items: center;
  gap: 56px;
  padding-right: 56px;
  animation: ltMarquee 50s linear infinite;
  flex-shrink: 0;
}
@keyframes ltMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}
.lt-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--fg-default);
  opacity: 0.85;
  white-space: nowrap;
  transition: opacity 200ms ease, color 200ms ease, transform 220ms var(--ease-out-quint);
}
.lt-logo:hover {
  opacity: 1;
  color: var(--ink);
  transform: translateY(-1px);
}
.lt-logo svg {
  width: 26px; height: 26px;
  color: var(--ink);
  opacity: 0.85;
}
@media (max-width: 640px) {
  .logobar { padding: 4px 0 56px; }
  .lt-row { gap: 36px; padding-right: 36px; }
  .lt-logo { font-size: 15px; }
  .lt-logo svg { width: 20px; height: 20px; }
  .logobar-bound::before, .logobar-bound::after { width: 40px; }
}

/* ───── HERO ─────────────────────────────────────────── */
.hero {
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: -1;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(23,23,26,0.10) 1px, transparent 1.5px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 80%);
  opacity: 0.7;
}
.hero-spot { display: none; }
.hero-warm { display: none; }

.hero-inner {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  position: relative;
}

/* Live ticker eyebrow */
.hero-ticker {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 6px 16px 6px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border-default);
  box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset, 0 4px 16px -8px rgba(23,23,26,0.08);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.01em;
  max-width: min(640px, calc(100% - 32px));
}
.ht-pulse {
  position: relative;
  width: 14px; height: 14px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.ht-pulse .d {
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--color-accent-positive);
  position: relative; z-index: 2;
}
.ht-pulse .r {
  position: absolute; inset: 0;
  border-radius: 999px;
  background: var(--color-accent-positive);
  opacity: 0.35;
  animation: htPulse 2.2s var(--ease-out-quint) infinite;
}
@keyframes htPulse { 0% { transform: scale(0.6); opacity: 0.5; } 100% { transform: scale(2.4); opacity: 0; } }

.ht-label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10.5px;
  color: var(--ink);
  font-weight: 600;
  flex-shrink: 0;
}
.ht-sep { width: 1px; height: 16px; background: var(--border-default); flex-shrink: 0; }

.ht-stage {
  position: relative;
  height: 18px;
  flex: 1;
  overflow: hidden;
  min-width: 0;
}
.ht-line {
  position: absolute; inset: 0;
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 480ms var(--ease-out-quint), transform 480ms var(--ease-out-quint);
}
.ht-line.is-on { opacity: 1; transform: translateY(0); }
.ht-line.is-off { opacity: 0; transform: translateY(-8px); transition-duration: 320ms; }
.ht-who { color: var(--ink); font-weight: 500; }
.ht-where { color: var(--fg-muted); }
.ht-act { color: var(--fg-default); }
.ht-act em {
  font-style: normal;
  color: var(--color-accent-positive);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.ht-dot { color: var(--fg-placeholder); }

@media (max-width: 640px) {
  .hero-ticker { font-size: 10.5px; gap: 8px; padding: 5px 12px 5px 8px; }
  .ht-stage { height: 16px; }
  .ht-where, .ht-dot { display: none; }
}

/* Headline */
.hero-title {
  margin: 32px 0 0;
  font-size: clamp(56px, 8.6vw, 132px);
  line-height: 0.94;
  letter-spacing: -0.042em;
  font-weight: 600;
  color: var(--ink);
  text-wrap: balance;
  position: relative;
}
.hero-title em { font-weight: 500; font-style: italic; }
.ht-line-1, .ht-line-2 {
  display: block;
  position: relative;
}
.ht-line-2 { margin-top: 0.04em; }
.ht-make {
  position: relative;
  display: inline-block;
}
.ht-make::after {
  /* Green underline under "make" removed per design feedback —
     hero title is clean type, no decorations. */
  content: none;
}
@keyframes htUnder {
  to { opacity: 0.85; transform: scaleX(1); }
}

.ht-today {
  display: inline-block;
  position: relative;
}
.qmk {
  display: inline-block;
  color: var(--color-accent-positive);
  margin-left: -0.04em;
  animation: qmkBounce 2.6s var(--ease-out-quint) infinite;
  position: relative;
}
.qmk::after {
  content: '';
  position: absolute;
  inset: -0.1em -0.15em;
  background: radial-gradient(circle, rgba(0,128,96,0.18), transparent 65%);
  z-index: -1;
  border-radius: 50%;
}
@keyframes qmkBounce {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-8px) rotate(-3deg); }
}

/* Handwritten arrow annotation */
.ht-anno {
  position: absolute;
  width: clamp(110px, 12vw, 180px);
  height: auto;
  top: -0.25em;
  right: -0.6em;
  color: var(--color-accent-positive);
  opacity: 0;
  animation: annoIn 800ms var(--ease-out-quint) 1.5s forwards;
  pointer-events: none;
  transform: translateX(40%);
}
.ht-anno-path {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: annoDraw 1.4s var(--ease-out-quint) 1.6s forwards;
}
.ht-anno-arrow {
  opacity: 0;
  animation: annoTip 220ms ease 2.9s forwards;
}
@keyframes annoIn { to { opacity: 1; } }
@keyframes annoDraw { to { stroke-dashoffset: 0; } }
@keyframes annoTip { to { opacity: 1; } }

.ht-anno-text {
  position: absolute;
  top: -0.1em;
  right: -3.2em;
  font-family: var(--font-mono);
  font-size: clamp(11px, 1.05vw, 14px);
  letter-spacing: 0.02em;
  color: var(--color-accent-positive);
  font-weight: 500;
  font-style: normal;
  line-height: 1.3;
  text-align: left;
  white-space: nowrap;
  opacity: 0;
  animation: annoText 400ms ease 2.6s forwards;
  transform: rotate(-4deg);
}
.ht-anno-text em {
  display: block;
  font-style: italic;
  color: var(--color-accent-positive);
  opacity: 0.75;
  font-size: 0.85em;
}
@keyframes annoText { from { opacity: 0; transform: rotate(-4deg) translateY(4px); } to { opacity: 1; transform: rotate(-4deg) translateY(0); } }

@media (max-width: 900px) {
  .ht-anno, .ht-anno-text { display: none; }
}

.hero-sub {
  margin: 32px auto 0;
  font-size: 19px;
  line-height: 1.55;
  color: var(--fg-default);
  max-width: 560px;
}
.hero-sub em { color: var(--ink); font-style: italic; font-weight: 500; }
.hero-ctas {
  margin-top: 36px;
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap; justify-content: center;
}
.btn-hero {
  position: relative;
  box-shadow: 0 4px 16px -6px rgba(23,23,26,0.4), inset 0 1px 0 rgba(255,255,255,0.12);
}
.btn-hero::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(23,23,26,0.4);
  animation: btnPing 3s var(--ease-out-quint) infinite;
  pointer-events: none;
}
@keyframes btnPing {
  0% { box-shadow: 0 0 0 0 rgba(23,23,26,0.4); }
  80%, 100% { box-shadow: 0 0 0 14px rgba(23,23,26,0); }
}

/* Today-so-far signal strip */
.hero-signals {
  margin-top: 32px;
  display: inline-flex; align-items: center;
  gap: 24px;
  padding: 12px 22px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-default);
  border-radius: 14px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 6px 24px -10px rgba(23,23,26,0.08);
}
.hs-cell { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.hs-lab {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.hs-val {
  font-family: var(--font-mono);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  display: inline-flex; align-items: baseline; gap: 4px;
  white-space: nowrap;
}
.hs-val .cur { font-size: 0.78em; color: var(--fg-muted); font-weight: 500; }
.hs-val .dec { font-size: 0.78em; color: var(--fg-muted); font-weight: 500; }
.hs-chip {
  margin-left: 6px;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 10px;
  background: rgba(0,128,96,0.12);
  color: var(--color-accent-positive);
  font-weight: 600;
  letter-spacing: 0.02em;
  align-self: center;
}
.hs-div { width: 1px; height: 32px; background: var(--border-default); }
.hs-people { display: inline-flex; align-items: center; gap: 8px; }
.hs-av-stack { display: inline-flex; margin-right: 0; }
.hs-av-stack i {
  display: inline-block;
  width: 18px; height: 18px;
  border-radius: 999px;
  background: var(--c);
  border: 2px solid #fff;
  margin-left: -6px;
}
.hs-av-stack i:first-child { margin-left: 0; }
.hs-people-n { font-variant-numeric: tabular-nums; }

@media (max-width: 720px) {
  .hero-signals { flex-direction: column; align-items: flex-start; gap: 12px; padding: 14px 18px; }
  .hs-div { display: none; }
}

/* Reveal */
.reveal-up { opacity: 0; transform: translateY(14px); animation: revealUp 800ms var(--ease-out-quint) forwards; }
.reveal-up.d1 { animation-delay: 120ms; }
.reveal-up.d2 { animation-delay: 280ms; }
.reveal-up.d3 { animation-delay: 440ms; }
.reveal-up.d4 { animation-delay: 600ms; }
@keyframes revealUp { to { opacity: 1; transform: translateY(0); } }

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

/* Hero video player */
.hero-video-stage {
  width: 100%;
  margin: 80px auto 0;
  perspective: 1800px;
  perspective-origin: 50% 0%;
  --hv-progress: 0;
}
.hero-video {
  margin: 0 auto;
  width: 100%;
  max-width: 1120px;
  background: #0E0E10;
  border: 1px solid rgba(23,23,26,0.08);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transform-origin: 50% 0%;
  transform:
    rotateX(calc((1 - var(--hv-progress)) * 22deg))
    scale(calc(0.86 + var(--hv-progress) * 0.14));
  transition: transform 80ms linear, box-shadow 400ms ease;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 30px 60px -28px rgba(23,23,26,0.30),
    0 80px 120px -40px rgba(23,23,26,0.20);
  will-change: transform;
}
.hero-video::before {
  /* subtle bezel highlight */
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
  z-index: 5;
}
.hv-chrome {
  display: flex; align-items: center;
  height: 40px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(180deg, #1a1a1d 0%, #131316 100%);
  gap: 16px;
  position: relative;
  z-index: 4;
}
.hv-chrome .dots { display: flex; gap: 6px; }
.hv-chrome .dots i { width: 9px; height: 9px; border-radius: 999px; background: rgba(255,255,255,0.18); display: block; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.2); }
.hv-chrome .dots i:nth-child(1) { background: #F4B5A8; }
.hv-chrome .dots i:nth-child(2) { background: #F4DCA8; }
.hv-chrome .dots i:nth-child(3) { background: #C5E8C0; }
.hv-chrome .url {
  flex: 1; text-align: center;
  font-family: var(--font-mono);
  font-size: 11.5px; color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.hv-chrome .url::before {
  content: "";
  width: 9px; height: 9px;
  border-radius: 2px;
  border: 1.4px solid rgba(255,255,255,0.35);
  border-bottom: 0; border-left: 0;
  transform: rotate(45deg) translateY(-1px);
  display: inline-block;
  opacity: 0.7;
}
.hv-chrome .url strong { color: #fff; font-weight: 500; }
.hv-chrome .live {
  font-family: var(--font-mono); font-size: 10.5px;
  color: rgba(255,255,255,0.55);
  display: inline-flex; gap: 6px; align-items: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hv-chrome .live .d { width: 6px; height: 6px; border-radius: 99px; background: #FF6E5C; animation: pulse2 2s ease-in-out infinite; box-shadow: 0 0 8px rgba(255,110,92,0.7); }
@keyframes pulse2 { 50% { opacity: 0.4; } }

.hv-body {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0E0E10;
  overflow: hidden;
}

/* Scrubber-style timeline at the bottom of the player */
.hv-scrub {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 6;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px 16px;
  background: linear-gradient(180deg, rgba(14,14,16,0) 0%, rgba(14,14,16,0.65) 60%, rgba(14,14,16,0.85) 100%);
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
  pointer-events: none;
}
.hv-scrub .t { font-variant-numeric: tabular-nums; min-width: 32px; }
.hv-scrub .bar {
  position: relative;
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.14);
  border-radius: 99px;
  overflow: visible;
}
.hv-scrub .bar i {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 32%;
  background: #fff;
  border-radius: 99px;
}
.hv-scrub .bar i::after {
  content: "";
  position: absolute; right: -5px; top: 50%;
  width: 10px; height: 10px;
  background: #fff;
  border-radius: 999px;
  transform: translateY(-50%);
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.hv-scrub .ic {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 9.5px;
}
.hv-scrub .ic svg { width: 11px; height: 11px; opacity: 0.7; }

/* Product preview inside the frame */
.hv-preview {
  position: absolute; inset: 0;
  padding: 6% 7%;
  color: #fff;
  background:
    radial-gradient(ellipse 60% 50% at 20% 0%, rgba(76,205,163,0.10), transparent 60%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(244,179,135,0.06), transparent 60%),
    #0E0E10;
}
.hv-pv-greet {
  font-style: italic;
  font-size: clamp(16px, 1.8vw, 22px);
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.hv-pv-greet em { font-style: normal; }
.hv-pv-kicker {
  margin-top: clamp(8px, 1vw, 16px);
  font-style: italic;
  font-size: clamp(11px, 1.1vw, 14px);
  color: rgba(255,255,255,0.55);
}
.hv-pv-num {
  margin-top: 4px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: #fff;
  font-variant-numeric: tabular-nums;
  display: inline-flex; align-items: baseline; gap: 4px;
}
.hv-pv-num .cur { font-size: 0.32em; color: rgba(255,255,255,0.5); font-weight: 500; }
.hv-pv-num .dec { font-size: 0.48em; color: rgba(255,255,255,0.5); font-weight: 500; }
.hv-pv-ctx {
  margin-top: clamp(6px, 0.9vw, 14px);
  display: flex; gap: 10px; align-items: center;
  font-size: clamp(10px, 1vw, 13px);
  color: rgba(255,255,255,0.5);
  font-family: var(--font-mono);
}
.hv-pv-chip {
  display: inline-flex; align-items: center;
  padding: 3px 9px; border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.92em; font-weight: 600;
  background: rgba(76,205,163,0.16);
  color: #4CCDA3;
}
.hv-pv-week { margin-top: clamp(16px, 2vw, 28px); }
.hv-pv-wh {
  display: flex; justify-content: space-between;
  font-style: italic;
  font-size: clamp(10px, 0.95vw, 12px);
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.hv-pv-wh .r { font-style: normal; font-family: var(--font-mono); letter-spacing: 0.06em; font-size: 0.85em; }
.hv-pv-days {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px;
}
.hv-pv-day {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: clamp(8px, 1vw, 12px) clamp(6px, 0.8vw, 10px);
}
.hv-pv-day.today { background: #fff; border-color: #fff; }
.hv-pv-day.today .l { color: rgba(23,23,26,0.5); }
.hv-pv-day.today .v { color: var(--ink); }
.hv-pv-day .l {
  font-family: var(--font-mono);
  font-size: clamp(8px, 0.7vw, 9.5px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.hv-pv-day .v {
  font-family: var(--font-mono);
  font-size: clamp(10px, 0.85vw, 12px);
  font-weight: 600; color: #fff;
  margin-top: 6px; white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.hv-pv-day.future { opacity: 0.4; }

/* Frosted play overlay */
.hv-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 22px;
  z-index: 2;
  padding-bottom: 30px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(14,14,16,0.30) 0%, rgba(14,14,16,0.55) 55%, rgba(14,14,16,0.80) 100%);
  backdrop-filter: blur(5px) saturate(115%);
  -webkit-backdrop-filter: blur(5px) saturate(115%);
  transition: backdrop-filter 240ms ease, opacity 240ms ease;
}
.hero-video:hover .hv-overlay { backdrop-filter: blur(2px) saturate(115%); -webkit-backdrop-filter: blur(2px) saturate(115%); }

.hv-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000, transparent 88%);
  pointer-events: none;
  z-index: 3;
}
.hv-corner {
  position: absolute; width: 24px; height: 24px;
  border: 1px solid rgba(255,255,255,0.25);
  z-index: 3;
}
.hv-corner.tl { top: 20px; left: 20px; border-right: 0; border-bottom: 0; }
.hv-corner.tr { top: 20px; right: 20px; border-left: 0; border-bottom: 0; }
.hv-corner.bl { bottom: 20px; left: 20px; border-right: 0; border-top: 0; }
.hv-corner.br { bottom: 20px; right: 20px; border-left: 0; border-top: 0; }

.hv-play {
  position: relative;
  width: 76px; height: 76px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  border: 0;
  display: grid; place-items: center;
  cursor: pointer;
  transition: transform 220ms var(--ease-out-quint), box-shadow 220ms ease;
  box-shadow:
    0 1px 0 rgba(0,0,0,0.1),
    0 12px 40px -8px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 -8px 14px -8px rgba(0,0,0,0.08);
}
.hv-play:hover { transform: scale(1.06); box-shadow: 0 1px 0 rgba(0,0,0,0.1), 0 20px 50px -10px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.9); }
.hv-play svg { width: 26px; height: 26px; transform: translateX(2px); }
.hv-play .ring {
  position: absolute; inset: -10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.3);
  animation: hvRing 2.6s var(--ease-out-quint) infinite;
}
.hv-play .ring.r2 { animation-delay: 1.3s; }
@keyframes hvRing {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

.hv-cta-text { text-align: center; max-width: 420px; padding: 0 24px; }
.hv-cta-t {
  font-size: clamp(14px, 1.4vw, 17px);
  color: #fff;
  letter-spacing: -0.005em;
  line-height: 1.4;
}
.hv-cta-t em { color: #4CCDA3; font-style: italic; font-weight: 500; }
.hv-cta-d {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.hv-meta {
  display: flex; gap: 10px; align-items: center; justify-content: center;
  padding: 14px 16px;
  border-top: 1px solid var(--border-default);
  font-size: 12.5px;
  color: var(--fg-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  flex-wrap: wrap;
}
.hv-meta strong { color: var(--ink); font-weight: 600; }
.hv-meta .sep { color: var(--fg-placeholder); }
.hv-av-stack { display: inline-flex; margin-right: 6px; }
.hv-av-stack i {
  display: inline-block;
  width: 16px; height: 16px;
  border-radius: 999px;
  background: var(--c);
  border: 2px solid var(--bg-app);
  margin-left: -5px;
}
.hv-av-stack i:first-child { margin-left: 0; }

@media (max-width: 640px) {
  .hv-play { width: 64px; height: 64px; }
  .hv-play svg { width: 22px; height: 22px; }
  .hv-cta-t { font-size: 12.5px; }
  .hv-meta { font-size: 10.5px; flex-wrap: wrap; }
}

/* (logobar-head elevated styles removed; new lb-eyebrow / lb-title used instead) */

/* Scroll cue */
.hero-scroll {
  margin-top: 72px;
  display: inline-flex; flex-direction: column; align-items: center; gap: 12px;
  color: var(--fg-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 200ms ease;
}
.hero-scroll:hover { color: var(--ink); }
.hs-mouse {
  width: 22px; height: 34px;
  border: 1.5px solid currentColor;
  border-radius: 12px;
  position: relative;
  opacity: 0.6;
}
.hs-wheel {
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 2px; height: 6px;
  border-radius: 4px;
  background: currentColor;
  animation: hsScroll 2.2s var(--ease-out-quint) infinite;
}
@keyframes hsScroll {
  0% { transform: translate(-50%, 0); opacity: 1; }
  60% { transform: translate(-50%, 10px); opacity: 0; }
  100% { transform: translate(-50%, 10px); opacity: 0; }
}

/* ───── PROBLEM ─────────────────────────────────────── */
.problem {
  padding: calc(var(--section-y) - 24px) 0 var(--section-y);
  background: var(--bg-app);
  position: relative;
}
.problem::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-default), transparent);
}
.problem-head {
  max-width: 880px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.problem-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding: 6px 14px 6px 11px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border-default);
}
.problem-eyebrow .d {
  width: 6px; height: 6px;
  border-radius: 99px;
  background: #D97757;
  box-shadow: 0 0 0 3px rgba(217,119,87,0.16);
}

.problem-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(280px, auto);
  gap: 16px;
}
.problem-grid .bcard:nth-child(1) { grid-column: 1; grid-row: 1; }
.problem-grid .bcard:nth-child(2) { grid-column: 2; grid-row: 1; }
.problem-grid .bcard:nth-child(3) { grid-column: 3; grid-row: 1; }
.problem-grid .bcard:nth-child(4) { grid-column: 1 / -1; grid-row: 2; }

@media (max-width: 1024px) {
  .problem-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
  .problem-grid .bcard:nth-child(1) { grid-column: 1; grid-row: auto; }
  .problem-grid .bcard:nth-child(2) { grid-column: 2; grid-row: auto; }
  .problem-grid .bcard:nth-child(3) { grid-column: 1 / -1; grid-row: auto; }
  .problem-grid .bcard:nth-child(4) { grid-column: 1 / -1; grid-row: auto; }
}
@media (max-width: 640px) {
  .problem-grid { grid-template-columns: 1fr; }
  .problem-grid .bcard:nth-child(n) { grid-column: 1; grid-row: auto; }
}

.bcard {
  background: var(--bg-muted);
  color: var(--ink);
  border-radius: 20px;
  padding: 22px 22px 0;
  display: flex; flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  /* Trimmed from 380→340 so the three "No more …" cards don't
     stretch when the EBIT breakdown sits at 4 rows instead of 7. */
  min-height: 340px;
  transition: transform 260ms var(--ease-out-quint), box-shadow 260ms ease;
  border: 1px solid var(--border-default);
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
}
.bcard:hover {
  transform: translateY(-3px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 24px 50px -28px rgba(23,23,26,0.18);
}
.bcard-lg { min-height: 460px; }

.bc-text {
  display: flex; flex-direction: column; gap: 10px;
  padding-bottom: 4px;
  max-width: 460px;
}
.bc-title {
  font-size: 22px;
  line-height: 1.28;
  letter-spacing: -0.018em;
  font-weight: 450;
  margin: 0;
  color: var(--fg-muted);
  text-wrap: balance;
}
.bcard-lg .bc-title { font-size: 26px; line-height: 1.22; }
.bc-title strong {
  font-weight: 600;
  color: var(--ink);
}
.bc-sub {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-muted);
}

.bc-media {
  margin-top: auto;
  position: relative;
  flex: 1;
  min-height: 200px;
  display: flex;
}
.bc-placeholder {
  position: relative;
  flex: 1;
  border-radius: 14px 14px 0 0;
  background: #fff;
  border: 1px solid var(--border-default);
  border-bottom: 0;
  margin: 0 -8px -1px;
  padding: 18px 18px 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 -1px 0 rgba(255,255,255,0.6) inset, 0 12px 24px -16px rgba(23,23,26,0.1);
}
.bc-ph-tag {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--bg-app);
  border: 1px dashed var(--border-default);
  margin-bottom: 14px;
}
.bcard-lg .bc-placeholder { padding: 22px 24px 28px; }

/* Inner mocks (until real GIFs are placed) */
.bc-mock { flex: 1; display: flex; flex-direction: column; }

.bc-mock-num .bcm-greet {
  font-style: italic;
  font-size: 15px;
  color: var(--fg-muted);
  font-weight: 500;
}
.bc-mock-num .bcm-greet em { font-style: normal; color: var(--ink); }
.bc-mock-num .bcm-kicker {
  margin-top: 6px;
  font-style: italic;
  font-size: 12px;
  color: var(--fg-placeholder);
}
.bc-mock-num .bcm-num {
  margin-top: 4px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 0.94;
  letter-spacing: -0.045em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  display: inline-flex; align-items: baseline; gap: 4px;
}
.bc-mock-num .bcm-num .cur { font-size: 0.42em; color: var(--fg-muted); font-weight: 500; }
.bc-mock-num .bcm-num .dec { font-size: 0.5em; color: var(--fg-muted); font-weight: 500; }
.bc-mock-num .bcm-ctx {
  margin-top: 14px;
  display: flex; gap: 10px; align-items: center;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--fg-muted);
}
.bc-mock-num .bcm-chip {
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(0,128,96,0.10);
  color: var(--color-accent-positive);
  font-weight: 600;
}
.bc-mock-num .bcm-time { color: var(--fg-placeholder); }

/* sheet-to-card */
.bc-mock-sheet {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
}
.bcm-sheet {
  display: grid;
  border: 1px solid var(--border-default);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-app);
}
.bcms-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink);
  border-bottom: 1px solid var(--border-default);
}
.bcms-row:last-child { border-bottom: 0; }
.bcms-row > span {
  padding: 7px 10px;
  border-right: 1px solid var(--border-default);
}
.bcms-row > span:last-child { border-right: 0; }
.bcms-row.bcms-head > span {
  background: #fff;
  color: var(--fg-muted);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.bcms-row .err { color: var(--color-destructive); font-weight: 500; }
.bcm-arrow {
  color: var(--fg-muted);
  display: flex; align-items: center;
}
.bcm-arrow svg { width: 36px; height: 12px; }
.bcm-card {
  background: var(--ink);
  color: #fff;
  border-radius: 12px;
  padding: 14px 14px 12px;
  display: flex; flex-direction: column;
  gap: 4px;
  box-shadow: 0 12px 28px -16px rgba(23,23,26,0.4);
}
.bcmc-lab {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.bcmc-val {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.025em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.bcmc-val .dec { font-size: 0.62em; color: rgba(255,255,255,0.6); }
.bcmc-ok {
  margin-top: 2px;
  font-size: 10.5px;
  color: #4CCDA3;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.bcmc-ok::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 99px;
  background: #4CCDA3;
}

/* bars */
.bc-mock-bars svg { width: 100%; height: 100px; }
.bc-mock-bars .bars rect { fill: var(--ink); opacity: 0.85; }
.bc-mock-bars .bars rect.loss { fill: var(--color-destructive); opacity: 0.85; }
.bc-mock-bars .axis { stroke: var(--border-default); stroke-width: 1; }
.bc-mock-bars .zero { stroke: var(--color-accent-positive); opacity: 0.6; }
.bc-mock-bars text.ann {
  font-family: var(--font-mono);
  font-size: 8px;
  fill: var(--color-accent-positive);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.bc-mock-bars .bcm-cap {
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  text-transform: uppercase;
}

/* wait */
.bc-mock-wait { display: flex; flex-direction: column; gap: 12px; justify-content: center; }
.bcm-wait {
  display: grid;
  grid-template-columns: 76px 1fr 56px;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--fg-muted);
}
.bcm-wait .bar {
  background: var(--bg-app);
  border: 1px solid var(--border-default);
  border-radius: 99px;
  height: 9px;
  overflow: hidden;
}
.bcm-wait .bar i {
  display: block;
  height: 100%;
  background: var(--ink);
  opacity: 0.3;
  border-radius: 99px;
}
.bcm-wait.hi { color: var(--ink); font-weight: 600; }
.bcm-wait.hi .bar i { background: var(--color-accent-positive); opacity: 1; }
.bcm-wait .val { text-align: right; font-variant-numeric: tabular-nums; }

/* sku */
.bc-mock-sku { display: flex; flex-direction: column; gap: 10px; justify-content: center; }
.bcms-sku {
  display: grid;
  grid-template-columns: 1.2fr 1.6fr 60px;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  color: var(--ink);
}
.bcms-sku .n { font-weight: 500; }
.bcms-sku .b {
  background: var(--bg-app);
  border: 1px solid var(--border-default);
  border-radius: 99px;
  height: 9px;
  overflow: hidden;
}
.bcms-sku .b i {
  display: block;
  height: 100%;
  background: var(--color-accent-positive);
  border-radius: 99px;
}
.bcms-sku.lo .b i { background: var(--color-destructive); }
.bcms-sku.lo { color: var(--color-destructive); }
.bcms-sku .m {
  font-family: var(--font-mono);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

/* ───── PRODUCT ─────────────────────────────────────── */
.product {
  padding: var(--section-y) 0;
  background: var(--ink-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.product::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 0% 0%, rgba(255,255,255,0.04), transparent 60%),
    radial-gradient(ellipse 70% 60% at 100% 100%, rgba(0,128,96,0.08), transparent 60%);
  pointer-events: none;
}
.product .h-section { color: #fff; position: relative; }
.product .h-section em { color: #fff; }

.prod-head {
  max-width: 880px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.prod-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 6px 14px 6px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}
.prod-eyebrow .d {
  width: 6px; height: 6px;
  border-radius: 99px;
  background: #4CCDA3;
  box-shadow: 0 0 0 3px rgba(76,205,163,0.18);
}
.prod-lead {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.6);
  max-width: 580px;
}
.prod-lead em { color: #fff; font-style: italic; font-weight: 500; }

.prod-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  gap: 48px;
  align-items: start;
  position: relative;
}
@media (max-width: 900px) { .prod-grid { grid-template-columns: 1fr; gap: 32px; } }

.prod-list {
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.pl-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px 4px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  transition: all 220ms var(--ease-out-quint);
  cursor: pointer;
  position: relative;
}
.pl-item:hover { color: rgba(255,255,255,0.85); }
.pl-item.active { color: #fff; }
.pl-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
  margin-top: 9px;
  flex-shrink: 0;
  transition: all 220ms ease;
}
.pl-item.active .pl-dot { background: var(--color-accent-positive); box-shadow: 0 0 0 4px rgba(0,128,96,0.18); }
.pl-body { flex: 1; min-width: 0; }
.pl-t {
  font-size: 18px;
  font-weight: 500;
  color: inherit;
  letter-spacing: -0.01em;
}
.pl-item.active .pl-t { font-weight: 600; }
.pl-d {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin: 0;
  line-height: 1.55;
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms var(--ease-out-quint), margin 280ms ease, opacity 220ms ease;
  opacity: 0;
}
.pl-item.active .pl-d { max-height: 120px; opacity: 1; margin-top: 8px; }
.pl-arr {
  width: 28px; height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 200ms ease;
}
.pl-item:hover .pl-arr { color: #fff; border-color: rgba(255,255,255,0.3); transform: translateX(2px); }
.pl-arr svg { width: 12px; height: 12px; }

/* Try-it-now CTA below product grid — full width, black bar */
.prod-try {
  margin-top: 56px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 32px 36px;
  border-radius: 20px;
  background: linear-gradient(135deg, #17171A 0%, #0E0E10 100%);
  color: #fff;
  overflow: hidden;
  transition: transform 260ms var(--ease-out-quint), box-shadow 260ms ease;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 24px 50px -24px rgba(0,0,0,0.4),
    0 60px 120px -60px rgba(76,205,163,0.18);
}
.prod-try:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 30px 70px -28px rgba(0,0,0,0.5),
    0 80px 140px -60px rgba(76,205,163,0.28);
}
.prod-try .pt-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(76,205,163,0.18), transparent 60%),
    radial-gradient(ellipse 50% 80% at 100% 50%, rgba(255,255,255,0.04), transparent 60%);
  pointer-events: none;
}
.pt-l, .pt-r { position: relative; }
.pt-l {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.pt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}
.pt-eyebrow .d {
  width: 6px; height: 6px;
  border-radius: 99px;
  background: #4CCDA3;
  box-shadow: 0 0 0 3px rgba(76,205,163,0.2);
  animation: pulse2 2s ease-in-out infinite;
}
.pt-h {
  display: block;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.024em;
  font-weight: 600;
  color: #fff;
  text-wrap: balance;
}
.pt-h em {
  font-style: italic;
  font-weight: 500;
  color: #4CCDA3;
  margin-right: 0.18em;
}
.pt-h-soft { color: rgba(255,255,255,0.7); font-weight: 450; }
.pt-sub {
  display: block;
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
}
.pt-r {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}
.pt-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding: 0 28px;
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: transform 220ms var(--ease-out-quint), box-shadow 220ms ease, background 220ms ease;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 -6px 14px -8px rgba(0,0,0,0.1) inset,
    0 10px 30px -10px rgba(0,0,0,0.4);
}
.prod-try:hover .pt-btn {
  background: #fff;
  transform: scale(1.03);
  box-shadow:
    0 1px 0 rgba(255,255,255,1) inset,
    0 -6px 14px -8px rgba(0,0,0,0.1) inset,
    0 14px 38px -10px rgba(0,0,0,0.5);
}
.pt-btn .arr {
  width: 18px; height: 18px;
  transition: transform 240ms var(--ease-out-quint);
}
.prod-try:hover .pt-btn .arr { transform: translateX(4px); }
.pt-meta {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 720px) {
  .prod-try {
    grid-template-columns: 1fr;
    padding: 26px 24px 28px;
    gap: 22px;
  }
  .pt-r { align-items: stretch; }
  .pt-btn { width: 100%; justify-content: center; height: 52px; }
  .pt-meta { text-align: center; }
}

/* product screenshot stage */
.prod-screen {
  background: #18181B;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;
  position: sticky;
  top: 88px;
  box-shadow: 0 30px 60px -24px rgba(0,0,0,0.5);
}
@media (max-width: 900px) { .prod-screen { position: static; } }

.ps-chrome {
  display: flex; align-items: center; gap: 16px;
  height: 40px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.25);
}
.ps-chrome .dots { display: flex; gap: 6px; }
.ps-chrome .dots i { width: 9px; height: 9px; border-radius: 999px; background: rgba(255,255,255,0.15); }
.ps-chrome .url {
  flex: 1; text-align: center;
  font-family: var(--font-mono); font-size: 11px;
  color: rgba(255,255,255,0.5);
}
.ps-chrome .url strong { color: #fff; font-weight: 500; }
.ps-chrome .meta {
  font-family: var(--font-mono); font-size: 10.5px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}

/* GIF placeholder bar — marks where animated product captures will go */
.ps-ph-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 16px;
  background: rgba(76,205,163,0.06);
  border-bottom: 1px dashed rgba(76,205,163,0.25);
  flex-wrap: wrap;
}
.ps-ph-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.ps-ph-tag .d {
  width: 6px; height: 6px;
  border-radius: 99px;
  background: #4CCDA3;
  animation: pulse2 2s ease-in-out infinite;
}
.ps-ph-tag em {
  font-style: normal;
  color: #4CCDA3;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.ps-ph-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
@media (max-width: 640px) {
  .ps-ph-meta { display: none; }
}

.ps-body {
  padding: 36px;
  min-height: 480px;
  position: relative;
}
.ps-panel {
  display: none;
  animation: psIn 420ms var(--ease-out-quint);
}
.ps-panel.active { display: block; }
@keyframes psIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.psp-kicker { font-style: italic; font-size: 13.5px; color: rgba(255,255,255,0.55); margin: 0 0 12px; }
.psp-greet { font-style: italic; font-size: 22px; color: #fff; font-weight: 500; letter-spacing: -0.015em; margin-bottom: 24px; }
.psp-greet em { font-style: normal; }
.psp-num {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: #fff;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  display: inline-flex; align-items: baseline; gap: 6px;
}
.psp-num .cur { font-size: 0.32em; color: rgba(255,255,255,0.5); font-weight: 500; }
.psp-num .dec { font-size: 0.48em; color: rgba(255,255,255,0.5); font-weight: 500; }
.psp-ctx { margin-top: 14px; display: flex; gap: 10px; align-items: center; font-size: 13px; color: rgba(255,255,255,0.55); }
.chip {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 9px; border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.chip-pos { background: rgba(76,205,163,0.14); color: #4CCDA3; }

.psp-week { margin-top: 32px; }
.psp-week-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; font-size: 13px; color: rgba(255,255,255,0.55); font-style: italic; }
.psp-w-r { font-family: var(--font-mono); font-style: normal; letter-spacing: 0.04em; font-size: 10.5px; color: rgba(255,255,255,0.4); }
.psp-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.psp-day { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; padding: 10px 8px; }
.psp-day.today { background: #fff; border-color: #fff; }
.psp-day.today .l { color: rgba(23,23,26,0.5); }
.psp-day.today .v { color: var(--ink); }
.psp-day .l { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.psp-day .v { font-family: var(--font-mono); font-size: 12px; font-weight: 600; color: #fff; margin-top: 6px; white-space: nowrap; }
.psp-day.future { opacity: 0.4; }

/* P&L panel */
.psp-pl { display: flex; flex-direction: column; border-top: 1px solid rgba(255,255,255,0.08); }
.pl-row { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.pl-row .l { color: rgba(255,255,255,0.6); font-size: 13px; }
.pl-row .v { color: #fff; font-size: 14.5px; font-weight: 500; display: flex; gap: 10px; align-items: center; }
.pl-row .pc { color: rgba(255,255,255,0.5); font-size: 11px; }
.pl-row.sub .l { color: rgba(255,255,255,0.85); font-weight: 500; }
.pl-row.total { background: rgba(76,205,163,0.06); margin: 8px -36px -36px; padding: 22px 36px; border-top: 1px solid rgba(76,205,163,0.2); border-bottom: 0; }
.pl-row.total .l { color: #fff; font-weight: 600; font-size: 14px; }
.pl-row.total .v { color: #fff; font-size: 22px; font-weight: 600; }

/* Revenue panel */
.psp-spark { color: #4CCDA3; height: 200px; margin: 8px 0 24px; }
.psp-spark svg { width: 100%; height: 100%; }
.psp-rev-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.pr-cell { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; padding: 14px 16px; }
.pr-cell .lab { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.pr-cell .val { margin-top: 8px; font-family: var(--font-mono); font-size: 18px; font-weight: 600; color: #fff; font-variant-numeric: tabular-nums; }

/* Expenses */
.psp-exp { border-top: 1px solid rgba(255,255,255,0.08); }
.exp-row { display: grid; grid-template-columns: 1.4fr 1fr auto; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 14px; }
.exp-row .cat { color: #fff; font-weight: 500; }
.exp-row .ven { color: rgba(255,255,255,0.5); font-family: var(--font-mono); font-size: 12.5px; }
.exp-row .amt { font-family: var(--font-mono); font-variant-numeric: tabular-nums; color: #fff; font-weight: 500; }

/* Products */
.psp-prod { display: flex; flex-direction: column; gap: 12px; }
.pp-row { display: grid; grid-template-columns: 1.2fr 2fr 80px; align-items: center; gap: 16px; }
.pp-row .n { color: #fff; font-size: 14px; }
.pp-row .b { background: rgba(255,255,255,0.06); border-radius: 99px; height: 10px; overflow: hidden; }
.pp-row .b i { display: block; height: 100%; border-radius: 99px; }
.pp-row .b i.ok { background: #4CCDA3; }
.pp-row .b i.lo { background: #FF8B70; }
.pp-row .m { font-family: var(--font-mono); font-size: 13px; color: #fff; text-align: right; font-variant-numeric: tabular-nums; }

/* Fixed */
.psp-fixed { display: flex; flex-direction: column; gap: 24px; }
.fx-bar { display: flex; height: 18px; border-radius: 99px; overflow: hidden; background: rgba(255,255,255,0.06); }
.fx-bar i { background: #4CCDA3; height: 100%; }
.fx-bar i.b { background: rgba(76,205,163,0.65); }
.fx-bar i.c { background: rgba(76,205,163,0.4); }
.fx-bar i.d { background: rgba(255,255,255,0.2); }
.fx-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; font-size: 13.5px; color: rgba(255,255,255,0.85); }
.fx-row { display: flex; align-items: center; gap: 10px; }
.fx-row .dot { width: 10px; height: 10px; border-radius: 99px; background: #4CCDA3; }
.fx-row .dot.b { background: rgba(76,205,163,0.65); }
.fx-row .dot.c { background: rgba(76,205,163,0.4); }
.fx-row .dot.d { background: rgba(255,255,255,0.3); }
.fx-row .slice { margin-left: auto; font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,0.5); }

/* Stats */
.psp-stats { display: flex; flex-direction: column; gap: 10px; }
.st-bar { display: grid; grid-template-columns: 40px 1fr 64px; align-items: center; gap: 14px; }
.st-bar .l { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.st-bar .b { background: rgba(255,255,255,0.06); border-radius: 99px; height: 12px; overflow: hidden; }
.st-bar .b i { display: block; height: 100%; background: #4CCDA3; border-radius: 99px; }
.st-bar .b i.lo { background: #FF8B70; }
.st-bar .v { font-family: var(--font-mono); font-size: 12.5px; color: #fff; text-align: right; font-variant-numeric: tabular-nums; }

/* ───── (Demo pill removed — merged into product section as .prod-launch) ─── */

/* ───── CUSTOMERS ───────────────────────────────────── */
.customers {
  padding: var(--section-y) 0;
  background: var(--bg-app);
  position: relative;
}
.customers::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-default), transparent);
}
.cust-head {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.cust-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding: 6px 14px 6px 11px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border-default);
  box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset, 0 4px 14px -8px rgba(23,23,26,0.06);
}
.cust-eyebrow .d {
  width: 6px; height: 6px;
  border-radius: 99px;
  background: var(--color-accent-positive);
  box-shadow: 0 0 0 3px rgba(0,128,96,0.14);
}
.cust-h {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.028em;
  font-weight: 600;
  color: var(--ink);
  text-wrap: balance;
}
.cust-h em {
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
}
.cust-lede {
  margin: 4px 0 0;
  font-size: 18px;
  line-height: 1.55;
  color: var(--fg-default);
  max-width: 620px;
  text-wrap: pretty;
}
.cust-lede em {
  font-style: italic;
  color: var(--ink);
  font-weight: 500;
}
.cust-stats {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
  max-width: 720px;
  padding: 18px 8px;
  border-top: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-default);
}
.cs-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 12px;
  border-right: 1px solid var(--border-default);
}
.cs-cell:last-child { border-right: 0; }
.cs-v {
  font-family: var(--font-mono);
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.cs-l {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 720px) {
  .cust-stats { grid-template-columns: repeat(2, 1fr); gap: 18px 0; padding: 18px 4px; }
  .cs-cell:nth-child(2) { border-right: 0; }
  .cs-cell { padding: 0 8px; }
}

.cust-rail {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 1100px) { .cust-rail { grid-template-columns: 1fr 1fr; gap: 18px; } }
@media (max-width: 640px) { .cust-rail { grid-template-columns: 1fr; gap: 16px; } }

.rcard {
  position: relative;
  background: #fff;
  border: 1px solid var(--border-default);
  border-radius: 18px;
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 1px 2px rgba(23,23,26,0.04),
    0 18px 32px -22px rgba(23,23,26,0.1);
  transition: transform 260ms var(--ease-out-quint), box-shadow 260ms ease, border-color 260ms ease;
}
.rcard:hover {
  transform: translateY(-3px);
  border-color: rgba(23,23,26,0.18);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 1px 2px rgba(23,23,26,0.04),
    0 28px 48px -22px rgba(23,23,26,0.16);
}
.rc-tagrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.rc-kind {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--bg-app);
  border: 1px solid var(--border-default);
  color: var(--ink);
  font-weight: 500;
}
.rc-kind::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 99px;
  background: var(--color-accent-positive);
}
.rc-place {
  color: var(--fg-muted);
  letter-spacing: 0.08em;
}

.rc-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse 60% 70% at 50% 30%, rgba(217,178,138,0.55), transparent 70%),
    linear-gradient(160deg, #EFE6D7 0%, #E5D8C2 100%);
  border: 1px solid var(--border-default);
}
.rc-photo::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(23,23,26,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,23,26,0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000, transparent 80%);
  pointer-events: none;
  opacity: 0.5;
}
.rc-photo-b {
  background:
    radial-gradient(ellipse 60% 70% at 50% 30%, rgba(170,180,200,0.5), transparent 70%),
    linear-gradient(160deg, #DDE3EC 0%, #C7D0DD 100%);
}
.rc-photo-c {
  background:
    radial-gradient(ellipse 60% 70% at 50% 30%, rgba(150,195,170,0.55), transparent 70%),
    linear-gradient(160deg, #DCE9DF 0%, #BFD5C5 100%);
}
.rc-photo-d {
  background:
    radial-gradient(ellipse 60% 70% at 50% 30%, rgba(200,170,190,0.55), transparent 70%),
    linear-gradient(160deg, #EBDDE3 0%, #D2BFCB 100%);
}
.rc-photo-tag {
  position: relative;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(23,23,26,0.55);
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  border: 1px dashed rgba(23,23,26,0.18);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.rc-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 4px;
}
.rc-stat-v {
  font-family: var(--font-sans);
  font-size: clamp(28px, 2.6vw, 34px);
  line-height: 1;
  letter-spacing: -0.028em;
  font-weight: 600;
  color: var(--color-accent-positive);
  font-variant-numeric: tabular-nums;
}
.rc-stat-l {
  font-size: 12.5px;
  color: var(--fg-muted);
  line-height: 1.4;
}
.rc-q {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  letter-spacing: -0.005em;
  text-wrap: pretty;
  font-weight: 450;
  flex: 1;
}
.rc-q em {
  font-style: italic;
  color: var(--ink);
  font-weight: 600;
  background: linear-gradient(180deg, transparent 65%, rgba(217,119,87,0.22) 65%, rgba(217,119,87,0.22) 92%, transparent 92%);
  padding: 0 1px;
}
.rc-by {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--border-default);
}
.rc-by-l {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.rc-av {
  width: 32px; height: 32px;
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border-default);
  background: var(--bg-app);
  display: grid;
  place-items: center;
}
.rc-av svg { width: 32px; height: 32px; display: block; }
.rc-by-t {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.rc-by .who {
  font-size: 13px;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.005em;
}
.rc-by .role {
  font-size: 11.5px;
  color: var(--fg-muted);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rc-go {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 220ms var(--ease-out-quint);
}
.rc-go:hover { background: var(--color-accent-positive); transform: translate(2px, -2px); }
.rc-go svg { width: 13px; height: 13px; }

.cust-foot {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.cf-dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cf-dots i {
  width: 24px; height: 3px;
  border-radius: 99px;
  background: var(--border-default);
}
.cf-dots i.on { background: var(--ink); }
.cf-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--border-default);
  text-underline-offset: 4px;
  transition: text-decoration-color 200ms ease;
}
.cf-link:hover { text-decoration-color: var(--ink); }
.cf-link .arr { width: 14px; height: 14px; transition: transform 200ms var(--ease-out-quint); }
.cf-link:hover .arr { transform: translateX(3px); }

/* ───── FAQ ────────────────────────────────────────── */
.faq {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--border-default);
}
.faq-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .faq-wrap { grid-template-columns: 1fr; gap: 40px; }
}
.faq-head { position: sticky; top: 100px; }
@media (max-width: 900px) { .faq-head { position: static; } }
.faq-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 22px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border-default);
}
.faq-sub {
  margin: 24px 0 0;
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.55;
  max-width: 320px;
}
.faq-sub a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--border-default);
  text-underline-offset: 3px;
}
.faq-sub a:hover { text-decoration-color: var(--ink); }

.faq-list {
  border-top: 1px solid var(--border-default);
}
.faq-row {
  border-bottom: 1px solid var(--border-default);
}
.faq-row summary {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  transition: color 150ms ease;
}
.faq-row summary::-webkit-details-marker { display: none; }
.faq-row summary:hover { color: var(--ink); }
.fq-ix {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--fg-placeholder);
}
.fq-q {
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.fq-tog {
  width: 32px; height: 32px;
  border-radius: 999px;
  border: 1px solid var(--border-default);
  display: grid; place-items: center;
  color: var(--fg-muted);
  transition: all 200ms var(--ease-out-quint);
  justify-self: end;
}
.fq-tog svg {
  width: 14px; height: 14px;
  transition: transform 240ms var(--ease-out-quint);
}
.faq-row[open] .fq-tog {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.faq-row[open] .fq-tog svg { transform: rotate(45deg); }
.fq-a {
  padding: 0 0 24px 52px;
  max-width: 640px;
  animation: fqIn 360ms var(--ease-out-quint);
}
@keyframes fqIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.fq-a p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--fg-default);
  text-wrap: pretty;
}
.fq-a em {
  font-style: italic;
  color: var(--ink);
  font-weight: 500;
}
@media (max-width: 640px) {
  .fq-a { padding-left: 0; }
  .fq-q { font-size: 16px; }
  .faq-row summary { grid-template-columns: 28px 1fr 28px; gap: 12px; }
}

/* ───── HOME BLOG TEASER ────────────────────────────── */
.home-blog { padding: 96px 0 24px; position: relative; }
.hb-head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 44px;
}
@media (max-width: 900px) {
  .hb-head { grid-template-columns: 1fr; gap: 22px; }
}
.hb-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
}
.hb-eyebrow .d {
  width: 6px; height: 6px; border-radius: 99px;
  background: var(--color-accent-positive);
  box-shadow: 0 0 0 3px rgba(0,128,96,0.14);
}
.hb-title {
  margin: 14px 0 0;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.026em;
  font-weight: 600;
  color: var(--ink);
  text-wrap: balance;
}
.hb-title em { font-style: italic; font-weight: 500; }
.hb-aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 8px;
}
.hb-lede {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--fg-default);
  max-width: 380px;
  text-wrap: pretty;
}
.hb-lede em { font-style: italic; color: var(--ink); font-weight: 500; }
.hb-cta {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-default);
  background: #fff;
  transition: all 180ms var(--ease-out-quint);
}
.hb-cta:hover { border-color: var(--ink); background: var(--bg-app); }
.hb-cta .arr { width: 14px; height: 14px; transition: transform 200ms var(--ease-out-quint); }
.hb-cta:hover .arr { transform: translateX(3px); }

/* Home blog uses the same .post-grid / .post-card grammar from resources.css */
.home-blog .post-grid { margin-top: 0; }

.hb-foot {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border-default);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.hb-foot-l {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.hb-foot-l .d {
  width: 5px; height: 5px; border-radius: 99px;
  background: var(--color-accent-positive);
}
.hb-foot-r {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--border-default);
  text-underline-offset: 4px;
  transition: text-decoration-color 180ms ease;
}
.hb-foot-r:hover { text-decoration-color: var(--ink); }
.hb-foot-r .arr { width: 14px; height: 14px; transition: transform 200ms var(--ease-out-quint); }
.hb-foot-r:hover .arr { transform: translateX(3px); }

/* ───── HOME NEWSLETTER ─────────────────────────────── */
.home-news { padding: 64px 0 56px; }
.news-card {
  position: relative;
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(217,178,138,0.5), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(76,205,163,0.16), transparent 60%),
    linear-gradient(165deg, #F4E9D4 0%, #E8D7BB 100%);
  border: 1px solid rgba(23,23,26,0.06);
  border-radius: 32px;
  padding: 56px 56px 52px;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 30px 80px -40px rgba(23,23,26,0.18);
}
@media (max-width: 980px) {
  .news-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 44px 28px 40px;
  }
}
.news-card::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(23,23,26,0.08) 1px, transparent 1.5px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000 30%, transparent 85%);
  opacity: 0.35;
  pointer-events: none;
}
.news-card > * { position: relative; z-index: 1; }

.nc-l { display: flex; flex-direction: column; gap: 18px; }
.nc-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  width: fit-content;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding: 5px 12px 5px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(23,23,26,0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.nc-eyebrow .d {
  width: 6px; height: 6px; border-radius: 99px;
  background: var(--color-accent-positive);
  box-shadow: 0 0 0 3px rgba(0,128,96,0.14);
}
.nc-h {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.024em;
  font-weight: 600;
  color: var(--ink);
  text-wrap: balance;
}
.nc-h em { font-style: italic; font-weight: 500; }
.nc-sub {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--fg-default);
  max-width: 460px;
  text-wrap: pretty;
}
.nc-sub em { font-style: italic; color: var(--ink); font-weight: 500; }
.nc-meta {
  display: flex; flex-wrap: wrap;
  gap: 16px 22px;
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid rgba(23,23,26,0.08);
}
.nc-meta span {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.nc-meta svg { width: 14px; height: 14px; color: var(--color-accent-positive); }
.nc-meta strong { color: var(--ink); font-weight: 600; }

/* Right side: form + sample preview */
.nc-r { display: flex; flex-direction: column; gap: 16px; }
.nc-form {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid rgba(23,23,26,0.08);
  border-radius: 14px;
  padding: 6px 6px 6px 18px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset, 0 12px 28px -20px rgba(23,23,26,0.18);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.nc-form:focus-within {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(23,23,26,0.06), 0 12px 28px -20px rgba(23,23,26,0.18);
}
.nc-form input {
  flex: 1; min-width: 0;
  height: 46px;
  border: 0; outline: 0;
  background: transparent;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.nc-form input::placeholder { color: var(--fg-placeholder); }
.nc-form button {
  display: inline-flex; align-items: center; gap: 8px;
  height: 46px;
  padding: 0 20px;
  background: var(--ink);
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  transition: all 180ms var(--ease-out-quint);
}
.nc-form button:hover { background: #2a2a2a; }
.nc-form button .arr { width: 14px; height: 14px; transition: transform 200ms var(--ease-out-quint); }
.nc-form button:hover .arr { transform: translateX(3px); }
.nc-fine {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: inline-flex; align-items: center; gap: 8px;
  flex-wrap: wrap;
}
.nc-fine .sep { color: rgba(23,23,26,0.2); }

.nc-sample {
  margin-top: 6px;
  background: #fff;
  border: 1px solid rgba(23,23,26,0.06);
  border-radius: 14px;
  padding: 16px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 18px 36px -28px rgba(23,23,26,0.2);
}
.nc-sample-h {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
}
.nc-sample-t {
  font-size: 13px;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.005em;
}
.nc-sample-meta {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.nc-sample-bullets {
  margin: 0; padding: 0;
  list-style: none;
  display: flex; flex-direction: column; gap: 6px;
}
.nc-sample-bullets li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 8px;
  align-items: start;
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--fg-default);
}
.nc-sample-bullets li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  margin-top: 7px;
  border-radius: 99px;
  background: var(--color-accent-positive);
}
.nc-sample-bullets li em { font-style: italic; color: var(--ink); font-weight: 500; }
.nc-sample-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 10px;
  border-top: 1px dashed rgba(23,23,26,0.1);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.nc-sample-foot strong { color: var(--ink); font-weight: 600; }

/* ───── FINAL CTA ──────────────────────────────────── */
.final { padding: 32px 0 120px; }
.final-card {
  background: var(--ink);
  color: #fff;
  border-radius: 36px;
  padding: 88px 56px 96px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px -30px rgba(23,23,26,0.45);
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (max-width: 640px) {
  .final-card { padding: 72px 24px 72px; border-radius: 28px; }
}
.final-card::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(76,205,163,0.14), transparent 60%),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(217,178,138,0.10), transparent 65%),
    radial-gradient(ellipse 90% 80% at 50% 0%, rgba(255,255,255,0.05), transparent 70%);
  pointer-events: none;
}
.final-card::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 1.5px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 90% at 50% 50%, #000 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 70% 90% at 50% 50%, #000 30%, transparent 85%);
  opacity: 0.55;
  pointer-events: none;
}

.final-l { position: relative; display: flex; flex-direction: column; align-items: center; }
.final-r { position: relative; }

.final-eyebrow {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.final-eyebrow .d {
  width: 6px; height: 6px; border-radius: 99px;
  background: #4CCDA3;
  box-shadow: 0 0 0 3px rgba(76,205,163,0.2);
}

.final-h {
  position: relative;
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.028em;
  font-weight: 600;
  margin: 0 auto;
  max-width: 720px;
  text-wrap: balance;
}
.final-h em { font-weight: 500; font-style: italic; }

.final-sub {
  position: relative;
  margin: 22px auto 0;
  font-size: 16.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  max-width: 540px;
}

.final-ctas {
  position: relative;
  margin-top: 36px;
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: center;
}

.final-ctas .btn-on-ink {
  height: 56px; padding: 0 28px;
  font-size: 15px;
  border-radius: 14px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 12px 30px -10px rgba(255,255,255,0.18);
}
.final-ctas .btn-ghost-final {
  display: inline-flex; align-items: center; gap: 8px;
  height: 56px; padding: 0 22px;
  border-radius: 14px;
  font-size: 14.5px; font-weight: 500;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  transition: all 180ms var(--ease-out-quint);
}
.final-ctas .btn-ghost-final:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.28); }
.final-ctas .btn-ghost-final .arr { width: 14px; height: 14px; }

.final-fine {
  position: relative;
  margin: 22px auto 0;
  justify-content: center;
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  display: flex; flex-wrap: wrap; gap: 6px 12px;
}
@media (max-width: 1100px) { .final-fine { justify-content: center; } }
.final-fine .sep { color: rgba(255,255,255,0.22); }

/* ─── Right-side "tonight" widget ─────────────────── */
.final-tonight {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 22px;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 28px 60px -28px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  isolation: isolate;
}
.final-tonight::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 22px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(76,205,163,0.10), transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.ft-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
}
.ft-pulse {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.ft-pulse .d {
  position: relative;
  width: 6px; height: 6px; border-radius: 99px;
  background: #4CCDA3;
  box-shadow: 0 0 0 3px rgba(76,205,163,0.18);
}
.ft-pulse .d::after {
  content: ''; position: absolute; inset: -4px;
  border-radius: 99px;
  border: 1.5px solid #4CCDA3;
  animation: ftPulse 2.4s ease-out infinite;
}
@keyframes ftPulse {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(2.0); opacity: 0; }
}
.ft-stamp {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.ft-kicker {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.ft-num {
  display: inline-flex; align-items: baseline; gap: 3px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(40px, 4.8vw, 56px);
  line-height: 1;
  letter-spacing: -0.034em;
  font-variant-numeric: tabular-nums;
  color: #fff;
  margin-top: 6px;
}
.ft-num .cur { font-size: 0.45em; color: rgba(255,255,255,0.45); font-weight: 500; }
.ft-num .dec { font-size: 0.45em; color: rgba(255,255,255,0.45); font-weight: 500; }
.ft-ctx {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  margin-top: 10px;
  flex-wrap: wrap;
}
.ft-chip {
  display: inline-flex; align-items: center;
  padding: 3px 8px;
  border-radius: 99px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  color: #4CCDA3;
  background: rgba(76,205,163,0.12);
  border: 1px solid rgba(76,205,163,0.22);
}

.ft-week-h {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}
.ft-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.ft-day {
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 10px 4px 8px;
  text-align: center;
}
.ft-day .l {
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.ft-day .v {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
  font-variant-numeric: tabular-nums;
}
.ft-day.today {
  background: #fff;
  border-color: #fff;
}
.ft-day.today .l { color: rgba(23,23,26,0.55); }
.ft-day.today .v { color: var(--ink); }
.ft-day.future { opacity: 0.45; }

.ft-trust {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.ft-trust span {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.ft-trust svg { width: 12px; height: 12px; color: #4CCDA3; }

/* ───── FOOTER ─────────────────────────────────────── */
footer.foot {
  background: var(--ink-deep);
  color: rgba(255,255,255,0.7);
  padding: 88px 0 32px;
  position: relative;
  overflow: hidden;
}
.foot-top {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 2fr);
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 900px) {
  .foot-top { grid-template-columns: 1fr; gap: 48px; }
}
.foot-brandcol { display: flex; flex-direction: column; gap: 18px; max-width: 360px; }
.foot-brand {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1;
}
.foot-tag {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.55);
}
.foot-newsletter {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 4px;
  margin-top: 6px;
  transition: border-color 180ms ease;
}
.foot-newsletter:focus-within { border-color: rgba(255,255,255,0.3); }
.foot-newsletter input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  color: #fff;
  font-family: inherit;
  font-size: 14.5px;
  padding: 0 12px;
  height: 40px;
  min-width: 0;
}
.foot-newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.foot-nl-btn {
  height: 40px;
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
}
.foot-nl-btn:hover { background: #f1f1f1; }
.foot-fine {
  margin: 0;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

.foot-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 720px) { .foot-cols { grid-template-columns: 1fr 1fr; gap: 36px 24px; } }
.foot-col { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.foot-col h4 {
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}
.foot-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 150ms ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.foot-col a:hover { color: #fff; }
.foot-pill {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 99px;
  background: rgba(76,205,163,0.18);
  color: #4CCDA3;
  font-weight: 500;
}

.foot-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 28px 0 0;
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  position: relative;
  z-index: 2;
}
.foot-meta { font-family: var(--font-mono); letter-spacing: 0.02em; }
.foot-legal { display: flex; gap: 20px; }
.foot-legal a { color: rgba(255,255,255,0.55); transition: color 150ms ease; }
.foot-legal a:hover { color: #fff; }
.foot-social { display: flex; gap: 8px; }
.foot-social a {
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.6);
  transition: all 180ms var(--ease-out-quint);
}
.foot-social a:hover { color: #fff; background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.3); transform: translateY(-1px); }
.foot-social svg { width: 16px; height: 16px; }

.foot-wordmark {
  position: absolute;
  left: 0; right: 0; bottom: -36px;
  text-align: center;
  font-size: clamp(140px, 22vw, 320px);
  line-height: 0.85;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

/* ───── On-scroll reveal ───────────────────────────── */
[data-reveal] {
  opacity: 0; transform: translateY(18px);
  transition: opacity 720ms var(--ease-out-quint), transform 720ms var(--ease-out-quint);
}
[data-reveal].in { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: 80ms; }
[data-reveal-delay="2"] { transition-delay: 160ms; }
[data-reveal-delay="3"] { transition-delay: 240ms; }
[data-reveal-delay="4"] { transition-delay: 320ms; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============================================================
   nouz overrides — applied after the design's verbatim rules.
   Keep additions in this block so a re-sync from Claude Design
   can just re-copy the upstream CSS and re-append this footer.
   ============================================================ */

/* Inline brand-mark SVG (replaces the "Nouz" text wordmark
   patched in by scripts/swap-marketing-logo.mjs). The SVG uses
   fill="currentColor" so it picks up the existing .nav-brand
   /  .foot-brand text color set above. */
.nav-brand svg {
  height: 15px;
  width: auto;
  display: block;
}
.foot-brand svg {
  height: 18px;
  width: auto;
  display: block;
}
/* The original .foot-wordmark was a giant low-opacity text
   wordmark hanging off the bottom of the footer. The SVG fills
   the same visual frame; height drives the size since the
   glyph is wider than tall. */
.foot-wordmark svg {
  display: block;
  width: 100%;
  height: clamp(61px, 11vw, 153px);
  max-width: 100%;
}

