/* RevAnalysis — Design System v4 "Workbench" (cream / ink / terracotta / olive) */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;800&family=Inter:wght@400;500;600;700&display=swap');

/* ============================================================
   VARIABLES
   ============================================================ */
:root {
  /* Backgrounds */
  --bg:        #FAF6EF;
  --bg-raised: #F4EEE3;
  --bg-card:   #FFFDF8;
  --navy:      #2B2320; /* legacy var name: dark panels are now warm ink */

  /* Brand accent — terracotta (buttons, links, highlight numbers) */
  --accent:      #C1502E;
  --accent-hover:#A34226;
  --accent-glow: rgba(193,80,46,0.12);

  /* CTA — terracotta (all buttons) */
  --cta:       #C1502E;
  --cta-hover: #A34226;

  /* Support — olive (eyebrows, badges, checks, step numbers) */
  --olive: #6B7245;
  --data:  #6B7245;
  --data2: #6B7245;

  /* Text */
  --txt:  #2B2320;
  --txt2: #6E6259;
  --txt3: #9A8C80;

  /* Borders */
  --rim:  #EFE7DA;
  --rim2: #E8DFD2;
  --rim3: #D9CDBB;

  /* Radius + shadow */
  --r:    12px;
  --r-lg: 14px;
  --shadow: 0 10px 30px rgba(89,63,45,.10), 0 2px 6px rgba(89,63,45,.06);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--txt);
  font-family: 'Inter', system-ui, sans-serif;
  overflow-x: hidden;
  line-height: 1.65;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

a   { color: inherit; text-decoration: none; transition: color 0.2s ease; }
img { max-width: 100%; display: block; }

/* ============================================================
   TYPOGRAPHY — Poppins 800 for h1/h2 only, Inter everywhere else
   ============================================================ */
h1, h2 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 800;
  font-style: normal;
  line-height: 1.15;
  letter-spacing: -.02em;
}
h3, h4 { font-family: 'Inter', sans-serif; line-height: 1.25; }

h1 { font-size: clamp(30px, 6vw, 56px); color: var(--txt); }
h2 { font-size: clamp(24px, 4vw, 38px); color: var(--txt); }
h3 { font-size: clamp(17px, 2vw, 21px); font-weight: 700; letter-spacing: -0.2px; color: var(--txt); }
h4 { font-size: 14px; font-weight: 600; color: var(--txt); }

p      { color: var(--txt2); line-height: 1.8; }
strong { color: var(--txt); font-weight: 600; }

/* Section title utility */
.section-title {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-top: 10px;
  color: var(--txt);
  line-height: 1.15;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap    { max-width: 1000px; margin: 0 auto; padding: 0 24px; }
.wrap-sm { max-width: 760px;  margin: 0 auto; padding: 0 24px; }
.wrap-lg { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============================================================
   NAV
   ============================================================ */
nav,
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250,246,239,0.9);
  border-bottom: 1px solid var(--rim2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Wordmark: "RevAnalysis" Poppins 800 ink + terracotta underline stroke */
.nav-logo {
  position: relative;
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 22px;
  display: inline-block;
  text-decoration: none;
  letter-spacing: -.02em;
  color: var(--txt);
  padding-bottom: 6px;
  flex-shrink: 0;
}

.nav-logo .rev { color: var(--txt); }
.nav-logo em,
.nav-logo .analysis {
  color: var(--txt);
  font-style: normal;
}

.nav-logo svg.wordmark-stroke {
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 7px;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-left: auto;
}

.nav-link,
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--txt2);
  font-weight: 500;
  transition: color 0.2s ease;
  text-decoration: none;
}

.nav-link:hover,
.nav-links a:hover { color: var(--txt); }
.nav-link.active   { color: var(--accent); }

/* Nav CTA — terracotta pill */
.nav-cta {
  background: var(--cta);
  color: #FFF8F0;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-cta:hover { background: var(--cta-hover); }

/* ============================================================
   EYEBROWS — olive
   ============================================================ */
.eyebrow,
.eyebrow-sm,
.eyebrow-blue {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--olive);
  display: block;
  margin-bottom: 10px;
}

/* ============================================================
   DIVIDER
   ============================================================ */
.glow-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rim3), transparent);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 72px 20px; background: var(--bg); }

section.section-surface,
.section-surface  { background: var(--bg-raised); }
.section-surface2 { background: var(--bg-card); }

