/* ============================================
   ALEXO DEALFLOW — Design System
   Royal blue + warm gold. Glassmorphic, founder-led.
   Mirrors Alexo Digital structural pattern, distinct brand.
   ============================================ */

:root {
  /* Brand palette (LOCKED per locked-decisions §) */
  --primary: #1A3DB8;
  --primary-light: #33ADE6;
  --primary-deep: #2C3E78;
  --primary-glow: rgba(26, 61, 184, 0.3);
  --primary-gradient: linear-gradient(135deg, #1A3DB8, #33ADE6);

  --accent: #F59E0B;
  --accent-light: #FCD34D;
  --accent-glow: rgba(245, 158, 11, 0.28);
  --accent-gradient: linear-gradient(135deg, #F59E0B, #FCD34D);

  /* Surfaces */
  --bg-dark: #0A1838;
  --bg-deep: #050d22;
  --bg-elevated: #0f1f44;
  --bg-card: #122551;
  --bg-card-hover: #16295c;
  --bg-alt: #F4F8FC;
  --bg-nav: rgba(10, 24, 56, 0.78);

  /* Text */
  --text: #FFFFFF;
  --text-secondary: #B0B5C4;
  --text-tertiary: #8e96aa;
  --text-dark: #1A1A2E;
  --text-dark-secondary: #4a5063;

  /* Borders */
  --border: rgba(255, 255, 255, 0.07);
  --border-hover: rgba(255, 255, 255, 0.14);
  --border-gold: rgba(245, 158, 11, 0.35);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 1000px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.42);
  --shadow-card-hover: 0 8px 40px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 40px var(--primary-glow);
  --shadow-glow-gold: 0 0 36px var(--accent-glow);

  /* Motion */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 820px;
  --section-spacing: clamp(52px, 6vw, 92px);
  --container-padding: clamp(20px, 5vw, 40px);
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg-dark);
  overflow-x: hidden;
}

#starscape {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.45rem, 3vw, 2rem); }
h4 {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

p {
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  color: var(--text-secondary);
  max-width: 680px;
}

.text-gold { color: var(--accent); }
.text-light { color: var(--primary-light); }
.text-small { font-size: 0.875rem; color: var(--text-tertiary); }

.text-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-gold {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
  z-index: 1;
}

.container--narrow { max-width: var(--max-width-narrow); }

section {
  padding: var(--section-spacing) 0;
  position: relative;
}

/* The first section after the hero gets a tighter top so a short or centered
   first element does not leave a dead band between the hero and the content. */
.hero + section {
  padding-top: clamp(36px, 4vw, 56px);
}

.section--alt {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--accent);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading p {
  margin: 18px auto 0;
  max-width: 620px;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 var(--container-padding);
  transition: var(--transition-base);
}

.nav--scrolled {
  background: var(--bg-nav);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--text);
}

.nav__logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Instrument Serif', serif;
  font-size: 1.1rem;
  color: var(--text);
}

.nav__logo-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.nav__phone-pill {
  margin-left: 14px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav__phone-pill a {
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.nav__phone-pill a:hover { color: var(--accent-light); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav__link {
  position: relative;
  padding: 8px 14px;
  font-size: 0.9375rem;
  font-weight: 450;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.nav__link:hover,
.nav__link--active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

/* Dropdown */
.nav__dropdown { position: relative; }

.nav__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__dropdown-trigger svg {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-fast);
}

.nav__dropdown:hover .nav__dropdown-trigger svg { transform: rotate(180deg); }

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 280px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-card);
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-item {
  display: block;
  padding: 10px 14px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.nav__dropdown-item:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav__dropdown-item span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-tertiary);
  margin-top: 2px;
}

/* Right-side nav action group: keeps Client Login + Book a Demo together so the
   nav's space-between layout does not push them apart. */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__cta { margin-left: 0; }

/* Secondary glassmorphism nav action (Client Login): quieter than the gold CTA,
   sits just to the left of it. Slightly smaller + lighter weight to de-emphasize. */
.nav__login {
  margin-left: 0;
  padding: 11px 20px;
  min-height: 42px;
  font-size: 0.875rem;
  font-weight: 500;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition-base);
}

.nav__hamburger--open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger--open span:nth-child(2) { opacity: 0; }
.nav__hamburger--open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 999;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 100px 24px 40px;
}

.nav__mobile--open { display: block; }

.nav__mobile-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 480px;
  margin: 0 auto;
}

.nav__mobile-link,
.nav__mobile-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  font-family: 'Instrument Serif', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  background: none;
  border: none;
  border-radius: var(--radius-md);
  text-align: left;
  cursor: pointer;
  letter-spacing: -0.01em;
}

