@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@300;400&family=Plus+Jakarta+Sans:wght@400;500&display=swap");

:root {
  --bg: #faf8f5;
  --bg-alt: #f0ede8;
  --bg-parchment: #e8e4dd;
  --surface: #ffffff;
  --primary: #1b3d2f;
  --primary-muted: #4a6358;
  --accent: #c67b5c;
  --accent-hover: #b36a4d;
  --text-headline: #2c2c2c;
  --text-body: #2c2c2c;
  --text-secondary: #6b6560;
  --text-muted: #9a9590;
  --border: #e8e4dd;
  --shadow-card: 0 2px 8px rgba(44, 44, 44, 0.04), 0 8px 24px rgba(44, 44, 44, 0.06);
  --shadow-hover: 0 4px 12px rgba(44, 44, 44, 0.06), 0 16px 32px rgba(44, 44, 44, 0.08);
  --max-width: 1200px;
  --section-padding-v: 160px;
  --card-padding: 32px;
  --card-radius: 2px;
  --margin-desktop: 120px;
}

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

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text-body);
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.005em;
  font-weight: 400;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  background: var(--bg);
}

.container {
  width: min(calc(100% - (var(--margin-desktop) * 2)), var(--max-width));
  margin: 0 auto;
}

.section {
  padding: var(--section-padding-v) 0;
}

.section.alt {
  background: var(--bg-alt);
}

/* ─── TYPOGRAPHY UTILITIES ─── */
.overline {
  margin: 0 0 20px;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-muted);
}

.overline.center {
  text-align: center;
}

.h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 48px;
  line-height: 56px;
  letter-spacing: -0.005em;
  font-weight: 400;
  color: var(--text-headline);
  text-align: center;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 16px 32px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--primary);
  color: var(--bg);
}

.btn-primary:hover {
  background: #2a4f3f;
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--bg);
}

.btn-accent {
  background: var(--accent);
  color: #ffffff;
  padding: 18px 36px;
}

.btn-accent:hover {
  background: var(--accent-hover);
}

/* ─── NAV LOGIN LINK ─── */
.nav-login-link {
  color: var(--text-secondary);
  font-size: 14px;
  letter-spacing: 0.04em;
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-login-link:hover {
  color: var(--text-headline);
}

/* ─── STICKY NAV ─── */
.feature-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.feature-nav.scrolled {
  background: var(--bg);
  border-bottom-color: var(--border);
}

.nav-inner {
  width: min(calc(100% - 80px), var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.wordmark {
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
  white-space: nowrap;
}

.nav-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.nav-cta-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.06em;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--text-headline);
}

.nav-link.active {
  color: var(--text-headline);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  border-bottom: 1px solid var(--text-headline);
}

.nav-mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--primary);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-mobile-toggle svg {
  width: 22px;
  height: 22px;
}

.nav-mobile-panel {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 20px;
  display: grid;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.nav-mobile-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-mobile-panel a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--text-secondary);
  font-size: 14px;
  letter-spacing: 0.05em;
}

