/* Community Coliving sites, v4. Brand palette from the live
   communitycolivingproperties.com site (teal + founder orange, original-color
   logos on white), rebuilt on the design doctrine in DESIGN-PHILOSOPHY.md:
   neutral foundation carries the page, ONE informational accent (the teal
   ramp), orange reserved for actions only, ink-gray type instead of colored
   headings, flat inset ink panels instead of full-bleed gradients, hairlines
   instead of decorative shadows, one type family, one radius standard
   (16px surfaces / 10px controls), numbered sections, 4pt rhythm.
   The full per-choice case lives in DESIGN_CASE.md. */

:root {
  /* the one accent, as a ramp */
  --teal: #487A7B;
  --teal-dark: #005151;
  --teal-deeper: #003838;
  --teal-light: #5D9494;
  --teal-muted: #DCE9E9;
  --teal-wash: #F3F8F8;
  /* the action color, actions only */
  --orange: #F68D2E;
  --orange-hover: #DD7716;
  --orange-light: #FFF4E8;
  /* neutral foundation */
  --ink: #14211F;
  --panel: #003838;
  --panel-2: #0A4A48;
  --gray-50: #F8FAFA;
  --gray-100: #EFF3F3;
  --gray-200: #E0E7E7;
  --gray-300: #C4CECE;
  --gray-400: #93A2A1;
  --gray-500: #61716F;
  --gray-600: #475654;
  --gray-700: #32403E;
  --white: #FFFFFF;
  /* semantic */
  --money: #1E9E6A;
  --danger: #C24444;
  /* system */
  --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --r: 16px;
  --r-sm: 10px;
  --shadow: 0 12px 32px rgba(20, 33, 31, 0.08);
  --hairline: 1px solid var(--gray-200);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); font-size: 1rem; line-height: 1.65;
  color: var(--gray-600); background: var(--white); overflow-x: clip;
  counter-reset: sec; font-feature-settings: 'tnum'; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
::selection { background: var(--teal-muted); color: var(--ink); }

.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }

.eyebrow {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--teal-dark);
  display: inline-flex; align-items: center; gap: 0.75rem;
}
/* numbered sections: the page reads as an ordered argument */
.sec { counter-increment: sec; }
.sec .eyebrow::before { content: counter(sec, decimal-leading-zero);
  font-weight: 800; font-size: 0.8rem; color: var(--gray-400); letter-spacing: 0.08em; }

.section-heading { font-family: var(--font-heading); font-weight: 800; line-height: 1.12;
  letter-spacing: 0; color: var(--ink); }