.nav__mobile-link:hover,
.nav__mobile-trigger:hover { background: var(--bg-elevated); }

.nav__mobile-chevron {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform var(--transition-base);
  color: var(--text-tertiary);
}

.nav__mobile-group--open .nav__mobile-chevron { transform: rotate(180deg); }

.nav__mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 12px;
}

.nav__mobile-group--open .nav__mobile-submenu { max-height: 600px; }

.nav__mobile-submenu a {
  display: block;
  padding: 12px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 450;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
}

.nav__mobile-submenu a:hover { background: var(--bg-elevated); color: var(--text); }

.nav__mobile-cta {
  margin-top: 24px;
  width: 100%;
  justify-content: center;
}

.nav__mobile-phone {
  margin-top: 24px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.nav__mobile-phone a { color: var(--accent); font-weight: 600; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: all var(--transition-base);
  white-space: nowrap;
  min-height: 48px;
}

.btn--primary {
  background: var(--accent-gradient);
  color: var(--text-dark);
  box-shadow: 0 4px 16px var(--accent-glow);
}

.btn--primary:hover {
  box-shadow: var(--shadow-glow-gold);
  transform: translateY(-1px);
  color: var(--text-dark);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn--secondary:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.btn--ghost {
  background: transparent;
  color: var(--primary-light);
  padding: 8px 0;
  min-height: auto;
}

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

.btn--large {
  padding: 18px 38px;
  font-size: 1.0625rem;
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.btn:hover svg { transform: translateX(3px); }

/* --- Cards --- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
  transition: all var(--transition-base);
}

.card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(245, 158, 11, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--accent);
}

.card__icon svg { width: 24px; height: 24px; }

.card__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.card__title {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}

.card__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--accent);
  transition: var(--transition-fast);
}

.card__link:hover { color: var(--accent-light); }

.card__link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.card__link:hover svg { transform: translateX(4px); }

/* Glass card */
.glass-card {
  background: rgba(18, 37, 81, 0.6);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 3vw, 42px);
}

/* About-card variant (dual-class per MEMORY.md D100 lesson) */
.about-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 110px;
  padding-bottom: 60px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__gradient {
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.18;
  animation: float 22s ease-in-out infinite;
}

.hero__gradient--1 {
  top: -180px;
  right: -120px;
  background: var(--primary-light);
}

.hero__gradient--2 {
  bottom: -200px;
  left: -160px;
  background: var(--accent);
  opacity: 0.13;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Split layout: copy left, founder card right */
.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content { max-width: 640px; }

.hero__pre {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero__pre-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px var(--accent);
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 { margin-bottom: 22px; }

.hero__sub {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 580px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero__price-line {
  font-size: 0.95rem;
  color: var(--text);
  background: rgba(245, 158, 11, 0.08);
  border-left: 3px solid var(--accent);
  padding: 14px 18px;
  margin-bottom: 32px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-weight: 500;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero__trust {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  letter-spacing: 0.02em;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.hero__trust strong { color: var(--text-secondary); font-weight: 500; }

/* Founder card right side */
.hero__founder {
  position: relative;
}

.founder-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(245, 158, 11, 0.06);
  aspect-ratio: 4 / 5;
}

.founder-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
  color: var(--text-tertiary);
  font-family: 'Instrument Serif', serif;
  font-size: 1.3rem;
  padding: 30px;
  text-align: center;
}

.founder-card__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px 24px;
  background: linear-gradient(180deg, rgba(10, 24, 56, 0) 0%, rgba(10, 24, 56, 0.92) 70%);
  backdrop-filter: blur(2px);
}

.founder-card__name {
  font-family: 'Instrument Serif', serif;
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 2px;
}

.founder-card__title {
  font-size: 0.82rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* --- Founding member banner (top of Deal Flow Accelerator page) --- */
.founding-banner {
  background: linear-gradient(90deg, var(--primary-deep) 0%, var(--primary) 50%, var(--primary-deep) 100%);
  border-bottom: 1px solid var(--border-gold);
  padding: 14px 0;
  position: relative;
  top: 72px;
  z-index: 998;
}

.founding-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  text-align: center;
}

.founding-banner__badge {
  background: var(--accent);
  color: var(--text-dark);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founding-banner__text {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

.founding-banner__text strong { color: var(--accent-light); font-weight: 700; }

/* --- Pillars grid --- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.pillar-card {
  --pcard-pad: clamp(26px, 2.6vw, 32px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0 var(--pcard-pad) clamp(28px, 3vw, 34px);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-smooth);
}

.pillar-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  background: var(--bg-card-hover);
}

.pillar-card:hover::before { transform: scaleX(1); }

.pillar-card__image {
  width: calc(100% + 2 * var(--pcard-pad));
  margin: 0 calc(-1 * var(--pcard-pad)) 22px;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.pillar-card__index {
  font-family: 'Instrument Serif', serif;
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 6px;
  line-height: 1;
}

.pillar-card__name {
  font-family: 'Instrument Serif', serif;
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 10px;
}

.pillar-card__meta {
  display: flex;
  gap: 18px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-tertiary);
}

.pillar-card__meta-item strong {
  display: block;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

/* --- 3-offer routing block (homepage) --- */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.offer-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition-base);
  min-width: 0;
  overflow: hidden;
}

.offer-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  background: var(--bg-card-hover);
}

.offer-card--featured {
  border: 1.5px solid var(--accent);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.05) 0%, var(--bg-card) 30%);
  box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.2), 0 30px 60px rgba(0, 0, 0, 0.4);
  transform: translateY(-6px);
}