.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2,
.section-header .section-title { margin-bottom: 12px; }
.section-header p { max-width: 560px; margin: 0 auto; font-size: 15px; color: var(--txt2); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 24px;
  background: var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(193,80,46,0.06) 0%, transparent 70%);
  top: -15%; left: -8%;
  z-index: 0; pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(107,114,69,0.05) 0%, transparent 70%);
  bottom: -10%; right: -5%;
  z-index: 0; pointer-events: none;
}

.hero-inner,
.hero-content { position: relative; z-index: 2; max-width: 1100px; width: 100%; }

.hero-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--olive);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding: 6px 14px 6px 10px;
  border: 1px solid rgba(107,114,69,0.35);
  border-radius: 999px;
  background: rgba(107,114,69,0.08);
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--olive);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.6); }
}

.hero h1 { margin-bottom: 18px; }
.hero h1 .accent { color: var(--accent); font-style: normal; }

.hero-sub,
.subtitle {
  font-size: 17px;
  font-weight: 400;
  color: var(--txt2);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.75;
}

.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

/* Trade chips */
.trade-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 28px; }

.trade-chip {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--rim2);
  border-radius: 999px;
  background: var(--bg-card);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--txt2);
  font-weight: 500;
  transition: border-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.trade-chip:hover { border-color: rgba(193,80,46,0.45); color: var(--txt); }

/* Trust row */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 12px;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--txt3);
  font-weight: 500;
}

.trust-item svg {
  width: 14px; height: 14px;
  fill: none;
  stroke: var(--olive);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ============================================================
   BUTTONS — terracotta pills
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--cta);
  color: #FFF8F0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.18s ease, box-shadow 0.18s ease;
  min-height: 48px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(193,80,46,.28);
}

.btn-primary:hover {
  background: var(--cta-hover);
  color: #FFF8F0;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(193,80,46,.32);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  background: rgba(255,248,240,0.25);
  border-radius: 50%;
  font-size: 13px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.btn-primary:hover .btn-arrow { transform: translateX(3px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  color: var(--txt2);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid var(--rim3);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  min-height: 48px;
}

.btn-secondary:hover { border-color: var(--accent); color: var(--txt); }

.cta-note {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--txt3);
  letter-spacing: 0.02em;
  margin-top: 10px;
  display: block;
}

/* ============================================================
   ICONS — Lucide SVG only
   ============================================================ */
.feat-icon,
.feature-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(193,80,46,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feat-icon svg,
.feature-icon svg {
  width: 18px; height: 18px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 20px;
}

.stats-bar-item { text-align: center; }

.stats-bar-val {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -.02em;
  line-height: 1;
}

.stats-bar-val .unit { font-size: 16px; color: var(--txt3); font-weight: 400; }

.stats-bar-label {
  font-size: 10px;
  color: var(--txt3);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
  font-weight: 600;
}

/* Legacy stat strip */
.stat-strip { display: flex; flex-wrap: nowrap; border: 1px solid var(--rim2); border-radius: var(--r); overflow: hidden; background: var(--bg-card); box-shadow: var(--shadow); max-width: 720px; margin: 0 auto 44px; }
.stat-item  { flex: 1 0 0; min-width: 0; padding: 28px 12px; text-align: center; border-right: 1px solid var(--rim2); }
.stat-item:last-child { border-right: none; }
.stat-val, .stat-value { font-family: 'Poppins', 'Inter', sans-serif; font-size: 24px; font-weight: 800; color: var(--txt); line-height: 1; margin-bottom: 8px; letter-spacing: -.02em; }
.stat-val .accent { color: var(--accent); }
.stat-val .blue   { color: var(--olive); }
.stat-label { font-size: 11px; color: var(--txt3); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.how-card,
.how-step,
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--rim2);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.how-card:hover,
.how-step:hover,
.step-card:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(89,63,45,.14), 0 3px 8px rgba(89,63,45,.07); }

.how-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }

.how-card-step,
.how-step-num,
.step-number {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--txt3);
}

.how-card-step .tag { color: var(--accent); margin-left: 6px; }

.how-card h3,
.how-step h3,
.step-card h3 { font-size: 17px; margin-bottom: 8px; }

.how-card p,
.how-step p,
.step-card p { font-size: 13px; color: var(--txt2); line-height: 1.65; }

/* ============================================================
   WHAT YOU GET GRID
   ============================================================ */
.get-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto;
}

.get-item {
  display: flex;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--rim2);
  border-radius: var(--r);
  background: var(--bg-card);
  transition: border-color 0.2s ease;
}