.section-heading--lg { font-size: clamp(2rem, 4vw, 2.9rem); }
.section-heading--md { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.section-body { font-size: 1.05rem; line-height: 1.7; color: var(--gray-500); max-width: 640px; }

.sec { padding: 6rem 0; }
.sec--wash { background: var(--gray-50); border-top: var(--hairline); border-bottom: var(--hairline); }
.sec--wash + .sec--wash, .sec--wash + .strip { border-top: none; }
.sec-head { max-width: 720px; margin: 0 auto 3.5rem; text-align: center; }
.sec-head .eyebrow { margin-bottom: 1.25rem; }
.sec-head .section-body { margin: 1.25rem auto 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem;
  padding: 0.9rem 1.75rem; border-radius: var(--r-sm); border: none;
  cursor: pointer; transition: background 0.25s var(--ease), border-color 0.25s var(--ease),
    color 0.25s var(--ease), transform 0.25s var(--ease); white-space: nowrap;
}
.btn i { width: 18px; height: 18px; }
.btn--primary { background: var(--orange); color: var(--white); }
.btn--primary:hover { background: var(--orange-hover); transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.32); }
.btn--outline:hover { border-color: rgba(255,255,255,0.85); }
.btn--outline-dark { background: transparent; color: var(--ink); border: 1.5px solid var(--gray-300); }
.btn--outline-dark:hover { border-color: var(--teal-dark); color: var(--teal-dark); }
a.btn:focus-visible, button.btn:focus-visible { outline: 2px solid var(--teal-dark); outline-offset: 2px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ------------------------------------------------------------------ nav */
.nav { position: sticky; top: 0; z-index: 100; padding: 0.8rem 0;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
  border-bottom: var(--hairline); transition: box-shadow 0.4s var(--ease); }
.nav.scrolled { box-shadow: var(--shadow); }
.nav__inner { max-width: 1440px; margin: 0 auto; padding: 0 1.5rem; display: flex;
  align-items: center; justify-content: space-between; gap: 1.5rem; }
.nav__logo img { height: 50px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav__links a { font-size: 0.9rem; font-weight: 600; color: var(--gray-500); transition: color 0.2s; }
.nav__links a:hover { color: var(--ink); }
.nav__links a.is-current { color: var(--ink); box-shadow: inset 0 -2px 0 var(--orange); padding-bottom: 2px; }
.nav__cta { font-family: var(--font-heading); font-weight: 700; font-size: 0.88rem;
  padding: 0.6rem 1.3rem; background: var(--orange); color: var(--white);
  border-radius: var(--r-sm); transition: background 0.25s var(--ease); white-space: nowrap; }
.nav__cta:hover { background: var(--orange-hover); }
.nav__toggle { display: none; background: none; border: none; color: var(--ink); cursor: pointer; }
.nav__toggle i { width: 26px; height: 26px; }
.nav__menu { display: none; }

/* ------------------------------------------------------------------ hero
   Full-bleed brand teal. Copy on the left, a real deal sheet on the right,
   and the white stat bar seated across the hero's bottom edge. */
.hero { position: relative; background: var(--panel); padding: 5.5rem 0 0; }
.hero::before { content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.07) 1px, transparent 0);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(90% 100% at 100% 0%, #000 0%, transparent 65%);
          mask-image: radial-gradient(90% 100% at 100% 0%, #000 0%, transparent 65%); }
.hero__grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 4.5rem; align-items: center; }
.hero__copy { max-width: 640px; }
.hero__eyebrow { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--teal-light); margin-bottom: 1.5rem;
  opacity: 0; animation: fadeInUp 0.8s var(--ease) 0.15s forwards; }
.hero__headline { font-family: var(--font-heading); font-size: clamp(2.5rem, 4.4vw, 3.7rem);
  font-weight: 800; line-height: 1.04; letter-spacing: 0; color: var(--white); margin-bottom: 1.5rem;
  opacity: 0; animation: fadeInUp 0.8s var(--ease) 0.3s forwards; }
.hero__headline em { font-style: normal; color: var(--orange); }
.hero__sub { font-size: 1.15rem; line-height: 1.65; color: rgba(255,255,255,0.7); margin-bottom: 2.5rem; max-width: 560px;
  opacity: 0; animation: fadeInUp 0.8s var(--ease) 0.45s forwards; }
.hero__cta-wrap { display: flex; gap: 0.9rem; flex-wrap: wrap;
  opacity: 0; animation: fadeInUp 0.8s var(--ease) 0.6s forwards; }
.hero__note { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-top: 1.25rem;
  opacity: 0; animation: fadeInUp 0.8s var(--ease) 0.7s forwards; }
.hero__note b { color: rgba(255,255,255,0.9); font-weight: 600; }
.hero__sheet { opacity: 0; animation: fadeInUp 0.9s var(--ease) 0.5s forwards; justify-self: end; width: 100%; max-width: 480px; }
/* the stat bar: white, seated half over the hero's bottom edge */
.hero__trust { position: relative; z-index: 2; display: flex; align-items: stretch; flex-wrap: wrap;
  background: var(--white); border-radius: var(--r); box-shadow: var(--shadow);
  margin: 4.5rem 0 -3rem; padding: 1.6rem 1rem;
  opacity: 0; animation: fadeInUp 0.8s var(--ease) 0.8s forwards; }
.hero__trust-stat { flex: 1; min-width: 150px; padding: 0.25rem 1.5rem; text-align: center; border-right: var(--hairline); }
.hero__trust-stat:last-child { border-right: none; }
.hero__trust-stat b { display: block; font-family: var(--font-heading); font-weight: 800;
  font-size: 1.85rem; color: var(--teal-dark); line-height: 1.15; }
.hero__trust-stat span { display: block; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray-400); margin-top: 0.3rem; }
.hero + .sec { padding-top: 9rem; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

/* ------------------------------------------------------------- the sheet
   A deal sheet: label row, hairline lines, one hot figure, one money figure. */
.sheet { background: var(--white); border-radius: var(--r); padding: 1.5rem 1.75rem 1.4rem; }
.sheet--light { border: var(--hairline); }
.sheet__head { display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding-bottom: 0.9rem; margin-bottom: 0.25rem; border-bottom: 2px solid var(--ink); }
.sheet__head span { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); }
.sheet__head em { font-style: normal; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--teal-dark); background: var(--teal-wash); border: 1px solid var(--teal-muted); padding: 0.25rem 0.6rem; border-radius: 999px; white-space: nowrap; }
.sheet__row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: 0.85rem 0; border-bottom: var(--hairline); }
.sheet__row:last-of-type { border-bottom: none; }
.sheet__row span { font-size: 0.92rem; color: var(--gray-500); }
.sheet__row b { font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; color: var(--ink); text-align: right; white-space: nowrap; }
.sheet__row--hot b { font-weight: 800; font-size: 1.6rem; color: var(--teal-dark); }
.sheet__row--money b { color: var(--money); }
.sheet__foot { font-size: 0.78rem; line-height: 1.5; color: var(--gray-400); margin-top: 0.9rem; padding-top: 0.9rem; border-top: var(--hairline); }