.offer-card--featured:hover {
  border-color: var(--accent-light);
  transform: translateY(-9px);
}

.offer-card__flag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent);
  color: var(--text-dark);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}

.offer-card__name {
  font-family: 'Instrument Serif', serif;
  font-size: 1.7rem;
  color: var(--text);
  margin-bottom: 8px;
}

.offer-card__tagline {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  min-height: 50px;
}

.offer-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.offer-card__price-amount {
  font-family: 'Instrument Serif', serif;
  font-size: 2.4rem;
  color: var(--text);
  line-height: 1;
}

.offer-card__price-period {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.offer-card__price-note {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  margin-bottom: 22px;
  flex-grow: 1;
}

.offer-card__features {
  list-style: none;
  margin: 18px 0 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offer-card__features li {
  position: relative;
  padding-left: 24px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.offer-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23F59E0B'%3E%3Cpath d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.offer-card__cta {
  margin-top: auto;
  width: 100%;
}

/* --- Deliverables table --- */
.deliverables {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.deliverable-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  min-width: 0;
  overflow: hidden;
  transition: var(--transition-fast);
}

.deliverable-card:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
}

.deliverable-card__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Instrument Serif', serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.deliverable-card__body {
  flex: 1;
  min-width: 0;
}

.deliverable-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}

.deliverable-card__text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* --- Disqualifier two-column --- */
.disqualify-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.disqualify-col {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 38px);
}

.disqualify-col--in {
  border-left: 3px solid var(--accent);
}

.disqualify-col--out {
  border-left: 3px solid #6B7280;
  opacity: 0.92;
}

.disqualify-col h3 {
  margin-bottom: 24px;
  font-size: 1.4rem;
}

.disqualify-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.disqualify-list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.disqualify-list--in li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
}

.disqualify-list--out li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #8e96aa;
  font-weight: 700;
  font-size: 1.1rem;
}

/* --- Benchmark tables --- */
.benchmark-tables {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.benchmark-table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 32px);
  overflow: hidden;
}

.benchmark-table-wrap h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.benchmark-table-wrap__sub {
  font-size: 0.9rem;
  color: var(--text-tertiary);
  margin-bottom: 22px;
  font-style: italic;
}

.benchmark-table-wrap__preface {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 22px;
  padding: 14px 18px;
  background: rgba(245, 158, 11, 0.06);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  line-height: 1.6;
}

.benchmark-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.benchmark-table th,
.benchmark-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}

.benchmark-table th {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-tertiary);
}

.benchmark-table td { color: var(--text-secondary); }

.benchmark-table td strong { color: var(--text); font-weight: 600; }

.benchmark-table__footnote {
  font-size: 0.82rem;
  color: var(--text-tertiary);
  margin-top: 18px;
  font-style: italic;
}

/* --- Comparison matrix table (pricing page) --- */
.matrix-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  overflow-x: auto;
}

.matrix-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 720px;
}

.matrix-table th,
.matrix-table td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}

.matrix-table th {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--text);
  font-size: 0.92rem;
}

.matrix-table th.matrix-table__featured {
  color: var(--accent);
  background: rgba(245, 158, 11, 0.06);
}

.matrix-table td:first-child {
  color: var(--text);
  font-weight: 500;
}

.matrix-table td.matrix-table__yes { color: var(--accent); font-weight: 600; }
.matrix-table td.matrix-table__no { color: var(--text-tertiary); }
.matrix-table td.matrix-table__partial { color: var(--text-secondary); font-style: italic; }
.matrix-table td.matrix-table__featured { background: rgba(245, 158, 11, 0.04); }

