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

:root {
  --coral:       #D85A30;
  --coral-light: #F0997B;
  --coral-dark:  #993C1D;
  --bg:          #111110;
  --bg-2:        #181817;
  --warm:        #F5F2EC;
  --warm-mid:    rgba(245,242,236,0.78);
  --warm-low:    rgba(245,242,236,0.52);
  --border:      rgba(245,242,236,0.15);
  --border-2:    rgba(245,242,236,0.26);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--warm);
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

/* ── NAV ── */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  height: 68px;
  background: rgba(17,17,16,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 0.5px solid var(--border);
}

.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; flex-shrink: 0; }
.nav-logo-86 { font-family: 'Barlow', sans-serif; font-weight: 600; font-size: 38px; color: var(--coral); letter-spacing: -0.03em; line-height: 1; }
.nav-logo-divider { width: 0.5px; height: 40px; background: var(--border-2); }
.nav-logo-stack { display: flex; flex-direction: column; gap: 3px; }
.nav-logo-ops { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 19px; color: var(--warm-mid); letter-spacing: 0.12em; text-transform: uppercase; line-height: 1; }
.nav-logo-ai  { font-family: 'Barlow', sans-serif; font-size: 14px; font-weight: 400; color: var(--warm-low); letter-spacing: 0.06em; line-height: 1; }

.nav-menu {
  display: flex; align-items: center; gap: 2px;
  flex: 1; justify-content: center;
  margin: 0 32px;
}
.nav-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500; font-size: 13px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--warm-mid);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 3px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-menu a:hover { color: var(--warm); background: rgba(245,242,236,0.04); }
.nav-menu a.active { color: var(--coral); }