/* the founder's voice: one real sentence, one real face */
.voice { background: var(--white); border: var(--hairline); border-radius: var(--r); padding: 2.25rem 2.25rem 2rem; max-width: 520px; margin: 0 auto; }
.voice blockquote { font-family: var(--font-heading); font-size: clamp(1.3rem, 2vw, 1.6rem); font-weight: 700;
  line-height: 1.35; color: var(--ink); }
.voice blockquote::before { content: ''; display: block; width: 2.5rem; height: 3px; background: var(--orange); margin-bottom: 1.25rem; }
.voice figcaption { display: flex; align-items: center; gap: 1rem; margin-top: 1.75rem; padding-top: 1.5rem; border-top: var(--hairline); }
.voice figcaption img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.voice figcaption b { display: block; font-weight: 700; color: var(--ink); font-size: 0.95rem; }
.voice figcaption span { display: block; font-size: 0.82rem; color: var(--gray-400); margin-top: 0.15rem; }

/* --------------------------------------------------- split + compare card */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.split__text p { font-size: 1.05rem; line-height: 1.75; color: var(--gray-500); margin-top: 1.25rem; }
.split__text .section-heading { margin-top: 1rem; }

.compare { background: var(--panel); border-radius: var(--r); padding: 2.5rem 2.25rem; }
.compare__label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.42); margin-bottom: 1.5rem; }
.compare__row { display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.2rem 1.25rem; border-radius: var(--r-sm); margin-bottom: 0.75rem; }
.compare__row--muted { border: 1px solid rgba(255,255,255,0.1); }
.compare__row--hot { background: var(--white); }
.compare__row span { font-weight: 600; font-size: 0.92rem; color: rgba(255,255,255,0.55); }
.compare__row--hot span { color: var(--gray-500); }
.compare__row b { font-family: var(--font-heading); font-weight: 800; font-size: 1.65rem;
  color: rgba(255,255,255,0.65); }
.compare__row--hot b { color: var(--teal-dark); }
.compare__lift { display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); flex-wrap: wrap; }
.compare__badge { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; background: rgba(30,158,106,0.16); color: #4ECB96;
  padding: 0.35rem 0.85rem; border-radius: 999px; }
.compare__lift-text { font-size: 0.85rem; color: rgba(255,255,255,0.45); }
.compare__note { font-size: 0.75rem; color: rgba(255,255,255,0.35); text-align: center; margin-top: 1.25rem; }
/* data lines in the same panel language */
.compare__line { display: flex; justify-content: space-between; gap: 1rem; padding: 0.75rem 0.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.09); font-size: 0.95rem; color: rgba(255,255,255,0.6); }
.compare__line:last-of-type { border-bottom: none; }
.compare__line b { font-family: var(--font-heading); font-weight: 700; color: var(--white); }
.compare__line b.hot { color: var(--orange); }

/* ------------------------------------------------------------- card grids */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.card { background: var(--white); border: var(--hairline); border-radius: var(--r);
  padding: 2.25rem 2rem; display: flex; flex-direction: column;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.4s var(--ease); }