/* --- Testimonial cards --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-base);
}

.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.testimonial-card__bg {
  aspect-ratio: 16 / 9;
  background: var(--bg-elevated);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-card__bg[data-video] { cursor: pointer; }

.testimonial-card__play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.testimonial-card__play svg { width: 22px; height: 22px; margin-left: 3px; }

.testimonial-card:hover .testimonial-card__play {
  transform: scale(1.08);
  background: var(--accent-light);
}

.testimonial-card__body { padding: 24px 26px; }

.testimonial-card__quote {
  font-family: 'Instrument Serif', serif;
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.45;
  margin-bottom: 18px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-card__name {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

.testimonial-card__biz {
  font-size: 0.82rem;
  color: var(--text-tertiary);
}

.testimonial-card__result {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
}

/* --- Why us compare grid --- */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.compare-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 36px);
}

.compare-card__name {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 10px;
}

.compare-card__claim {
  font-family: 'Instrument Serif', serif;
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.25;
}

.compare-card__detail {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.compare-card--us {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.05) 0%, var(--bg-card) 40%);
}

.compare-card--us .compare-card__name { color: var(--accent); }

/* --- Process / 90-day roadmap --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
}

.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 32px);
  position: relative;
}

.process-card__week {
  font-family: 'Instrument Serif', serif;
  font-size: 0.9rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.process-card__phase {
  font-family: 'Instrument Serif', serif;
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 14px;
}

.process-card__text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Voice agent demo callout --- */
.voice-cta {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.03));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 4vw, 56px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.voice-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.voice-cta__eyebrow {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
}

.voice-cta__number {
  display: block;
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--accent);
  margin-bottom: 12px;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  position: relative;
}

.voice-cta__number a { color: var(--accent); transition: color var(--transition-fast); }
.voice-cta__number a:hover { color: var(--accent-light); }

.voice-cta__text {
  font-size: 1rem;
  color: var(--text);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
}

/* --- Guarantee block --- */
.guarantee-block {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: clamp(36px, 4vw, 64px);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

.guarantee-emblem {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-dark);
  font-family: 'Instrument Serif', serif;
  box-shadow: 0 12px 36px rgba(245, 158, 11, 0.35);
  position: relative;
}

.guarantee-emblem::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 2px dashed rgba(26, 26, 46, 0.3);
}

.guarantee-emblem__num {
  font-size: 3.4rem;
  line-height: 1;
  font-weight: 400;
}

.guarantee-emblem__label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  margin-top: 4px;
}

.guarantee-block__body h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 16px;
}

.guarantee-block__body p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 14px;
  max-width: none;
}

.guarantee-block__body p:last-child { margin-bottom: 0; }

.guarantee-block__body strong { color: var(--text); font-weight: 600; }

/* --- FAQ --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item--open { border-color: var(--border-gold); }

.faq-question {
  width: 100%;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: 'Inter', sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.faq-question:hover { background: rgba(255, 255, 255, 0.02); }

.faq-question__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform var(--transition-base);
}

.faq-item--open .faq-question__icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 26px;
}

.faq-item--open .faq-answer {
  padding: 0 26px 22px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: none;
}

/* --- Founder section --- */
.founder-block {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.founder-block__photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.founder-block__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-block__photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
  color: var(--text-tertiary);
  font-family: 'Instrument Serif', serif;
  padding: 30px;
  text-align: center;
}

.founder-block__name {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.15;
}

.founder-block__bio {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 640px;
}

.founder-block__creds {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.founder-block__creds li {
  position: relative;
  padding-left: 24px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.founder-block__creds li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.founder-sign-off {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--accent);
  font-size: 0.95rem;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: block;
}

/* --- Booking widget --- */
.booking-wrap {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.booking-wrap iframe {
  width: 100%;
  min-height: 760px;
  border: 0;
  display: block;
  background: #ffffff;
}

/* --- Trust strip (post-CTA mini chip row) --- */
.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.trust-chip {
  font-size: 0.78rem;
  color: var(--text-tertiary);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

/* --- Brand narrative quote block --- */
.narrative-quote {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: 24px 0;
}

.narrative-quote__text {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--text);
  line-height: 1.35;
  margin: 0 auto 22px;
  font-style: italic;
  letter-spacing: -0.01em;
}

.narrative-quote__attribution {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--accent);
  font-size: 1rem;
}

/* --- Final CTA section --- */
.final-cta {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.final-cta h2 { margin-bottom: 18px; }

.final-cta p {
  margin: 0 auto 32px;
  font-size: 1.05rem;
}

.final-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Footer --- */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  position: relative;
  z-index: 1;
}

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

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.footer__tagline {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  letter-spacing: 0.02em;
  font-style: italic;
}

.footer__contact {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 8px;
  line-height: 1.7;
}

.footer__contact a { color: var(--accent); }
.footer__contact a:hover { color: var(--accent-light); }

.footer__col-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 18px;
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__list a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer__list a:hover { color: var(--text); }

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__copyright {
  font-size: 0.82rem;
  color: var(--text-tertiary);
}

.footer__parent {
  font-size: 0.82rem;
  color: var(--text-tertiary);
}

.footer__parent a { color: var(--text-secondary); }
.footer__parent a:hover { color: var(--accent); }

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.footer__social a:hover {
  background: var(--accent);
  color: var(--text-dark);
  border-color: var(--accent);
}

.footer__social svg { width: 16px; height: 16px; }

/* --- Reveal animation defaults --- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Section headings stay visible so a section never reads as an empty band
   while the rest of its content waits to reveal on scroll. */
.section-heading.reveal {
  opacity: 1;
  transform: none;
}

.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-children.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* --- Skip link a11y --- */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  padding: 8px 16px;
  background: var(--accent);
  color: var(--text-dark);
  z-index: 9999;
  border-radius: 0 0 8px 0;
  font-weight: 600;
  transition: top var(--transition-fast);
}