.nav-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.nav-cta {
  background: var(--coral); color: #fff;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 10px 22px; border-radius: 4px; text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--coral-dark); }

.nav-toggle {
  display: none;
  width: 34px; height: 34px;
  background: transparent; border: none;
  cursor: pointer; padding: 0;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--warm);
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO (landing) ── */
.hero {
  min-height: calc(100vh - 68px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 48px 100px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,242,236,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,242,236,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero-glow {
  position: absolute; top: 38%; left: 50%; transform: translate(-50%, -50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(216,90,48,0.11) 0%, transparent 68%);
  pointer-events: none;
}

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 22px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--coral);
  margin-bottom: 36px; position: relative;
  display: flex; align-items: center; gap: 18px;
  animation: fadeUp 0.6s ease both;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 36px; height: 0.5px; background: var(--coral); opacity: 0.5;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-style: italic;
  font-size: clamp(60px, 9vw, 108px);
  line-height: 0.93;
  color: var(--warm);
  letter-spacing: -0.02em;
  margin-bottom: 36px;
  position: relative;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-headline em { color: var(--coral); }

.hero-body {
  max-width: 660px;
  position: relative;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-sub {
  font-family: 'Barlow', sans-serif; font-weight: 300;
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--warm-mid);
  line-height: 1.6;
  margin-bottom: 0;
  letter-spacing: 0.01em;
}

.hero-divider {
  width: 36px; height: 0.5px;
  background: var(--border-2);
  margin: 28px auto;
}

.hero-para {
  font-family: 'Barlow', sans-serif; font-weight: 300;
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--warm-low);
  line-height: 1.75;
  letter-spacing: 0.01em;
}
.hero-para em {
  color: var(--warm-mid);
  font-style: normal;
  font-weight: 400;
}

.hero-actions {
  display: flex; align-items: center; gap: 14px;
  margin-top: 48px; position: relative;
  flex-wrap: wrap; justify-content: center;
  animation: fadeUp 0.6s 0.3s ease both;
}

/* ── PAGE HERO (sub-pages) ── */
.page-hero {
  padding: 180px 48px 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 0.5px solid var(--border);
}
.page-hero-glow {
  position: absolute; top: 50%; right: -100px; transform: translateY(-50%);
  width: 500px; height: 400px;
  background: radial-gradient(ellipse, rgba(216,90,48,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner { max-width: 1100px; margin: 0 auto; position: relative; }
.page-hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 13px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--coral);
  margin-bottom: 24px;
}
.page-hero-headline {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500;
  font-size: clamp(48px, 7vw, 84px); line-height: 1;
  color: var(--warm); letter-spacing: -0.02em;
  margin-bottom: 28px; max-width: 900px;
}
.page-hero-headline em { color: var(--coral); }
.page-hero-sub {
  font-family: 'Barlow', sans-serif; font-weight: 300;
  font-size: clamp(17px, 1.7vw, 20px);
  color: var(--warm-mid); line-height: 1.6;
  max-width: 760px;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--coral); color: #fff;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 14px;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 15px 36px; border-radius: 4px; text-decoration: none;
  transition: background 0.2s, transform 0.15s; display: inline-block;
}
.btn-primary:hover { background: var(--coral-dark); transform: translateY(-1px); }

.btn-ghost {
  color: var(--warm-mid); border: 0.5px solid var(--border-2);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 14px;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 15px 36px; border-radius: 4px; text-decoration: none;
  transition: color 0.2s, border-color 0.2s; display: inline-block;
}
.btn-ghost:hover { color: var(--warm); border-color: rgba(245,242,236,0.45); }

/* ── SECTION BASE ── */
section.content-section { padding: 120px 52px; position: relative; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-header { margin-bottom: 64px; max-width: 780px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-eyebrow {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 14px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--coral);
  margin-bottom: 22px;
}
.section-headline {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500;
  font-size: clamp(40px, 5vw, 64px); line-height: 1.05;
  color: var(--warm); letter-spacing: -0.015em;
  margin-bottom: 24px;
}
.section-headline em { color: var(--coral); font-style: italic; }
.section-sub {
  font-family: 'Barlow', sans-serif; font-weight: 300;
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--warm-mid); line-height: 1.7;
}

/* ── VALUE PROPS ── */
.values { background: var(--bg-2); }
.value-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.value-card {
  border: 0.5px solid var(--border); border-radius: 6px;
  padding: 32px 28px; background: rgba(245,242,236,0.015);
  transition: border-color 0.2s, background 0.2s;
}
.value-card:hover { border-color: var(--border-2); background: rgba(245,242,236,0.035); }
.value-num {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500;
  font-size: clamp(40px, 4.5vw, 56px); line-height: 1;
  color: var(--coral); margin-bottom: 20px; letter-spacing: -0.02em;
}
.value-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 14px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--warm);
  margin-bottom: 12px;
}
.value-body {
  font-family: 'Barlow', sans-serif; font-weight: 300; font-size: 15px;
  color: var(--warm-mid); line-height: 1.6;
}

/* ── PLATFORM GRID (landing page) ── */
.platform-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.platform-card {
  display: flex; flex-direction: column;
  border: 0.5px solid var(--border); border-radius: 6px;
  padding: 32px 30px 28px; background: rgba(245,242,236,0.015);
  text-decoration: none; color: inherit;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  position: relative;
  min-height: 280px;
}
.platform-card:hover {
  border-color: var(--coral);
  background: rgba(216,90,48,0.04);
  transform: translateY(-2px);
}
.platform-card-num {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 24px; color: var(--coral); line-height: 1;
  margin-bottom: 20px; letter-spacing: -0.01em;
}
.platform-card-title {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500;
  font-size: 28px; line-height: 1.15;
  color: var(--warm); letter-spacing: -0.015em;
  margin-bottom: 14px;
}
.platform-card-title em { color: var(--coral); }
.platform-card-body {
  font-family: 'Barlow', sans-serif; font-weight: 300; font-size: 15px;
  color: var(--warm-mid); line-height: 1.6;
  margin-bottom: 22px; flex: 1;
}
.platform-card-tags {
  display: flex; flex-wrap: wrap; gap: 6px 10px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 500;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--warm-low);
  margin-bottom: 20px;
}
.platform-card-tags span { white-space: nowrap; }
.platform-card-link {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--coral);
  align-self: flex-start;
}
.platform-card-link::after {
  content: '›'; margin-left: 8px; display: inline-block;
  transition: transform 0.2s;
}
.platform-card:hover .platform-card-link::after { transform: translateX(4px); }

