/* ==========================================================================
   ODBA — Unified Design System Stylesheet
   Modern, high-performance editorial aesthetic built on HubSpot Serif & Sans
   tokens with warm bone & cool washes, refined hairlines, and crisp typography.
   ========================================================================== */

/* ── 1. FONTS & VARIABLES ── */
@font-face {
  font-family: 'HubSpot Serif';
  src: url('donor-assets/asset-005.woff2') format('woff2');
  font-weight: 300 700;
  font-display: swap;
}
@font-face {
  font-family: 'HubSpot Sans';
  src: url('donor-assets/asset-004.woff2') format('woff2');
  font-weight: 400 600;
  font-display: swap;
}

:root {
  --hs-orange: #fa4616;
  --hs-orange-hover: #d93a10;
  --hs-orange-pressed: #b92a04;
  --hs-orange-tint1: #fee8e2;
  --hs-orange-tint2: #fcc6b1;
  
  --hs-dark: #141414;
  --hs-dark-surface: #1f1f1f;
  --hs-dark-bg: #042729;
  --hs-dark-bg-alt: #0e1417;
  --hs-dark-bg-alt2: #182126;
  
  --hs-canvas: #ffffff;
  --hs-warm-wash: #f8f5ee;
  --hs-cool-wash: #fcfcfa;
  --hs-bone: #f8f5ee;
  
  --hs-hairline-dark: rgba(0,0,0,0.08);
  --hs-hairline-light: rgba(255,255,255,0.08);
  --hs-shadow-elevated: 0 1px 3px rgba(33,51,67,.06), 0 8px 24px -8px rgba(33,51,67,.12);
  --hs-shadow-lift: 0 12px 32px -4px rgba(33,51,67,.16), 0 4px 12px -2px rgba(33,51,67,.08);
  
  --font-serif: 'HubSpot Serif', 'Instrument Serif', 'Georgia', serif;
  --font-sans: 'HubSpot Sans', 'Inter', 'Helvetica Neue', sans-serif;
  --font-eyebrow: 'HubSpot Sans', 'Outfit', 'Inter', sans-serif;

  /* Universal Spacing Tokens (8pt Spatial Grid Baseline) */
  --space-0-5: 0.125rem; /* 2px */
  --space-1: 0.25rem;    /* 4px */
  --space-2: 0.5rem;     /* 8px */
  --space-3: 0.75rem;    /* 12px */
  --space-4: 1rem;       /* 16px */
  --space-6: 1.5rem;     /* 24px */
  --space-8: 2rem;       /* 32px */
  --space-10: 2.5rem;    /* 40px */
  --space-12: 3rem;      /* 48px */
  --space-16: 4rem;      /* 64px */

  /* Fluid Layout & Section Tokens */
  --section-py: clamp(2.75rem, 4.2vw, 3.75rem);
  --section-py-sm: clamp(1.75rem, 2.5vw, 2.25rem);
  --hero-pt: clamp(1.75rem, 3vw, 2.5rem);
  --hero-pb: clamp(2.25rem, 3.5vw, 3.25rem);
}

/* ── 2. RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--hs-dark);
  background-color: var(--hs-canvas);
  line-height: 1.7;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, picture, video {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ── 3. TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 300;
  color: var(--hs-dark);
  overflow-wrap: break-word;
  word-break: normal;
}

h1, h2 {
  font-family: var(--font-serif);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.15rem, 5.2vw, 4.25rem);
  margin-bottom: 1.125rem;
}

h2 {
  font-size: clamp(1.75rem, 4.2vw, 3.25rem);
  margin-bottom: 1rem;
}

h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

h4 {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.375rem;
}

@media (max-width: 600px) {
  h1 {
    font-size: clamp(1.85rem, 7vw, 2.5rem);
    line-height: 1.15;
  }
  h2 {
    font-size: clamp(1.45rem, 5.5vw, 1.95rem);
    line-height: 1.2;
  }
  h3 {
    font-size: clamp(1.25rem, 4.5vw, 1.5rem);
  }
  .container {
    padding: 0 1.125rem;
  }
  .subhead {
    font-size: 1.0625rem;
  }
}

p {
  margin-bottom: 1.25rem;
  color: #4a4a4a;
}

p:last-child {
  margin-bottom: 0;
}

.eyebrow {
  font-family: var(--font-eyebrow);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--hs-orange);
  display: block;
  margin-bottom: 0.75rem;
}

.subhead {
  font-size: 1.25rem;
  color: #4a4a4a;
  max-width: 680px;
  line-height: 1.55;
}

.hl {
  color: var(--hs-orange);
}

.hl-dark {
  color: var(--hs-orange-tint2);
}

/* ── 4. BUTTONS & LINKS ── */
a {
  color: var(--hs-dark);
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1rem;
  line-height: 1.2;
  border: 1px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--hs-orange);
  color: #111111 !important;
  border-color: var(--hs-orange);
}
.btn-primary:hover {
  background-color: var(--hs-orange-hover);
  border-color: var(--hs-orange-hover);
  color: #111111 !important;
}