.skip-link:focus { top: 0; }

/* --- Service feature blocks --- */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  margin-bottom: clamp(40px, 6vw, 80px);
}

.feature-block:last-child { margin-bottom: 0; }

.feature-block--reverse {
  direction: rtl;
}

.feature-block--reverse > * { direction: ltr; }

.feature-block__visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-block__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-block__visual-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  font-family: 'Instrument Serif', serif;
  padding: 30px;
  text-align: center;
}

.feature-block h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  margin-bottom: 18px;
}

.feature-block p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 14px;
  max-width: 540px;
}

.feature-block ul {
  list-style: none;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-block ul li {
  position: relative;
  padding-left: 24px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.feature-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* --- Section dividers --- */
.divider {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 18px auto 22px;
  opacity: 0.6;
}

/* --- Visually hidden a11y --- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ===========================================
   PHASE I — VISUAL REDESIGN UTILITIES
   Full-bleed hero backgrounds + alternating section palette.
   =========================================== */

/* Hero with background image: the photo fills the whole above-the-fold view,
   a lighter overlay keeps the image visible, and white text gets a shadow. */
.hero--bg-image {
  position: relative;
  min-height: 92vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay is darker at the top (behind the nav) and bottom, lighter through
   the middle so the photograph stays clearly visible top-to-bottom. */
.hero--bg-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 16, 38, 0.62) 0%, rgba(7, 16, 38, 0.32) 44%, rgba(7, 16, 38, 0.58) 100%);
  z-index: 1;
}

.hero--bg-image .container,
.hero--bg-image .hero__content,
.hero--bg-image .hero__layout {
  position: relative;
  z-index: 2;
}

/* White hero text over a photo: force white + a black shadow/scrim so it stays
   legible against any part of the image (per Lorenzo's legibility requirement). */
.hero--bg-image h1,
.hero--bg-image .hero__sub,
.hero--bg-image .hero__price-line,
.hero--bg-image .hero__trust {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.55), 0 1px 4px rgba(0, 0, 0, 0.75);
}

.hero--bg-image .hero__sub {
  color: #ffffff;
}

.hero--bg-image .hero__trust,
.hero--bg-image .hero__trust strong {
  color: rgba(255, 255, 255, 0.92);
}

/* Center-aligned hero variant for copy-only heroes (used when bg image removed founder card) */
.hero--center .hero__content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.hero--center .hero__pre {
  margin-left: auto;
  margin-right: auto;
  display: inline-flex;
}

.hero--center .hero__sub {
  margin-left: auto;
  margin-right: auto;
}

.hero--center .hero__actions {
  justify-content: center;
}