/* ── FEATURES ── */
.feature { border-top: 0.5px solid var(--border); padding: 80px 0; }
.feature:first-of-type { border-top: none; padding-top: 0; }
.feature-grid {
  display: grid; grid-template-columns: 220px 1fr; gap: 60px; align-items: start;
}
.feature-category {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--warm-low);
  padding-top: 18px; position: sticky; top: 88px;
}
.feature-body h2 {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500;
  font-size: clamp(30px, 3.8vw, 42px); line-height: 1.1;
  color: var(--warm); letter-spacing: -0.015em; margin-bottom: 22px;
}
.feature-body h2 em { color: var(--coral); }
.feature-body p {
  font-family: 'Barlow', sans-serif; font-weight: 300; font-size: 17px;
  color: var(--warm-mid); line-height: 1.7; margin-bottom: 18px;
}
.feature-body p strong { color: var(--warm); font-weight: 500; }
.feature-list {
  list-style: none; display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px 36px; margin-top: 28px; padding-top: 28px;
  border-top: 0.5px solid var(--border);
}
.feature-list li {
  padding-left: 24px; position: relative; font-size: 15px;
  color: var(--warm-mid); line-height: 1.5; font-weight: 300;
}
.feature-list li::before {
  content: '›'; position: absolute; left: 0; top: -2px;
  color: var(--coral); font-weight: 600; font-size: 18px;
}
.feature-list li strong { color: var(--warm); font-weight: 500; }

/* ── 86 SCORE PILLAR TABLE ── */
.pillars {
  margin-top: 28px; padding: 28px 0; border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}
.pillar-row {
  display: grid; grid-template-columns: 140px 1fr 70px; gap: 20px;
  padding: 12px 0; align-items: center;
  border-bottom: 0.5px solid var(--border);
}
.pillar-row:last-child { border-bottom: none; }
.pillar-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 14px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--warm);
}
.pillar-desc { font-size: 14px; color: var(--warm-mid); font-weight: 300; line-height: 1.5; }
.pillar-weight {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 22px; color: var(--coral); text-align: right;
}

/* ── AUDIENCE ── */
.audience { background: var(--bg-2); }
.audience-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.audience-card {
  border: 0.5px solid var(--border); border-radius: 6px;
  padding: 28px 28px 32px; background: rgba(245,242,236,0.015);
}
.audience-card strong {
  display: block; color: var(--warm); font-weight: 500; font-size: 18px;
  font-family: 'Barlow', sans-serif; margin-bottom: 10px;
  letter-spacing: 0.005em;
}
.audience-card p {
  font-family: 'Barlow', sans-serif; font-weight: 300; color: var(--warm-mid);
  font-size: 15px; line-height: 1.6;
}

/* ── ROI ── */
.roi-intro p {
  font-family: 'Barlow', sans-serif; font-weight: 300; font-size: 17px;
  color: var(--warm-mid); line-height: 1.7; margin-bottom: 16px;
  max-width: 820px;
}
.roi-intro p strong { color: var(--warm); font-weight: 500; }
.roi-intro p em { color: var(--coral); font-style: italic; font-weight: 400; }