.card:hover { border-color: var(--teal); transform: translateY(-4px); box-shadow: var(--shadow); }
.card--white, .card--green, .card--light { background: var(--white); }
.card__icon { width: 48px; height: 48px; border-radius: var(--r-sm); display: flex;
  align-items: center; justify-content: center; margin-bottom: 1.5rem;
  background: var(--teal-wash); border: 1px solid var(--teal-muted); }
.card--green .card__icon, .card--light .card__icon { background: var(--teal-wash); }
.card__icon i { color: var(--teal-dark); width: 22px; height: 22px; }
.card__for { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gray-400); margin-bottom: 0.7rem; }
.card__title { font-family: var(--font-heading); font-weight: 800; font-size: 1.25rem;
  color: var(--ink); margin-bottom: 0.7rem; line-height: 1.25; }
.card__text { font-size: 0.95rem; line-height: 1.65; color: var(--gray-500); margin-bottom: 1.4rem; flex-grow: 1; }
.card__text:last-child { margin-bottom: 0; }
.card__highlight { display: flex; align-items: center; gap: 0.6rem; font-weight: 600;
  font-size: 0.85rem; color: var(--teal-dark); margin-bottom: 1.5rem;
  padding: 0.7rem 1rem; border-radius: var(--r-sm); background: var(--teal-wash); }
.card__highlight i { width: 16px; height: 16px; color: var(--teal-dark); flex-shrink: 0; }
.card__cta { display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; color: var(--ink);
  padding: 0.85rem 1.25rem; border: 1.5px solid var(--gray-200); border-radius: var(--r-sm);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease); }
.card__cta i { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }
.card:hover .card__cta { background: var(--teal-dark); color: var(--white); border-color: var(--teal-dark); }
.card:hover .card__cta i { transform: translateX(4px); }
.card__list { list-style: none; margin: 0 0 1.2rem; display: grid; gap: 0.5rem; }
.card__list li { display: flex; gap: 0.55rem; align-items: flex-start; font-size: 0.92rem;
  color: var(--gray-600); line-height: 1.5; }
.card__list li i { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; margin-top: 3px; }

/* stat cards (the two crises): the number carries the alarm, nothing else does */
.stat-card__icon { width: 48px; height: 48px; border-radius: var(--r-sm); display: flex;
  align-items: center; justify-content: center; margin-bottom: 1.2rem;
  background: var(--gray-50); border: var(--hairline); }
.stat-card__icon--red i, .stat-card__icon--blue i { color: var(--gray-500); width: 22px; height: 22px; }
.stat-card__stat { font-family: var(--font-heading); font-weight: 800; font-size: 2.4rem;
  letter-spacing: 0; line-height: 1.1; margin-bottom: 0.4rem; }
.stat-card__stat--red, .stat-card__stat--blue { color: var(--ink); }

/* ------------------------------------------------------------ dark strip
   Same inset-panel object as the hero, so the page has one recurring
   dark shape instead of three different dark treatments. */
.strip { padding: 3.5rem 0; background: var(--panel); color: var(--white); }
.strip + .final-cta { border-top: 1px solid rgba(255,255,255,0.14); }
.strip__inner { display: flex; align-items: center;
  justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
.strip__left { flex: 1; min-width: 280px; }
.strip__eyebrow { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal-light); margin-bottom: 0.6rem;
  display: flex; align-items: center; gap: 0.5rem; }
.strip__eyebrow i { width: 14px; height: 14px; }
.strip__title { font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem); color: var(--white); line-height: 1.25; }
.strip__stats { display: flex; gap: 0; flex-wrap: wrap; }
.strip__stat { text-align: center; padding: 0 1.75rem; border-right: 1px solid rgba(255,255,255,0.12); }
.strip__stat:last-child { border-right: none; }
.strip__stat b { display: block; font-family: var(--font-heading); font-weight: 800;
  font-size: 1.5rem; color: var(--white); }
.strip__stat span { font-size: 0.72rem; letter-spacing: 0.05em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-top: 0.2rem; display: block; }
.strip__cta { display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-heading); font-weight: 700; font-size: 0.88rem;
  background: var(--orange); color: var(--white);
  padding: 0.75rem 1.4rem; border-radius: var(--r-sm); transition: background 0.3s var(--ease); }
.strip__cta:hover { background: var(--orange-hover); }
.strip__cta i { width: 16px; height: 16px; }