.hero--center .hero__trust {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero--center .hero__price-line {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Section background variants — break the blue-on-blue stacking */
.section--cream {
  background: var(--bg-alt);
  color: var(--text-dark);
  border-top: none;
  border-bottom: none;
}

.section--cream h1,
.section--cream h2,
.section--cream h3,
.section--cream h4 {
  color: var(--text-dark);
}

.section--cream p,
.section--cream li {
  color: var(--text-dark-secondary);
}

.section--cream .section-label {
  color: var(--primary);
}

.section--cream .section-label::before {
  background: var(--primary);
}

.section--cream .text-gold { color: var(--accent); }

.section--cream strong { color: var(--text-dark); }

.section--cream .compare-card,
.section--cream .pillar-card,
.section--cream .offer-card,
.section--cream .glass-card,
.section--cream .process-card,
.section--cream .deliverable-card {
  background: #FFFFFF;
  color: var(--text-dark);
  border: 1px solid rgba(26, 61, 184, 0.12);
  box-shadow: 0 4px 24px rgba(26, 61, 184, 0.08);
}

.section--cream .compare-card h3,
.section--cream .pillar-card__name,
.section--cream .offer-card__name,
.section--cream .process-card__phase,
.section--cream .deliverable-card h3,
.section--cream .glass-card h3 {
  color: var(--text-dark);
}

.section--cream .compare-card p,
.section--cream .pillar-card p,
.section--cream .offer-card p,
.section--cream .process-card p,
.section--cream .deliverable-card p,
.section--cream .glass-card p,
.section--cream .glass-card li {
  color: var(--text-dark-secondary);
}

.section--cream .pillar-card__meta-item strong,
.section--cream .compare-card__name {
  color: var(--primary);
}

.section--cream .narrative-quote__text {
  color: var(--text-dark);
}

.section--cream .matrix-table {
  background: #FFFFFF;
  color: var(--text-dark);
}

.section--cream .matrix-table th,
.section--cream .matrix-table td {
  color: var(--text-dark);
  border-color: rgba(26, 61, 184, 0.08);
}

.section--cream .faq-question {
  color: var(--text-dark);
}

.section--cream .faq-answer p {
  color: var(--text-dark-secondary);
}

.section--cream .founder-block__bio,
.section--cream .founder-block__creds li {
  color: var(--text-dark-secondary);
}

/* ===========================================
   CARD LEGIBILITY INSIDE CREAM SECTIONS
   Fixes black-on-navy and white-on-white from the cream text overrides
   leaking into cards that keep (or change) their own background.
   =========================================== */

/* Cards re-themed to WHITE in cream: their div-based titles/text are not
   matched by the h3/p overrides, so force them dark. */
.section--cream .deliverable-card__title { color: var(--text-dark); }
.section--cream .deliverable-card__text { color: var(--text-dark-secondary); }
.section--cream .pillar-card__meta-item { color: var(--text-dark-secondary); }
.section--cream .pillar-card__meta-item strong { color: var(--primary); }

/* Cards that intentionally KEEP their dark navy background in a cream
   section must keep LIGHT text (override the cream dark-text leak). */
.section--cream .testimonial-card .testimonial-card__quote,
.section--cream .testimonial-card .testimonial-card__name { color: var(--text); }
.section--cream .testimonial-card .testimonial-card__biz { color: var(--text-tertiary); }
.section--cream .disqualify-col h3 { color: var(--text); }
.section--cream .disqualify-col .disqualify-list li { color: var(--text-secondary); }

/* Offer-card price text uses the light palette by default, which is invisible
   on the white offer cards inside cream sections (the $ amount was white-on-white). */
.section--cream .offer-card__price-amount { color: var(--text-dark); }
.section--cream .offer-card__price-period,
.section--cream .offer-card__price-note { color: var(--text-dark-secondary); }

/* Some emphasis carries an inline color:var(--text*) (the light palette) baked into
   the HTML. Inside a light cream section that renders invisible, so force it dark.
   !important is required to beat the inline style; scoped to cream so dark sections
   (where inline white is correct) are untouched. */
.section--cream [style*="color:var(--text)"],
.section--cream [style*="color: var(--text)"] {
  color: var(--text-dark) !important;
}
.section--cream [style*="color:var(--text-secondary)"],
.section--cream [style*="color: var(--text-secondary)"],
.section--cream [style*="color:var(--text-tertiary)"],
.section--cream [style*="color: var(--text-tertiary)"] {
  color: var(--text-dark-secondary) !important;
}

.section--cream .founder-block__creds li strong {
  color: var(--text-dark);
}

.section--navy {
  background: var(--bg-dark);
  color: var(--text);
}

.section--gold {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--bg-dark);
}

.section--gold h1,
.section--gold h2,
.section--gold h3,
.section--gold h4,
.section--gold p,
.section--gold li,
.section--gold strong {
  color: var(--bg-dark);
}

.section--gold .section-label {
  color: var(--bg-dark);
}

.section--gold .section-label::before {
  background: var(--bg-dark);
}

.section--gold .btn--primary {
  background: var(--bg-dark);
  color: var(--accent-light);
}

.section--gold .btn--primary:hover {
  background: #0d1c44;
  color: var(--accent-light);
}

.section--gold .btn--secondary {
  border-color: var(--bg-dark);
  color: var(--bg-dark);
}

/* Section with full-bleed background image + dark overlay */
.section--image-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.section--image-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 24, 56, 0.78);
  z-index: 0;
}

.section--image-bg > * {
  position: relative;
  z-index: 1;
}