.roi-table-wrap {
  margin-top: 56px; border: 0.5px solid var(--border); border-radius: 6px;
  overflow: hidden; background: rgba(245,242,236,0.015);
}
.roi-table { width: 100%; border-collapse: collapse; }
.roi-table thead {
  background: rgba(216,90,48,0.06);
  border-bottom: 0.5px solid var(--border-2);
}
.roi-table th {
  text-align: left; font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--coral);
  padding: 18px 22px;
}
.roi-table th:last-child, .roi-table td:last-child { text-align: right; }
.roi-table td {
  padding: 20px 22px; border-bottom: 0.5px solid var(--border);
  color: var(--warm-mid); font-weight: 300; font-size: 15px;
  vertical-align: middle; font-family: 'Barlow', sans-serif;
}
.roi-table tr:last-child td { border-bottom: none; }
.roi-table td.rev {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 15px; letter-spacing: 0.08em; color: var(--warm);
  text-transform: uppercase;
}
.roi-table td.total {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-weight: 500; font-size: 22px; color: var(--coral);
}

.roi-assumptions {
  margin-top: 28px; padding: 24px 26px;
  background: rgba(245,242,236,0.025); border-radius: 6px;
  border-left: 2px solid var(--coral);
}
.roi-assumptions h3 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--warm); margin-bottom: 12px;
}
.roi-assumptions p {
  font-family: 'Barlow', sans-serif; font-weight: 300; font-size: 14px;
  color: var(--warm-mid); line-height: 1.7;
}

/* ── REPLACES LIST ── */
.replaces {
  margin-top: 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 32px;
}
.replaces-item {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0; border-bottom: 0.5px solid var(--border);
  font-family: 'Barlow', sans-serif; font-weight: 300; color: var(--warm-mid);
  font-size: 15px;
}
.replaces-item strong {
  color: var(--warm); font-weight: 500; flex: 1;
}
.replaces-save {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--coral); white-space: nowrap; margin-left: 18px;
}

/* ── FAQ ── */
.faq { background: var(--bg-2); }
.faq-list { margin-top: 16px; }
.faq-item { border-top: 0.5px solid var(--border); }
.faq-item:last-child { border-bottom: 0.5px solid var(--border); }
.faq-item summary {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-weight: 500; font-size: clamp(20px, 2.2vw, 26px);
  color: var(--warm); padding: 26px 44px 26px 0;
  cursor: pointer; list-style: none; position: relative;
  line-height: 1.3;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; position: absolute; right: 8px; top: 50%;
  transform: translateY(-50%);
  font-size: 32px; color: var(--coral);
  font-family: 'Barlow', sans-serif; font-style: normal;
  line-height: 1; transition: transform 0.2s; font-weight: 300;
}
.faq-item[open] summary::after { content: '−'; }
.faq-answer {
  font-family: 'Barlow', sans-serif; font-weight: 300;
  color: var(--warm-mid); line-height: 1.75;
  padding: 0 0 30px; max-width: 860px; font-size: 16px;
}
.faq-answer p { margin-bottom: 12px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer a { color: var(--coral); text-decoration: none; border-bottom: 0.5px solid var(--coral); }

/* ── EXPLORE MORE (cross-links on sub-pages) ── */
.explore-more { background: var(--bg-2); }
.explore-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 40px;
}
.explore-card {
  display: block; text-decoration: none;
  border: 0.5px solid var(--border); border-radius: 6px;
  padding: 24px 24px 26px; background: rgba(245,242,236,0.015);
  transition: border-color 0.2s, background 0.2s;
}
.explore-card:hover {
  border-color: var(--coral); background: rgba(216,90,48,0.04);
}
.explore-card-eyebrow {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--warm-low);
  margin-bottom: 12px;
}
.explore-card-title {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500;
  font-size: 22px; color: var(--warm); line-height: 1.15;
  margin-bottom: 10px; letter-spacing: -0.01em;
}
.explore-card-title em { color: var(--coral); }
.explore-card-body {
  font-family: 'Barlow', sans-serif; font-weight: 300; font-size: 14px;
  color: var(--warm-mid); line-height: 1.55;
}

/* ── PRICING ── */
.pricing-lead p {
  font-family: 'Barlow', sans-serif; font-weight: 300;
  font-size: clamp(17px, 1.7vw, 20px);
  color: var(--warm-mid); line-height: 1.7; margin-bottom: 20px;
  max-width: 820px;
}
.pricing-lead p strong { color: var(--warm); font-weight: 500; }
.pricing-lead p em { color: var(--coral); font-style: italic; font-weight: 400; }