/* ─── HERO ─── */
.feature-hero {
  margin-top: 80px;
  background: linear-gradient(180deg, #faf8f5 0%, #f0ede8 100%);
  padding: 128px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 80px;
  align-items: center;
}

.hero-copy .overline {
  margin-bottom: 24px;
}

.hero-title {
  margin: 0 0 24px;
  font-family: "Playfair Display", serif;
  font-size: 64px;
  line-height: 72px;
  letter-spacing: -0.015em;
  font-weight: 300;
  color: var(--text-headline);
}

.hero-subhead {
  margin: 0 0 40px;
  max-width: 520px;
  font-size: 19px;
  line-height: 30px;
  color: var(--text-secondary);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-fine-print {
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 20px;
  color: var(--text-muted);
}

/* ─── HERO MOCKUP — Proposal document ─── */
.hero-mockup-card {
  background: var(--surface);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  border: 1px solid var(--border);
  opacity: 0;
  transform: translateY(20px);
  animation: heroMockupIn 0.7s ease-out 0.3s forwards;
}

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

.mockup-doc-header {
  border-left: 3px solid var(--primary);
  background: #fcfbf8;
  border-bottom: 1px solid var(--border);
  padding: 14px 18px;
}

.mockup-studio-bar {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mockup-studio-logo-placeholder {
  width: 32px;
  height: 32px;
  border-radius: 2px;
  background: var(--bg-parchment);
  flex-shrink: 0;
}

.mockup-doc-title {
  margin: 0;
  font-size: 13px;
  line-height: 18px;
  font-weight: 500;
  color: var(--text-headline);
}

.mockup-doc-meta {
  margin: 2px 0 0;
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.mockup-doc-body {
  padding: 16px 18px 12px;
}

.mockup-section-header {
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-muted);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}

.mockup-spec-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid #f5f2ec;
}

.mockup-spec-row.alt {
  background: #fdfcf9;
  padding-left: 6px;
  padding-right: 6px;
  margin-left: -6px;
  margin-right: -6px;
  border-radius: 2px;
}

.mockup-spec-thumb {
  width: 36px;
  height: 28px;
  border-radius: 2px;
  background: var(--bg-parchment);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mockup-spec-thumb svg {
  width: 32px;
  height: 24px;
}

.mockup-spec-info {
  flex: 1;
  min-width: 0;
}

.mockup-spec-name {
  margin: 0;
  font-size: 12px;
  line-height: 17px;
  color: var(--text-headline);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mockup-spec-price {
  margin: 1px 0 0;
  font-size: 11px;
  line-height: 15px;
  color: var(--text-secondary);
}

.mockup-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0 4px;
  margin-top: 2px;
  border-top: 1px solid var(--border);
}

.mockup-subtotal-label {
  font-size: 11px;
  line-height: 16px;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
}

.mockup-subtotal-value {
  font-size: 13px;
  line-height: 18px;
  font-weight: 500;
  color: var(--primary);
}

.mockup-doc-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-top: 1px solid var(--border);
  background: #f0f5f2;
}

.mockup-doc-footer svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
  flex-shrink: 0;
}

.mockup-footer-text {
  font-size: 11px;
  line-height: 16px;
  color: var(--primary);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ─── BENEFITS BAR ─── */
.benefits-bar {
  background: var(--bg-alt);
  padding: 96px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.benefits-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  gap: 0;
}

.benefit-stat {
  text-align: center;
  padding: 0 32px;
}

.benefit-number {
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 300;
  color: var(--primary);
}

.benefit-label {
  margin: 0;
  font-size: 14px;
  line-height: 22px;
  color: var(--text-secondary);
}

.benefit-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* ─── THE PROBLEM ─── */
.problem-intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.problem-intro .h2 {
  margin-bottom: 24px;
}

.problem-body {
  max-width: 680px;
  margin: 0 auto 64px;
  font-size: 18px;
  line-height: 28px;
  color: var(--text-secondary);
  text-align: center;
}

.problem-cards-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.problem-card {
  background: var(--surface);
  border-radius: var(--card-radius);
  padding: var(--card-padding);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.4s ease;
}

.problem-card:hover {
  box-shadow: var(--shadow-hover);
}

.problem-card-num {
  margin: 0 0 20px;
  font-family: "Playfair Display", serif;
  font-size: 48px;
  line-height: 1;
  font-weight: 300;
  color: var(--primary-muted);
  opacity: 0.3;
}

.problem-card-title {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: var(--text-headline);
}

.problem-card-body {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  color: var(--text-secondary);
}

/* ─── HOW IT WORKS ─── */
.how-intro {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}

.how-intro .h2 {
  margin-bottom: 16px;
}

.how-subhead {
  margin: 0 auto;
  max-width: 560px;
  font-size: 18px;
  line-height: 28px;
  color: var(--text-secondary);
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.step-card {
  background: var(--surface);
  border-radius: var(--card-radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--primary);
  transition: box-shadow 0.4s ease;
}

.step-card:hover {
  box-shadow: var(--shadow-hover);
}

.step-num {
  margin: 0 0 16px;
  font-family: "Playfair Display", serif;
  font-size: 36px;
  line-height: 1;
  font-weight: 300;
  color: var(--primary);
  opacity: 0.4;
}

.step-title {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: var(--text-headline);
}

.step-body {
  margin: 0;
  font-size: 15px;
  line-height: 24px;
  color: var(--text-secondary);
}

/* ─── FEATURE DEEP DIVE ─── */
.deep-dive-block {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 80px;
  align-items: center;
}

.deep-dive-block + .deep-dive-block {
  margin-top: 96px;
}

.deep-dive-block.reverse {
  grid-template-columns: 45% 55%;
}

.deep-dive-overline {
  margin: 0 0 12px;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--primary);
}

.deep-dive-title {
  margin: 0 0 16px;
  font-size: 26px;
  line-height: 36px;
  font-weight: 500;
  color: var(--text-headline);
}

.deep-dive-copy {
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 26px;
  color: var(--text-secondary);
}

.capability-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.capability-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-body);
}

