/* =========================================================
   ODYSSEY APEX | site styles
   Dark operator aesthetic. Gradient pulled from the logo.
   ========================================================= */

:root {
  /* Brand colors */
  --brand-orange:  #f56b1f;
  --brand-amber:   #f59e2c;
  --brand-cyan:    #1ca7c4;
  --brand-teal:    #0f7a91;
  --brand-magenta: #d63384;
  --brand-purple:  #6b3fd4;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #f56b1f 0%, #f59e2c 35%, #1ca7c4 100%);
  --grad-warm:    linear-gradient(135deg, #f56b1f 0%, #d63384 100%);
  --grad-cool:    linear-gradient(135deg, #1ca7c4 0%, #0f7a91 100%);
  --grad-full:    linear-gradient(135deg, #f56b1f 0%, #d63384 40%, #1ca7c4 100%);

  /* Base palette - LIGHT theme */
  --bg-0: #fafaf7;
  --bg-1: #f4f3ee;
  --bg-2: #ecebe5;
  --bg-3: #e4e2db;
  --line: rgba(20, 25, 40, 0.08);
  --line-strong: rgba(20, 25, 40, 0.16);

  --text: #1a2238;
  --text-dim: #56607a;
  --text-mute: #676e82;

  /* Type */
  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Spacing */
  --max-w: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-0);
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .2s ease, color .2s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* =========================================================
   BACKGROUND CANVAS
   ========================================================= */
.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--bg-0);
  overflow: hidden;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20, 25, 40, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 25, 40, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.35;
  pointer-events: none;
  animation: glowDrift 22s ease-in-out infinite alternate;
}
.bg-glow-1 {
  width: 700px; height: 700px;
  background: var(--brand-orange);
  top: -200px; left: -200px;
  opacity: 0.10;
}
.bg-glow-2 {
  width: 800px; height: 800px;
  background: var(--brand-cyan);
  top: 30%; right: -300px;
  opacity: 0.10;
  animation-delay: -8s;
}
.bg-glow-3 {
  width: 700px; height: 700px;
  background: var(--brand-amber);
  bottom: -200px; left: 30%;
  opacity: 0.08;
  animation-delay: -15s;
}

@keyframes glowDrift {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(80px, 60px) scale(1.1); }
  100% { transform: translate(-40px, 100px) scale(0.95); }
}

.bg-noise {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  background: rgba(250, 250, 247, 0.75);
  border-bottom: 1px solid var(--line);
  transition: background .3s ease, border-color .3s ease;
}
.site-header.scrolled {
  background: rgba(250, 250, 247, 0.94);
  border-bottom-color: var(--line-strong);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(245, 107, 31, 0.25));
}
.logo-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
}
.logo-text-accent {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-primary {
  display: flex;
  gap: 36px;
  margin-left: auto;
  margin-right: 24px;
}
.nav-primary a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  position: relative;
  padding: 4px 0;
}
.nav-primary a:hover { color: var(--text); }
.nav-primary a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--grad-primary);
  transition: width .25s ease;
}
.nav-primary a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  transition: transform .3s ease, opacity .2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 4px;
  border-top: 1px solid var(--line);
  background: var(--bg-1);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.nav-mobile a.btn { border: none; margin-top: 12px; text-align: center; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-sm  { padding: 10px 18px; font-size: 13px; }
.btn-lg  { padding: 16px 30px; font-size: 15px; }
.btn-xl  { padding: 20px 38px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 4px 18px rgba(245, 107, 31, 0.22);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(245, 107, 31, 0.32);
}

.btn-secondary {
  background: #ffffff;
  border-color: var(--line-strong);
  color: var(--text);
  box-shadow: 0 1px 3px rgba(20,25,40,0.04);
}
.btn-secondary:hover {
  background: #ffffff;
  border-color: var(--brand-cyan);
  box-shadow: 0 4px 14px rgba(20,25,40,0.08);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: var(--brand-orange);
  background: rgba(245, 107, 31, 0.06);
}

/* =========================================================
   TYPOGRAPHY HELPERS
   ========================================================= */
.grad-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head {
  margin-bottom: 56px;
  max-width: 760px;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--brand-orange);
  margin-bottom: 16px;
  padding: 6px 12px;
  border: 1px solid rgba(245, 107, 31, 0.3);
  border-radius: 4px;
  background: rgba(245, 107, 31, 0.08);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 68px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: 0.005em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 600px;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding: 120px 0 80px;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  margin-bottom: 32px;
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(20,25,40,0.04);
}
.hero-eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #1f9d4a;
  box-shadow: 0 0 12px rgba(31, 157, 74, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50%     { opacity: 0.4; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 128px);
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: 0.005em;
  margin-bottom: 32px;
  position: relative;
}
.hero-cursor {
  display: inline-block;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: blink 1.1s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.hero-sub {
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
  color: var(--text-dim);
  max-width: 680px;
  margin-bottom: 44px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 80px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-marquee {
  margin-top: 80px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  background: rgba(20, 25, 40, 0.02);
}
.marquee-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--text-mute);
}
.marquee-track span {
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   SECTIONS GENERAL
   ========================================================= */
section { padding: 100px 0; position: relative; }

.reveal-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal-section.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   LEAKS
   ========================================================= */
.leaks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.leak-card {
  background: linear-gradient(180deg, #ffffff, #fbfaf5);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 36px 32px;
  position: relative;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  box-shadow: 0 2px 8px rgba(20, 25, 40, 0.04);
}
.leak-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 107, 31, 0.35);
  box-shadow: 0 12px 32px rgba(20, 25, 40, 0.08);
}
.leak-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 1px;
  background: var(--grad-primary);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.leak-card:hover::before { opacity: 1; }

