/* ── TOKENS ─────────────────────────────────────────────────────────────── */
:root {
  --ink: #0f1117;
  --ink-soft: #3a3d47;
  --ink-muted: #7a7e8a;
  --cream: #f5f3ee;          /* slightly warmer off-white from one-pager */
  --cream-dark: #ede9e1;
  --white: #ffffff;
  --rule: #dcd8cf;
  --teal: #1a8a7c;           /* bright teal from "Lens" in logo */
  --teal-dark: #116b60;
  --teal-light: #e2f3f1;
  --slate: #2d5f6e;          /* slate-teal from "Lend" in logo */
  --navy: #1c2b3a;           /* dark navy from icon background */
  --navy-dark: #111e2b;
  --gold: #b8860b;
  --gold-light: #fdf6e0;
  --coral: #c0442a;
  --coral-light: #fbeee9;
  --purple: #4a3a7a;
  --purple-light: #eeebf7;
  --blue: #1a4a7a;
  --blue-light: #e6eef8;
}

/* ── RESET ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--ink); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── UTILITY ────────────────────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.eyebrow::after { content: ''; flex: none; width: 40px; height: 1px; background: var(--rule); }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal); color: var(--white);
  padding: 13px 28px;
  font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  border: none; cursor: pointer; transition: background 0.2s; text-decoration: none;
}
.btn-primary:hover { background: var(--teal-dark); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 12px 26px;
  font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.35); cursor: pointer; transition: all 0.2s; text-decoration: none;
}
.btn-ghost:hover { border-color: white; background: rgba(255,255,255,0.08); }

.btn-primary-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: var(--white);
  padding: 14px 30px;
  font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  border: none; cursor: pointer; transition: background 0.2s; text-decoration: none;
}
.btn-primary-dark:hover { background: var(--teal); }

/* ── NAV ────────────────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(245,243,238,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 32px;
  height: 66px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 32px; width: auto; }
.nav-logo-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px; font-weight: 700;
  color: var(--slate); letter-spacing: -0.3px;
}
.nav-logo-text span { color: var(--teal); }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--ink-soft); transition: color 0.15s; }
.nav-links a:hover { color: var(--teal); }
.nav-links .nav-cta a {
  background: var(--navy); color: var(--white);
  padding: 8px 18px;
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  transition: background 0.2s;
}
.nav-links .nav-cta a:hover { background: var(--teal); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-hamburger span { width: 22px; height: 2px; background: var(--ink); display: block; }

/* ── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 140px 0 100px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 420px; height: 420px; background: var(--teal); opacity: 0.07; border-radius: 50%;
}
.hero::after {
  content: ''; position: absolute; bottom: -100px; left: -60px;
  width: 320px; height: 320px; background: var(--slate); opacity: 0.12; border-radius: 50%;
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.hero-eyebrow {
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--teal); }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem); font-weight: 900;
  line-height: 1.1; letter-spacing: -1px; margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: var(--teal); font-weight: 400; }
.hero-body {
  font-size: 15px; font-weight: 300; line-height: 1.75;
  color: rgba(255,255,255,0.72); margin-bottom: 36px; max-width: 460px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-right { display: flex; flex-direction: column; gap: 16px; }
.hero-stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-left: 3px solid var(--teal);
  padding: 20px 24px;
  display: flex; align-items: center; gap: 20px;
}
.hero-stat-card .stat-num {
  font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700;
  color: var(--teal); line-height: 1; white-space: nowrap; min-width: 60px;
}
.hero-stat-card .stat-label { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.4; }
.hero-stat-card .stat-label strong { display: block; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.88); margin-bottom: 2px; }

/* ── INTRO BAND ─────────────────────────────────────────────────────────── */
.intro-band { background: var(--teal); color: var(--white); padding: 28px 0; }
.intro-band-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; gap: 40px;
}
.intro-band-text { font-size: 14px; font-weight: 300; line-height: 1.7; flex: 1; }
.intro-band-text strong { font-weight: 600; }
.intro-band-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.3); flex-shrink: 0; }

/* ── PIPELINE ───────────────────────────────────────────────────────────── */
.pipeline-section { padding: 100px 0; background: var(--white); }
.pipeline-header { margin-bottom: 56px; }
.pipeline-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900;
  color: var(--navy); letter-spacing: -0.5px; margin-bottom: 14px;
}
.pipeline-header p { font-size: 15px; font-weight: 300; color: var(--ink-soft); max-width: 520px; line-height: 1.7; }
.pipeline-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--rule); }
.pipeline-item {
  padding: 36px 40px; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  position: relative; transition: background 0.2s;
}
.pipeline-item:hover { background: var(--cream); }
.pipeline-item:nth-child(2n) { border-right: none; }
.pipeline-item:nth-last-child(-n+2) { border-bottom: none; }
.pipeline-item-full { grid-column: 1 / -1; border-right: none; }
.pipeline-num { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 8px; }
.pipeline-verb { font-size: 10px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; padding: 3px 9px; border-radius: 2px; display: inline-block; margin-bottom: 12px; }
.pipeline-item h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.3; }
.pipeline-item p { font-size: 13px; font-weight: 300; color: var(--ink-soft); line-height: 1.7; }
.pipeline-item p strong { font-weight: 500; color: var(--ink); }

