/* ─────────────────────────────────────────────────────────────────────────
   Warser Marketing Site
   ───────────────────────────────────────────────────────────────────────── */

/* ── Variables ────────────────────────────────────────────────────────────── */
:root {
  --bg:       #F7F4EF;
  --dark:     #111009;
  --accent:   #E8890C;
  --text:     #1a1814;
  --muted:    #8a8480;
  --border:   #e0dbd2;
  --white:    #ffffff;
  --max-w:    1100px;

  --font-display: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --font-body:    system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ────────────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  /* Prevents any background bleed below the dark footer */
  background: var(--dark);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

a  { text-decoration: none; color: inherit; }
em { font-style: italic; }
blockquote { quotes: none; }

/* ── Navigation ───────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: 64px;
  border-bottom: 1px solid transparent;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    backdrop-filter 0.35s ease;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-wordmark {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.3px;
  color: #fff;
  transition: color 0.35s ease;
}
.nav.scrolled .nav-wordmark { color: var(--text); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-signin {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}
.nav.scrolled .nav-signin { color: var(--text); }
.nav-signin:hover { color: rgba(255,255,255,1); }
.nav.scrolled .nav-signin:hover { color: var(--text); }

.btn-nav-demo {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 16px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  transition: opacity 0.2s ease, transform 0.1s ease;
  white-space: nowrap;
}
.btn-nav-demo:hover  { opacity: 0.88; }
.btn-nav-demo:active { transform: scale(0.97); }

/* ── Hero: split layout ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--dark);
  overflow: hidden;
}

/* Warm amber radial glow */
.hero-glow {
  position: absolute;
  top: 0;
  left: 25%;
  transform: translateX(-50%);
  width: 800px;
  height: 700px;
  background: radial-gradient(
    ellipse at center,
    rgba(232, 137, 12, 0.08) 0%,
    rgba(232, 137, 12, 0.025) 45%,
    transparent 70%
  );
  pointer-events: none;
}

/* Fine pixel grid texture */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

/* Split container */
.hero-split {
  position: relative;
  z-index: 1;
  max-width: 1220px;
  margin: 0 auto;
  padding: 140px 60px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Left column */
.hero-left {
  display: flex;
  flex-direction: column;
}

/* Page-load fade-in */
.hero-content {
  animation: heroReveal 0.7s var(--ease-out) both;
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(232, 137, 12, 0.1);
  border: 1px solid rgba(232, 137, 12, 0.22);
  border-radius: 100px;
  padding: 5px 16px;
  margin-bottom: 36px;
  align-self: flex-start;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 400;
  letter-spacing: -2px;
  line-height: 1.05;
  color: #fff;
}

.hero-headline em {
  color: rgba(255, 255, 255, 0.88);
}

.hero-sub {
  font-size: 18px;
  color: #9a9690;
  font-weight: 400;
  line-height: 1.7;
  max-width: 460px;
  margin-top: 28px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 30px;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.2px;
  border-radius: 8px;
  transition: opacity 0.2s ease, transform 0.12s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn-primary:hover {
  opacity: 0.9;
  box-shadow: 0 8px 28px rgba(232, 137, 12, 0.35);
}
.btn-primary:active { transform: scale(0.97); }

.hero-link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s ease;
  white-space: nowrap;
}
.hero-link:hover { color: rgba(255, 255, 255, 0.8); }

.hero-nudge {
  font-size: 13px;
  color: #6a6660;
  margin-top: 20px;
  letter-spacing: 0.01em;
}

/* Right column */
.hero-right {
  display: flex;
  align-items: center;
}

/* Override browser-frame defaults inside hero-right */
.hero-right .browser-frame {
  margin: 0;
  max-width: 100%;
  width: 100%;
}

.hero-right .browser-body {
  height: 300px;
}

/* ── Logo strip ───────────────────────────────────────────────────────────── */
.logo-strip {
  background: var(--white);
  padding: 64px 40px;
  border-top: 1px solid #e0dbd2;
  border-bottom: 1px solid #e0dbd2;
}

.logo-strip-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6a6660;
  text-align: center;
  font-weight: 600;
  margin-bottom: 28px;
}

.logo-strip-row {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 56px;
}

.logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s ease;
}