.capability-list svg {
  width: 16px;
  height: 16px;
  margin-top: 4px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ─── DEEP DIVE MOCKUPS ─── */
.deep-mockup {
  background: var(--surface);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-card);
  border: 1px solid #f0ede8;
  overflow: hidden;
}

.deep-mockup-head {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  line-height: 20px;
  color: var(--text-secondary);
  background: #fcfbf8;
  font-weight: 500;
}

.deep-mockup-body {
  padding: 16px 18px 18px;
}

.deep-mockup-body.p0 {
  padding: 0;
}

/* Proposal pages preview (Block 1) */
.proposal-pages-preview {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.proposal-page-cover {
  width: 88px;
  background: var(--primary);
  border-radius: 2px;
  padding: 16px 12px;
  flex-shrink: 0;
}

.ppt-cover-logo {
  width: 30px;
  height: 4px;
  background: rgba(250,248,245,0.4);
  border-radius: 1px;
  margin-bottom: 20px;
}

.ppt-cover-title {
  margin: 0 0 4px;
  font-family: "Playfair Display", serif;
  font-size: 11px;
  line-height: 14px;
  font-weight: 400;
  color: rgba(250,248,245,0.9);
}

.ppt-cover-sub {
  margin: 0;
  font-size: 8px;
  line-height: 12px;
  color: rgba(250,248,245,0.5);
  letter-spacing: 0.04em;
}

.proposal-pages-stack {
  display: grid;
  gap: 6px;
}

.proposal-page-line-row {
  padding: 9px 12px;
  background: #fdfcf9;
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.proposal-page-line-row.alt {
  background: var(--bg);
}

.ppl-label {
  font-size: 9px;
  line-height: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.ppl-items {
  display: flex;
  gap: 4px;
}

.ppl-item {
  height: 4px;
  flex: 1;
  background: var(--border);
  border-radius: 1px;
}

.ppl-item.short {
  flex: 0.6;
}

.proposal-meta-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #f0f5f2;
  border: 1px solid #d5e3da;
  border-radius: 2px;
  font-size: 11px;
  line-height: 16px;
}

.pmb-stat {
  color: var(--text-secondary);
}

.pmb-sep {
  color: var(--text-muted);
}

.pmb-green {
  color: var(--primary);
  font-weight: 500;
}

/* Spec sheet mockup (Block 2) */
.spec-sheet-rows {
  display: grid;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 12px;
}

.spec-sheet-item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 10px;
  padding: 12px;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.spec-sheet-item:last-child {
  border-bottom: none;
}

.spec-sheet-item.alt {
  background: #fdfcf9;
}

.ssi-thumb {
  width: 44px;
  height: 36px;
  border-radius: 2px;
  background: var(--bg-parchment);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.ssi-thumb svg {
  width: 40px;
  height: 32px;
}

.ssi-name {
  margin: 0 0 2px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  color: var(--text-headline);
}

.ssi-meta {
  margin: 0 0 5px;
  font-size: 10px;
  line-height: 14px;
  color: var(--text-muted);
}

.ssi-tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.ssi-tag {
  padding: 1px 6px;
  border-radius: 2px;
  background: #eef3f0;
  border: 1px solid #c4d9ce;
  font-size: 9px;
  line-height: 14px;
  color: var(--primary);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.ssi-tag-bespoke {
  background: #f8ede8;
  border-color: #e0c0b0;
  color: var(--accent);
}

.ssi-price {
  margin: 0;
  font-size: 13px;
  line-height: 18px;
  font-weight: 500;
  color: var(--primary);
  white-space: nowrap;
}

.spec-sheet-footer {
  padding: 10px 12px;
  background: #f8f5f0;
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--text-secondary);
}

.ssf-total {
  font-weight: 500;
  color: var(--primary);
}

/* Brand cover mockup (Block 3) */
.brand-cover-preview {
  display: flex;
  flex-direction: column;
  background: #1b3d2f;
  border-bottom: 1px solid var(--border);
}

.bcp-top-bar {
  height: 3px;
  background: rgba(250,248,245,0.2);
}

.bcp-content {
  padding: 24px 20px 20px;
  flex: 1;
}

.bcp-logo-zone {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.bcp-logo-rect {
  width: 28px;
  height: 28px;
  border-radius: 2px;
  background: rgba(250,248,245,0.15);
}

.bcp-logo-line {
  width: 60px;
  height: 2px;
  background: rgba(250,248,245,0.3);
  border-radius: 1px;
}

.bcp-project-name {
  margin: 0 0 6px;
  font-family: "Playfair Display", serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: rgba(250,248,245,0.95);
}

.bcp-project-sub {
  margin: 0 0 16px;
  font-size: 11px;
  line-height: 16px;
  color: rgba(250,248,245,0.6);
  letter-spacing: 0.04em;
}

.bcp-rule {
  height: 1px;
  background: rgba(250,248,245,0.15);
  margin-bottom: 12px;
}

.bcp-meta {
  margin: 0;
  font-size: 10px;
  line-height: 14px;
  color: rgba(250,248,245,0.4);
  letter-spacing: 0.04em;
}

.bcp-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-top: 1px solid rgba(250,248,245,0.1);
}

.bcp-footer-dots {
  display: flex;
  gap: 5px;
}

.bcp-footer-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(250,248,245,0.2);
}

.bcp-footer-page {
  font-size: 9px;
  line-height: 14px;
  color: rgba(250,248,245,0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-cover-meta {
  padding: 12px 18px 14px;
  display: grid;
  gap: 6px;
}

.bcm-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
  line-height: 16px;
}

.bcm-key {
  color: var(--text-muted);
}

.bcm-val {
  color: var(--text-headline);
  font-weight: 500;
}

.bcm-green {
  color: var(--primary);
}

/* ─── SPOTLIGHT (USE CASE) SECTION ─── */
.spotlight-section {
  position: relative;
  background: var(--primary);
  padding: 128px 0;
  overflow: hidden;
}

.spotlight-noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    radial-gradient(circle at 20% 30%, #ffffff 1px, transparent 1.2px),
    radial-gradient(circle at 70% 80%, #ffffff 1px, transparent 1.2px);
  background-size: 12px 12px, 14px 14px;
  pointer-events: none;
}

.spotlight-section .container {
  position: relative;
  z-index: 1;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.spotlight-overline {
  margin: 0 0 20px;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(250,248,245,0.5);
}

.spotlight-h2 {
  margin: 0 0 20px;
  font-family: "Playfair Display", serif;
  font-size: 40px;
  line-height: 48px;
  font-weight: 400;
  color: var(--bg);
}

.spotlight-body {
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 28px;
  color: rgba(250,248,245,0.75);
}

.spotlight-body:last-child {
  margin-bottom: 0;
}

.spotlight-cards {
  display: grid;
  gap: 16px;
}

.spotlight-card {
  background: rgba(250,248,245,0.08);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(250,248,245,0.12);
  padding: 24px 28px;
  border-radius: 2px;
}

.spotlight-stat {
  margin: 0 0 6px;
  font-family: "Playfair Display", serif;
  font-size: 36px;
  line-height: 1;
  font-weight: 300;
  color: var(--bg);
}

.spotlight-stat-label {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: rgba(250,248,245,0.7);
}

/* ─── RELATED FEATURES ─── */
.related-intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.related-intro .h2 {
  margin-bottom: 16px;
}

.related-subhead {
  max-width: 560px;
  margin: 0 auto 64px;
  font-size: 18px;
  line-height: 28px;
  color: var(--text-secondary);
  text-align: center;
}

.related-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.related-card {
  background: var(--surface);
  border-radius: var(--card-radius);
  padding: var(--card-padding);
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--primary);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.4s ease;
}

.related-card:hover {
  box-shadow: var(--shadow-hover);
}

.related-badge {
  margin: 0 0 12px;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--primary);
}

.related-card-title {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  color: var(--text-headline);
}

.related-card-body {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 24px;
  color: var(--text-secondary);
  flex: 1;
}

.related-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  line-height: 20px;
  color: var(--primary);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: color 0.3s ease;
}

.related-link:hover {
  color: var(--primary-muted);
}

/* ─── FINAL CTA ─── */
.final-cta-section {
  background: var(--bg);
}

.final-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.final-cta-h2 {
  margin: 0 0 24px;
  font-family: "Playfair Display", serif;
  font-size: 48px;
  line-height: 56px;
  letter-spacing: -0.005em;
  font-weight: 400;
  color: var(--text-headline);
}

.final-cta-body {
  max-width: 620px;
  margin: 0 auto 48px;
  font-size: 18px;
  line-height: 28px;
  color: var(--text-secondary);
}

.final-cta-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.final-cta-fine {
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 20px;
  color: var(--text-muted);
}

/* ─── FOOTER ─── */
.feature-footer {
  background: var(--primary);
  color: var(--bg);
  padding: 80px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-wordmark {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--bg);
  font-family: "Playfair Display", serif;
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
}

.footer-tagline {
  margin: 0;
  max-width: 240px;
  font-size: 14px;
  line-height: 22px;
  color: rgba(250,248,245,0.6);
}

.footer-heading {
  margin: 0 0 16px;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--bg);
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin: 0 0 2px;
}

.footer-links a {
  color: rgba(250,248,245,0.65);
  font-size: 14px;
  line-height: 2.2;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--bg);
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(250,248,245,0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-copy,
.footer-bottom-links {
  font-size: 13px;
  line-height: 20px;
  color: rgba(250,248,245,0.4);
}

.footer-bottom-links a:hover {
  color: var(--bg);
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

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

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
  :root {
    --margin-desktop: 64px;
    --section-padding-v: 96px;
  }

  .hero-title {
    font-size: 52px;
    line-height: 60px;
  }

  .hero-grid,
  .deep-dive-block,
  .deep-dive-block.reverse {
    gap: 52px;
  }

  .spotlight-h2 {
    font-size: 34px;
    line-height: 42px;
  }

  .final-cta-h2 {
    font-size: 40px;
    line-height: 48px;
  }
}

@media (max-width: 1024px) {
  :root { --margin-desktop: 40px; }

  .nav-inner { width: min(calc(100% - 48px), var(--max-width)); }
  .nav-center { gap: 24px; }

  .hero-grid,
  .deep-dive-block,
  .deep-dive-block.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .deep-dive-block.reverse .deep-mockup {
    order: -1;
  }

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

  .problem-cards-grid,
  .related-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .spotlight-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .benefits-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .benefit-divider {
    width: 60%;
    height: 1px;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  :root {
    --margin-desktop: 20px;
    --section-padding-v: 64px;
  }

  .nav-inner {
    width: calc(100% - 40px);
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-center,
  .nav-cta-wrap { display: none; }

  .nav-mobile-toggle { display: inline-flex; }

  .feature-hero { padding: 96px 0 64px; }

  .hero-title { font-size: 40px; line-height: 48px; }

  .hero-subhead { font-size: 17px; line-height: 28px; }

  .h2 { font-size: 32px; line-height: 40px; }

  .spotlight-h2 { font-size: 28px; line-height: 36px; }

  .final-cta-h2 { font-size: 32px; line-height: 40px; }

  .steps-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }

  .proposal-pages-preview {
    grid-template-columns: 1fr;
  }

  .proposal-page-cover {
    width: 100%;
    padding: 14px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }

  .btn,
  .nav-link,
  .nav-mobile-panel,
  .step-card,
  .problem-card,
  .related-card,
  .reveal,
  .hero-mockup-card {
    transition: none !important;
    animation: none !important;
  }

  .reveal,
  .hero-mockup-card {
    opacity: 1 !important;
    transform: none !important;
  }
}