/* ---------------------------------------------------------- credibility */
.cred__inner { display: flex; align-items: center; justify-content: space-between; gap: 3.5rem; flex-wrap: wrap; }
.cred__text { flex: 1; min-width: 300px; }
.cred__headline { font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem); color: var(--ink); line-height: 1.2; margin: 0.75rem 0 1rem; }
.cred__sub { font-size: 1rem; line-height: 1.7; color: var(--gray-500); max-width: 520px; }
.cred__stats { display: flex; gap: 0; flex-wrap: wrap; background: var(--white);
  border: var(--hairline); border-radius: var(--r); padding: 1.5rem 0.5rem; }
.cred__stat { padding: 0.25rem 2rem; text-align: center; border-right: var(--hairline); }
.cred__stat:last-child { border-right: none; }
.cred__stat b { display: block; font-family: var(--font-heading); font-weight: 800;
  font-size: 1.9rem; color: var(--teal-dark); line-height: 1.2; }
.cred__stat span { font-size: 0.72rem; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--gray-400); margin-top: 0.3rem; display: block; }

/* ------------------------------------------------------- steps + faq etc */
.steps { counter-reset: st; display: grid; gap: 0; max-width: 760px; margin: 0 auto; }
.steps li { counter-increment: st; list-style: none; display: flex; gap: 1.75rem;
  align-items: flex-start; padding: 1.75rem 0.5rem; border-bottom: var(--hairline); }
.steps li:first-child { border-top: var(--hairline); }
.steps li::before { content: counter(st, decimal-leading-zero); flex-shrink: 0;
  font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem;
  color: var(--teal); line-height: 1.3; min-width: 2.5rem; }
.steps h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem;
  color: var(--ink); margin-bottom: 0.35rem; }
.steps p { font-size: 0.95rem; color: var(--gray-500); line-height: 1.65; }

.faq { max-width: 760px; margin: 0 auto; border-top: var(--hairline); }
.faq details { border-bottom: var(--hairline); padding: 0 0.5rem; }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; padding: 1.3rem 0;
  font-family: var(--font-heading); font-weight: 700; font-size: 1.02rem; color: var(--ink);
  transition: color 0.2s; }
.faq summary:hover { color: var(--teal-dark); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { width: 18px; height: 18px; color: var(--gray-400); flex-shrink: 0;
  transition: transform 0.25s var(--ease), color 0.25s var(--ease); }
.faq details[open] summary i { transform: rotate(45deg); color: var(--teal-dark); }
.faq details p { font-size: 0.95rem; line-height: 1.7; color: var(--gray-500);
  padding: 0 0 1.4rem; max-width: 660px; }

.table-card { background: var(--white); border: var(--hairline); border-radius: var(--r); overflow: hidden; }
.table-card table { width: 100%; border-collapse: collapse; font-size: 0.98rem; }
.table-card th { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; text-align: left; color: var(--gray-500);
  background: var(--gray-50); padding: 0.9rem 1.5rem; border-bottom: var(--hairline); }
.table-card td { padding: 0.95rem 1.5rem; border-top: var(--hairline); color: var(--gray-500); }
.table-card tr:first-child td { border-top: none; }
.table-card td:last-child { font-family: var(--font-heading); font-weight: 700; color: var(--ink); }

.quote { border-left: 2px solid var(--orange); padding: 0.5rem 0 0.5rem 1.75rem; max-width: 640px; }
.quote p { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600;
  line-height: 1.55; color: var(--ink); }
.quote footer { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gray-400); margin-top: 0.75rem; }

.photo-card { border-radius: var(--r); overflow: hidden; border: var(--hairline); max-width: 360px; }
.photo-card img { width: 100%; display: block; }

.price-tag { font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 3.4rem); color: var(--white); line-height: 1; }
.price-tag small { font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.55); }

/* --------------------------------------------------- final CTA + form
   The closing panel mirrors the opening one: same flat ink object,
   orange carries the only action. */
.final-cta { padding: 6rem 0; background: var(--panel); text-align: center; }
.final-cta .section-heading { color: var(--white); margin-bottom: 1rem; }
.final-cta__sub { font-size: 1.05rem; color: rgba(255,255,255,0.66); margin: 0 auto 2.4rem; max-width: 540px; }
.final-cta__actions { display: flex; justify-content: center; gap: 0.9rem; flex-wrap: wrap; }
.final-cta__note { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 1.75rem; }
.final-cta__note a { color: rgba(255,255,255,0.85); text-decoration: underline; }