.logo-item:hover {
  opacity: 0.75;
}

.logo-item span {
  font-size: 14px;
  font-weight: 500;
  color: #1a1814;
  white-space: nowrap;
}

/* ── Shared section structure ──────────────────────────────────────────────── */
.section {
  padding: 120px 40px;
}
.section-white    { background: var(--white); }
.section-sand     { background: var(--bg); }
.section-dark     { background: var(--dark); }
.section-features { background: #FDFCFA; }
.section-problem  { padding-top: 80px; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--accent);
  text-align: center;
}

.section-heading {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
  letter-spacing: -1.2px;
  line-height: 1.1;
  color: var(--text);
  text-align: center;
  margin-top: 16px;
}

.heading-narrow {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-sub {
  font-size: 18px;
  color: var(--muted);
  text-align: center;
  max-width: 520px;
  margin: 18px auto 0;
  line-height: 1.65;
}

/* ── Problem cards ────────────────────────────────────────────────────────── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 40px;
  min-height: 220px;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease;
}
.card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
  transform: translateY(-3px);
  border-color: #d4cfc6;
}

.card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 137, 12, 0.09);
  border-radius: 9px;
  margin-bottom: 20px;
}

.card-heading {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.25px;
  line-height: 1.3;
}

.card-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 12px;
}

/* ── How it works ─────────────────────────────────────────────────────────── */
.steps-wrapper {
  position: relative;
  margin-top: 80px;
}

/* Dashed connector line between step circles */
.steps-connector {
  position: absolute;
  top: 20px;
  left: 20%;
  right: 20%;
  height: 0;
  border-top: 2px dashed rgba(232, 137, 12, 0.28);
  pointer-events: none;
  z-index: 0;
}

.steps-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}

.step {
  position: relative;
  text-align: center;
}

.step-watermark {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-56%);
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 400;
  color: rgba(232, 137, 12, 0.06);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -4px;
}

.step-circle {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  margin: 0 auto;
  box-shadow: 0 4px 16px rgba(232, 137, 12, 0.3);
}

.step-heading {
  font-size: 19px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.25px;
  line-height: 1.3;
  margin-top: 22px;
  position: relative;
  z-index: 1;
}

.step-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

/* ── Feature rows: alternating split sections ─────────────────────────────── */
.feat-rows {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 96px;
}

.feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Reverse: text in DOM first but visually right */
.feat-row-reversed .feat-text { order: 2; }
.feat-row-reversed .feat-ui   { order: 1; }

.feat-text {
  display: flex;
  flex-direction: column;
}

.feat-heading {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -0.8px;
  line-height: 1.2;
  color: var(--text);
}

.feat-body {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 18px;
  max-width: 420px;
}

/* ── Feature UI frame (browser mock) ─────────────────────────────────────── */
.feat-frame {
  border-radius: 10px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.08),
    0 16px 48px rgba(0, 0, 0, 0.14);
  background: #161410;
}

.feat-bar {
  background: #1a1814;
  height: 36px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}

/* Padded body for request/leaver mocks */
.feat-body-pad {
  padding: 24px 28px 28px;
}

.feat-mock-title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: -0.1px;
  margin-bottom: 18px;
}

/* Interpretation card (feature 1) */
.interp-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.interp-row {
  display: flex;
  align-items: center;
  gap: 0;
}

.interp-key {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.28);
  width: 82px;
  flex-shrink: 0;
}

.interp-val {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  align-items: center;
  gap: 8px;
}

.interp-conf {
  display: flex;
  align-items: center;
  gap: 8px;
}

.interp-muted {
  color: rgba(255, 255, 255, 0.35);
}

/* Confidence dots */
.conf-dots {
  display: flex;
  align-items: center;
  gap: 3px;
}

.cdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: block;
  flex-shrink: 0;
}

.cdot-on {
  background: #4ade80;
}

.conf-label-text {
  font-size: 11px;
  color: #4ade80;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Mock action buttons */
.mock-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.mock-btn-primary {
  padding: 8px 16px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  cursor: default;
  font-family: var(--font-body);
}

.mock-btn-ghost {
  padding: 8px 14px;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  cursor: default;
  font-family: var(--font-body);
}

/* Leaver form mock (feature 2) */
.mock-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 22px;
}