.pricing-pull {
  margin: 48px 0;
  padding: 40px 44px;
  background: rgba(216,90,48,0.06);
  border-left: 3px solid var(--coral);
  border-radius: 0 6px 6px 0;
  max-width: 820px;
}
.pricing-pull p {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500;
  font-size: clamp(26px, 3vw, 34px); line-height: 1.25;
  color: var(--warm); letter-spacing: -0.01em;
}
.pricing-pull p em { color: var(--coral); font-style: italic; }

.pricing-how {
  margin-top: 72px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.pricing-step {
  border: 0.5px solid var(--border); border-radius: 6px;
  padding: 30px 28px; background: rgba(245,242,236,0.015);
}
.pricing-step-num {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 42px; color: var(--coral); line-height: 1;
  margin-bottom: 18px;
}
.pricing-step-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 14px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--warm);
  margin-bottom: 12px;
}
.pricing-step-body {
  font-family: 'Barlow', sans-serif; font-weight: 300; color: var(--warm-mid);
  font-size: 15px; line-height: 1.6;
}

/* ── FORM (consultation page) ── */
.form-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}
.form-card {
  border: 0.5px solid var(--border); border-radius: 6px;
  padding: 40px 44px;
  background: rgba(245,242,236,0.015);
}
.form-side {
  padding: 28px 0;
  font-family: 'Barlow', sans-serif;
}
.form-side h3 {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500;
  font-size: 26px; line-height: 1.2; color: var(--warm);
  margin-bottom: 14px; letter-spacing: -0.01em;
}
.form-side h3 em { color: var(--coral); }
.form-side p {
  font-family: 'Barlow', sans-serif; font-weight: 300; font-size: 15px;
  color: var(--warm-mid); line-height: 1.65; margin-bottom: 18px;
}
.form-side ul {
  list-style: none; padding: 0; margin: 0 0 24px;
}
.form-side li {
  font-family: 'Barlow', sans-serif; font-weight: 300; font-size: 14px;
  color: var(--warm-mid); line-height: 1.5;
  padding: 10px 0 10px 22px; position: relative;
  border-top: 0.5px solid var(--border);
}
.form-side li:last-child { border-bottom: 0.5px solid var(--border); }
.form-side li::before {
  content: '›'; position: absolute; left: 0; top: 8px;
  color: var(--coral); font-weight: 600; font-size: 16px;
}