/* Meet Lorenzo body section (About + Dealflow) — 2-column with constrained photo */
.meet-founder {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.meet-founder__photo {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(245, 158, 11, 0.12);
  background: var(--bg-elevated);
}

.meet-founder__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.meet-founder__caption {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--text-tertiary);
  text-align: center;
  letter-spacing: 0.02em;
}

.section--cream .meet-founder__caption {
  color: var(--text-dark-secondary);
}

.meet-founder__copy h2 {
  margin-bottom: 18px;
}

.meet-founder__copy p {
  margin-bottom: 14px;
}

/* Pricing — Dealflow feature section (full-width, distinct treatment) */
.dealflow-feature {
  padding: clamp(70px, 9vw, 110px) 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
}

.dealflow-feature--image-bg {
  background-size: cover;
  background-position: center;
}

.dealflow-feature--image-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 24, 56, 0.88) 0%, rgba(10, 24, 56, 0.78) 100%);
  z-index: 0;
}

.dealflow-feature__inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.dealflow-feature__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.32);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 26px;
}

.dealflow-feature__title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 18px;
}

.dealflow-feature__hook {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--accent);
  font-weight: 400;
  margin-bottom: 14px;
  line-height: 1.2;
}

.dealflow-feature__sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto 36px;
}

.dealflow-feature__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}

.dealflow-feature__pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.28);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
}

.dealflow-feature__list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px;
  max-width: 720px;
  text-align: left;
}

.dealflow-feature__list li {
  position: relative;
  padding: 12px 0 12px 32px;
  color: var(--text-secondary);
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dealflow-feature__list li:last-child { border-bottom: none; }

.dealflow-feature__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--accent);
  font-weight: 700;
}

.dealflow-feature__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.dealflow-feature__link {
  color: var(--text-secondary);
  font-size: 0.92rem;
  text-decoration: underline;
  text-decoration-color: rgba(245, 158, 11, 0.4);
  text-underline-offset: 4px;
  transition: var(--transition-fast);
}

.dealflow-feature__link:hover {
  color: var(--accent);
}

/* Section divider with transition copy */
.section-divider {
  text-align: center;
  padding: 40px 0 0;
  color: var(--text-tertiary);
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
}

.section--cream .section-divider {
  color: var(--text-dark-secondary);
}

/* Pricing 2-column layout (Lite + Pro only) */
.pricing-2col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  max-width: 880px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .pricing-2col { grid-template-columns: 1fr; max-width: 480px; }
  .meet-founder { grid-template-columns: 1fr; text-align: center; }
  .meet-founder__photo { max-width: 240px; margin: 0 auto; }
  .dealflow-feature__pills { flex-direction: column; align-items: center; }
}

/* ===========================================
   RESPONSIVE
   =========================================== */