.mock-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.mock-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.28);
}

.mock-input-row {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 8px 12px;
}

.mock-radios {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mock-radio {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: default;
  white-space: nowrap;
}

.mock-radio-active {
  color: rgba(255, 255, 255, 0.78);
}

.radio-circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  display: block;
  flex-shrink: 0;
}

.radio-circle-on {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: inset 0 0 0 2.5px #161410;
}

.mock-btn-danger {
  display: block;
  width: 100%;
  padding: 10px 20px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  cursor: default;
  text-align: center;
  font-family: var(--font-body);
}

/* Audit shell mock (feature 3) */
.feat-shell {
  display: flex;
  height: 270px;
}

.feat-sidebar {
  width: 140px;
  background: #1E1B17;
  flex-shrink: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
}

.feat-main {
  flex: 1;
  background: #161410;
  padding: 14px 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feat-main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.feat-export {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 3px 8px;
  cursor: default;
}

/* ── Stats ────────────────────────────────────────────────────────────────── */
.stats-section { padding: 100px 40px; }

.stats-quote {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.6;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 64px;
  gap: 0;
}

.stat {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 0 48px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -1.5px;
  line-height: 1;
  color: var(--accent);
}

.stat-label {
  font-size: 14px;
  color: #9a9690;
  margin-top: 10px;
  line-height: 1.4;
}

/* ── CTA section ──────────────────────────────────────────────────────────── */
.cta-section { padding: 120px 40px; }

.cta-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-heading {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--text);
}

.cta-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
  margin-top: 20px;
  line-height: 1.65;
}

.cta-inner .btn-primary {
  margin-top: 40px;
}

.cta-email {
  font-size: 14px;
  color: var(--muted);
  margin-top: 20px;
}