.lead-form { max-width: 480px; margin: 0 auto; position: relative; text-align: left; }
.lead-form__input, .lead-form__select { width: 100%; padding: 0.9rem 1rem;
  border: 1px solid rgba(255,255,255,0.22); border-radius: var(--r-sm);
  background: rgba(255,255,255,0.06); color: var(--white);
  font-family: var(--font-body); font-size: 0.95rem; margin-bottom: 0.75rem;
  transition: border-color 0.2s, background 0.2s; }
.lead-form__input::placeholder { color: rgba(255,255,255,0.45); }
.lead-form__input:focus, .lead-form__select:focus { outline: none;
  border-color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.1); }
.lead-form__select { cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m4 6 4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; }
.lead-form__select option { background: var(--panel); color: var(--white); }
.lead-form__consent { display: flex; gap: 0.5rem; align-items: flex-start; cursor: pointer;
  font-size: 0.75rem; color: rgba(255,255,255,0.5); line-height: 1.45; margin-bottom: 0.6rem; }
.lead-form__consent input { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px;
  accent-color: var(--orange); cursor: pointer; }
.lead-form__submit { width: 100%; padding: 1rem; border: none; border-radius: var(--r-sm);
  background: var(--orange); color: var(--white); font-family: var(--font-heading);
  font-weight: 700; font-size: 1rem; cursor: pointer;
  transition: background 0.2s, transform 0.15s; margin-top: 0.25rem; }
.lead-form__submit:hover { background: var(--orange-hover); transform: translateY(-1px); }
.lead-form__submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.lead-form__legal { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-top: 0.6rem; text-align: center; }
.lead-form__legal a { color: rgba(255,255,255,0.55); text-decoration: underline; }
.lead-form__success { display: none; padding: 1.5rem; border-radius: var(--r-sm);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.25);
  text-align: center; color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.lead-form__success a { color: var(--white); text-decoration: underline; }