.btn-secondary {
  background-color: transparent;
  color: var(--hs-orange) !important;
  border-color: var(--hs-orange);
}
.btn-secondary:hover {
  background-color: var(--hs-orange-tint1);
}

.btn-dark {
  background-color: var(--hs-dark);
  color: #ffffff !important;
  border: 1px solid var(--hs-dark);
}
.btn-dark:hover {
  background-color: #2b2b2b;
  border-color: #2b2b2b;
  color: #ffffff !important;
}

.btn-white {
  background-color: #ffffff;
  color: var(--hs-dark) !important;
}
.btn-white:hover {
  background-color: var(--hs-warm-wash);
}

.text-link {
  color: var(--hs-orange);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  display: inline-inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.text-link:hover {
  color: var(--hs-orange-hover);
}

/* ── 5. LAYOUT & CONTAINERS ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-py {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

.section-py-sm {
  padding-top: var(--section-py-sm);
  padding-bottom: var(--section-py-sm);
}

.grid {
  display: grid;
  gap: 2rem;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ── 6. TRUST POINTS ── */
.trust-points {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #666;
  margin-top: 1.5rem;
}
.trust-points-dark {
  color: #aaa;
}

/* ── 7. HEADER & NAVIGATION ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--hs-hairline-dark);
  backdrop-filter: blur(8px);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--hs-dark);
  text-decoration: none;
}
.logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: #33475b;
  position: relative;
  padding: 0.25rem 0;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--hs-orange);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--hs-orange);
  border-radius: 2px;
}
.nav-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--hs-dark);
  padding: 0.25rem 0.5rem;
}

@media (max-width: 1024px) {
  .nav-links, .nav-actions { display: none; }
  .menu-toggle { display: block; }
  .nav-active .nav-links, .nav-active .nav-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
  }
  .nav-active .nav-actions {
    flex-direction: row;
    padding-top: 1rem;
    border-top: 1px solid var(--hs-hairline-dark);
  }
  .nav-active.nav-container {
    flex-wrap: wrap;
    height: auto;
    padding: 1.5rem;
    gap: 1.5rem;
    background: #ffffff;
    border-bottom: 1px solid var(--hs-hairline-dark);
  }
}

/* ── 8. HERO SECTIONS ── */
.hero {
  background-color: var(--hs-cool-wash);
  overflow: hidden;
  padding-top: var(--hero-pt);
  padding-bottom: var(--hero-pb);
}
figure.hero {
  background-color: transparent;
  padding: 0;
  overflow: visible;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.hero-content {
  padding-right: 1.5rem;
}
@media (max-width: 992px) {
  .hero-content { padding-right: 0; }
}
.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

/* ── UNIVERSAL DARK HERO & ABOUT HERO ── */
.hero-dark {
  position: relative;
  background-color: var(--hs-dark-bg-alt);
  color: var(--hs-bone);
  border-bottom: 1px solid var(--hs-hairline-light);
}
.hero-dark h1 {
  color: #ffffff;
}
.hero-dark .subhead {
  color: #b0c2ce;
}
.hero-dark .eyebrow {
  color: var(--hs-orange-tint2);
}
.hero-dark .hl {
  color: var(--hs-orange);
}
.hero-dark .trust-points {
  color: #8fa5b5;
}
.hero-dark .btn-dark {
  background-color: transparent;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.28);
}
.hero-dark .btn-dark:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}
.hero-dark img {
  border-color: var(--hs-hairline-light) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}
.hero-dark .browser-shell {
  border-color: var(--hs-hairline-light);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}
