/* ─────────────────────────────────────────────
   MarginOS · margin.work
   Apple-minimal hybrid. Linear / Vercel / Stripe
   with warm undertones for hospitality.
───────────────────────────────────────────── */

:root {
  /* Surfaces */
  --bg: #F9F9F7;
  --bg-elev: #FFFFFF;
  --bg-subtle: #F4F4F2;

  /* Ink */
  --ink: #0A0A0A;
  --ink-2: #262626;
  --ink-3: #525252;
  --ink-muted: #737373;

  /* Lines */
  --line: #E5E5E5;
  --line-strong: #D4D4D4;

  /* Accents */
  --green-primary: #15803D;
  --green-hover: #166534;
  --green-soft: #DCFCE7;

  /* Alerts */
  --danger: #DC2626;
  --warning: #D97706;

  /* Shape */
  --radius-card: 12px;
  --radius-button: 8px;
  --shadow-card: 0 1px 2px rgba(10,10,10,0.04), 0 4px 16px rgba(10,10,10,0.04);
  --shadow-card-hover: 0 2px 4px rgba(10,10,10,0.05), 0 12px 32px rgba(10,10,10,0.08);

  /* Type */
  --font-sans: 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'Geist Mono', 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Motion */
  --ease: cubic-bezier(.2, .7, .2, 1);
  --dur: 200ms;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'ss01', 'cv11';
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }

/* Inline mono for prose — no tnum to avoid wide punctuation */
.num { font-family: var(--font-mono); font-feature-settings: 'zero','cv11'; letter-spacing: -.005em; }
/* Tabular numerics — use for aligned columns only */
.num-tabular, .price-amount .num, .mock-price-now .num, .mock-price-then .num,
.pc-mock-row .num, .video-still .num { font-feature-settings: 'tnum','zero'; }

:focus-visible {
  outline: 2px solid var(--green-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff; padding: 10px 14px; border-radius: 6px;
  z-index: 1000;
}
.skip-link:focus-visible { left: 16px; top: 16px; }

/* ─── Layout ─── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.section {
  padding: clamp(80px, 10vw, 160px) 0;
}
.section-alt { background: var(--bg-subtle); }
.center { text-align: center; }

/* ─── Type scale ─── */
.kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 24px;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-primary);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(36px, 5.6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 28px;
  max-width: 14ch;
  text-wrap: balance;
}
.hero-sub {
  display: block;
  margin-top: 18px;
  color: var(--ink-3);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.3;
  max-width: 28ch;
  text-wrap: balance;
}

.section-heading {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0 0 20px;
  max-width: 22ch;
}
.section-heading.center { margin-left: auto; margin-right: auto; }
.section-sub {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--ink-3);
  max-width: 60ch;
  margin: 0 0 48px;
  line-height: 1.55;
}
.section-sub.center { margin-left: auto; margin-right: auto; }

.micro {
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 16px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-button);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: background-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  white-space: nowrap;
  line-height: 1.2;
  max-width: 100%;
  text-align: center;
}
.btn.btn-lg,
.btn.btn-block {
  /* Long CTAs must wrap on narrow screens instead of clipping */
  white-space: normal;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--green-primary);
  color: #fff;
}
.btn-primary:hover { background: var(--green-hover); }
.btn-secondary {
  background: var(--bg-elev);
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-secondary:hover { border-color: var(--line-strong); background: var(--bg-subtle); }
.btn-sm { padding: 8px 14px; font-size: 14px; }
.btn-lg { padding: 16px 24px; font-size: 16px; }
.btn-block { width: 100%; }

.link-arrow {
  font-weight: 500;
  color: var(--ink-2);
  font-size: 15px;
  transition: color var(--dur) var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.link-arrow:hover { color: var(--green-primary); }
.link-arrow span { transition: transform var(--dur) var(--ease); display: inline-block; }
.link-arrow:hover span { transform: translateX(3px); }

.link-muted { color: var(--ink-2); font-size: 14px; font-weight: 500; }
.link-muted:hover { color: var(--ink); }

/* ─── Header ─── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(249, 249, 247, 0.82);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(249, 249, 247, 0.92);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}
.logo-mark { color: var(--green-primary); flex: none; }
.logo-word {
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.primary-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.primary-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color var(--dur) var(--ease);
}
.primary-nav a:hover { color: var(--ink); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-toggle { display: none; padding: 8px; color: var(--ink); }

/* ─── Mobile nav ─── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(249, 249, 247, 0.98);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.mobile-nav-inner > a {
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
}
.mobile-nav-inner .btn {
  margin-top: 16px;
  padding: 14px 32px;
  font-size: 16px;
  color: #fff;
}
.mobile-nav-inner .btn.btn-primary { color: #fff; background: var(--green-primary); }

/* ─── Hero ─── */
.hero {
  padding: clamp(60px, 8vw, 120px) 0 clamp(80px, 10vw, 140px);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1000px 500px at 85% 10%, rgba(21, 128, 61, 0.05), transparent 60%),
    radial-gradient(600px 400px at 15% 90%, rgba(21, 128, 61, 0.03), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-copy { max-width: 640px; }
.hero-desc {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink-3);
  margin: 0 0 32px;
  max-width: 52ch;
  line-height: 1.55;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* ─── Hero mock ─── */
.hero-mock { display: flex; justify-content: center; }
.hero-mock.hero-carousel { justify-content: stretch; }
.mock-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  width: 100%;
  max-width: 480px;
  overflow: hidden;
  transform-origin: center;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.mock-card-tilt { transform: rotate(1.5deg); }
.mock-card-tilt:hover {
  transform: rotate(1.5deg) translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.mock-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-subtle);
}
.mock-dots { display: inline-flex; gap: 6px; }
.mock-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--line-strong);
}
.mock-title {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-3);
  flex: 1;
  text-align: center;
  letter-spacing: -0.01em;
}
.mock-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--green-primary);
  background: var(--green-soft);
  padding: 3px 8px;
  border-radius: 100px;
  font-weight: 500;
}