.lead-form__error { display: none; color: #FFB4B4; font-size: 0.85rem; margin: 0.5rem 0; text-align: center; }

/* light form (in-card, resources ebook) */
.form-light input { width: 100%; padding: 0.8rem 1rem; border: 1px solid var(--gray-200);
  border-radius: var(--r-sm); font-family: var(--font-body); font-size: 0.95rem;
  color: var(--gray-700); margin-bottom: 0.6rem; }
.form-light input:focus { outline: none; border-color: var(--teal); }
.form-light .consent { display: flex; gap: 0.5rem; align-items: flex-start; font-size: 0.75rem;
  color: var(--gray-400); line-height: 1.45; margin-bottom: 0.6rem; cursor: pointer; }
.form-light .consent input { width: 16px; height: 16px; flex-shrink: 0; margin: 1px 0 0;
  accent-color: var(--orange); }
.form-light .lead-form__error { color: var(--danger); }
.form-light .lead-form__success { background: var(--teal-wash); border-color: var(--teal-muted); color: var(--gray-600); }
.form-light .lead-form__success a { color: var(--teal-dark); }

/* ---------------------------------------------------------------- footer */
.footer { background: var(--white); border-top: var(--hairline); padding: 4rem 0 2rem; }
.footer__inner { display: flex; align-items: flex-start; justify-content: space-between;
  gap: 2.5rem; flex-wrap: wrap; padding-bottom: 2.5rem; margin-bottom: 1.5rem;
  border-bottom: var(--hairline); }
.footer__brand img { height: 48px; width: auto; margin-bottom: 1rem; }
.footer__tagline { font-size: 0.88rem; color: var(--gray-400); max-width: 300px; line-height: 1.6; }
.footer__nav { display: flex; gap: 3.5rem; flex-wrap: wrap; }
.footer__nav-title { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gray-400); margin-bottom: 0.9rem; }
.footer__nav-links { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer__nav-links a { font-size: 0.88rem; color: var(--gray-500); transition: color 0.2s; }
.footer__nav-links a:hover { color: var(--teal-dark); }
.footer__copy { font-size: 0.78rem; color: var(--gray-400); text-align: center; }
.footer__copy a { color: var(--gray-500); }

/* ------------------------------------------------------------ responsive */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero__copy { max-width: 640px; }
  .hero__sheet { justify-self: start; max-width: 520px; }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .compare { max-width: 520px; }
  .cards, .cards--2 { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .strip__inner, .cred__inner { justify-content: center; text-align: center; }
  .strip__left { text-align: center; }
  .strip__eyebrow { justify-content: center; }
  .cred__sub { margin: 0 auto; }
  .cred__stats { margin: 0 auto; }
}
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__menu.open { display: flex; flex-direction: column; gap: 0.25rem;
    padding: 0.75rem 1.5rem 1.25rem; background: var(--white); border-top: var(--hairline); }
  .nav__menu a { padding: 0.7rem 0; font-weight: 600; color: var(--gray-700); }
  .hero { padding-top: 3.5rem; }
  .hero__trust { flex-direction: column; padding: 0.5rem 1.25rem; margin-top: 3rem; }
  .hero__headline { font-size: 2.3rem; }
  .hero + .sec { padding-top: 8rem; }
  .hero__trust-stat { padding: 0.9rem 0; border-right: none; border-bottom: var(--hairline); }
  .hero__trust-stat:last-child { border-bottom: none; }
  .hero__cta-wrap .btn { width: 100%; }
  .compare__row { flex-direction: column; gap: 0.25rem; text-align: center; padding: 1rem; }
  .strip { padding: 3rem 0; }
  .strip__stat { padding: 0 1.25rem; }
  .final-cta { padding: 4.5rem 0; }
  .footer__inner { flex-direction: column; align-items: center; text-align: center; }
  .footer__nav { justify-content: center; gap: 2rem; }
  .sec { padding: 4.5rem 0; }
  .steps li { gap: 1.1rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .cred__stats { flex-direction: column; align-items: stretch; padding: 0.5rem 1.25rem; }
  .cred__stat { border-right: none; border-bottom: var(--hairline); padding: 1rem 0; }
  .cred__stat:last-child { border-bottom: none; }
  .strip__stats { justify-content: center; }
}

/* -------------------------------------------------- utility pages (v5.1)
   Legal, supplies, and the 404 share the system; nothing new in color. */
.hero--simple { padding-bottom: 4.5rem; }
.hero--simple .hero__grid { grid-template-columns: 1fr; }
.hero--simple + .sec { padding-top: 5rem; }
.sec-head--left { text-align: left; margin-left: 0; max-width: 760px; }
.sec-head--left .section-body { margin-left: 0; }
.legal { max-width: 760px; margin: 0 auto; }
.legal__updated { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gray-400); margin-bottom: 2rem; }
.legal h2 { font-family: var(--font-heading); font-weight: 800; font-size: 1.35rem; color: var(--ink);
  margin: 2.5rem 0 0.9rem; line-height: 1.25; }
.legal h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; color: var(--ink); margin: 1.5rem 0 0.5rem; }
.legal p { font-size: 1rem; line-height: 1.75; color: var(--gray-600); margin-bottom: 1rem; }
.legal ul { margin: 0 0 1rem 1.25rem; display: grid; gap: 0.5rem; }
.legal li { font-size: 1rem; line-height: 1.7; color: var(--gray-600); }
.legal strong { color: var(--ink); font-weight: 700; }
.legal a { color: var(--teal-dark); text-decoration: underline; }
.faq--wide { max-width: none; }
.faq__count { font-weight: 600; font-size: 0.78rem; color: var(--gray-400); margin-left: auto; padding-right: 1rem; white-space: nowrap; }
.supply-list { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem 2rem; padding: 0.25rem 0 1.5rem; }
.supply-list li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.95rem; color: var(--gray-600); line-height: 1.5; }
.supply-list li i { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; margin-top: 4px; }
.supply-list--avoid { grid-template-columns: repeat(2, 1fr); max-width: 760px; padding: 0; }
.supply-list--avoid li i { color: var(--gray-400); }
.notfound { padding: 8rem 0; text-align: center; }
.notfound .section-body { margin: 1rem auto 0; }
.notfound .hero__cta-wrap { justify-content: center; opacity: 1; animation: none; }
@media (max-width: 768px) {
  .supply-list, .supply-list--avoid { grid-template-columns: 1fr; }
  .faq__count { display: none; }
}

.notfound .eyebrow::before { content: none; }