.hero-dark .browser-shell img {
  box-shadow: none !important;
  border-color: transparent !important;
}
.hero-dark .hero-tab {
  color: #8fa5b5;
}
.hero-dark .hero-tab:hover {
  color: #ffffff;
}
.hero-dark .hero-tab.active {
  color: #ffffff;
  border-bottom-color: var(--hs-orange);
}
.hero-dark .form-card {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}
.hero-dark .price-card {
  background: #ffffff;
  color: var(--hs-dark);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.hero-dark .price-card .price-kicker,
.hero-dark .price-card .price-amount {
  color: var(--hs-dark);
}
.hero-dark .price-card .btn-dark {
  background-color: var(--hs-dark);
  color: #ffffff !important;
  border: 1px solid var(--hs-dark);
}
.hero-dark .price-card .btn-dark:hover {
  background-color: #2b2b2b;
  border-color: #2b2b2b;
  color: #ffffff !important;
}
.hero-dark .price-card.featured {
  background: #182126;
  color: #ffffff;
  border: 1px solid rgba(250, 70, 22, 0.4);
  border-top: 4px solid var(--hs-orange);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
}
.hero-dark .price-card.featured .price-kicker,
.hero-dark .price-card.featured .price-amount {
  color: #ffffff;
}

.hero-about {
  position: relative;
  background-color: var(--hs-dark-bg-alt);
  background-image: 
    linear-gradient(90deg, #0e1417 0%, rgba(14, 20, 23, 0.95) 42%, rgba(14, 20, 23, 0.65) 75%, rgba(14, 20, 23, 0.2) 100%),
    url('about-hero-steel-girders.webp');
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: clamp(3.5rem, 5.5vw, 5rem);
  padding-bottom: clamp(3.5rem, 5.5vw, 5rem);
  border-bottom: 1px solid var(--hs-hairline-light);
}
.hero-about .hero-content {
  max-width: 740px;
  padding-right: 0;
}
.hero-about h1 {
  color: #ffffff;
  font-size: clamp(1.85rem, 5vw, 4.25rem);
}
.hero-about .subhead {
  color: #b0c2ce;
}
.hero-about .eyebrow {
  color: var(--hs-orange-tint2);
}
.hero-about .trust-points {
  color: #8fa5b5;
}
.hero-about .btn-dark {
  background-color: transparent;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.28);
}
.hero-about .btn-dark:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 900px) {
  .hero-about {
    background-image: 
      linear-gradient(180deg, rgba(14, 20, 23, 0.92) 0%, rgba(14, 20, 23, 0.88) 55%, rgba(14, 20, 23, 0.4) 100%),
      url('about-hero-steel-girders.webp');
    background-position: center;
  }
}

/* ── 9. BROWSER SHELL / PREVIEW ── */
.browser-shell {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: var(--hs-shadow-elevated);
  border: 1px solid var(--hs-hairline-dark);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.browser-viewport {
  position: relative;
  background: #eee;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.browser-slide {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  /* Every slide is captured at 16:10, the same ratio as the viewport, so
     contain shows the whole page with nothing cropped off the edges. */
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.browser-slide.active {
  opacity: 1;
  z-index: 2;
}
.browser-footer {
  padding: 0.875rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  border-top: 1px solid var(--hs-hairline-dark);
  font-size: 0.875rem;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.browser-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eaf0f6;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  font-weight: 600;
  color: #2e475d;
  font-size: 0.8125rem;
  letter-spacing: -0.01em;
}
.browser-pill .pill-icon {
  color: var(--hs-orange);
  flex-shrink: 0;
}

.hero-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-bottom: 1.25rem;
}
.hero-tab {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #7c98b6;
  cursor: pointer;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}
.hero-tab.active {
  color: var(--hs-dark);
  border-bottom-color: var(--hs-orange);
}

/* ── 9.5 DATA BREAKDOWN / CRACK CARDS ── */
.data-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: clamp(1.75rem, 2.5vw, 2.25rem);
}
@media (max-width: 1024px) {
  .data-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .data-grid {
    grid-template-columns: 1fr;
  }
}

.data-crack-card {
  background: #ffffff;
  border: 1px solid var(--hs-hairline-dark);
  border-radius: 8px;
  padding: clamp(1.25rem, 1.6vw, 1.5rem);
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(33, 51, 67, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  height: 100%;
}
.data-crack-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--hs-shadow-elevated);
  border-color: var(--hs-orange-tint2);
}
.data-crack-stat {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 3vw, 2.75rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--hs-dark);
  margin-bottom: var(--space-2);
}
.data-crack-title {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--hs-dark);
  margin-bottom: var(--space-2);
}
.data-crack-desc {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #4a4a4a;
  margin-bottom: var(--space-3);
  flex-grow: 1;
}
.data-crack-source {
  display: block;
  font-family: var(--font-eyebrow);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
  color: #7c98b6;
  margin-top: auto;
  padding-top: var(--space-3);
  border-top: 1px solid var(--hs-hairline-dark);
}

/* ── 10. THE DIFFERENCE CAROUSEL ── */
.difference {
  position: relative;
  overflow: hidden;
  background-color: #fdeee8;
  background-image: linear-gradient(257deg,
    rgba(248, 245, 238, 0.55) -20%,
    rgba(252, 198, 177, 0.45) 12%,
    rgba(250, 70, 22, 0.10) 42%,
    rgba(254, 232, 226, 0.55) 72%,
    rgba(248, 245, 238, 0.60) 104%);
}
.difference-header {
  margin-bottom: clamp(1.75rem, 2.5vw, 2.25rem);
}
/* The wash is warm, so the eyebrow drops to the pressed orange to clear AA. */
.difference .eyebrow {
  color: var(--hs-orange-pressed);
}