@media (max-width: 1024px) {
  .hero__layout { grid-template-columns: 1fr; gap: 48px; }
  .hero__founder { max-width: 420px; margin: 0 auto; width: 100%; }
  .pillars-grid { grid-template-columns: 1fr; }
  .offers-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .offer-card--featured { transform: translateY(0); }
  .offer-card--featured:hover { transform: translateY(-3px); }
  .deliverables { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .compare-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-block { grid-template-columns: 1fr; }
  .founder-block__photo { max-width: 280px; }
  .feature-block { grid-template-columns: 1fr; }
  .feature-block--reverse { direction: ltr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__login { display: none; }
  .nav__hamburger { display: flex; }
  .nav__phone-pill { display: none; }
  .hero { min-height: auto; padding-top: 100px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero__sub { font-size: 1rem; }
  .hero__actions { width: 100%; }
  .hero__actions .btn { width: 100%; }
  .disqualify-grid { grid-template-columns: 1fr; }
  .guarantee-block { grid-template-columns: 1fr; text-align: center; }
  .guarantee-emblem { margin: 0 auto; max-width: 180px; }
  .process-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; text-align: left; }
  .matrix-table { font-size: 0.82rem; }
  .matrix-table th, .matrix-table td { padding: 10px 12px; }
  .founding-banner { top: 72px; padding: 12px 0; }
  .founding-banner__text { font-size: 0.85rem; }
}

@media (max-width: 480px) {
  .voice-cta__number { font-size: clamp(2rem, 10vw, 3rem); }
  .voice-cta { padding: 28px 22px; }
  .guarantee-emblem__num { font-size: 2.4rem; }
  .narrative-quote__text { font-size: 1.3rem; }
  .benchmark-table { font-size: 0.82rem; }
  .benchmark-table th, .benchmark-table td { padding: 10px 12px; }
}

/* Accessibility: reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .stagger-children > * { opacity: 1 !important; transform: none !important; }
}

/* ============================================ BLOG ============================================ */

/* --- Blog hub --- */
.blog-hub-intro { text-align: center; max-width: 760px; margin: 0 auto 8px; }

.blog-featured {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg, 20px);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.blog-featured:hover {
  transform: translateY(-4px);
  border-color: rgba(51, 173, 230, 0.4);
  box-shadow: var(--shadow-glow);
}
.blog-featured__media {
  position: relative;
  min-height: 320px;
  background-size: cover;
  background-position: center;
}
.blog-featured__flag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--accent-gradient);
  color: #1A1A2E;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 1000px;
}
.blog-featured__body { padding: clamp(28px, 3.4vw, 44px); display: flex; flex-direction: column; justify-content: center; }
.blog-featured__meta { font-size: 0.82rem; color: var(--text-tertiary); margin-bottom: 14px; display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.blog-featured__pillar { color: var(--primary-light); font-weight: 600; }
.blog-featured__title { font-size: clamp(1.6rem, 2.6vw, 2.2rem); line-height: 1.18; margin-bottom: 14px; }
.blog-featured__title a { color: var(--text); }
.blog-featured__title a:hover { color: var(--primary-light); }
.blog-featured__excerpt { color: var(--text-secondary); margin-bottom: 22px; }

/* --- Category tiles --- */
.blog-cats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.blog-cat {
  display: block;
  padding: 28px 26px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg, 20px);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.blog-cat:hover { transform: translateY(-4px); border-color: rgba(51, 173, 230, 0.4); background: var(--bg-card-hover); }
.blog-cat__num { font-family: 'Instrument Serif', serif; font-size: 1.5rem; color: var(--accent); margin-bottom: 10px; display: block; }
.blog-cat__name { font-size: 1.15rem; color: var(--text); margin-bottom: 8px; }
.blog-cat__desc { font-size: 0.9rem; color: var(--text-secondary); margin: 0; }
.blog-cat__count { display: block; margin-top: 14px; font-size: 0.78rem; color: var(--text-tertiary); letter-spacing: 0.04em; text-transform: uppercase; }

/* --- Article (single post) --- */
.article { max-width: 760px; margin: 0 auto; }
.article__header { text-align: center; max-width: 820px; margin: 0 auto clamp(28px, 3vw, 40px); }
.article__meta { font-size: 0.85rem; color: var(--text-tertiary); margin-bottom: 16px; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; align-items: center; }
.article__meta .blog-featured__pillar { color: var(--primary-light); }
.article__title { font-size: clamp(2rem, 4.4vw, 3.1rem); line-height: 1.1; margin-bottom: 18px; }
.article__byline { display: inline-flex; align-items: center; gap: 12px; color: var(--text-secondary); font-size: 0.92rem; }
.article__byline img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.article__hero {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg, 20px);
  margin: 0 auto clamp(28px, 3.4vw, 44px);
  display: block;
  max-width: 980px;
}
.article__lead {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.6;
  color: var(--text);
  border-left: 3px solid var(--primary-light);
  padding: 4px 0 4px 22px;
  margin-bottom: 36px;
}
.article__body { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.75; }
.article__body h2 { font-size: clamp(1.5rem, 2.6vw, 1.9rem); color: var(--text); margin: 44px 0 16px; line-height: 1.2; }
.article__body h3 { font-size: 1.2rem; color: var(--text); margin: 30px 0 10px; }
.article__body p { margin-bottom: 20px; max-width: none; }
.article__body ul { margin: 0 0 22px; padding-left: 22px; }
.article__body li { margin-bottom: 10px; }
.article__body a { color: var(--primary-light); text-decoration: underline; text-underline-offset: 3px; }
.article__body a:hover { color: var(--accent); }
.article__body strong { color: var(--text); }

.article__table-wrap { overflow-x: auto; margin: 0 0 30px; border-radius: 14px; border: 1px solid rgba(255, 255, 255, 0.08); }
.article__body table { width: 100%; border-collapse: collapse; font-size: 0.95rem; min-width: 520px; }
.article__body th, .article__body td { padding: 14px 16px; text-align: left; border-bottom: 1px solid rgba(255, 255, 255, 0.07); vertical-align: top; }
.article__body thead th { background: var(--bg-elevated); color: var(--text); font-weight: 600; }
.article__body tbody td:first-child { color: var(--text); font-weight: 500; }
.article__body tbody tr:last-child td { border-bottom: none; }

.article__faq { margin-top: 16px; }
.article__faq h3 { font-size: 1.1rem; margin: 24px 0 8px; }
.article__cta { margin: 48px auto 0; text-align: center; max-width: 720px; }

@media (max-width: 820px) {
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured__media { min-height: 220px; }
}
