/* ==========================================================================
   AndreaFlorescu.com — HOMEPAGE V2
   Homepage-only stylesheet. Loaded ONLY by index.html, AFTER style.css.
   Every rule is namespaced to body.hp-home so no other page can be affected.
   Design tokens are inherited from style.css (:root) — no palette is
   redefined here. Nothing in style.css is modified.
   ========================================================================== */

body.hp-home {
  /* Local aliases only — all values already exist in the production palette. */
  --hpv2-ink: #171514;
  --hp-navh: 81px;
  --hpv2-charcoal-2: #262220;
  --hpv2-copper-dim: #A97C59;
  --hpv2-line-light: rgba(250, 247, 242, 0.16);
  --hpv2-line-dark: rgba(26, 26, 26, 0.10);
  --hpv2-pad: 40px;
}

/* Neutralise the global section padding — every V2 section sets its own. */
body.hp-home main > section { padding: 0; }

body.hp-home .container { padding: 0 var(--hpv2-pad); }

/* Responsive line breaks: approved desktop line breaks are suppressed on
   small screens so no desktop break is forced onto mobile. */
body.hp-home br.hp-br { display: inline; }

/* --------------------------------------------------------------------------
   HEADER — production markup, behaviour and JS are untouched.
   Production STICKY behaviour is preserved (normal flow, position: sticky
   from style.css). Only the homepage colour treatment is overridden so the
   bar reads as charcoal continuous with the hero beneath it.
   Per approved decision D-1: no transparent overlay.
   -------------------------------------------------------------------------- */
body.hp-home .nav {
  background: rgba(23, 21, 20, 0.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--hpv2-line-light);
}
body.hp-home .nav .nav-links a,
body.hp-home .nav .nav-dropdown-trigger {
  color: rgba(250, 247, 242, 0.82);
}
body.hp-home .nav .nav-links a:hover,
body.hp-home .nav .nav-dropdown-trigger:hover { color: var(--cream); }
body.hp-home .nav .nav-links a.active { color: var(--cream); }
body.hp-home .nav .nav-links a.active::after { background: var(--copper); }
body.hp-home .nav .nav-toggle span { background: var(--cream); }
body.hp-home .nav .nav-cta {
  background: var(--wine);
  color: #FFF8F0;
  font-weight: 600;
}
body.hp-home .nav .nav-cta:hover { background: var(--wine-dark); color: #FFF8F0; }
/* Dropdown stays a light popover — legible against the charcoal bar. */
body.hp-home .nav .nav-dropdown-menu a { color: var(--dark); }

/* Open mobile panel: dark field, cream links. */
@media (max-width: 1188px) {
  body.hp-home { --hp-navh: 77px; }
  body.hp-home .nav.nav-open .nav-links {
    background: var(--hpv2-ink);
    border-bottom: 1px solid var(--hpv2-line-light);
  }
  body.hp-home .nav.nav-open .nav-links a {
    color: var(--cream);
    border-bottom-color: var(--hpv2-line-light);
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  body.hp-home .nav.nav-open .nav-links a:hover { color: var(--copper); }
  body.hp-home .nav.nav-open .nav-dropdown-trigger { color: var(--cream); min-height: 44px; }
  body.hp-home .nav.nav-open .nav-dropdown-menu { background: transparent; }
  body.hp-home .nav.nav-open .nav-dropdown-menu a { color: rgba(250, 247, 242, 0.78); }
  /* ----------------------------------------------------------------
     OPEN-MENU REFLOW (mobile / tablet).
     Production keeps .nav-cta on the top row beside the logo, which
     crushes the wordmark onto three lines. Here the top row is given
     entirely to the identity + toggle, and the CTA drops to a
     full-width action at the foot of the expanded menu.
     Closed-state behaviour is untouched.
     ---------------------------------------------------------------- */
  body.hp-home .nav.nav-open .nav-inner {
    flex-wrap: wrap;
    row-gap: 0;
    align-items: center;
  }
  body.hp-home .nav.nav-open .logo {
    order: 1;
    flex: 1 1 auto;
    min-width: 0;
  }
  body.hp-home .nav.nav-open .nav-toggle {
    order: 2;
    flex: 0 0 auto;
  }
  body.hp-home .nav.nav-open .nav-links {
    position: static;
    order: 3;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    background: transparent;
    border-bottom: 0;
    padding: 6px 0 4px;
  }
  body.hp-home .nav.nav-open .nav-cta {
    display: inline-flex;
    order: 4;
    flex: 0 0 100%;
    width: 100%;
    margin: 6px 0 14px;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    background: var(--wine);
    color: #FFF8F0;
  }
}

/* --------------------------------------------------------------------------
   1 — HERO
   -------------------------------------------------------------------------- */
body.hp-home .cp-hero {
  position: relative;
  min-height: calc(100vh - var(--hp-navh));
  min-height: calc(100svh - var(--hp-navh));
  display: grid;
  grid-template-columns: 1fr;
  background: var(--dark);
  overflow: hidden;
}
body.hp-home .cp-hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 44%;
  height: 100%;
}
body.hp-home .cp-hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
}
body.hp-home .cp-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
    rgba(15,13,12,1) 0%,
    rgba(15,13,12,1) 44%,
    rgba(15,13,12,.7) 54%,
    rgba(15,13,12,.18) 64%,
    rgba(15,13,12,0) 74%);
}
body.hp-home .cp-hero-scrim-bottom {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(15,13,12,.4) 0%, rgba(15,13,12,0) 26%);
}
body.hp-home .cp-hero-content {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - var(--hp-navh));
  min-height: calc(100svh - var(--hp-navh));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px 0 88px;
}
body.hp-home .cp-hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--hpv2-pad);
  width: 100%;
}
body.hp-home .cp-eyebrow {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0 0 28px;
}
body.hp-home .cp-h1 {
  font-family: var(--f-display);
  font-weight: 500;
  color: var(--cream);
  font-size: clamp(2.6rem, 5.6vw, 4.9rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  max-width: 17ch;
  margin: 0 0 40px;
}
body.hp-home .cp-h1 em { font-style: italic; font-weight: 400; color: var(--copper); }
body.hp-home .cp-hero-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  max-width: 720px;
  border-top: 1px solid var(--hpv2-line-light);
  padding-top: 32px;
}
body.hp-home .cp-hero-desc {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(250, 247, 242, 0.82);
  max-width: 38ch;
  margin: 0;
}
body.hp-home .cp-hero-actions { display: flex; align-items: center; gap: 28px; flex-shrink: 0; }