.diff-carousel {
  position: relative;
}
@media (min-width: 1080px) {
  .diff-carousel { padding-inline: 4rem; }
}
.diff-train {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.diff-slide {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
}
@media (min-width: 900px) {
  .diff-slide {
    opacity: 0.5;
    transform: scale(0.9);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }
  .diff-slide.-active { opacity: 1; transform: scale(1); }
  .diff-slide.-left { transform-origin: right; }
  .diff-slide.-right { transform-origin: left; }
}
@media (max-width: 899px) {
  .diff-train { flex-direction: column; gap: 1rem; }
  /* Stacked: keep source order, ignore the carousel slot ordering set in JS. */
  .diff-slide { width: 100%; max-width: 400px; order: 0 !important; }
}

.diff-card {
  width: 100%;
  background: #ffffff;
  border-radius: 16px;
  padding: 1.5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 1px 2px rgba(33, 51, 67, 0.06);
  transition: box-shadow 0.3s ease-in-out;
}
.diff-slide.-active .diff-card {
  box-shadow: var(--hs-shadow-lift);
}
.diff-visual {
  width: 100%;
  margin-bottom: 1.5rem;
}
.diff-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.625rem, 2.4vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--hs-dark);
  margin-bottom: 0.25rem;
}
.diff-desc {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 0;
}
.diff-link {
  margin-top: auto;
  padding-top: 1rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--hs-dark);
  text-decoration: underline;
  text-decoration-color: var(--hs-orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}
.diff-link:hover { color: var(--hs-orange); }
@media (min-width: 900px) {
  .diff-link { visibility: hidden; }
  .diff-slide.-active .diff-link { visibility: visible; }
}

/* Card visuals (built in markup, no image requests, fixed ratio = zero CLS) */
.mock {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  background: var(--hs-warm-wash);
  border: 1px solid var(--hs-hairline-dark);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  text-align: left;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #4a4a4a;
  overflow: hidden;
}
.mock-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mock-head-title {
  font-weight: 600;
  color: var(--hs-dark);
}
.mock-chip {
  font-family: var(--font-eyebrow);
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hs-orange-pressed);
  background: #ffffff;
  border: 1px solid var(--hs-orange-tint2);
  border-radius: 999px;
  padding: 0.1875rem 0.5rem;
}
.mock-week {
  flex-grow: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.375rem;
}
.mock-day {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.mock-day span {
  font-size: 0.625rem;
  font-weight: 600;
  color: #6b6b6b;
  text-align: center;
}
.mock-day i {
  flex-grow: 1;
  border-radius: 4px;
  background: #ffffff;
  border: 1px dashed rgba(0, 0, 0, 0.12);
}
.mock-foot {
  color: #5c5c5c;
}
.mock-chrome {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: #ffffff;
  border: 1px solid var(--hs-hairline-dark);
  border-radius: 6px;
  padding: 0.375rem 0.5rem;
}
.mock-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d8d8d8;
  flex: none;
}
.mock-url {
  margin-left: 0.375rem;
  font-size: 0.625rem;
  color: #5c5c5c;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mock-page {
  flex-grow: 1;
  background: #ffffff;
  border: 1px solid var(--hs-hairline-dark);
  border-radius: 6px;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mock-line {
  height: 6px;
  border-radius: 3px;
  background: #ececec;
}
.mock-line.w70 { width: 70%; background: var(--hs-orange-tint2); }
.mock-line.w45 { width: 45%; }
.mock-line.w60 { width: 60%; }
.mock-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-top: 1px solid var(--hs-hairline-dark);
  padding-top: 0.625rem;
}
.mock-total strong {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--hs-dark);
}
.mock-chat { justify-content: center; }
.mock-msg {
  max-width: 88%;
  padding: 0.5rem 0.75rem;
  border-radius: 12px;
}
.mock-msg.-in {
  align-self: flex-start;
  background: #ffffff;
  border: 1px solid var(--hs-hairline-dark);
  border-bottom-left-radius: 4px;
}
.mock-msg.-out {
  align-self: flex-end;
  background: var(--hs-dark);
  color: var(--hs-bone);
  border-bottom-right-radius: 4px;
  font-weight: 600;
}

/* Carousel controls */
.diff-controls {
  position: absolute;
  inset: 50% 0 auto;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 2;
}
.diff-controls .diff-round { pointer-events: auto; }
@media (max-width: 1079px) {
  .diff-controls {
    position: static;
    transform: none;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
  }
}
.diff-round {
  width: 48px;
  height: 48px;
  flex: none;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: var(--hs-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--hs-shadow-elevated);
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.diff-round:hover { background: var(--hs-warm-wash); }
.diff-round:active { transform: scale(0.96); }
.diff-round:focus-visible { outline: 2px solid var(--hs-orange); outline-offset: 2px; }
.diff-round.-small { width: 32px; height: 32px; }
.diff-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.diff-dots {
  display: flex;
  gap: 8px;
}
.diff-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #8a7a72;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.diff-dot.-active { background: var(--hs-dark); }
.diff-dot:focus-visible { outline: 2px solid var(--hs-orange); outline-offset: 3px; }
.diff-autoplay .icon-play { display: none; }
.diff-autoplay.-paused .icon-pause { display: none; }
.diff-autoplay.-paused .icon-play { display: block; }
/* Stacked layout shows all three cards at once, so the rotation UI has no job. */
@media (max-width: 899px) {
  .diff-controls, .diff-footer { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .diff-slide, .diff-card { transition: none; }
}

/* ── 11. ENGINE SHOWCASE ── */
.engine-showcase {
  background-color: var(--hs-canvas);
}
.engine-header {
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}
.engine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2vw, 1.75rem);
  align-items: start;
}
@media (max-width: 900px) {
  .engine-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
}