.get-item:hover { border-color: var(--rim3); }
.get-item h4    { font-size: 14px; font-weight: 600; color: var(--txt); margin-bottom: 4px; }
.get-item p     { font-size: 12.5px; color: var(--txt2); line-height: 1.55; }

/* ============================================================
   PRICING
   ============================================================ */
.price-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.price-card,
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--rim2);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

/* Featured — terracotta border + badge */
.price-card.featured,
.pricing-card.featured { border: 2px solid var(--accent); }

.price-save,
.pricing-badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--accent);
  color: #FFF8F0;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 0 var(--r-lg) 0 8px;
}

.price-tier { font-size: 13px; color: var(--txt2); margin-bottom: 4px; font-weight: 500; }

.price-amount,
.pricing-price {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -.02em;
}

.price-amount .per,
.pricing-period { font-size: 14px; font-weight: 400; color: var(--txt3); letter-spacing: 0; }

.price-note { font-size: 11px; color: var(--txt3); margin-top: 3px; }
.price-note.accent-note { color: var(--accent); }

.price-divider { height: 1px; background: var(--rim2); margin: 20px 0; }

.price-features,
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}

.price-features li,
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--txt2);
  margin-bottom: 11px;
  line-height: 1.55;
}

/* Olive checkmark SVGs */
.price-features li svg,
.pricing-features li svg {
  width: 16px; height: 16px;
  fill: none;
  stroke: var(--olive);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-features li::before { display: none; }
.pricing-content { position: relative; z-index: 2; flex: 1; display: flex; flex-direction: column; }
.pricing-cta     { width: 100%; margin-top: auto; }

/* ============================================================
   FINAL CTA / CTA BAND — cream cards, warm borders
   ============================================================ */
.final-cta { position: relative; padding: 72px 20px; text-align: center; overflow: hidden; background: var(--bg-raised); border-top: 1px solid var(--rim2); border-bottom: 1px solid var(--rim2); }

.final-cta-glow {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(193,80,46,0.05), rgba(107,114,69,0.03), rgba(193,80,46,0.05));
  pointer-events: none;
}