.mock-body { padding: 20px; }

.mock-line { padding: 4px 0; }
.mock-line-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}
.mock-sku {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.mock-meta {
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 2px;
}
.mock-price-col { text-align: right; }
.mock-price-now {
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
}
.mock-price-now .num { color: var(--ink); font-weight: 600; }
.mock-price-then {
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 2px;
}
.mock-delta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}
.mock-delta.danger {
  color: var(--danger);
  background: rgba(220, 38, 38, 0.08);
}
.mock-flag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
}
.mock-flag.flag-green {
  color: #14532D;
  background: var(--green-soft);
}
.flag-emoji { font-size: 14px; line-height: 1; }

.mock-divider {
  height: 1px;
  background: var(--line);
  margin: 16px 0;
}

.mock-foot {
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  background: var(--bg-subtle);
}
.mock-btn {
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background-color var(--dur) var(--ease);
}
.mock-btn-ghost {
  color: var(--ink-2);
  background: transparent;
}
.mock-btn-ghost:hover { background: rgba(10,10,10,0.04); }
.mock-btn-primary {
  background: var(--green-primary);
  color: #fff;
}
.mock-btn-primary:hover { background: var(--green-hover); }

/* ─── Trust strip ─── */
.trust {
  padding: 40px 0 60px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-label {
  text-align: center;
  font-size: 13px;
  color: var(--ink-muted);
  margin: 0 0 24px;
  font-family: var(--font-mono);
  letter-spacing: -0.005em;
}
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 4vw, 56px);
}
.logo-pill {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--ink-muted);
  padding: 8px 0;
  opacity: 0.7;
  transition: opacity var(--dur) var(--ease);
}
.logo-pill:hover { opacity: 1; }

/* ─── Problem ─── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  margin-top: 24px;
}
.two-col p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0;
}
.two-col p:first-child { color: var(--ink-3); }

/* ─── Video ─── */
.section-video .section-sub { margin-bottom: 48px; }
.video-card {
  position: relative;
  display: block;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  border-radius: var(--radius-card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.video-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}
.video-still {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #111 0%, #1a1a1a 100%);
}
.video-still-inner {
  position: absolute;
  inset: 0;
  padding: clamp(20px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.video-still-line {
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,0.85);
  font-size: clamp(12px, 1.4vw, 16px);
  font-family: var(--font-mono);
}
.video-still-line .danger { color: #FF8C8C; }
.video-still-bar {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  overflow: hidden;
}
.video-still-bar span {
  display: block;
  height: 100%;
  background: rgba(255,255,255,0.55);
  border-radius: 100px;
}
.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--green-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(21, 128, 61, 0.35), 0 0 0 6px rgba(255,255,255,0.08);
  transition: background-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.play-btn svg { margin-left: 3px; }
.video-card:hover .play-btn { background: var(--green-hover); transform: scale(1.05); }
.video-time {
  position: absolute;
  right: 16px; bottom: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: #fff;
  background: rgba(0,0,0,0.55);
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

/* ─── Product grid ─── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.product-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}
.pc-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-primary);
}
.pc-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0;
  line-height: 1.25;
  color: var(--ink);
}
.pc-body {
  font-size: 15px;
  color: var(--ink-3);
  margin: 0;
  line-height: 1.55;
  flex: 1;
}

/* Product mock: compare table */
.pc-mock {
  background: var(--bg-subtle);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  margin-top: 8px;
}
.pc-mock-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 13.5px;
  color: var(--ink-2);
}
.pc-mock-header {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--ink-muted);
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  margin-bottom: 4px;
}
.pc-mock-row-win {
  background: var(--green-soft);
  color: #14532D;
  font-weight: 600;
}
.pc-mock-row-win .star {
  font-size: 11px;
  margin-left: 6px;
  font-weight: 500;
  font-family: var(--font-mono);
}

/* Reason card */
.pc-mock-reason .reason-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.pc-mock-reason .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-primary);
  box-shadow: 0 0 0 4px var(--green-soft);
}
.reason-title { font-weight: 600; font-size: 13px; color: var(--green-primary); font-family: var(--font-mono); letter-spacing: .02em; }
.reason-body {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.reason-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12.5px;
  color: var(--ink-3);
  font-family: var(--font-mono);
}