.engine-card {
  display: flex;
  flex-direction: column;
  text-align: left;
}
/* One fixed shot ratio so the three tiles read as a set, not three formats. */
.engine-shot {
  background: #ffffff;
  border: 1px solid var(--hs-hairline-dark);
  border-radius: 12px;
  box-shadow: var(--hs-shadow-elevated);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin-bottom: 1.25rem;
}
.engine-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
/* The article tile needs its headline in frame, not just the photo. */
.engine-shot.-lower img {
  object-position: 50% 78%;
}
.engine-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 1.7vw, 1.5rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--hs-dark);
  margin: 0 0 0.5rem;
}
.engine-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0 0 0.75rem;
  flex-grow: 1;
}
.engine-note {
  display: block;
  font-family: var(--font-eyebrow);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
  color: #7c98b6;
  padding-top: 0.75rem;
  border-top: 1px solid var(--hs-hairline-dark);
}
.engine-actions {
  margin-top: clamp(1.75rem, 2.5vw, 2.25rem);
  text-align: center;
}

/* ── 12. BLUEPRINT ── */
.blueprint {
  background-color: var(--hs-cool-wash);
}
.blueprint-stations {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: clamp(2rem, 3vw, 2.75rem);
  position: relative;
}
/* Hairline rail, visible only in the gaps between cards */
.blueprint-stations::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hs-hairline-dark) 10%, var(--hs-hairline-dark) 90%, transparent);
  z-index: 0;
}
.station {
  position: relative;
  z-index: 1;
  background: var(--hs-canvas);
  border: 1px solid var(--hs-hairline-dark);
  border-radius: 8px;
  box-shadow: var(--hs-shadow-elevated);
  padding: 2.75rem 1.25rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.station:hover {
  transform: translateY(-4px);
  box-shadow: var(--hs-shadow-lift);
  border-color: var(--hs-orange-tint2);
}
.station-marker {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--hs-canvas);
  border: 1px solid var(--hs-orange-tint2);
  /* punches a clean gap in the rail behind it */
  box-shadow: 0 0 0 7px var(--hs-cool-wash);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  color: var(--hs-orange);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.station:hover .station-marker {
  background: var(--hs-orange);
  border-color: var(--hs-orange);
  color: #ffffff;
}
.station h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.35;
  margin-bottom: 0.375rem;
}
.station p {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #5b6b7a;
  margin-bottom: 1.125rem;
}
.station-center {
  margin-top: auto;
}
.badge-passed {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: #eef3f8;
  color: #33475b;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3125rem 0.6875rem;
  border-radius: 999px;
  border: 1px solid #d8e2ec;
}
.badge-passed::before {
  content: '\2713';
  font-size: 0.8125rem;
  line-height: 1;
  color: var(--hs-orange);
}
@media (max-width: 1024px) {
  .blueprint-stations { grid-template-columns: repeat(3, 1fr); }
  .blueprint-stations::before { display: none; }
  .station-marker { box-shadow: none; }
}
@media (max-width: 768px) {
  .blueprint-stations {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2.5rem;
  }
  .station {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 1.125rem;
    align-items: center;
    text-align: left;
    padding: 1.25rem;
  }
  .station-marker {
    position: static;
    transform: none;
    grid-column: 1;
    grid-row: 1 / 4;
    width: 44px;
    height: 44px;
  }
  .station h4,
  .station p,
  .station-center { grid-column: 2; }
  .station p { margin-bottom: 0.625rem; }
  .station-center { margin-top: 0; }
}

/* ── 13. PORTFOLIO & WORK ── */
.portfolio {
  background-color: var(--hs-warm-wash);
}
.portfolio-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: clamp(1.5rem, 2.5vw, 2rem);
}
@media (max-width: 1024px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .portfolio-grid { grid-template-columns: 1fr; } }

.port-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--hs-hairline-dark);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.port-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hs-shadow-lift);
}
.port-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  object-position: top;
  border-bottom: 1px solid var(--hs-hairline-dark);
  display: block;
  background-color: #f5f8fa;
}
.port-body {
  padding: 1.25rem;
  flex-grow: 1;
}
.port-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--hs-dark);
  transition: color 0.2s ease;
}
.port-card:hover .port-title {
  color: var(--hs-orange);
}
.port-loc {
  font-size: 0.8125rem;
  color: #666;
}