.pi-teal .pipeline-num { color: var(--teal); }
.pi-teal .pipeline-verb { background: var(--teal-light); color: var(--teal); }
.pi-purple .pipeline-num { color: var(--purple); }
.pi-purple .pipeline-verb { background: var(--purple-light); color: var(--purple); }
.pi-blue .pipeline-num { color: var(--blue); }
.pi-blue .pipeline-verb { background: var(--blue-light); color: var(--blue); }
.pi-coral .pipeline-num { color: var(--coral); }
.pi-coral .pipeline-verb { background: var(--coral-light); color: var(--coral); }
.pi-gold .pipeline-num { color: var(--gold); }
.pi-gold .pipeline-verb { background: var(--gold-light); color: var(--gold); }
.pi-slate .pipeline-num { color: var(--slate); }
.pi-slate .pipeline-verb { background: rgba(45,95,110,0.1); color: var(--slate); }

/* ── VALUE PROPS ────────────────────────────────────────────────────────── */
.value-section { padding: 100px 0; background: var(--cream); }
.value-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 900; color: var(--navy); letter-spacing: -0.5px; margin-bottom: 14px; }
.value-section .section-sub { font-size: 15px; font-weight: 300; color: var(--ink-soft); max-width: 500px; line-height: 1.7; margin-bottom: 52px; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--rule); background: var(--white); }
.value-cell { padding: 32px 30px; border-right: 1px solid var(--rule); }
.value-cell:last-child { border-right: none; }
.value-icon { font-family: 'DM Mono', monospace; font-size: 22px; color: var(--teal); margin-bottom: 14px; }
.value-cell h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.value-cell p { font-size: 13px; font-weight: 300; color: var(--ink-muted); line-height: 1.7; }

/* ── PRICING TEASER ─────────────────────────────────────────────────────── */
.pricing-teaser { padding: 100px 0; background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.pricing-teaser::before { content: ''; position: absolute; top: -120px; right: -80px; width: 500px; height: 500px; background: var(--teal); opacity: 0.05; border-radius: 50%; }
.pricing-teaser-inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.pricing-teaser h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; letter-spacing: -0.5px; margin-bottom: 14px; }
.pricing-teaser .section-sub { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.6); max-width: 520px; line-height: 1.7; margin-bottom: 52px; }
.pricing-tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid rgba(255,255,255,0.1); margin-bottom: 40px; }
.pricing-tier { padding: 30px 26px; border-right: 1px solid rgba(255,255,255,0.1); }
.pricing-tier:last-child { border-right: none; }
.pricing-tier.featured { background: rgba(26,138,124,0.12); border-color: rgba(26,138,124,0.3); }
.tier-badge { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.tier-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.tier-deals { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.5); margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.tier-deals strong { display: block; font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.85); margin-bottom: 2px; }
.tier-feature { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.6; }
.pricing-cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.pricing-cta p { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.45); }
.pricing-cta p a { color: var(--teal); }

/* ── CTA BAND ───────────────────────────────────────────────────────────── */
.cta-band { padding: 80px 0; background: var(--cream-dark); border-top: 1px solid var(--rule); }
.cta-band-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.cta-band h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 900; color: var(--navy); letter-spacing: -0.5px; margin-bottom: 10px; }
.cta-band p { font-size: 14px; font-weight: 300; color: var(--ink-soft); max-width: 440px; line-height: 1.7; }
.cta-band-actions { flex-shrink: 0; }

/* ── FOOTER ─────────────────────────────────────────────────────────────── */
footer { background: var(--navy-dark); color: var(--white); padding: 60px 0 36px; }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 32px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-brand img { height: 28px; width: auto; }
.footer-brand-text { font-family: 'DM Sans', sans-serif; font-size: 20px; font-weight: 700; color: var(--white); letter-spacing: -0.3px; }
.footer-brand-text span { color: var(--teal); }
.footer-tagline { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.38); line-height: 1.6; margin-bottom: 20px; }
.footer-col h4 { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.55); transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--teal); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.28); }
.footer-bottom a { color: rgba(255,255,255,0.38); transition: color 0.15s; }
.footer-bottom a:hover { color: var(--teal); }

/* ── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .pipeline-grid { grid-template-columns: 1fr; }
  .pipeline-item { border-right: none; }
  .pipeline-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .pipeline-item:last-child { border-bottom: none; }
  .value-grid { grid-template-columns: 1fr; }
  .value-cell { border-right: none; border-bottom: 1px solid var(--rule); }
  .value-cell:last-child { border-bottom: none; }
  .pricing-tiers { grid-template-columns: 1fr 1fr; }
  .pricing-tier:nth-child(2) { border-right: none; }
  .pricing-tier:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.1); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cta-band-inner { flex-direction: column; gap: 32px; }
  .intro-band-inner { flex-direction: column; gap: 20px; }
  .intro-band-divider { display: none; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .hero { padding: 110px 0 72px; }
  .pricing-tiers { grid-template-columns: 1fr; }
  .pricing-tier { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .footer-top { grid-template-columns: 1fr; }
}