.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-bottom: 18px;
}
.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--warm-low);
  margin-bottom: 8px;
}
.form-field label .req { color: var(--coral); margin-left: 3px; }
.form-field label .opt {
  color: rgba(245,242,236,0.35); font-weight: 500; font-size: 10px;
  letter-spacing: 0.12em; margin-left: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: 'Barlow', sans-serif; font-weight: 400; font-size: 15px;
  color: var(--warm); background: rgba(17,17,16,0.5);
  border: 0.5px solid var(--border-2); border-radius: 4px;
  padding: 12px 14px; width: 100%;
  transition: border-color 0.15s, background 0.15s;
  -webkit-appearance: none; appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(245,242,236,0.32); font-weight: 300; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none; border-color: var(--coral);
  background: rgba(17,17,16,0.8);
}
.form-field textarea { min-height: 110px; resize: vertical; font-family: 'Barlow', sans-serif; line-height: 1.5; }
.form-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23D85A30' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 36px;
}
.form-field select option { background: #1a1a18; color: var(--warm); }

.form-honeypot {
  position: absolute; left: -9999px; top: -9999px;
  width: 1px; height: 1px; opacity: 0; pointer-events: none;
}

.turnstile-wrap {
  margin: 8px 0 20px;
  min-height: 65px;
}

.form-submit-row {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  margin-top: 8px;
}
.form-submit-row button {
  background: var(--coral); color: #fff; border: none;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 14px;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 15px 36px; border-radius: 4px; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.form-submit-row button:hover:not(:disabled) { background: var(--coral-dark); transform: translateY(-1px); }
.form-submit-row button:disabled { opacity: 0.5; cursor: wait; }
.form-legal {
  font-family: 'Barlow', sans-serif; font-weight: 300; font-size: 12px;
  color: var(--warm-low); line-height: 1.5; flex: 1; min-width: 200px;
}
.form-legal a {
  color: var(--warm-mid); text-decoration: none;
  border-bottom: 0.5px solid rgba(245,242,236,0.3);
  transition: color 0.15s, border-color 0.15s;
}
.form-legal a:hover { color: var(--coral); border-bottom-color: var(--coral); }

.form-status {
  margin-top: 16px; padding: 14px 18px;
  font-family: 'Barlow', sans-serif; font-size: 14px;
  border-radius: 4px; display: none;
}
.form-status.error {
  display: block;
  background: rgba(231,76,60,0.1);
  border-left: 2px solid #E74C3C; color: #f0c1bb;
}

.form-success {
  display: none; text-align: center; padding: 40px 20px;
}
.form-success.visible { display: block; }
.form-success h3 {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500;
  font-size: clamp(32px, 4vw, 44px); line-height: 1.15; color: var(--warm);
  margin-bottom: 20px; letter-spacing: -0.015em;
}
.form-success h3 em { color: var(--coral); }
.form-success p {
  font-family: 'Barlow', sans-serif; font-weight: 300; font-size: 17px;
  color: var(--warm-mid); line-height: 1.65; max-width: 560px;
  margin: 0 auto 16px;
}

/* Add responsive for form */
@media (max-width: 900px) {
  .form-wrap { grid-template-columns: 1fr; gap: 40px; }
  .form-card { padding: 32px 28px; }
  .form-row { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 560px) {
  .form-card { padding: 24px 20px; }
}

/* ── LEGAL PAGES (privacy, terms) ── */
.legal-updated {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--warm-low); margin-top: 28px;
}
.legal-inner { max-width: 820px; }
section.legal h2 {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500;
  font-size: clamp(26px, 3vw, 34px); line-height: 1.2;
  color: var(--warm); letter-spacing: -0.015em;
  margin: 56px 0 18px;
  scroll-margin-top: 88px;
}
section.legal h2:first-of-type { margin-top: 0; }
section.legal h3 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 15px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--warm); margin: 32px 0 14px;
}
section.legal p,
section.legal li {
  font-family: 'Barlow', sans-serif; font-weight: 300;
  font-size: 16px; line-height: 1.75;
  color: var(--warm-mid);
}
section.legal p { margin-bottom: 18px; }
section.legal p strong,
section.legal li strong { color: var(--warm); font-weight: 500; }
section.legal p em,
section.legal li em { color: var(--warm); font-style: italic; font-weight: 400; }
section.legal ul {
  margin: 0 0 20px 0; padding-left: 0; list-style: none;
}
section.legal ul li {
  padding-left: 22px; position: relative;
  margin-bottom: 10px; line-height: 1.7;
}
section.legal ul li::before {
  content: '›'; position: absolute; left: 0; top: -1px;
  color: var(--coral); font-weight: 600; font-size: 18px;
}
section.legal a {
  color: var(--coral); text-decoration: none;
  border-bottom: 0.5px solid rgba(216,90,48,0.5);
  transition: border-color 0.15s;
}
section.legal a:hover { border-bottom-color: var(--coral); }
section.legal code {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  background: rgba(245,242,236,0.06); color: var(--warm);
  padding: 2px 6px; border-radius: 3px; font-size: 13px;
}