/* Detailed Work Project Card */
.work-project-card {
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid var(--hs-hairline-dark);
  overflow: hidden;
  box-shadow: var(--hs-shadow-elevated);
  margin-bottom: clamp(1.75rem, 2.5vw, 2.25rem);
}
.work-project-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
}
@media (max-width: 900px) {
  .work-project-grid { grid-template-columns: 1fr; }
}
.work-project-info {
  padding: clamp(1.5rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.work-project-metrics {
  display: flex;
  gap: 1.5rem;
  padding: 0.75rem 0;
  border-top: 1px solid var(--hs-hairline-dark);
  border-bottom: 1px solid var(--hs-hairline-dark);
  margin: 1rem 0;
}
.metric-item small {
  display: block;
  font-size: 0.75rem;
  color: #7c98b6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.metric-item strong {
  font-size: 1.125rem;
  color: var(--hs-dark);
}

/* Work Section Category Divider */
.work-section-divider {
  margin-top: clamp(3.5rem, 6vw, 5rem);
  margin-bottom: clamp(2rem, 3.5vw, 2.75rem);
  text-align: center;
  position: relative;
}
.work-section-divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--hs-orange);
  border-radius: 2px;
}
.work-section-divider .eyebrow {
  display: inline-block;
  padding-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.work-section-divider h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  color: var(--hs-dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.work-section-divider p {
  color: #55697a;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  max-width: 580px;
  margin-inline: auto;
  line-height: 1.5;
}

/* ── 14. PRICING ── */
.pricing {
  background: #ffffff;
}
.price-card {
  border: 1px solid var(--hs-hairline-dark);
  border-radius: 8px;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  background: #ffffff;
  color: var(--hs-dark);
}
.price-card.featured {
  background: var(--hs-dark-surface);
  color: #ffffff;
  border: none;
  border-top: 4px solid var(--hs-orange);
  box-shadow: var(--hs-shadow-lift);
}
.price-kicker {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: var(--hs-dark);
}
.price-card.featured .price-kicker { color: #ffffff; }

.price-amount {
  font-family: var(--font-serif);
  font-size: clamp(2.35rem, 6vw, 3.5rem);
  line-height: 1.1;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
  margin-bottom: 1.25rem;
  color: var(--hs-dark);
}
.price-card.featured .price-amount { color: #ffffff; }
.price-amount small {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #666;
  font-weight: 400;
}
.price-card.featured .price-amount small { color: #aaa; }

.price-card .btn-dark {
  background-color: var(--hs-dark);
  color: #ffffff !important;
  border: 1px solid var(--hs-dark);
}
.price-card .btn-dark:hover {
  background-color: #2b2b2b;
  border-color: #2b2b2b;
  color: #ffffff !important;
}

/* ── 14b. BILLING TOGGLE & THREE-UP PRICING ── */
.pricing-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: clamp(1.5rem, 2.5vw, 2rem);
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 980px) {
  .pricing-grid-3 { grid-template-columns: 1fr; max-width: 480px; }
}

.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--hs-hairline-light);
}
.billing-opt {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.5rem 1.125rem;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: #b0c2ce;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.billing-opt:hover { color: #ffffff; }
.billing-opt.is-active {
  background: var(--hs-orange);
  color: #111111;
}
.billing-save {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: inherit;
}
.billing-opt.is-active .billing-save { background: rgba(0, 0, 0, 0.15); }

.price-badge-slot {
  min-height: 1.75rem;
  margin-bottom: 0.25rem;
}
.price-badge {
  display: inline-block;
  background: var(--hs-orange);
  color: #111111;
  font-family: var(--font-eyebrow);
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}

.price-card .price-amount { margin-bottom: 0.5rem; }
.price-figure {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
}
.price-figure[hidden] { display: none; }

.price-note {
  font-size: 0.875rem;
  color: #666;
  margin: 0 0 1.25rem;
  min-height: 1.6rem;
}
.price-card.featured .price-note { color: #b0c2ce; }
.price-note[hidden] { display: none; }

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: #4a4a4a;
  flex-grow: 1;
}
.price-card.featured .price-features { color: #eaf0f6; }

.buyout {
  max-width: 820px;
  margin: clamp(2rem, 3vw, 2.75rem) auto 0;
  padding: clamp(1.5rem, 2.5vw, 1.75rem);
  border: 1px solid var(--hs-hairline-light);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}
.buyout p {
  color: #b0c2ce;
  font-size: 0.9375rem;
  margin: 0;
  line-height: 1.55;
}
.buyout p + p {
  margin-top: 0.875rem;
  padding-top: 0.875rem;
  border-top: 1px solid var(--hs-hairline-light);
}
.buyout strong { color: #ffffff; }
.buyout a {
  color: var(--hs-orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.buyout a:hover { color: var(--hs-orange-hover); }

/* ── 15. FAQ ACCORDION ── */
.faq {
  background-color: var(--hs-warm-wash);
}
.faq-list {
  max-width: 800px;
  margin: clamp(1.5rem, 2.5vw, 2rem) auto 0;
}
details {
  border-bottom: 1px solid var(--hs-hairline-dark);
}
details:first-of-type {
  border-top: 1px solid var(--hs-hairline-dark);
}
summary {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.125rem;
  padding: 1.125rem 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 1.125rem;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--hs-orange);
  transition: transform 0.2s ease;
}
details[open] summary::after {
  content: '−';
}
.faq-content {
  padding-bottom: 1.125rem;
  color: #4a4a4a;
}

/* ── 16. FOUNDER / ABOUT ── */
.founder {
  background: #ffffff;
}
.founder-content {
  max-width: 640px;
  margin: 0 auto;
}
.founder-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
}
.founder-img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 0.75rem;
  object-fit: cover;
  border: 3px solid var(--hs-orange-tint1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  display: block;
}
.founder-name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--hs-dark);
  line-height: 1.3;
}
.founder-title {
  font-size: 0.875rem;
  color: #7c98b6;
  font-weight: 500;
}
.founder h2 {
  font-size: clamp(1.75rem, 3.8vw, 2.5rem);
  line-height: 1.18;
  margin-bottom: 0.75rem;
  text-wrap: balance;
}
.founder-bio {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #4a4a4a;
  max-width: 580px;
  margin: 0 auto;
  text-wrap: pretty;
}

/* ── 17. FINAL CTA BAND ── */
.final-cta {
  background-color: var(--hs-dark-bg-alt2);
  color: var(--hs-bone);
  text-align: center;
}
.final-cta h2 { color: #ffffff; }
.final-cta .subhead { color: #b0c2ce; margin: 0 auto 1.5rem; }
.final-cta .trust-points { justify-content: center; }

/* ── 18. FORMS (CONTACT & INTAKE) ── */
.form-card {
  background: #ffffff;
  border: 1px solid var(--hs-hairline-dark);
  border-radius: 8px;
  box-shadow: var(--hs-shadow-elevated);
  padding: clamp(1.5rem, 2.5vw, 2rem);
}
@media (max-width: 600px) {
  .form-card { padding: 1.25rem; }
}

.brief-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 600px) {
  .brief-form { grid-template-columns: 1fr; }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.field.wide {
  grid-column: 1 / -1;
}
.field label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--hs-dark);
}
.field label .hint {
  font-weight: 400;
  color: #7c98b6;
}
.field input,
.field select,
.field textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #cbd6e2;
  border-radius: 4px;
  font-size: 1rem;
  font-family: var(--font-sans);
  color: var(--hs-dark);
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--hs-orange);
  box-shadow: 0 0 0 3px var(--hs-orange-tint1);
}
.field textarea {
  resize: vertical;
  min-height: 100px;
}
.hp-field {
  display: none !important;
  visibility: hidden !important;
}
.form-note {
  font-size: 0.8125rem;
  color: #7c98b6;
  margin-top: 0.75rem;
}

/* ── 19. ARTICLES / RESOURCES GRID ── */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: clamp(1.5rem, 2.5vw, 2rem);
}
@media (max-width: 1024px) {
  .article-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .article-grid { grid-template-columns: 1fr; }
}