.leak-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--brand-orange);
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
.leak-card h3 {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.01em;
  font-weight: 400;
  margin-bottom: 16px;
}
.leak-stat {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--text);
}
.leak-card p:last-child {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* =========================================================
   PRODUCTS
   ========================================================= */
.products .section-head { margin-bottom: 56px; }

.product-card {
  background: linear-gradient(180deg, #ffffff, #fbfaf5);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 48px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 2px 12px rgba(20, 25, 40, 0.05);
}
.product-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: 0 12px 36px rgba(20, 25, 40, 0.09);
}
.product-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 6px; height: 100%;
  background: var(--grad-primary);
  transition: width .4s ease;
}
.product-ledger::after  { background: linear-gradient(180deg, #f56b1f, #1ca7c4); }
.product-insight::after { background: linear-gradient(180deg, #f56b1f, #0f7a91); }
.product-forecast::after { background: linear-gradient(180deg, #1ca7c4, #0f7a91); }

.product-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.product-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
}
.product-status {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  padding: 5px 10px;
  border-radius: 4px;
  background: rgba(31, 157, 74, 0.12);
  color: #1f9d4a;
  border: 1px solid rgba(31, 157, 74, 0.3);
}
.product-status.status-soon {
  background: rgba(245, 107, 31, 0.10);
  color: var(--brand-orange);
  border-color: rgba(245, 107, 31, 0.3);
}

.product-name {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: 0.005em;
  margin-bottom: 20px;
  max-width: 740px;
}
.product-pitch {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 820px;
}

.product-bullets {
  list-style: none;
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
}
.product-bullets li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}
.product-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 14px;
  background: var(--grad-primary);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.product-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.product-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.price-num {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1;
}
.price-per {
  font-size: 15px;
  color: var(--text-mute);
}

/* =========================================================
   DIFFERENTIATOR
   ========================================================= */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.diff-col {
  padding: 36px 32px;
  background: #ffffff;
}
.diff-col + .diff-col { border-left: 1px solid var(--line); }
.diff-col h4 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.01em;
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--text-dim);
}
.diff-col-us {
  background: linear-gradient(180deg, rgba(245, 107, 31, 0.05), rgba(28, 167, 196, 0.05));
  position: relative;
}
.diff-col-us h4 {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 400;
}
.diff-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.diff-list li {
  font-size: 15px;
  line-height: 1.5;
  padding-left: 28px;
  position: relative;
}
.diff-bad li {
  color: var(--text-mute);
}
.diff-bad li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #c44545;
  font-weight: 700;
  opacity: 0.7;
}
.diff-good li {
  color: var(--text);
}
.diff-good li::before {
  content: '✓';
  position: absolute;
  left: 0;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

/* =========================================================
   PRICING
   ========================================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: linear-gradient(180deg, #ffffff, #fbfaf5);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  box-shadow: 0 2px 10px rgba(20, 25, 40, 0.05);
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 12px 32px rgba(20, 25, 40, 0.09);
}
.price-card-feature {
  border-color: var(--brand-cyan);
  background: linear-gradient(180deg, rgba(28, 167, 196, 0.04), rgba(245, 107, 31, 0.03));
  transform: scale(1.02);
  box-shadow: 0 8px 28px rgba(28, 167, 196, 0.12);
}
.price-card-feature:hover {
  transform: scale(1.02) translateY(-4px);
}
.price-card-feature-flag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-primary);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  padding: 5px 14px;
  border-radius: 4px;
  color: #fff;
}
.price-card-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.price-card-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 12px;
}
.price-card-num {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  letter-spacing: 0.005em;
}
.price-card-per {
  font-size: 16px;
  color: var(--text-mute);
}
.price-card-desc {
  font-size: 15px;
  color: var(--text-dim);
  margin-bottom: 24px;
}
.price-card-list {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}
.price-card-list li {
  font-size: 14px;
  padding: 10px 0 10px 26px;
  position: relative;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}
.price-card-list li::before {
  content: '+';
  position: absolute;
  left: 0;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  font-size: 18px;
  top: 8px;
}

/* =========================================================
   WHO IT'S FOR
   ========================================================= */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.who-card {
  background: linear-gradient(180deg, #ffffff, #fbfaf5);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 40px 36px;
}
.who-card h3, .who-card h4 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.01em;
  font-weight: 400;
  margin-bottom: 24px;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.trade-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
}
.trade-list li {
  font-size: 15px;
  padding: 8px 14px;
  background: #fbfaf5;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.trade-list li:hover {
  border-color: rgba(245, 107, 31, 0.4);
  color: var(--text);
  background: #ffffff;
}
.fit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fit-list li {
  font-size: 15px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text-dim);
}
.fit-list li strong {
  color: var(--text);
  font-weight: 600;
  margin-right: 8px;
}
.fit-list li:last-child { border-bottom: none; }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: step;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 32px 36px;
  background: #ffffff;
  transition: background .25s ease;
}
.step + .step { border-top: 1px solid var(--line); }
.step:hover { background: rgba(245, 107, 31, 0.05); }