.inline-link {
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.inline-link:hover {
  border-color: var(--text);
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 48px 40px;
  border-top: 1px solid #252320;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 24px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-wordmark {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.3px;
  color: rgba(255, 255, 255, 0.85);
}

.footer-tagline {
  font-size: 13px;
  color: #6a6660;
  margin-top: 8px;
}

.footer-left  { display: flex; flex-direction: column; }
.footer-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.footer-link {
  font-size: 13px;
  color: #9a9690;
  transition: color 0.2s ease;
}
.footer-link:hover { color: rgba(255, 255, 255, 0.75); }

.footer-copy {
  font-size: 13px;
  color: #6a6660;
}

/* ── Section divider ─────────────────────────────────────────────────────── */
.section-divider {
  width: 200px;
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
  margin: 0 auto;
}

/* ── Pricing signal ───────────────────────────────────────────────────────── */
.pricing-signal {
  background: var(--white);
  padding: 48px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.pricing-text {
  font-size: 18px;
  color: var(--text);
  line-height: 1.6;
}

.pricing-sub {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
}

/* ── Early access pill ────────────────────────────────────────────────────── */
.early-access-wrap {
  text-align: center;
  margin-top: 48px;
}

.early-access-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(232, 137, 12, 0.12);
  color: var(--accent);
  border: 1px solid rgba(232, 137, 12, 0.3);
  border-radius: 24px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* ── Hero browser frame / product mockup ──────────────────────────────────── */
.browser-frame {
  max-width: 860px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 0 80px rgba(232, 137, 12, 0.12),
    0 32px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.browser-bar {
  background: #1a1814;
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}

.browser-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.bdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
}
.bdot-r { background: #FF5F57; }
.bdot-a { background: #FEBC2E; }
.bdot-g { background: #28C840; }

.browser-body {
  display: flex;
  height: 380px;
}

.mock-sidebar {
  width: 180px;
  background: #1E1B17;
  padding: 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.04);
}

.mock-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 6px;
}

.mock-brand-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: -0.2px;
}

.mock-nav {
  display: flex;
  flex-direction: column;
  padding: 4px 0;
}

.mock-nav-item {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  padding: 7px 16px;
  cursor: default;
  line-height: 1.3;
}

.mock-nav-active {
  color: rgba(255, 255, 255, 0.9);
  border-left: 2px solid #E8890C;
  padding-left: 14px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.03);
}

.mock-main {
  flex: 1;
  background: #161410;
  padding: 20px 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mock-page-title {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.2px;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.mock-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.mock-stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  padding: 10px 12px;
}

.mock-stat-amber {
  border-color: rgba(232, 137, 12, 0.3);
  background: rgba(232, 137, 12, 0.07);
}

.mock-stat-n {
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.5px;
  line-height: 1;
}

.mock-stat-amber .mock-stat-n { color: #E8890C; }

.mock-stat-l {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mock-table {
  width: 100%;
  border-collapse: collapse;
  flex: 1;
}

.mock-table th {
  text-align: left;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.28);
  padding: 0 12px 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mock-table td {
  padding: 9px 12px 9px 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  white-space: nowrap;
}

.mock-table tr:last-child td { border-bottom: none; }

.mock-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 2px 7px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
}

.mock-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 100px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.mock-badge-pending {
  background: rgba(232, 137, 12, 0.15);
  color: #E8890C;
  border: 1px solid rgba(232, 137, 12, 0.25);
}

.mock-badge-approved {
  background: rgba(34, 197, 94, 0.1);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.mock-time {
  color: rgba(255, 255, 255, 0.28) !important;
  font-size: 11px !important;
}

/* ── Scroll-reveal animations ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s var(--ease-out),
    transform 0.55s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-split {
    padding: 120px 48px 80px;
    gap: 48px;
  }

  .hero-headline {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-inner { padding: 0 24px; }
  .nav-signin { display: none; }

  /* Hero */
  .hero-split {
    grid-template-columns: 1fr;
    padding: 110px 24px 72px;
    gap: 48px;
  }
  .hero-right { display: none; }
  .hero-headline {
    font-size: 40px;
    letter-spacing: -1.2px;
  }
  .hero-label { align-self: flex-start; }
  .hero-sub {
    font-size: 17px;
    margin-top: 22px;
    max-width: 100%;
  }
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 36px;
  }
  .btn-primary {
    height: 50px;
    font-size: 16px;
  }

  /* Logo strip */
  .logo-strip { padding: 40px 24px; }
  .logo-strip-row { gap: 24px; }
  .logo-item span { font-size: 13px; }

  /* Sections */
  .section { padding: 80px 24px; }
  .stats-section { padding: 80px 24px; }
  .cta-section { padding: 80px 24px; }

  /* Typography */
  .section-heading { font-size: 34px; letter-spacing: -0.8px; }
  .section-sub { font-size: 16px; }

  /* Problem */
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 48px;
  }

  /* How it works */
  .steps-connector { display: none; }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .step {
    text-align: left;
    padding-left: 0;
  }
  .step-circle { margin: 0; }
  .step-watermark {
    left: -4px;
    transform: none;
    opacity: 0.05;
    font-size: 72px;
    top: -10px;
  }

  /* Features */
  .feat-rows { gap: 64px; margin-top: 60px; }
  .feat-row {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .feat-row-reversed .feat-text { order: 0; }
  .feat-row-reversed .feat-ui   { order: 0; }
  .feat-heading { font-size: 28px; }
  .feat-body { font-size: 16px; max-width: 100%; }

  /* Stats */
  .stats-quote { font-size: 22px; }
  .stats-grid {
    flex-direction: column;
    gap: 36px;
    margin-top: 48px;
  }
  .stat { padding: 0; max-width: none; }
  .stat-divider { width: 40px; height: 1px; }
  .stat-number { font-size: 40px; }

  /* CTA */
  .cta-heading { font-size: 36px; letter-spacing: -1px; }
  .cta-sub { font-size: 16px; }

  /* Footer */
  .footer { padding: 48px 24px; }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
  }
  .footer-left  { align-items: center; }
  .footer-right { align-items: center; }

  /* Pricing signal */
  .pricing-signal { padding: 40px 24px; }
}

@media (max-width: 480px) {
  .hero-headline  { font-size: 34px; letter-spacing: -1px; }
  .section-heading { font-size: 30px; }
  .cta-heading    { font-size: 30px; }
  .stats-quote    { font-size: 19px; }
  .logo-strip-row { gap: 16px; }
  .logo-item span { font-size: 12px; }
}