.article-card {
  background: #ffffff;
  border: 1px solid var(--hs-hairline-dark);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hs-shadow-elevated);
}
.article-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid var(--hs-hairline-dark);
  background: var(--hs-cool-wash);
}
.article-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.article-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--hs-orange);
  margin-bottom: 0.5rem;
}
.article-card-date {
  color: #7c98b6;
  font-weight: 400;
  text-transform: none;
}
.article-card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
.article-card-title a {
  color: var(--hs-dark);
}
.article-card-title a:hover {
  color: var(--hs-orange);
}
.article-card-desc {
  font-size: 0.9375rem;
  color: #555;
  margin-bottom: 1rem;
  flex-grow: 1;
  line-height: 1.55;
}
.article-card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--hs-orange);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.article-card-link:hover {
  color: var(--hs-orange-hover);
}

/* Category Filter Tags */
.filter-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}
.filter-tag {
  padding: 0.4rem 0.875rem;
  border-radius: 20px;
  background: var(--hs-cool-wash);
  border: 1px solid var(--hs-hairline-dark);
  font-size: 0.875rem;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-tag:hover,
.filter-tag.active {
  background: var(--hs-orange);
  color: #ffffff;
  border-color: var(--hs-orange);
}

/* ── 20. PROSE & LEGAL CONTENT ── */
.prose {
  line-height: 1.75;
  color: #333;
}
.prose h2 {
  font-size: 1.875rem;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
}
.prose h3 {
  font-size: 1.35rem;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}
.prose p {
  margin-bottom: 1.25rem;
}
.prose ul, .prose ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}
.prose li {
  margin-bottom: 0.375rem;
}