/* Alert card */
.pc-mock-alert {
  background: rgba(220, 38, 38, 0.06);
  border-color: rgba(220, 38, 38, 0.18);
}
.alert-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.alert-emoji { font-size: 18px; line-height: 1; color: var(--danger); }
.alert-headline {
  font-weight: 600;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: -0.005em;
}
.alert-headline .num { color: var(--danger); }
.alert-sub {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 4px;
}

/* ─── Features ─── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
  margin-top: 56px;
}
.feature { padding: 8px 0; }
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  margin-bottom: 20px;
}
.feature-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  color: var(--ink);
}
.feature-body {
  font-size: 15.5px;
  color: var(--ink-3);
  margin: 0;
  line-height: 1.55;
  max-width: 42ch;
}

/* ─── Testimonial ─── */
.section-quote { background: var(--bg-subtle); }
.pullquote {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.quote-mark {
  color: var(--green-primary);
  margin: 0 auto 16px;
}
.pullquote blockquote {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 24px;
  text-wrap: balance;
}
.q-num { font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.pullquote figcaption {
  font-size: 14px;
  color: var(--ink-muted);
  font-family: var(--font-mono);
}
.quote-note {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--ink-muted);
  opacity: 0.7;
}

/* ─── Pricing ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.price-card {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.price-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.price-card-reco {
  border-top: 2px solid var(--green-primary);
  box-shadow: 0 0 0 1px var(--green-primary) inset, var(--shadow-card);
}
.price-card-reco .price-head {
  background: var(--green-soft);
  margin: -28px -28px 0;
  padding: 28px;
  border-radius: 0;
}
.reco-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--green-primary);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  font-weight: 500;
}
.price-head { padding-bottom: 4px; }
.price-tier {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.price-amount .num {
  font-size: 36px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.price-unit {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-muted);
}
.price-sub {
  font-size: 13px;
  color: var(--ink-3);
}
.price-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-list li {
  font-size: 14px;
  color: var(--ink-2);
  position: relative;
  padding-left: 22px;
  line-height: 1.4;
}
.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--green-soft);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2315803D' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6L9 17l-5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}
.supplier-pill {
  margin: 48px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--green-soft);
  color: #14532D;
  border-radius: 100px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
}
.section-pricing > .container { display: flex; flex-direction: column; align-items: center; }
.section-pricing > .container > * { width: 100%; }
.section-pricing .supplier-pill { width: auto; }

/* ─── Close ─── */
.section-close .btn { margin-top: 16px; }
.section-close .section-heading { margin-left: auto; margin-right: auto; }
.section-close .section-sub { margin-bottom: 24px; }

/* ─── FAQ ─── */
.faq-wrap {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(24px, 5vw, 80px);
  padding-right: clamp(24px, 5vw, 80px);
}
.faq-wrap .section-heading { margin-bottom: 32px; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  list-style: none;
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .chev {
  color: var(--ink-muted);
  transition: transform var(--dur) var(--ease), color var(--dur) var(--ease);
  flex: none;
}
.faq-item[open] .chev {
  transform: rotate(180deg);
  color: var(--green-primary);
}
.faq-body {
  font-size: 15.5px;
  color: var(--ink-3);
  line-height: 1.6;
  padding-top: 14px;
  max-width: 68ch;
}

/* ─── Footer ─── */
.site-footer {
  background: var(--bg-subtle);
  border-top: 1px solid var(--line);
  padding: 64px 0 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
.footer-brand .logo { margin-bottom: 12px; }
.footer-tag {
  font-size: 13px;
  color: var(--ink-muted);
  margin: 0;
  max-width: 28ch;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer-h {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 12px;
}
.footer-cols ul { display: flex; flex-direction: column; gap: 8px; }
.footer-cols a {
  font-size: 14px;
  color: var(--ink-2);
  transition: color var(--dur) var(--ease);
}
.footer-cols a:hover { color: var(--ink); }
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  text-align: right;
}
.footer-copy {
  font-size: 12px;
  color: var(--ink-muted);
  margin: 0;
  font-family: var(--font-mono);
}
.socials { display: flex; gap: 14px; }
.socials a {
  color: var(--ink-muted);
  transition: color var(--dur) var(--ease);
}
.socials a:hover { color: var(--ink); }

/* ─── Reveal animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ─── Hero carousel ─── */
.hero-carousel {
  display: block;
  position: relative;
  width: 100%;
  min-width: 0; /* critical — allow grid cell to shrink below content size */
}
.carousel-mask {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* Soft fade at left/right edges so cards drift in/out elegantly */
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 12px 4px;
  animation: carousel-drift 60s linear infinite;
  will-change: transform;
}
.hero-carousel:hover .carousel-track { animation-play-state: paused; }

.carousel-card {
  flex: 0 0 380px;
  width: 380px;
  transform: none; /* override .mock-card-tilt if applied elsewhere */
}
.carousel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

/* Translate by exactly half the track (6 cards * (380px + 20px gap) = 2400px) to loop seamlessly */
@keyframes carousel-drift {
  from { transform: translateX(0); }
  to   { transform: translateX(-2400px); }
}
@media (prefers-reduced-motion: reduce) {
  .carousel-track { animation: none; }
}

.carousel-caption {
  margin-top: 16px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  text-transform: uppercase;
}

/* ─── Responsive ─── */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: none; }
  .mock-card-tilt { transform: rotate(1deg); max-width: 480px; }
  .hero-sub { max-width: none; }
  .carousel-card { flex: 0 0 340px; width: 340px; }
  @keyframes carousel-drift {
    from { transform: translateX(0); }
    to   { transform: translateX(-2160px); } /* 6 * (340 + 20) */
  }

  .two-col { grid-template-columns: 1fr; gap: 24px; }

  .product-grid { grid-template-columns: 1fr; gap: 16px; }

  .feature-grid { grid-template-columns: 1fr; gap: 28px; }

  .pricing-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-right { align-items: flex-start; text-align: left; }
}

@media (max-width: 720px) {
  .primary-nav, .header-actions { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero { min-height: auto; padding-top: 40px; }
  .hero-headline { font-size: clamp(34px, 9vw, 44px); }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .mock-card-tilt { transform: rotate(0deg); }
  .mock-head { padding: 10px 12px; }
  .mock-body { padding: 16px; }
  .carousel-card { flex: 0 0 300px; width: 300px; }
  @keyframes carousel-drift {
    from { transform: translateX(0); }
    to   { transform: translateX(-1920px); } /* 6 * (300 + 20) */
  }
  .carousel-caption { font-size: 10.5px; padding: 0 16px; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-cta .btn { width: 100%; white-space: normal; font-size: 15px; padding: 14px 18px; }
  .hero-cta .link-arrow { align-self: center; }
  .hero-desc { font-size: 15px; max-width: 100%; }
  .hero { overflow: hidden; }
  .container { padding-left: 20px; padding-right: 20px; }
}

/* Footer trademark disclaimer */
.footer-disclaimer {
  margin-top: 12px;
  max-width: 520px;
  font-size: 11px;
  line-height: 1.55;
  color: #6b6b6b;
  letter-spacing: 0.01em;
}


/* Vendor name blur — real names, visually unreadable */
.vendor-blur {
  filter: blur(4px);
  -webkit-filter: blur(4px);
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
  letter-spacing: 0.02em;
}

/* Video modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.video-modal.is-open { display: flex; }
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 14, 10, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}
.video-modal-frame {
  position: relative;
  width: min(1040px, 100%);
  max-height: 92vh;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}
.video-modal-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}
.video-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.92);
  color: #111;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.video-modal-close:hover { background: #fff; }

/* Mobile nav Sign in link */
.mobile-nav-signin {
  display: block;
  padding: 10px 0;
  font-size: 15px;
  color: #374151;
  text-decoration: none;
  border-top: 1px solid rgba(0,0,0,0.06);
  margin-top: 8px;
  padding-top: 18px;
}
.mobile-nav-signin:hover { color: #111; }