.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  flex-shrink: 0;
  min-width: 80px;
}
.step-body h3, .step-body h4 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}
.step-body p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* =========================================================
   TRUST
   ========================================================= */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.trust-item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .2s ease, transform .2s ease;
}
.trust-item:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}
.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  background: var(--grad-primary);
  letter-spacing: 0.05em;
}
.trust-item h3, .trust-item h5 {
  font-size: 16px;
  font-weight: 600;
}
.trust-item p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
}

/* =========================================================
   PROMISE
   ========================================================= */
.promise-box {
  background:
    radial-gradient(circle at 20% 20%, rgba(245, 107, 31, 0.08), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(28, 167, 196, 0.08), transparent 60%),
    linear-gradient(180deg, #ffffff, #fbfaf5);
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  padding: 64px 56px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(20, 25, 40, 0.05);
}
.promise-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: 0.005em;
  font-weight: 400;
  margin: 16px 0 36px;
}
.promise-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: left;
}
.promise-list li {
  font-size: 18px;
  font-weight: 500;
  padding: 18px 24px;
  background: #ffffff;
  border-left: 3px solid;
  border-image: var(--grad-primary) 1;
  border-radius: 0 8px 8px 0;
}
.promise-tail {
  font-size: 16px;
  color: var(--text-dim);
  font-style: italic;
}

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta {
  text-align: center;
  padding: 120px 0;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.95;
  letter-spacing: 0.005em;
  font-weight: 400;
  margin-bottom: 24px;
}
.cta-sub {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: #1a2238;
  border-top: 1px solid var(--line);
  padding: 64px 0 28px;
  color: #e8e8ec;
}
.site-footer .logo-text { color: #e8e8ec; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand .logo-link { margin-bottom: 16px; }
.footer-tag {
  font-size: 14px;
  color: rgba(232,232,236,0.7);
  line-height: 1.55;
  max-width: 360px;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: rgba(232,232,236,0.7);
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.footer-social img {
  width: 18px;
  height: 18px;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.78;
  transition: opacity .2s ease;
}
.footer-social a:hover {
  color: #fff;
  background: var(--grad-primary);
  border-color: transparent;
}
.footer-social a:hover img {
  opacity: 1;
}
.footer-col h2, .footer-col h3, .footer-col h6 {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(232,232,236,0.55);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(232,232,236,0.7);
  padding: 6px 0;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(232,232,236,0.55);
}
.footer-veteran {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  background: rgba(255,255,255,0.04);
  transition: border-color .2s ease, background .2s ease;
}
.footer-veteran:hover {
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.07);
}
.footer-veteran img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-veteran span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(232,232,236,0.7);
  line-height: 1.2;
}
.footer-veteran strong {
  color: #fff;
  font-weight: 600;
  display: block;
}
.footer-legal {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-legal a {
  color: rgba(232,232,236,0.7);
  font-size: 13px;
}
.footer-legal a:hover { color: #fff; }
.footer-sep { color: rgba(232,232,236,0.4); }

/* =========================================================
   LEGAL PAGES
   ========================================================= */
.legal-page {
  padding: 120px 0 80px;
  max-width: 860px;
  margin: 0 auto;
}
.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1;
  margin-bottom: 12px;
}
.legal-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--text-mute);
  text-transform: uppercase;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.legal-page h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin: 48px 0 16px;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.legal-page h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 28px 0 10px;
  color: var(--text);
}
.legal-page p, .legal-page li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.legal-page strong { color: var(--text); }
.legal-page ul, .legal-page ol {
  padding-left: 22px;
  margin-bottom: 16px;
}
.legal-page li { margin-bottom: 8px; }
.legal-page a {
  color: var(--brand-orange);
  text-decoration: underline;
  text-decoration-color: rgba(245, 107, 31, 0.4);
}
.legal-page a:hover { text-decoration-color: currentColor; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .nav-primary, .header-inner > .btn { display: none; }
  .nav-toggle { display: flex; }

  .hero { padding: 80px 0 40px; }
  .hero-stats { grid-template-columns: 1fr; gap: 24px; }

  .leaks-grid,
  .pricing-grid,
  .trust-grid,
  .who-grid {
    grid-template-columns: 1fr;
  }

  .product-card { padding: 32px 24px; }
  .product-bullets { grid-template-columns: 1fr; }
  .product-foot { flex-direction: column; align-items: flex-start; }

  .diff-grid { grid-template-columns: 1fr; }
  .diff-col + .diff-col { border-left: none; border-top: 1px solid var(--line); }

  .price-card-feature { transform: none; }
  .price-card-feature:hover { transform: translateY(-4px); }

  .step { flex-direction: column; gap: 8px; padding: 24px; }
  .step-num { min-width: auto; font-size: 36px; }

  .promise-box { padding: 40px 28px; }
  .promise-list li { font-size: 16px; padding: 14px 18px; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }

  section { padding: 64px 0; }
}