/* Shared button — extends the production .hp-btn component, does not replace it. */
body.hp-home .hp-btn.cp-btn {
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: .01em;
  padding: 16px 30px;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
body.hp-home .hp-btn.cp-btn:hover { transform: translateY(-1px); }
@media (prefers-reduced-motion: reduce) {
  body.hp-home .hp-btn.cp-btn { transition: none; }
  body.hp-home .hp-btn.cp-btn:hover { transform: none; }
}

/* --------------------------------------------------------------------------
   2 — CREDIBILITY
   -------------------------------------------------------------------------- */
body.hp-home .cp-cred { background: var(--cream); padding: 132px 0 140px; }
body.hp-home .cp-cred-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--hpv2-pad);
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 96px;
  align-items: start;
}
body.hp-home .cp-cred-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: center 22%;
}
body.hp-home .cp-cred-photo-cap {
  margin: 16px 0 0;
  font-size: 13px;
  color: var(--muted);
  max-width: 34ch;
}
body.hp-home .cp-cred-label { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
body.hp-home .cp-cred-label .rule { width: 34px; height: 1px; background: var(--hpv2-copper-dim); }
body.hp-home .cp-cred-label span {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--wine);
}
body.hp-home h2.cp-cred-statement {
  font-family: var(--f-display);
  font-weight: 500;
  color: var(--hpv2-ink);
  font-size: clamp(1.9rem, 3.1vw, 3rem);
  line-height: 1.16;
  letter-spacing: -0.01em;
  margin: 0 0 44px;
  max-width: 19ch;
}
body.hp-home h2.cp-cred-statement em { font-style: italic; font-weight: 400; color: var(--wine); }
body.hp-home .cp-cred-body {
  max-width: 46ch;
  border-top: 1px solid var(--hpv2-line-dark);
  padding-top: 20px;
}
body.hp-home .cp-cred-body p { font-size: 17.5px; line-height: 1.7; color: var(--hpv2-charcoal-2); margin: 0; }
body.hp-home .cp-cred-body p + p { margin-top: 18px; }

/* --------------------------------------------------------------------------
   Shared editorial atoms for the new sections
   -------------------------------------------------------------------------- */
body.hp-home .hp-eyebrow {
  font-family: var(--f-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--wine);
  margin: 0 0 18px;
}
body.hp-home .hp-eyebrow-light { color: var(--copper); }