/* ── FINAL CTA ── */
.final-cta {
  text-align: center; padding: 140px 48px; position: relative;
  overflow: hidden;
}
.final-cta .section-headline { max-width: 820px; margin: 0 auto 28px; }
.final-cta .section-sub { max-width: 620px; margin: 0 auto 48px; }
.final-cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(216,90,48,0.09) 0%, transparent 68%);
  pointer-events: none;
}

/* ── FOOTER ── */
footer.site-footer {
  border-top: 0.5px solid var(--border);
  padding: 28px 52px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo { display: flex; align-items: center; gap: 14px; }
.footer-logo-86 { font-family: 'Barlow', sans-serif; font-weight: 600; font-size: 22px; color: var(--coral); letter-spacing: -0.03em; line-height: 1; }
.footer-logo-divider { width: 0.5px; height: 24px; background: var(--border-2); }
.footer-logo-stack { display: flex; flex-direction: column; gap: 3px; }
.footer-logo-ops { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 12px; color: var(--warm-low); letter-spacing: 0.12em; text-transform: uppercase; line-height: 1; }
.footer-logo-ai  { font-family: 'Barlow', sans-serif; font-size: 10px; color: rgba(245,242,236,0.35); letter-spacing: 0.06em; line-height: 1; }
.footer-tagline { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--warm-low); }
.footer-legal { font-size: 12px; color: rgba(245,242,236,0.28); font-weight: 300; }
.footer-links {
  display: flex; gap: 24px; flex-wrap: wrap;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 500; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.footer-links a { color: var(--warm-low); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--warm); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1180px) {
  nav.site-nav { padding: 0 28px; }
  .nav-menu a { padding: 8px 10px; font-size: 12px; letter-spacing: 0.1em; }
  .nav-menu { margin: 0 16px; }
}
@media (max-width: 960px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .replaces { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: 1fr 1fr; }
  .explore-grid { grid-template-columns: 1fr 1fr; }
  .pricing-how { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .nav-menu {
    position: absolute; top: 68px; left: 0; right: 0;
    background: rgba(17,17,16,0.98); backdrop-filter: blur(14px);
    flex-direction: column; gap: 0;
    padding: 0; margin: 0;
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    border-bottom: 0.5px solid var(--border);
    justify-content: flex-start;
  }
  .nav-menu.open { max-height: 500px; padding: 12px 0; }
  .nav-menu a {
    width: 100%; padding: 14px 28px;
    font-size: 14px; letter-spacing: 0.14em;
    border-radius: 0;
  }
  .nav-toggle { display: flex; }
}
@media (max-width: 768px) {
  nav.site-nav { padding: 0 20px; }
  .hero { padding: 120px 28px 80px; min-height: auto; }
  .page-hero { padding: 140px 28px 64px; }
  section.content-section { padding: 80px 28px; }
  .feature-grid { grid-template-columns: 1fr; gap: 14px; }
  .feature-category { position: static; padding-top: 0; }
  .feature-list { grid-template-columns: 1fr; gap: 10px; }
  .final-cta { padding: 100px 28px; }
  footer.site-footer { padding: 24px; flex-direction: column; align-items: flex-start; }
  .pillar-row { grid-template-columns: 110px 1fr 50px; gap: 12px; }
  .audience-grid { grid-template-columns: 1fr; }
  .roi-table th, .roi-table td { padding: 14px 14px; font-size: 13px; }
  .roi-table td.total { font-size: 18px; }
  .platform-grid { grid-template-columns: 1fr; }
  .explore-grid { grid-template-columns: 1fr; }
  .pricing-pull { padding: 28px 24px; margin: 36px 0; }
  .nav-logo-86 { font-size: 34px; }
  .nav-logo-divider { height: 36px; }
  .nav-logo-ops { font-size: 17px; }
  .nav-logo-ai { font-size: 13px; }
}
@media (max-width: 560px) {
  .value-grid { grid-template-columns: 1fr; }
  .roi-table-wrap { font-size: 12px; }
  .roi-table th, .roi-table td { padding: 12px 10px; }
  .nav-cta { padding: 9px 16px; font-size: 12px; }
}