@media (max-width: 540px) {
  .container { padding: 0 18px; }
  .header-inner { padding: 12px 18px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons .btn { width: 100%; }

  .trade-list { grid-template-columns: 1fr; }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-section { opacity: 1; transform: none; }
}

/* =========================================================
   CALCULATOR | LEAD MAGNET
   ========================================================= */
.calc-shell {
  background: linear-gradient(180deg, #ffffff, #fbfaf5);
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  overflow: hidden;
}
.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
}
.calc-inputs {
  padding: 48px 44px;
  border-right: 1px solid var(--line);
  background: #f4f3ee;
}
.calc-output {
  padding: 48px 44px;
  background:
    radial-gradient(circle at top right, rgba(28, 167, 196, 0.08), transparent 60%),
    radial-gradient(circle at bottom left, rgba(245, 107, 31, 0.06), transparent 60%);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.calc-field {
  margin-bottom: 28px;
}
.calc-field:last-child { margin-bottom: 0; }
.calc-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.calc-input-wrap {
  display: flex;
  align-items: center;
  background: #f4f3ee;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 4px 14px;
  transition: border-color .2s ease;
}
.calc-input-wrap:focus-within {
  border-color: var(--brand-cyan);
}
.calc-prefix, .calc-suffix {
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
}
.calc-input-wrap input[type="number"] {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 0.005em;
  padding: 8px 10px;
  outline: none;
  -moz-appearance: textfield;
  appearance: textfield;
  width: 100%;
}
.calc-input-wrap input[type="number"]::-webkit-outer-spin-button,
.calc-input-wrap input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="range"] {
  width: 100%;
  margin-top: 14px;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 4px;
  background: rgba(20, 25, 40, 0.12);
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--grad-primary);
  cursor: pointer;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 1px var(--brand-cyan), 0 2px 6px rgba(20,25,40,0.15);
}
input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand-cyan);
  cursor: pointer;
  border: 2px solid #ffffff;
}
.calc-helper {
  font-size: 12px;
  color: var(--text-mute);
  margin-top: 8px;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}
.calc-output-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.calc-output-item:last-of-type { border-bottom: none; }
.calc-output-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-mute);
  margin-bottom: 6px;
}
.calc-output-value {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1;
  letter-spacing: 0.005em;
}
.calc-output-emphasis .calc-output-value {
  font-size: 52px;
}
.calc-disclaimer {
  font-size: 11px;
  color: var(--text-mute);
  font-style: italic;
  margin-top: 8px;
  line-height: 1.5;
}