body.hp-home .hp-textlink {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--wine);
  border-bottom: 1px solid var(--hpv2-line-dark);
  padding-bottom: 3px;
  transition: border-color .2s var(--ease), gap .2s var(--ease);
}
body.hp-home .hp-textlink::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 44px;
  transform: translateY(-50%);
}
body.hp-home .hp-textlink:hover { gap: 12px; border-color: var(--wine); }
body.hp-home .hp-textlink-light { color: var(--cream); border-color: var(--hpv2-line-light); }
body.hp-home .hp-textlink-light:hover { border-color: var(--cream); color: var(--cream); }
@media (prefers-reduced-motion: reduce) {
  body.hp-home .hp-textlink { transition: none; }
  body.hp-home .hp-textlink:hover { gap: 8px; }
}

/* --------------------------------------------------------------------------
   3 — THE PATTERN
   -------------------------------------------------------------------------- */
body.hp-home .hp-problem { background: var(--hpv2-ink); color: var(--cream); padding: 120px 0 128px; }
body.hp-home .hp-problem-inner { max-width: 980px; margin: 0 auto; }
body.hp-home .hp-problem-h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.14;
  letter-spacing: -.01em;
  color: var(--cream);
  margin: 0 0 44px;
  max-width: 17ch;
}
body.hp-home .hp-problem-h2 em { font-style: italic; font-weight: 400; color: var(--copper); }
body.hp-home .hp-problem-lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 24px;
  border-left: 2px solid var(--wine);
  margin-bottom: 40px;
}
body.hp-home .hp-problem-lines p { font-size: 18px; color: rgba(250, 247, 242, 0.78); margin: 0; }
body.hp-home .hp-problem-foot {
  max-width: 62ch;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(250, 247, 242, 0.62);
  margin: 0;
}

/* --------------------------------------------------------------------------
   4 — WHAT I ACTUALLY DO
   The three items are vertically separated editorial rows with staggered
   indents and varied measures. Deliberately NOT equal columns, cards,
   boxes, tiles or icon rows.
   -------------------------------------------------------------------------- */
body.hp-home .hp-what { background: var(--cream); padding: 128px 0; }
body.hp-home .hp-what-top {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 72px;
}
body.hp-home .hp-what-photo { overflow: hidden; }
body.hp-home .hp-what-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 28%;
}
body.hp-home .hp-what-h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.18;
  letter-spacing: -.01em;
  color: var(--hpv2-ink);
  margin: 0 0 24px;
}
body.hp-home .hp-what-lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--hpv2-charcoal-2);
  max-width: 52ch;
  margin: 0;
}

body.hp-home .hp-what-rows { border-top: 1px solid var(--hpv2-line-dark); }
body.hp-home .hp-what-row {
  padding: 34px 0;
  border-bottom: 1px solid var(--hpv2-line-dark);
}
body.hp-home .hp-what-row h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  color: var(--wine);
  margin: 0 0 12px;
}
body.hp-home .hp-what-row p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--hpv2-charcoal-2);
  margin: 0;
}
/* Staggered alignment + varied measure, row to row. */
body.hp-home .hp-what-row--a { padding-left: 0; }
body.hp-home .hp-what-row--a p { max-width: 64ch; }
body.hp-home .hp-what-row--b { padding-left: 14%; }
body.hp-home .hp-what-row--b p { max-width: 52ch; }
body.hp-home .hp-what-row--c { padding-left: 7%; }
body.hp-home .hp-what-row--c p { max-width: 58ch; }

/* --------------------------------------------------------------------------
   5 — WAYS TO WORK TOGETHER
   -------------------------------------------------------------------------- */
body.hp-home .hp-primary { background: var(--dark); color: var(--cream); padding: 120px 0 88px; }
body.hp-home .hp-primary-inner { max-width: 840px; margin: 0 auto; }
body.hp-home .hp-primary-h2 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(38px, 4.6vw, 58px);
  line-height: 1.06;
  letter-spacing: -.01em;
  color: var(--cream);
  margin: 0 0 28px;
}
body.hp-home .hp-primary-lede {
  font-size: 19px;
  line-height: 1.65;
  color: rgba(250, 247, 242, 0.86);
  margin: 0 0 20px;
  max-width: 58ch;
}
body.hp-home .hp-primary-sub {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(250, 247, 242, 0.6);
  margin: 0 0 36px;
  max-width: 56ch;
}

body.hp-home .hp-supporting { background: var(--cream); padding: 96px 0 108px; }
body.hp-home .hp-supporting-title { margin-bottom: 40px; }
body.hp-home .hp-supporting-rows { border-top: 1px solid var(--hpv2-line-dark); }
body.hp-home .hp-supporting-row {
  padding: 40px 0;
  border-bottom: 1px solid var(--hpv2-line-dark);
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
body.hp-home .hp-supporting-row h4 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  color: var(--hpv2-ink);
  margin: 0;
}
body.hp-home .hp-supporting-row p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--hpv2-charcoal-2);
  margin: 0 0 18px;
}
/* Varied indent and measure so the three rows read as an editorial
   sequence rather than three interchangeable items. */