/* ── 21. FOOTER ── */
footer {
  background-color: var(--hs-dark);
  color: #ffffff;
  padding: clamp(2.5rem, 3.5vw, 3.25rem) 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  gap: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: clamp(2rem, 2.8vw, 2.5rem);
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 0.625rem;
}
.footer-col a {
  color: #b0c2ce;
  font-size: 0.9375rem;
}
.footer-col a:hover {
  color: #ffffff;
}
.footer-brand {
  color: #b0c2ce;
  font-size: 0.9375rem;
}
.footer-brand .logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 1.25rem;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 0.75rem;
}
.footer-brand .logo:hover {
  color: var(--hs-orange);
}
.footer-brand img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-bottom: 0.75rem;
}
.footer-brand .logo img {
  margin-bottom: 0;
}
.footer-bottom {
  border-top: 1px solid var(--hs-hairline-light);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  color: #7c98b6;
  font-size: 0.875rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── 22. FOUNDING BANNER, TRUST BAND, SOCIAL PROOF ── */

/* Founding-practice banner. Sits above the sticky header, so it scrolls away on first swipe. */
.promo-banner {
  display: block;
  background-color: var(--hs-dark);
  color: #ffffff !important;
  text-decoration: none;
  border-bottom: 1px solid var(--hs-hairline-light);
}
.promo-banner-inner {
  display: block;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.625rem 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
  color: #eaf0f6;
}
.promo-banner:hover .promo-banner-inner {
  color: var(--hs-orange-tint2);
}
.promo-banner:focus-visible {
  outline: 2px solid var(--hs-orange);
  outline-offset: -2px;
}

/* Testimonials */
.testimonials {
  background-color: var(--hs-warm-wash);
  border-top: 1px solid var(--hs-hairline-dark);
  border-bottom: 1px solid var(--hs-hairline-dark);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 310px), 1fr));
  gap: 1.5rem;
  margin-top: clamp(1.75rem, 2.5vw, 2.5rem);
}
.testimonial-card {
  background: #ffffff;
  border: 1px solid var(--hs-hairline-dark);
  border-radius: 8px;
  box-shadow: var(--hs-shadow-elevated);
  padding: clamp(1.5rem, 2vw, 1.75rem);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--hs-shadow-lift);
}
.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  color: var(--hs-orange);
}
.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.45;
  color: var(--hs-dark);
  margin: 0;
  flex-grow: 1;
}
.testimonial-card blockquote::before {
  content: '\201C';
  color: var(--hs-orange);
}
.testimonial-card blockquote::after {
  content: '\201D';
  color: var(--hs-orange);
}
.testimonial-card figcaption {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  border-top: 1px solid var(--hs-hairline-dark);
  padding-top: 1.125rem;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--hs-orange-tint1);
  color: var(--hs-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9375rem;
  flex-shrink: 0;
  border: 1px solid var(--hs-orange-tint2);
}
.testimonial-avatar-photo {
  object-fit: cover;
  background: var(--hs-warm-wash);
  border-color: var(--hs-hairline-dark);
}
.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  min-width: 0;
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--hs-dark);
  line-height: 1.3;
}
.testimonial-practice {
  font-size: 0.8125rem;
  color: #5c6b73;
  line-height: 1.3;
}
/* Founder credibility line. */
.founder-credit {
  margin-top: 1.5rem;
  margin-bottom: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  color: #5c6b73;
  text-align: center;
}
.founder-credit a {
  color: var(--hs-orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.founder-credit-dark {
  color: #b0c2ce;
}
.founder-credit-dark a {
  color: var(--hs-orange-tint2);
}
.founder-credit-dark a:hover {
  color: #ffffff;
}

/* Founding-practice block on pricing.html. */
.founding {
  background-color: var(--hs-orange-tint1);
  border: 1px solid var(--hs-orange-tint2);
  border-radius: 8px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
}
.founding h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.375rem);
  margin-bottom: 1rem;
}
.founding-reason {
  max-width: 720px;
  color: #4a4a4a;
  margin-bottom: 1rem;
}
.founding-scarcity {
  max-width: 720px;
  font-weight: 600;
  color: var(--hs-dark);
  margin-bottom: 0;
}
.founding-count {
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: 0.9375rem;
  color: #5c6b73;
}
.founding-count strong {
  color: var(--hs-orange);
  font-size: 1.125rem;
}
.founding-anchor {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--hs-dark);
  margin-bottom: 2rem;
}

/* ── 23. UTILITIES ── */
.hidden { display: none !important; }
.clearfix { clear: both; }