.calc-capture {
  padding: 36px 44px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  align-items: center;
  background: #f4f3ee;
}
.calc-capture-text h3, .calc-capture-text h4 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.calc-capture-text p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
}
.calc-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.calc-form input[type="text"],
.calc-form input[type="email"] {
  background: #f4f3ee;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color .2s ease;
}
.calc-form input:focus { border-color: var(--brand-cyan); }
.calc-form input::placeholder { color: var(--text-mute); }
.calc-form input[type="text"]:nth-of-type(2) {
  grid-column: span 1;
}
.calc-form button {
  grid-column: span 2;
}
.calc-success {
  grid-column: 1 / -1;
  padding: 16px 20px;
  background: rgba(31, 157, 74, 0.08);
  border: 1px solid rgba(31, 157, 74, 0.3);
  border-radius: 8px;
  font-size: 14px;
  color: #166934;
}

/* =========================================================
   PROOF (math, no testimonials)
   ========================================================= */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.proof-card {
  background: linear-gradient(180deg, #ffffff, #fbfaf5);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 36px 28px;
  text-align: center;
}
.proof-card-feature {
  border-color: var(--brand-cyan);
  background:
    radial-gradient(circle at center, rgba(28, 167, 196, 0.10), transparent 70%),
    linear-gradient(180deg, #ffffff, #fbfaf5);
  transform: scale(1.02);
  box-shadow: 0 8px 28px rgba(28, 167, 196, 0.12);
}
.proof-card {
  box-shadow: 0 2px 10px rgba(20, 25, 40, 0.04);
}
.proof-stat {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  margin-bottom: 14px;
}
.proof-label {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
}
.proof-tail {
  text-align: center;
  padding: 24px;
  border-top: 1px solid var(--line);
}
.proof-tail p {
  font-size: 18px;
  color: var(--text-dim);
}
.proof-tail strong {
  color: var(--text);
  font-weight: 600;
}

/* =========================================================
   FOUNDER
   ========================================================= */
.founder-box {
  background:
    radial-gradient(circle at 0% 0%, rgba(245, 107, 31, 0.10), transparent 45%),
    radial-gradient(circle at 100% 100%, rgba(28, 167, 196, 0.10), transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(245, 158, 44, 0.04), transparent 60%),
    linear-gradient(180deg, #ffffff, #fbfaf5);
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(20, 25, 40, 0.06);
}
.founder-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--grad-primary);
  opacity: 0.5;
}
.founder-box::after {
  content: '"';
  position: absolute;
  top: 24px;
  right: 36px;
  font-family: var(--font-display);
  font-size: 220px;
  line-height: 0.7;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}
.founder-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1;
  margin: 12px 0 32px;
  position: relative;
  z-index: 1;
}
.founder-body {
  margin-bottom: 36px;
  max-width: 880px;
  position: relative;
  z-index: 1;
}
.founder-quote {
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.6;
  color: var(--text);
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-left: 24px;
  border-left: 3px solid;
  border-image: var(--grad-primary) 1;
}
.founder-quote-second {
  border-left: none;
  border-image: none;
  padding-left: 24px;
  border-left: 3px solid rgba(77, 219, 255, 0.4);
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--text-dim);
  font-style: normal;
}
.founder-name {
  font-size: 15px;
  color: var(--text-dim);
  position: relative;
  z-index: 1;
}
.founder-name strong { color: var(--text); }
.founder-sep {
  color: var(--brand-orange);
  margin: 0 8px;
}
.founder-creds {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 1;
}
.cred {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cred-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-mute);
}
.cred-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

/* =========================================================
   ROADMAP + WAITLIST
   ========================================================= */
.roadmap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}
.roadmap-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px 28px;
  transition: border-color .25s ease, transform .25s ease;
}
.roadmap-card:hover {
  border-color: rgba(28, 167, 196, 0.35);
  transform: translateY(-3px);
}
.roadmap-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.roadmap-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.05;
  margin-bottom: 12px;
}
.roadmap-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
  margin-bottom: 16px;
}
.roadmap-cta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-cyan);
  transition: color .2s ease;
}
.roadmap-cta:hover { color: var(--brand-orange); }

.waitlist {
  background: #f4f3ee;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  align-items: center;
}
.waitlist-text h4 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 6px;
}
.waitlist-text p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}
.waitlist-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
.waitlist-form input {
  background: #f4f3ee;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color .2s ease;
}
.waitlist-form input:focus { border-color: var(--brand-cyan); }
.waitlist-form input::placeholder { color: var(--text-mute); }
.waitlist-success {
  grid-column: 1 / -1;
  padding: 14px 18px;
  background: rgba(31, 157, 74, 0.08);
  border: 1px solid rgba(31, 157, 74, 0.3);
  border-radius: 8px;
  font-size: 14px;
  color: #166934;
}