.cta-band {
  position: relative;
  padding: 72px 20px;
  text-align: center;
  overflow: hidden;
  background: var(--bg-raised);
  border-top: 1px solid var(--rim2);
  border-bottom: 1px solid var(--rim2);
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(193,80,46,0.10), transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.cta-inner h2,
.final-cta h2 { margin-bottom: 12px; }

.cta-inner p,
.final-cta p { color: var(--txt2); max-width: 480px; margin: 0 auto 28px; font-size: 15px; }

.final-cta .hl { color: var(--accent); font-weight: 700; }

/* ============================================================
   PHONE MOCKUP — warm ink device on cream
   ============================================================ */
.phone-wrap { display: flex; justify-content: center; position: relative; }

.phone {
  width: 280px;
  border: 5px solid #3A2F2A;
  border-radius: 2.2rem;
  background: #2B2320;
  padding: 8px;
  box-shadow: 0 30px 60px rgba(89,63,45,0.35);
}

.phone-notch    { width: 80px; height: 18px; background: #3A2F2A; border-radius: 10px; margin: 0 auto 8px; }
.phone-screen   { border-radius: 1.4rem; background: #332B26; overflow: hidden; }
.phone-date     { padding: 12px 14px 4px; font-size: 9px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,248,240,0.35); }
.phone-greeting { padding: 0 14px 10px; font-size: 13px; font-weight: 600; color: #FFF8F0; }

.phone-card {
  margin: 0 10px 10px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(193,80,46,0.22), rgba(163,66,38,0.10));
  border: 1px solid rgba(193,80,46,0.30);
  padding: 12px;
}

.phone-card-badge       { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.phone-card-badge span  { font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #E8906B; }
.phone-card-badge svg   { width: 14px; height: 14px; fill: none; stroke: #E8906B; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.phone-card h4          { font-size: 12px; font-weight: 600; color: #FFF8F0; margin-bottom: 4px; }
.phone-card p           { font-size: 10px; color: rgba(255,248,240,0.5); line-height: 1.45; }

.phone-script       { margin-top: 8px; background: rgba(255,248,240,0.06); border-radius: 6px; padding: 8px 10px; }
.phone-script-label { font-size: 9px; font-weight: 600; color: rgba(255,248,240,0.55); margin-bottom: 3px; }
.phone-script-text  { font-size: 9px; color: rgba(255,248,240,0.4); line-height: 1.4; }

.phone-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.phone-time   { font-size: 9px; color: rgba(255,248,240,0.3); }
.phone-btn    { background: var(--cta); color: #FFF8F0; font-size: 9px; font-weight: 700; padding: 4px 10px; border-radius: 20px; }

.phone-progress       { margin: 0 10px 10px; border-radius: 10px; background: rgba(255,248,240,0.06); border: 1px solid rgba(255,248,240,0.08); padding: 10px 12px; }
.phone-progress-top   { display: flex; justify-content: space-between; margin-bottom: 6px; }
.phone-progress-label { font-size: 9px; color: rgba(255,248,240,0.4); }
.phone-progress-score { font-size: 9px; font-weight: 700; color: #A8B37C; }

.phone-bar      { height: 5px; background: #3A2F2A; border-radius: 3px; overflow: hidden; }
.phone-bar-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, #C1502E, #6B7245); width: 68%; }
.phone-bar-meta { display: flex; justify-content: space-between; margin-top: 4px; font-size: 8px; color: rgba(255,248,240,0.25); }

.float-badge       { position: absolute; border-radius: 999px; padding: 6px 14px; font-size: 10px; font-weight: 600; box-shadow: 0 8px 20px rgba(89,63,45,0.18); backdrop-filter: blur(4px); animation: float 4s ease-in-out infinite; }
.float-badge-green { right: -20px; top: 80px; background: rgba(107,114,69,0.12); border: 1px solid rgba(107,114,69,0.3); color: #6B7245; }
.float-badge-red   { left: -30px; bottom: 100px; background: rgba(193,80,46,0.10); border: 1px solid rgba(193,80,46,0.3); color: #C1502E; animation-delay: 1.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ============================================================
   CARDS (generic)
   ============================================================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--rim2);
  border-radius: var(--r);
  transition: border-color 0.2s ease;
}

.card:hover { border-color: var(--rim3); }

/* ============================================================
   FAMILIAR / PAIN POINTS
   ============================================================ */
.familiar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; max-width: 820px; margin: 0 auto 32px; }

.familiar-item { display: flex; align-items: flex-start; gap: 12px; background: var(--bg-card); border: 1px solid var(--rim2); border-radius: var(--r); padding: 14px 16px; transition: border-color 0.2s ease; }
.familiar-item:hover { border-color: var(--rim3); }

.familiar-check { width: 18px; height: 18px; border-radius: 4px; border: 1.5px solid rgba(193,80,46,0.35); background: rgba(193,80,46,0.07); flex-shrink: 0; margin-top: 2px; display: flex; align-items: center; justify-content: center; font-size: 10px; color: var(--accent); font-weight: 700; }
.familiar-text  { font-size: 13.5px; color: var(--txt2); line-height: 1.55; }

/* ============================================================
   BENCHMARK
   ============================================================ */
.bench-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 24px; }

.bench-card { background: var(--bg-card); border: 1px solid var(--rim2); border-radius: var(--r); padding: 20px 14px; text-align: center; box-shadow: var(--shadow); transition: border-color 0.2s ease; }
.bench-card:hover { border-color: var(--rim3); }

.bench-label { font-family: 'Inter', sans-serif; font-size: 9px; font-weight: 700; color: var(--txt3); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.bench-you   { font-family: 'Poppins', 'Inter', sans-serif; font-size: 28px; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 4px; }
.bench-you.green { color: var(--olive); }
.bench-avg   { font-size: 11px; color: var(--txt3); }
.bench-avg em { color: var(--olive); font-style: normal; font-weight: 600; }
.bench-note  { font-size: 12px; color: var(--txt2); text-align: center; margin-top: 4px; }

.bench-table-wrap { background: var(--bg-card); border: 1px solid var(--rim2); border-radius: var(--r); overflow: hidden; margin: 24px 0; box-shadow: var(--shadow); }
.bench-table      { width: 100%; border-collapse: collapse; font-size: 13px; }
.bench-table th   { background: var(--bg-raised); color: var(--olive); padding: 12px 16px; text-align: left; font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; border-bottom: 1px solid var(--rim2); }
.bench-table td   { padding: 12px 16px; border-bottom: 1px solid var(--rim2); color: var(--txt2); }
.bench-table tr:last-child td { border-bottom: none; }
.bench-table tr:hover td      { background: var(--bg-raised); }
.bench-table .trade { color: var(--txt); font-weight: 600; }
.bench-table .hi    { color: var(--accent); font-weight: 700; }
.bench-table .lo    { color: var(--olive);  font-weight: 700; }

/* ============================================================
   INDUSTRY SELECTOR
   ============================================================ */
.ind-chip,
.ind-btn {
  background: var(--bg-card);
  border: 1px solid var(--rim2);
  border-radius: 999px;
  padding: 10px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--txt2);
  cursor: pointer;
  transition: border-color 0.2s ease;
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}

.ind-chip:hover,
.ind-btn:hover { border-color: rgba(193,80,46,0.45); color: var(--txt); }

.industry-selector { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center; max-width: 800px; margin: 0 auto 48px; }

/* ============================================================
   BLOG / ARTICLES
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.blog-card { background: var(--bg-card); border: 1px solid var(--rim2); border-radius: var(--r-lg); padding: 24px; text-decoration: none; box-shadow: var(--shadow); transition: transform 0.18s ease, box-shadow 0.18s ease; display: block; }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(89,63,45,.14), 0 3px 8px rgba(89,63,45,.07); }

.blog-tag  { font-family: 'Inter', sans-serif; font-size: 9px; font-weight: 700; color: var(--olive); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 12px; display: block; }
.blog-card h3 { font-size: 17px; margin-bottom: 10px; }
.blog-card p  { font-size: 13px; line-height: 1.65; color: var(--txt2); }
.blog-read    { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--accent); font-weight: 600; margin-top: 16px; }

.article-wrap    { max-width: 760px; margin: 0 auto; padding: 60px 24px; }
.article-header  { margin-bottom: 48px; }
.article-header h1 { margin-bottom: 16px; }
.article-meta    { display: flex; align-items: center; gap: 16px; font-size: 12px; color: var(--txt3); font-family: 'Inter', sans-serif; }

.article-body h2 { font-size: 24px; margin: 44px 0 16px; }
.article-body h3 { font-size: 19px; font-weight: 700; margin: 32px 0 12px; }
.article-body p  { font-size: 16px; line-height: 1.9; margin-bottom: 20px; }

.article-body ul, .article-body ol { margin: 16px 0 24px; padding: 0; list-style: none; }
.article-body ul li, .article-body ol li { display: flex; gap: 12px; margin-bottom: 10px; font-size: 15px; color: var(--txt2); line-height: 1.75; }
.article-body ul li::before { content: '>'; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 3px; }
.article-body ol { counter-reset: steps; }
.article-body ol li { counter-increment: steps; }
.article-body ol li::before { content: counter(steps); display: flex; align-items: center; justify-content: center; min-width: 24px; height: 24px; border-radius: 50%; background: var(--olive); color: #FFF8F0; font-size: 11px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }

.article-callout { background: rgba(107,114,69,0.07); border: 1px solid rgba(107,114,69,0.2); border-left: 4px solid var(--olive); border-radius: 0 10px 10px 0; padding: 20px 24px; margin: 28px 0; }
.article-callout p { margin: 0; }

.article-stat-box { background: var(--bg-card); border: 1px solid var(--rim2); border-radius: var(--r); padding: 28px 32px; margin: 28px 0; text-align: center; box-shadow: var(--shadow); }
.article-stat-box .big-num { font-family: 'Poppins', 'Inter', sans-serif; font-size: 52px; font-weight: 800; color: var(--accent); letter-spacing: -.02em; line-height: 1; margin-bottom: 8px; }

.article-cta-box { background: var(--bg-card); border: 2px solid var(--accent); border-radius: var(--r-lg); padding: 32px; margin: 40px 0; text-align: center; overflow: hidden; box-shadow: var(--shadow); }
.article-cta-box h3 { margin-bottom: 10px; }
.article-cta-box p  { max-width: 440px; margin: 0 auto 24px; font-size: 14px; }

/* ============================================================
   FEATURE STRIP
   ============================================================ */
.feature-strip { background: var(--bg-raised); border-top: 1px solid var(--rim2); border-bottom: 1px solid var(--rim2); padding: 32px 40px; }
.feature-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-item  { display: flex; align-items: flex-start; gap: 12px; }
.feature-text strong { display: block; color: var(--txt); font-size: 13px; font-weight: 600; margin-bottom: 3px; }
.feature-text span   { font-size: 12px; color: var(--txt2); line-height: 1.55; }

/* ============================================================
   PREVIEW CARD
   ============================================================ */
.preview-wrap     { position: relative; max-width: 680px; margin: 0 auto 36px; user-select: none; }
.preview-card     { border: 1px solid var(--rim2); border-radius: var(--r-lg); overflow: hidden; background: var(--bg-card); box-shadow: var(--shadow); }
.preview-cover    { background: var(--bg-raised); border-bottom: 1px solid var(--rim2); padding: 28px 32px; }
.preview-cover-tag { font-family: 'Inter', sans-serif; font-size: 9px; font-weight: 700; color: var(--olive); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 12px; }
.preview-cover h3 { font-size: 24px; margin-bottom: 8px; }
.preview-cover h3 span { color: var(--accent); }
.preview-cover-meta { font-size: 12px; color: var(--txt2); margin: 0; }
.preview-sections { padding: 18px 24px; }
.preview-row      { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--rim2); }
.preview-row:last-child { border-bottom: none; }
.preview-num      { width: 28px; height: 28px; background: var(--olive); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: #FFF8F0; flex-shrink: 0; }
.preview-title    { font-size: 12px; font-weight: 600; color: var(--txt2); margin-bottom: 7px; }
.blur-lines       { display: flex; flex-direction: column; gap: 5px; }
.blur-line        { height: 7px; background: var(--rim2); border-radius: 3px; filter: blur(1px); }
.blur-line.s      { width: 50%; }
.blur-line.m      { width: 75%; }
.preview-overlay  { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(to bottom, transparent 30%, rgba(250,246,239,0.97) 65%); border-radius: var(--r-lg); }
.preview-lock     { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); background: var(--bg-card); border: 1px solid var(--rim3); border-radius: 10px; padding: 14px 24px; text-align: center; box-shadow: var(--shadow); white-space: nowrap; }
.preview-lock strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.preview-lock span   { font-size: 12px; color: var(--txt2); }

/* ============================================================
   FOOTER
   ============================================================ */
footer,
.footer {
  background: #F4EEE3;
  border-top: 1px solid var(--rim2);
  padding: 60px 32px 32px;
}

.footer-inner  { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }

.footer-brand .logo    { font-family: 'Poppins', 'Inter', sans-serif; font-size: 20px; font-weight: 800; letter-spacing: -.02em; color: var(--txt); display: inline-block; margin-bottom: 12px; position: relative; padding-bottom: 6px; }
.footer-brand .logo em { color: var(--txt); font-style: normal; }
.footer-brand .logo svg.wordmark-stroke { position: absolute; left: 0; bottom: 0; width: 100%; height: 6px; }
.footer-brand p        { font-size: 13px; color: var(--txt2); line-height: 1.7; max-width: 260px; }

.footer-col h4  { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--txt2); margin-bottom: 16px; }
.footer-col a   { display: block; font-size: 13px; color: var(--txt2); text-decoration: none; margin-bottom: 9px; transition: color 0.15s ease; }
.footer-col a:hover { color: var(--accent); }

.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 24px; border-top: 1px solid var(--rim2); display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--txt3); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-grid-layout { grid-template-columns: 1fr; text-align: center; }
  .hero-cta-wrap    { align-items: center; }
  .hero-sub         { margin-left: auto; margin-right: auto; }
  .trade-chips      { justify-content: center; }
  .trust-row        { justify-content: center; }
  .footer-inner     { grid-template-columns: 1fr 1fr; }
  .bench-grid       { grid-template-columns: 1fr 1fr; }
  .blog-grid        { grid-template-columns: 1fr 1fr; }
  .price-grid,
  .pricing-grid     { grid-template-columns: 1fr; max-width: 480px; }
  .stats-bar        { grid-template-columns: repeat(2, 1fr); }
  .float-badge      { display: none; }
}

@media (max-width: 768px) {
  .how-grid     { grid-template-columns: 1fr; }
  .feature-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-links    { display: none; }
  section       { padding: 56px 0; }
  .familiar-grid { grid-template-columns: 1fr; }
  .feature-inner { grid-template-columns: 1fr; }
  .get-grid      { grid-template-columns: 1fr; }
  .blog-grid     { grid-template-columns: 1fr; }
  .bench-grid    { grid-template-columns: 1fr 1fr; }
  .footer-inner  { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .final-cta,
  .cta-band      { padding: 56px 24px; }
  .btn-primary   { width: 100%; justify-content: center; }
  .feature-strip { padding: 24px 20px; }
  .stats-bar     { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 24px 16px; }
}

/* Brand rule: no italics anywhere */
em, i, cite, blockquote { font-style: normal; }