body.hp-home .hp-supporting-row--b { padding-left: 64px; }
body.hp-home .hp-supporting-row--b p { max-width: 52ch; }
body.hp-home .hp-supporting-row--c p { max-width: 46ch; }

/* --------------------------------------------------------------------------
   6 — WHAT CHANGES
   -------------------------------------------------------------------------- */
body.hp-home .hp-changes { background: var(--wine); color: var(--cream); padding: 128px 0; }
body.hp-home .hp-changes-inner { max-width: 900px; margin: 0 auto; }
body.hp-home .hp-changes-h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.18;
  letter-spacing: -.01em;
  color: var(--cream);
  margin: 0 0 48px;
}
body.hp-home .hp-changes-list { list-style: none; margin: 0; padding: 0; }
body.hp-home .hp-changes-list li {
  font-size: 19px;
  line-height: 1.5;
  color: rgba(250, 247, 242, 0.92);
  padding: 22px 0;
  border-top: 1px solid rgba(250, 247, 242, 0.22);
}
body.hp-home .hp-changes-list li:last-child { border-bottom: 1px solid rgba(250, 247, 242, 0.22); }

/* --------------------------------------------------------------------------
   7 — REAL EXAMPLE + WHAT CHANGED (combined)
   -------------------------------------------------------------------------- */
body.hp-home .hp-example { background: var(--cream); padding: 128px 0; }
body.hp-home .hp-example-inner { max-width: 720px; margin: 0 auto; }
body.hp-home .hp-example-h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.22;
  letter-spacing: -.01em;
  color: var(--hpv2-ink);
  margin: 0 0 40px;
}
body.hp-home .hp-example-body p {
  font-size: 17.5px;
  line-height: 1.72;
  color: var(--hpv2-charcoal-2);
  margin: 0 0 22px;
}
body.hp-home .hp-example-emphasis {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 21px;
  line-height: 1.5;
  color: var(--wine);
  margin-top: 8px !important;
}
body.hp-home .hp-example-outcome {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--hpv2-line-dark);
}
body.hp-home .hp-example-outcome-label {
  font-family: var(--f-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--wine);
  margin: 0 0 16px;
}
body.hp-home .hp-example-outcome-body {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 25px);
  line-height: 1.4;
  letter-spacing: -.005em;
  color: var(--hpv2-ink);
  margin: 0 0 24px;
}

/* --------------------------------------------------------------------------
   8 — HOW THIS STARTS + FAQ
   -------------------------------------------------------------------------- */
body.hp-home .hp-path { background: var(--cream-2); padding: 128px 0; }
body.hp-home .hp-path-inner { display: grid; grid-template-columns: 0.85fr 1fr; gap: 96px; }
body.hp-home .hp-path-h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.26;
  letter-spacing: -.01em;
  color: var(--hpv2-ink);
  margin: 0 0 24px;
}
body.hp-home .hp-path-start p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--hpv2-charcoal-2);
  max-width: 50ch;
  margin: 0;
}
body.hp-home .hp-faq-list { display: flex; flex-direction: column; }
body.hp-home .hp-faq-item {
  padding: 6px 0;
  border-top: 1px solid var(--hpv2-line-dark);
  border-bottom: 0;
}
body.hp-home .hp-faq-item:last-child { border-bottom: 1px solid var(--hpv2-line-dark); }
body.hp-home .hp-faq-item summary {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  color: var(--hpv2-ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  min-height: 44px;
}
body.hp-home .hp-faq-item summary::-webkit-details-marker { display: none; }
body.hp-home .hp-faq-item summary::after {
  content: '+';
  font-family: var(--f-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  color: var(--wine);
  flex: 0 0 auto;
}
body.hp-home .hp-faq-item[open] summary::after { content: '\2212'; }
body.hp-home .hp-faq-item summary:focus-visible { outline: 2px solid var(--wine); outline-offset: 3px; }
body.hp-home .hp-faq-item p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--hpv2-charcoal-2);
  margin: 0 0 18px;
  max-width: 58ch;
}

/* --------------------------------------------------------------------------
   9 — FINAL CTA
   -------------------------------------------------------------------------- */