/* =========================================================
   PRODUCT CARD SOLO (homepage)
   ========================================================= */
.product-card-solo {
  max-width: 920px;
  margin: 0 auto;
}
.product-foot-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* =========================================================
   LEDGER PAGE: SEQUENCE, FEATURES, FAQ
   ========================================================= */
.hero-ledger { padding: 100px 0 80px; }

.sequence-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.seq-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px 20px;
  transition: border-color .25s ease, transform .25s ease;
}
.seq-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}
.seq-stage {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.seq-tone {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  padding: 4px 8px;
  border-radius: 4px;
  margin-bottom: 14px;
  display: inline-block;
  text-transform: uppercase;
}
.seq-tone-soft {
  color: #1f9d4a;
  background: rgba(31, 157, 74, 0.10);
  border: 1px solid rgba(31, 157, 74, 0.3);
}
.seq-tone-mid {
  color: var(--brand-orange);
  background: rgba(245, 107, 31, 0.10);
  border: 1px solid rgba(245, 107, 31, 0.3);
}
.seq-tone-firm {
  color: #c44545;
  background: rgba(196, 69, 69, 0.10);
  border: 1px solid rgba(196, 69, 69, 0.3);
}
.seq-card p {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.55;
  font-style: italic;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px 22px;
  transition: border-color .25s ease;
}
.feature:hover { border-color: var(--line-strong); }
.feature h3, .feature h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}
.feature p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.55;
}

.pricing-grid-single {
  grid-template-columns: 1fr;
  max-width: 480px;
  margin: 0 auto;
}
.pricing-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 24px;
}
.pricing-note a {
  color: var(--brand-cyan);
  text-decoration: underline;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0;
  transition: border-color .2s ease;
}
.faq-item[open] {
  border-color: var(--line-strong);
}
.faq-item summary {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--brand-cyan);
  transition: transform .2s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
}

/* =========================================================
   RESPONSIVE OVERRIDES FOR NEW SECTIONS
   ========================================================= */
@media (max-width: 980px) {
  .calc-grid { grid-template-columns: 1fr; }
  .calc-inputs { border-right: none; border-bottom: 1px solid var(--line); padding: 32px 24px; }
  .calc-output { padding: 32px 24px; }
  .calc-capture { grid-template-columns: 1fr; padding: 28px 24px; }
  .calc-form { grid-template-columns: 1fr; }
  .calc-form button { grid-column: 1; }

  .proof-grid { grid-template-columns: 1fr; }
  .proof-card-feature { transform: none; }

  .founder-box { padding: 36px 24px; }
  .founder-creds { grid-template-columns: 1fr 1fr; }

  .roadmap-grid { grid-template-columns: 1fr; }
  .waitlist { grid-template-columns: 1fr; padding: 24px; }
  .waitlist-form { grid-template-columns: 1fr; }

  .sequence-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .calc-input-wrap input[type="number"] { font-size: 26px; }
  .calc-output-value { font-size: 28px; }
  .calc-output-emphasis .calc-output-value { font-size: 36px; }
  .proof-stat { font-size: 56px; }
  .founder-creds { grid-template-columns: 1fr; }
  .sequence-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .product-foot-actions { width: 100%; flex-direction: column; }
  .product-foot-actions .btn { width: 100%; }
}

/* =========================================================
   PRODUCTS PAGE (products.html)
   ========================================================= */

/* Active nav state */
.nav-primary a.nav-active {
  color: var(--brand-orange);
  font-weight: 600;
}

/* Product grid on /products.html (3 columns) */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.product-grid .product-card {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}

.product-grid .product-name {
  font-family: var(--font-display);
  font-size: 38px;
  letter-spacing: 0.02em;
  color: var(--text);
  margin: 12px 0 8px 0;
  line-height: 1.05;
}

.product-grid .product-line {
  font-size: 15px;
  font-weight: 600;
  color: var(--brand-orange);
  margin-bottom: 16px;
}

.product-grid .product-body {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-grid .product-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.product-grid .product-bullets li {
  font-size: 14px;
  color: var(--text);
  padding: 8px 0 8px 22px;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.product-grid .product-bullets li:last-child {
  border-bottom: none;
}

.product-grid .product-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 12px;
  height: 12px;
  background: var(--grad-primary);
  border-radius: 3px;
}

.product-grid .product-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  gap: 12px;
  flex-wrap: wrap;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.product-price-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--text);
}

.product-price-per {
  font-size: 13px;
  color: var(--text-dim);
}

/* Platform flow (how the platform works) */
.how-platform .section-head { margin-bottom: 48px; }

.platform-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.platform-step {
  background: linear-gradient(180deg, #ffffff, #fbfaf5);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
}

.platform-step-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--text-mute);
  margin-bottom: 16px;
}

.platform-step h3, .platform-step h4 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.platform-step p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  margin: 0;
}

/* Pricing 4-column for products page */
.pricing-grid-quad {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pricing-grid-quad .price-card {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
}

.pricing-grid-quad .price-card-feature {
  background: linear-gradient(180deg, #ffffff, #fff7ef);
  border: 2px solid var(--brand-orange);
  box-shadow: 0 12px 32px rgba(245, 107, 31, 0.12);
  transform: scale(1.02);
}

.pricing-grid-quad .price-card-num {
  font-family: var(--font-display);
  font-size: 56px;
  letter-spacing: 0.01em;
  line-height: 1;
}

.pricing-grid-quad .price-card-list {
  margin-bottom: 20px;
}

.pricing-grid-quad .btn-block {
  margin-top: auto;
}

/* Pricing add-on (Profit Setup Service) */
.pricing-addon {
  margin-top: 40px;
  padding: 32px;
  background: linear-gradient(135deg, var(--bg-1), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.addon-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--brand-cyan);
  margin-bottom: 12px;
}

.pricing-addon h3, .pricing-addon h4 {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.02em;
  color: var(--text);
  margin: 0 0 12px 0;
}

.pricing-addon p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
  margin: 0;
}

/* Who grid (yes/no side by side) */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 16px;
}

.who-yes, .who-no {
  background: linear-gradient(180deg, #ffffff, #fbfaf5);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
}

.who-yes h3, .who-yes h4, .who-no h3, .who-no h4 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.02em;
  margin: 0 0 20px 0;
}

.who-yes h3, .who-yes h4 { color: #1f9d4a; }
.who-no h3, .who-no h4 { color: #b91c1c; }

.who-yes ul, .who-no ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.who-yes li, .who-no li {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.6;
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.who-yes li:last-child, .who-no li:last-child {
  border-bottom: none;
}

.who-yes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 10px;
  color: #1f9d4a;
  font-weight: 800;
  font-size: 16px;
}

.who-no li::before {
  content: '✕';
  position: absolute;
  left: 0;
  top: 10px;
  color: #b91c1c;
  font-weight: 800;
  font-size: 16px;
}

/* Responsive: products page */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: 1fr; gap: 20px; }
  .platform-flow { grid-template-columns: 1fr 1fr; }
  .pricing-grid-quad { grid-template-columns: 1fr 1fr; }
  .pricing-grid-quad .price-card-feature { transform: none; }
  .who-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .platform-flow { grid-template-columns: 1fr; }
  .pricing-grid-quad { grid-template-columns: 1fr; }
  .product-grid .product-name { font-size: 32px; }
  .pricing-addon { padding: 24px; }
  .pricing-addon h3, .pricing-addon h4 { font-size: 26px; }
}

/* =========================================================
   FREE DIAGNOSTIC MICROCOPY (added Aug 2026)
   ========================================================= */