body.hp-home .hp-final-cta {
  background: var(--hpv2-ink);
  color: var(--cream);
  padding: 132px 0 140px;
  text-align: center;
}
body.hp-home .hp-final-inner { max-width: 680px; margin: 0 auto; }
body.hp-home .hp-final-h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--cream);
  margin: 0 0 22px;
}
body.hp-home .hp-final-lede {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(250, 247, 242, 0.68);
  margin: 0 0 40px;
}
body.hp-home .hp-final-btn { display: inline-flex; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1188px) {
  body.hp-home .hp-path-inner { gap: 64px; }
}

@media (max-width: 1080px) {
  body.hp-home .cp-cred-inner { grid-template-columns: 1fr; gap: 56px; }
  body.hp-home .cp-cred-media { max-width: 420px; }
  body.hp-home .hp-what-top { grid-template-columns: 1fr; gap: 32px; }
  body.hp-home .hp-what-photo { max-width: 320px; }
  body.hp-home .hp-path-inner { grid-template-columns: 1fr; gap: 56px; }
}

@media (max-width: 900px) {
  body.hp-home { --hp-navh: 73px; }
  body.hp-home br.hp-br { display: none; }

  body.hp-home .cp-hero-content { padding: 150px 0 64px; }
  body.hp-home .cp-hero-inner { padding: 0 24px; }
  body.hp-home .cp-h1 { max-width: none; margin-bottom: 32px; }
  body.hp-home .cp-hero-foot { flex-direction: column; align-items: flex-start; gap: 24px; padding-top: 24px; max-width: none; }
  body.hp-home .cp-hero-photo { top: 0; left: 0; right: 0; width: 100%; height: 58%; }
  body.hp-home .cp-hero-photo img { object-position: 50% 18%; }
  body.hp-home .cp-hero-scrim {
    background: linear-gradient(to top,
      rgba(15,13,12,1) 0%,
      rgba(15,13,12,1) 42%,
      rgba(15,13,12,.55) 58%,
      rgba(15,13,12,.1) 74%);
  }

  body.hp-home .hp-what-row--b,
  body.hp-home .hp-what-row--c { padding-left: 0; }
  body.hp-home .hp-what-row p { max-width: none; }

  body.hp-home .hp-supporting-row { grid-template-columns: 1fr; gap: 14px; padding-left: 0; }
  body.hp-home .hp-supporting-row p { max-width: none; }
}

@media (max-width: 768px) {
  body.hp-home .nav .nav-inner { padding: 14px 24px; }
}

@media (max-width: 600px) {
  body.hp-home { --hpv2-pad: 24px; }
  body.hp-home .cp-cred { padding: 88px 0 96px; }
  body.hp-home .cp-cred-inner { gap: 44px; }
  body.hp-home h2.cp-cred-statement { max-width: none; margin-bottom: 32px; }
  body.hp-home .cp-cred-media { max-width: none; }

  body.hp-home .hp-problem { padding: 88px 0 96px; }
  body.hp-home .hp-problem-h2 { margin-bottom: 32px; max-width: none; }
  body.hp-home .hp-problem-lines { padding-left: 18px; margin-bottom: 32px; }

  body.hp-home .hp-what { padding: 88px 0; }
  body.hp-home .hp-what-top { margin-bottom: 48px; }
  body.hp-home .hp-what-photo { max-width: none; }
  body.hp-home .hp-what-row { padding: 28px 0; }

  body.hp-home .hp-primary { padding: 88px 0 64px; }
  body.hp-home .hp-supporting { padding: 72px 0 88px; }
  body.hp-home .hp-changes { padding: 88px 0; }
  body.hp-home .hp-changes-h2 { margin-bottom: 32px; }
  body.hp-home .hp-changes-list li { font-size: 18px; padding: 18px 0; }
  body.hp-home .hp-example { padding: 88px 0; }
  body.hp-home .hp-example-h2 { margin-bottom: 28px; }
  body.hp-home .hp-example-outcome { margin-top: 36px; padding-top: 32px; }
  body.hp-home .hp-path { padding: 88px 0; }
  body.hp-home .hp-final-cta { padding: 96px 0 104px; }
}

@media (max-width: 480px) {
  body.hp-home .cp-hero-content { padding: 130px 0 48px; }
  body.hp-home .cp-hero-inner { padding: 0 20px; }
  body.hp-home .cp-eyebrow { font-size: 11.5px; margin-bottom: 20px; }
  body.hp-home .hp-problem-h2 { font-size: 30px; }
  body.hp-home .hp-primary-h2 { font-size: 34px; }
  body.hp-home .hp-changes-h2 { font-size: 28px; }
  body.hp-home .hp-final-h2 { font-size: 32px; }
}