.hero-cta-micro {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-mute, #8a92a8);
}
.hero-cta-micro a { color: var(--text-dim, #56607a); }
html { scroll-padding-top: 96px; }
@media (max-width: 640px) { html { scroll-padding-top: 76px; } }

/* =========================================================
   MANAGED AR, DONE FOR YOU TIER
   Navy authority card. The three subscription tiers above are
   light and busy on purpose; this one goes dark and quiet so it
   reads as a different kind of decision, not a fourth price box.
   ========================================================= */
.managed { position: relative; }
.managed-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 20px;
  padding: 56px 56px 44px;
  background:
    radial-gradient(120% 140% at 8% 0%, #24304f 0%, #1a2238 55%, #141b2d 100%);
  box-shadow: 0 30px 70px -30px rgba(16, 22, 40, 0.55);
  color: #ffffff;
}
/* Brand hairline along the top edge. One thin line does more for
   perceived quality than any amount of gradient fill. */
.managed-rule {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #f56b1f 0%, #f59e2c 32%, #1ca7c4 100%);
  z-index: 2;
}
/* Logo watermark. Bleeds off the right edge and sits under the text at
   low opacity so it reads as a printed mark on a document, not a sticker. */
.managed-mark {
  position: absolute;
  right: -110px;
  bottom: -90px;
  width: 560px;
  height: 560px;
  background: url("logo-mark.png") no-repeat center / contain;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}
.managed-card > *:not(.managed-mark) { position: relative; z-index: 1; }

.managed-top {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 56px;
  align-items: start;
}
.managed-eyebrow {
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--brand-amber, #f59e2c);
  margin-bottom: 18px;
}
.managed-title {
  font-family: var(--font-display, sans-serif);
  font-size: 54px;
  line-height: 0.98;
  letter-spacing: 0.015em;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 16px;
}
.managed-lede {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.45;
  color: #ffffff;
  margin: 0 0 14px;
}
.managed-body {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  max-width: 46ch;
}

/* Price panel. Framed rather than filled, so it reads as a spec sheet. */
.managed-panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 26px 24px;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(2px);
}
.managed-panel-tag {
  display: inline-block;
  font-family: var(--font-mono, monospace);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--brand-amber, #f59e2c);
  border: 1px solid rgba(245, 158, 44, 0.4);
  border-radius: 100px;
  padding: 5px 11px;
  margin-bottom: 18px;
}
.managed-price-num {
  font-family: var(--font-display, sans-serif);
  font-size: 58px;
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: #ffffff;
}
.managed-price-per {
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 10px;
}
.managed-panel-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
  margin: 20px 0 16px;
}
.managed-panel-note {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 20px;
}
.managed-btn {
  display: block;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  padding: 15px 18px;
  border-radius: 10px;
  background: var(--brand-orange, #f56b1f);
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease;
}
.managed-btn:hover { background: #e05f14; transform: translateY(-1px); }
.managed-panel-fine {
  font-size: 11.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.48);
  margin: 14px 0 0;
}

/* Three numbered steps. Hairline separators, no boxes. */
.managed-steps {
  list-style: none;
  margin: 48px 0 0;
  padding: 36px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.managed-step { position: relative; }
.managed-step + .managed-step::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.managed-step-n {
  display: block;
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--brand-cyan, #1ca7c4);
  margin-bottom: 12px;
}
.managed-step h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: #ffffff;
  margin: 0 0 8px;
}
.managed-step p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
}
.managed-fine {
  margin: 36px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 980px) {
  .managed-top { grid-template-columns: 1fr; gap: 34px; }
  .managed-steps { grid-template-columns: 1fr; gap: 28px; padding-top: 28px; margin-top: 36px; }
  .managed-step + .managed-step::before { display: none; }
  .managed-title { font-size: 42px; }
}
@media (max-width: 640px) {
  .managed-card { padding: 34px 24px 30px; border-radius: 16px; }
  .managed-title { font-size: 34px; }
  .managed-lede { font-size: 17px; }
  .managed-price-num { font-size: 46px; }
  .managed-mark { width: 380px; height: 380px; right: -130px; bottom: -110px; opacity: 0.05; }
}

/* =========================================================
   CENTERED BRAND WATERMARK
   Sits inside the fixed .bg-canvas, so it holds the centre of the
   viewport while the page scrolls past it. Opacity is deliberately
   low: a watermark you consciously notice is competing with the copy.
   ========================================================= */
.bg-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(72vw, 840px);
  aspect-ratio: 1524 / 1069;
  background: url("logo-mark.png") no-repeat center / contain;
  opacity: 0.04;
  pointer-events: none;
}
@media (max-width: 720px) {
  .bg-mark { width: 118vw; opacity: 0.035; }
}
@media (prefers-reduced-motion: reduce) {
  .bg-glow { animation: none; }
}

/* =========================================================
   HEADER REFINEMENT
   Five nav items, never wrapping. A header that wraps to two lines
   is the single loudest signal that nobody art directed the page.
   ========================================================= */
.header-inner {
  padding: 12px 24px;
  gap: 24px;
}
.site-header .logo-img {
  display: block;
  width: 34px;
  height: 24px;
  object-fit: contain;
  filter: none;
}
.logo-text {
  font-size: 19px;
  letter-spacing: -0.01em;
}
.nav-primary {
  gap: 30px;
  margin-right: 28px;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.nav-primary a {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text-dim);
}
.nav-primary a.active,
.nav-primary a.nav-active {
  color: var(--text);
  font-weight: 600;
}
/* The underline reads as a fine rule rather than a highlighter stroke. */
.nav-primary a::after { height: 1.5px; bottom: -4px; }
.nav-primary a.active::after,
.nav-primary a.nav-active::after { width: 100%; }

.site-header .btn-sm {
  padding: 9px 18px;
  font-size: 13.5px;
  letter-spacing: 0.01em;
}

@media (max-width: 1100px) {
  .nav-primary { gap: 22px; margin-right: 18px; }
  .nav-primary a { font-size: 13px; }
}
