/* ============================================
   ELYSE COLLAT — Homepage shared styles
   Loud, neon-forward, tattoo-flash posters.
   ============================================ */

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  background: #f0eee9;
  font-family: var(--ec-sans);
  color: var(--ec-black);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ------ HOMEPAGE ARTBOARD ROOT ------ */
.hp {
  --hp-accent: var(--ec-lilac);           /* Decoration accent (tigers, marquees, second emphasis) */
  --hp-accent-2: var(--ec-violet);        /* Soft companion accent */
  --hp-cta: var(--ec-lilac);              /* CTA fill — DS spec: electric lilac */
  --hp-cta-fg: var(--ec-black);           /* CTA text — DS spec: black on lilac */
  --hp-cta-hover: var(--ec-violet);       /* CTA hover — DS spec: violet voltage */
  --hp-cta-hover-fg: var(--ec-white);
  --hp-bg: var(--ec-white);
  --hp-fg: var(--ec-black);
  --hp-ink: var(--ec-black);
  --hp-line: #1a1a1a;
  --hp-surface: var(--ec-white);
  --hp-script-color: var(--hp-accent);

  width: 100%;
  background: var(--hp-bg);
  color: var(--hp-fg);
  font-family: var(--ec-sans);
  font-size: 15px;
  line-height: 1.55;
  position: relative;
  overflow: hidden;
  container-type: inline-size;
  container-name: hp;
}

/* density modifier — adjusts vertical rhythm */
.hp[data-density="airy"]    { --hp-pad-y: 140px; --hp-gap: 96px; }
.hp[data-density="regular"] { --hp-pad-y: 96px;  --hp-gap: 64px; }
.hp[data-density="packed"]  { --hp-pad-y: 56px;  --hp-gap: 40px; }
.hp { --hp-pad-y: 96px; --hp-gap: 64px; }

/* font-scale modifier — multiplies all display sizes via CSS var */
.hp { --hp-typescale: 1; }

/* ------ DIRECTION A: TABLOID ------ */
.hp[data-direction="tabloid"] {
  --hp-bg: #f3ede4;       /* warm newsprint */
  --hp-fg: var(--ec-espresso);
  --hp-ink: var(--ec-espresso);
  --hp-line: rgba(68,25,0,0.4);
  --hp-surface: #ecdfca;  /* tan reveal */
  --hp-script-color: var(--ec-espresso);
}

/* ------ DIRECTION B: TATTOO FLASH (black + neons) ------ */
.hp[data-direction="flash"] {
  --hp-bg: var(--ec-black);
  --hp-fg: var(--ec-white);
  --hp-ink: var(--ec-white);
  --hp-line: rgba(255,255,255,0.18);
  --hp-surface: #0a0a0a;
}

/* ------ DIRECTION C: POSTER CHILD (white + neon cutouts) ------ */
.hp[data-direction="poster"] {
  --hp-bg: var(--ec-white);
  --hp-fg: var(--ec-black);
  --hp-ink: var(--ec-black);
  --hp-line: rgba(0,0,0,0.18);
  --hp-surface: var(--ec-white);
}

/* ============================================
   TYPE PRIMITIVES — DS scale (Poppins 900 / 800)
   Display 64→120 · H1 42→64 · H2 26→40 · Body 15 · Eyebrow 11+.22em
   ============================================ */
.hp .display,
.hp .h1,
.hp .h2,
.hp .h3,
.hp .hero-tiger-title,
.hp .who-headline,
.hp .who-sub,
.hp .wins-h1 {
  -webkit-text-stroke: 1.5px currentColor;
  paint-order: stroke fill;
  font-synthesis: weight;
}

@container hp (max-width: 760px) {
  .hp .display,
  .hp .h1,
  .hp .h2,
  .hp .h3,
  .hp .hero-tiger-title,
  .hp .who-headline,
  .hp .who-sub,
  .hp .wins-h1 {
    -webkit-text-stroke: 0.5px currentColor;
    letter-spacing: -0.03em;
  }
}
.hp .display {
  font-family: var(--ec-sans);
  font-weight: 900;
  font-size: calc(96px * var(--hp-typescale));
  line-height: 0.88;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  text-wrap: balance;
  margin: 0;
}
.hp .h1 {
  font-family: var(--ec-sans);
  font-weight: 900;
  font-size: calc(56px * var(--hp-typescale));
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  text-wrap: balance;
  margin: 0;
}
.hp .h2 {
  font-family: var(--ec-sans);
  font-weight: 800;
  font-size: calc(36px * var(--hp-typescale));
  line-height: 1;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  text-wrap: balance;
  margin: 0;
}
.hp .h3 {
  font-family: var(--ec-sans);
  font-weight: 800;
  font-size: calc(22px * var(--hp-typescale));
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0;
}
.hp .script {
  font-family: var(--ec-script);
  font-weight: 400;
  font-style: normal;
  color: var(--hp-script-color);
  text-transform: none;
  letter-spacing: 0;
  line-height: 0.95;
}
.hp .scrawl {
  font-family: var(--ec-scrawl);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.005em;
  line-height: 1.05;
}
.hp .eyebrow {
  font-family: var(--ec-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hp .lede {
  font-family: var(--ec-sans);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  text-wrap: pretty;
}
.hp .body {
  font-family: var(--ec-sans);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
}
.hp .mono {
  font-family: var(--ec-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ============================================
   LAYOUT
   ============================================ */
.hp .container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
}
.hp .section {
  position: relative;
  padding: var(--hp-pad-y) 0;
}

/* ============================================
   NAVBAR
   ============================================ */
.hp .nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  background: var(--hp-bg);
  border-bottom: 1px solid var(--hp-line);
  font-size: 14px;
}
.hp .nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}
.hp .nav-logo-mark {
  height: 72px;
  width: auto;
  display: block;
  filter: invert(1); /* black PNG → white on dark nav */
}
.hp .nav-wordmark {
  font-family: var(--ec-sans);
  font-weight: 900;
  font-size: 22px;
  line-height: 0.96;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: inherit;
}
.hp .nav-links {
  display: flex;
  gap: 36px;
}
.hp .nav-links a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.06em;
  position: relative;
  padding: 4px 0;
  transition: opacity .2s var(--ec-ease);
}
.hp .nav-links a:hover { opacity: 0.55; }
.hp .nav-cta { padding: 12px 22px; font-size: 13px; }
.hp .nav-burger {
  display: none;
  background: transparent;
  border: none;
  width: 38px; height: 38px;
  cursor: pointer;
  color: inherit;
  padding: 0;
}
.hp .nav-mobile-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--hp-bg);
  border-bottom: 1.5px solid var(--hp-line);
  padding: 20px 24px 28px;
  flex-direction: column;
  gap: 16px;
}
.hp .nav-mobile-panel a {
  color: inherit;
  text-decoration: none;
  font-family: var(--ec-sans);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============================================
   BUTTONS / CTAs
   ============================================ */
.hp .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--ec-sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .2s var(--ec-ease), background .2s var(--ec-ease), color .2s var(--ec-ease), box-shadow .2s var(--ec-ease);
  white-space: nowrap;
}
.hp .btn-primary {
  background: var(--hp-cta);
  color: var(--hp-cta-fg);
}
.hp .btn-primary:hover {
  background: var(--ec-lime);
  color: #000;
  transform: translateY(-2px);
}
.hp .btn-ghost {
  background: transparent;
  color: var(--hp-fg);
  border: 1.5px solid var(--hp-fg);
}
.hp .btn-ghost:hover {
  background: var(--hp-fg);
  color: var(--hp-bg);
}
.hp .btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ec-sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hp-fg);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  border-bottom: 1.5px solid currentColor;
  transition: gap .2s var(--ec-ease), color .2s var(--ec-ease);
}
.hp .btn-arrow:hover { gap: 14px; color: var(--hp-accent-2); }

/* ============================================
   MARQUEE
   ============================================ */
.hp .marquee {
  width: 100%;
  overflow: hidden;
  border-top: 1.5px solid var(--hp-line);
  border-bottom: 1.5px solid var(--hp-line);
  background: var(--hp-bg);
}
.hp .marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: hp-marquee 35s linear infinite;
  font-family: var(--ec-sans);
  font-weight: 800;
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  padding: 22px 24px;
}
.hp[data-marquee="off"] .marquee-track { animation: none; }
@keyframes hp-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.hp .marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  flex-shrink: 0;
}
.hp .marquee-star {
  font-family: var(--ec-script);
  color: var(--hp-accent);
  font-size: 38px;
  line-height: 0.6;
}
.hp .marquee-it { font-family: var(--ec-script); color: var(--hp-accent); font-weight: 400; text-transform: none; font-size: 1.1em; line-height: 0.9; }

/* Marquee on Flash — lime green by default. */
.hp[data-direction="flash"] .marquee {
  background: var(--ec-lime);
  color: var(--ec-black);
  border-color: var(--ec-black);
}
.hp[data-direction="flash"] .marquee--real {
  background: #fff;
  color: #000;
  border-color: #000;
}
.hp[data-direction="flash"] .marquee--real .marquee-it,
.hp[data-direction="flash"] .marquee--real .marquee-star { color: var(--ec-cherry); }
/* "more X · less Y" marquee — electric lilac on white text */
.hp[data-direction="flash"] .marquee--less {
  background: var(--ec-lilac);
  color: #fff;
  border-color: var(--ec-black);
}
.hp[data-direction="flash"] .marquee--less .marquee-it,
.hp[data-direction="flash"] .marquee--less .marquee-star { color: var(--ec-black); }
.hp[data-direction="flash"] .marquee-star { color: var(--ec-black); }
.hp[data-direction="flash"] .marquee-it { color: var(--ec-black); }

/* ============================================
   POSTER STAMP — reusable element
   ============================================ */
.hp .stamp {
  display: inline-block;
  background: var(--hp-accent);
  color: var(--ec-black);
  font-family: var(--ec-sans);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
}

/* ============================================
   STICKY BOOK CTA
   ============================================ */
.hp .sticky-cta {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  position: fixed;
  /* relative-to-artboard via container query — overridden inside artboard */
}
/* in our case, position fixed wouldn't work inside an artboard (transforms break it),
   we use position:sticky on a wrapper instead. See HP component. */

/* ============================================
   ICONS / SEALS
   ============================================ */
.hp .icon {
  display: inline-block;
  vertical-align: middle;
  line-height: 0;
}
.hp .icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hp .icon-tint-white img { filter: invert(1) brightness(2); }
.hp .icon-tint-lilac img { filter: brightness(0) saturate(100%) invert(67%) sepia(34%) saturate(2700%) hue-rotate(255deg) brightness(101%) contrast(95%); }
.hp .icon-tint-lime  img { filter: brightness(0) saturate(100%) invert(94%) sepia(28%) saturate(800%) hue-rotate(15deg) brightness(102%) contrast(94%); }
.hp .icon-tint-aqua  img { filter: brightness(0) saturate(100%) invert(94%) sepia(20%) saturate(550%) hue-rotate(110deg) brightness(99%) contrast(95%); }
.hp .icon-tint-cherry img { filter: brightness(0) saturate(100%) invert(28%) sepia(98%) saturate(7400%) hue-rotate(330deg) brightness(101%) contrast(101%); }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.hp .faq-item {
  border-top: 1.5px solid var(--hp-line);
  cursor: pointer;
  overflow: hidden;
}
.hp .faq-item:last-child { border-bottom: 1.5px solid var(--hp-line); }
.hp .faq-q {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 32px;
  padding: 28px 0;
  transition: padding .25s var(--ec-ease);
}
.hp .faq-q-text {
  font-family: var(--ec-sans);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.005em;
  line-height: 1.15;
  text-wrap: balance;
  text-transform: none;
  flex: 1;
}
.hp .faq-toggle {
  font-family: var(--ec-sans);
  font-weight: 700;
  font-size: 28px;
  width: 36px;
  text-align: right;
  flex-shrink: 0;
  transition: transform .3s var(--ec-ease);
}
.hp .faq-item[data-open="true"] .faq-toggle { transform: rotate(45deg); }
.hp .faq-a {
  max-height: 0;
  opacity: 0;
  transition: max-height .35s var(--ec-ease), opacity .25s var(--ec-ease), padding .25s var(--ec-ease);
  padding-bottom: 0;
}
.hp .faq-item[data-open="true"] .faq-a {
  max-height: 400px;
  opacity: 1;
  padding-bottom: 32px;
}
.hp .faq-a-text {
  font-size: 17px;
  line-height: 1.6;
  max-width: 720px;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.hp .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ec-ease-out), transform .8s var(--ec-ease-out);
}
.hp .reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   DASHBOARDS HORIZONTAL STRIP
   ============================================ */
.hp .dash-strip {
  display: flex;
  gap: 24px;
  padding: 0 64px 32px;
  overflow-x: auto;
  scrollbar-width: thin;
}
.hp .dash-card {
  flex: 0 0 460px;
  background: #fff;
  color: #111;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.12);
  padding: 20px;
  position: relative;
  font-family: var(--ec-sans);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: transform .3s var(--ec-ease);
}
.hp .dash-card:hover { transform: translateY(-4px); }

/* ============================================
   PROGRAM CARDS
   ============================================ */
/* ============================================
   PROGRAM CARDS — same chrome as testimonial cards.
   Each card sets its own --program-accent.
   ============================================ */
.hp .program-card {
  --program-accent: var(--ec-lime);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 36px 40px 32px;
  background: #0a0a0a;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  overflow: hidden;
  isolation: isolate;
  transition: transform .3s var(--ec-ease), box-shadow .3s var(--ec-ease);
}
.hp .program-card::before {
  content: '';
  position: absolute;
  top: -160px; right: -160px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--program-accent) 0%, transparent 65%);
  opacity: 0.16;
  z-index: -1;
  pointer-events: none;
}
.hp .program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.45);
}
.hp .program-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hp .program-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px 7px 12px;
  border: 1.5px solid var(--program-accent);
  border-radius: 999px;
  color: var(--program-accent);
  font-family: var(--ec-sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hp .program-num {
  font-family: var(--ec-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.hp .program-title {
  font-family: var(--ec-sans);
  font-weight: 900;
  font-size: calc(56px * var(--hp-typescale));
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 4px 0 0;
  color: #fff;
}
.hp .program-divider {
  height: 0;
  border-top: 1px dashed rgba(255,255,255,0.18);
  margin: 2px 0 0;
}
.hp .program-for {
  font-family: var(--ec-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.hp .program-blurb {
  font-family: var(--ec-sans);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  margin: 0;
  max-width: 480px;
}
.hp .program-cta-wrap { margin-top: 8px; }
.hp .program-cta {
  background: var(--program-accent);
  color: #000;
  border: none;
}
.hp .program-cta:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

/* Consulting strip — same chrome, horizontal */
.hp .program-strip {
  --program-accent: var(--ec-aqua);
  margin-top: 28px;
  padding: 24px 32px;
  background: #0a0a0a;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hp .program-strip::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--program-accent) 0%, transparent 65%);
  opacity: 0.16;
  z-index: -1;
  pointer-events: none;
}
.hp .program-strip-body {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1 1 auto;
  min-width: 0;
}
.hp .program-strip-text {
  font-family: var(--ec-sans);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.45;
  color: #fff;
  margin: 0;
}
.hp .program-strip-cta {
  background: var(--program-accent);
  color: #000;
  border: none;
}
.hp .program-strip-cta:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

/* ============================================
   CARDS — UTIL
   ============================================ */
.hp .pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--hp-cta);
  color: var(--hp-cta-fg);
  border-radius: 999px;
  padding: 7px 16px;
  font-family: var(--ec-sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ============================================
   POSTER ELEMENT — overlapping decorative
   ============================================ */
.hp .poster {
  position: absolute;
  background: var(--hp-accent);
  color: var(--ec-black);
  padding: 20px 24px;
  border: 2px solid var(--ec-black);
  box-shadow: 6px 6px 0 var(--ec-black);
  font-family: var(--ec-sans);
  font-weight: 800;
  text-transform: uppercase;
  transform: rotate(-3deg);
  pointer-events: none;
}

/* ============================================
   PROGRESS / RECEIPT
   ============================================ */
.hp .receipt {
  background: var(--hp-bg);
  border: 1.5px solid var(--hp-line);
  border-radius: 6px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform .3s var(--ec-ease);
}

/* ============================================
   INSTAGRAM GRID
   ============================================ */
.hp .ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.hp .ig-tile {
  aspect-ratio: 1 / 1;
  background: var(--hp-surface);
  overflow: hidden;
  position: relative;
  transition: filter .3s var(--ec-ease);
}
.hp .ig-tile img { width: 100%; height: 100%; object-fit: cover; }
.hp .ig-tile:hover { filter: brightness(1.1); }

/* ============================================
   HERO TIGER (Flash hero with big photo)
   ============================================ */
.hp .hero-tiger {
  padding: 56px 0 0;
  position: relative;
  overflow: hidden;
}
.hp .hero-tiger-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "eyebrow photo"
    "text    photo";
  gap: 0 64px;
  align-items: stretch;
  min-height: 660px;
  padding-left: 80px;
}
.hp .hero-tiger-eyebrow {
  grid-area: eyebrow;
  padding-top: 8px;
  padding-bottom: 36px;
}
.hp .hero-tiger-text {
  grid-area: text;
  align-self: center;
  padding-bottom: 80px;
  position: relative;
  z-index: 3;
}
.hp .hero-tiger-photo-wrap {
  grid-area: photo;
}
.hp .hero-tiger-pill {
  display: inline-block;
  font-family: var(--ec-sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ec-lime);
  border: 1.5px solid currentColor;
  padding: 9px 18px;
  border-radius: 999px;
  white-space: nowrap;
}
.hp .hero-tiger-script {
  font-family: var(--ec-script);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--hp-accent);
  font-size: 1.35em;
  line-height: 0;
  display: inline-block;
  vertical-align: baseline;
  transform: rotate(-3deg);
  transform-origin: center 60%;
  margin: 0 0.04em 0 0.08em;
  white-space: nowrap;
  overflow: visible;
}
.hp .hero-tiger-title {
  font-family: var(--ec-sans);
  font-weight: 900;
  font-size: calc(132px * var(--hp-typescale));
  line-height: 0.88;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  margin: 0 0 40px;
  color: var(--hp-fg);
  text-wrap: balance;
  position: relative;
}
.hp .hero-tiger-spark-inline { display: none; }

/* Spinning BIG GROWTH ENERGY badge — top-left of photo (matches DS style) */
.hp .hero-tiger-badge {
  position: absolute;
  top: 24px;
  left: -88px;
  width: 200px;
  height: 200px;
  z-index: 5;
  pointer-events: none;
  filter: drop-shadow(4px 6px 0 rgba(0,0,0,0.5));
}
.hp .hero-tiger-badge svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hp .hero-tiger-badge-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp .hero-tiger-badge-inner img {
  width: 46%;
  height: 46%;
  /* Tint to lime to match ring + text */
  filter: brightness(0) saturate(100%) invert(94%) sepia(28%) saturate(800%) hue-rotate(15deg) brightness(102%) contrast(94%);
}

/* Sparkle on photo — bottom-right */
.hp .hero-tiger-spark-photo {
  display: block;
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 96px;
  height: 96px;
  transform: rotate(-12deg);
  filter: invert(1);
  z-index: 5;
}

/* Bigger nav logo */
.hp .nav-logo-mark { height: 112px; }
.hp .hero-tiger-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Photo \u2014 full bleed right */
.hp .hero-tiger-photo-wrap {
  position: relative;
  z-index: 3;
  align-self: stretch;
  display: flex;
  align-items: stretch;
}
.hp .hero-tiger-photo {
  flex: 1;
  min-height: 660px;
  background-position: center;
  background-size: cover;
  position: relative;
}
.hp .hero-tiger-stamp-growth,
.hp .hero-tiger-stamp-invite { display: none; /* removed per user feedback */ }

/* ============================================
   MEET ELYSE
   ============================================ */
.hp .meet-elyse-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: center;
}
.hp .meet-elyse-photo-wrap {
  position: relative;
  width: 100%;
}
.hp .meet-elyse-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center 18%;
}
.hp .meet-elyse-eyebrow {
  font-family: var(--ec-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hp-section-accent);
  opacity: 0.9;
  margin-bottom: 18px;
}
/* On desktop, the mobile-position eyebrow (in text block) is hidden. */
.hp .meet-elyse-eyebrow-mobile { display: none; }
.hp .meet-elyse-sticker {
  position: absolute;
  bottom: -20px;
  right: -22px;
  padding: 12px 18px;
  background: var(--hp-section-accent);
  color: #000;
  border: 1.5px solid #000;
  box-shadow: 5px 5px 0 #000;
  transform: rotate(4deg);
  font-family: var(--ec-scrawl);
  font-size: 22px;
  line-height: 1;
  white-space: nowrap;
  z-index: 2;
}
.hp .meet-elyse-text { position: relative; }
.hp .meet-elyse-headline {
  font-family: var(--ec-sans);
  font-weight: 900;
  font-size: calc(132px * var(--hp-typescale));
  line-height: 0.86;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin: 0 0 24px;
}
.hp .meet-elyse-script {
  font-size: 1.05em;
  display: inline-block;
  transform: rotate(-3deg);
  transform-origin: left bottom;
  color: var(--hp-section-accent);
}
.hp .meet-elyse-tagline {
  display: inline-block;
  padding: 12px 22px;
  background: var(--hp-bg);
  border: 1.5px solid var(--hp-fg);
  border-radius: 32px;
  font-family: var(--ec-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 100%;
  text-wrap: balance;
}
.hp .meet-elyse-tag-sep {
  display: inline;
  color: var(--hp-section-accent);
  margin: 0 4px;
}
.hp .meet-elyse-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 28px 0;
  margin-bottom: 36px;
  border-top: 1.5px solid var(--hp-line);
  border-bottom: 1.5px solid var(--hp-line);
}
.hp .meet-elyse-stat-prefix {
  font-size: 0.55em;
  font-weight: 800;
  vertical-align: 0.42em;
  letter-spacing: -0.02em;
  margin-right: 2px;
  opacity: 0.85;
}
.hp .meet-elyse-stat { display: flex; flex-direction: column; gap: 8px; }
.hp .meet-elyse-stat-n {
  font-family: var(--ec-sans);
  font-weight: 900;
  font-size: calc(88px * var(--hp-typescale));
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--hp-section-accent);
}
.hp .meet-elyse-stat-l {
  font-family: var(--ec-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.65;
  max-width: 160px;
  line-height: 1.35;
}

/* ============================================
   PRESS QUOTE (simplified)
   ============================================ */
.hp .press-section { padding: 96px 0 80px; }
.hp .press-inner { text-align: center; }
.hp .press-quote-block { max-width: 980px; margin: 0 auto; }
.hp .press-stars {
  font-size: 18px;
  letter-spacing: 0.4em;
  color: var(--hp-section-accent);
  margin-bottom: 18px;
}
.hp .press-quote {
  font-family: var(--ec-sans);
  font-weight: 600;
  font-size: calc(40px * var(--hp-typescale));
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-wrap: balance;
  margin: 0 0 32px;
}
.hp .press-credit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hp .press-credit-name {
  font-family: "Times New Roman", "Playfair Display", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.01em;
}

/* ============================================
   FINAL CTA
   ============================================ */
.hp .final-cta { padding: 120px 0 100px; position: relative; }
.hp .final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 50%, color-mix(in oklab, var(--hp-section-accent) 25%, transparent), transparent 50%),
    radial-gradient(circle at 20% 30%, color-mix(in oklab, var(--hp-cta) 22%, transparent), transparent 45%);
  pointer-events: none;
}
.hp .final-cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
  /* Cap content at the standard container width and center it so wider
     viewports don't leave a huge empty band on the right. */
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
}
.hp .final-cta-photo-wrap {
  position: relative;
  /* Photo bleeds from its column to the viewport's left edge. */
  margin-left: calc(-64px - max(0px, (100vw - 1280px) / 2));
}
.hp .final-cta-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center 25%;
  background-color: #0a0a0a;
}
.hp .final-cta-stamp {
  position: absolute;
  bottom: -20px;
  left: -16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--hp-section-accent);
  color: #000;
  border: 1.5px solid #000;
  box-shadow: 5px 5px 0 #000;
  transform: rotate(-3deg);
  font-family: var(--ec-sans);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hp .final-cta-headline {
  font-family: var(--ec-sans);
  font-weight: 900;
  font-size: calc(112px * var(--hp-typescale));
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0 0 24px;
  text-wrap: balance;
}
.hp .final-cta-lede {
  font-family: var(--ec-sans);
  font-weight: 500;
  font-size: calc(22px * var(--hp-typescale));
  line-height: 1.45;
  max-width: 560px;
  margin: 0 0 32px;
  opacity: 0.9;
}
.hp .final-cta-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hp .final-cta-btn { padding: 20px 32px; font-size: 16px; }
.hp .final-cta-meta {
  font-family: var(--ec-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hp .final-cta-meta b { color: var(--hp-section-accent); font-weight: 800; }
.hp .final-cta-tagline {
  font-size: 22px;
  color: var(--hp-section-accent);
  transform: rotate(-1deg);
  display: inline-block;
}

/* ============================================
   UNLOCKED METHOD
   ============================================ */
.hp .method-section { padding: 96px 0 80px; }
.hp .method-header {
  position: relative;
  margin-bottom: 64px;
  max-width: 760px;
}
.hp .method-title {
  font-family: var(--ec-sans);
  font-weight: 900;
  font-size: calc(96px * var(--hp-typescale));
  line-height: 0.94;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  text-wrap: balance;
}
.hp .method-spin-badge {
  position: absolute;
  top: 88px;
  right: 8px;
  width: 160px;
  height: 160px;
  z-index: 4;
  pointer-events: none;
  color: var(--hp-fg);
}
.hp .method-spin-badge svg { display: block; }
.hp .method-spin-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp .method-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 72px;
}
.hp .method-card {
  position: relative;
  padding: 32px 24px 28px;
  border: 1.5px solid var(--hp-line);
  background: var(--hp-bg);
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: default;
  transition: transform .3s var(--ec-ease), background .3s var(--ec-ease), color .3s var(--ec-ease), border-color .3s var(--ec-ease);
}
.hp .method-card:hover {
  background: var(--card-accent);
  color: #000;
  border-color: var(--card-accent);
  transform: translateY(-4px);
}
.hp .method-card-badge {
  width: 72px; height: 72px;
  background: var(--card-accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--hp-fg);
  transition: background .3s var(--ec-ease);
}
.hp .method-card:hover .method-card-badge { background: #000; }
.hp .method-card:hover .method-card-badge .icon img { filter: invert(1); }
.hp .method-card-badge .icon img { filter: brightness(0); }
.hp .method-card-meta {
  display: flex; align-items: center; gap: 6px;
}
.hp .method-card-title {
  font-family: var(--ec-sans);
  font-weight: 900;
  font-size: calc(32px * var(--hp-typescale));
  line-height: 1;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 0;
}
.hp .method-card-line {
  font-family: var(--ec-sans);
  font-weight: 500;
  font-size: calc(15px * var(--hp-typescale));
  line-height: 1.45;
  margin: 0;
  opacity: 0.75;
}
.hp .method-card:hover .method-card-line { opacity: 0.85; }
.hp .method-footer {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: flex-start;
}

/* ============================================
   MY WHY  (rebuilt — clean photo, mobile-safe headline, tighter pain rhythm)
   ============================================ */

/* Header */
.hp .my-why-header {
  position: relative;
  z-index: 1;
}
.hp .my-why-eyebrow {
  opacity: 0.7;
  margin-bottom: 24px;
  color: var(--hp-section-accent);
}
.hp .my-why-headline {
  font-family: var(--ec-sans);
  font-weight: 900;
  font-size: calc(108px * var(--hp-typescale));
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  text-wrap: balance;
  max-width: 1100px;
  margin: 0 0 16px;
  color: #fff;
}
.hp .my-why-script {
  font-family: var(--ec-script);
  color: var(--hp-section-accent);
  font-size: 1.18em;
  display: inline-block;
  transform: rotate(-2deg);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  line-height: 0.9;
}
.hp .my-why-scrawl {
  font-family: var(--ec-scrawl);
  font-size: 30px;
  color: var(--hp-section-accent);
  transform: rotate(-1.5deg);
  display: inline-block;
  margin-bottom: 80px;
}

/* Top row — section-wide grid: text gets the container's left inset, photo reaches the section right edge. */
.hp .my-why-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 120px;
  align-items: stretch;
  position: relative;
  z-index: 1;
  padding-left: max(64px, calc((100% - 1280px) / 2 + 64px));
  padding-right: 0;
}
.hp .my-why-text {
  max-width: 820px;
  display: flex;
  flex-direction: column;
}
.hp .my-why-copy {
  margin-top: auto;
  padding-top: 48px;
  max-width: 620px;
}
.hp .my-why-lede {
  font-family: var(--ec-sans);
  font-weight: 500;
  font-size: calc(22px * var(--hp-typescale));
  line-height: 1.5;
  margin: 0;
  color: rgba(255,255,255,0.92);
}
.hp .my-why-body {
  font-family: var(--ec-sans);
  font-weight: 500;
  font-size: calc(18px * var(--hp-typescale));
  line-height: 1.55;
  margin: 22px 0 0;
  color: rgba(255,255,255,0.92);
}
.hp .my-why-photo-wrap {
  position: relative;
  width: 100%;
  align-self: stretch;
  display: flex;
  overflow: hidden;
}
.hp .my-why-photo {
  width: 100%;
  flex: 1 1 auto;
  min-height: 600px;
  background-size: cover;
  background-position: center 25%;
}

/* WTF loop */
.hp .my-why-pains-wrap {
  margin-top: 120px;
}
.hp .my-why-pains-eyebrow {
  opacity: 0.7;
  margin-bottom: 28px;
  color: var(--hp-section-accent);
}
.hp .my-why-pains {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.hp .my-why-pain {
  --pain-accent: var(--ec-aqua);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px 28px 28px;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  overflow: hidden;
  isolation: isolate;
}
.hp .my-why-pain::before {
  content: '';
  position: absolute;
  top: -140px; right: -140px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--pain-accent) 0%, transparent 65%);
  opacity: 0.16;
  z-index: -1;
  pointer-events: none;
}
.hp .my-why-pain-n {
  font-family: var(--ec-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--pain-accent);
  opacity: 0.95;
}
.hp .my-why-pain-icon {
  width: 88px; height: 88px;
  display: flex; align-items: center; justify-content: center;
  margin-top: -4px;
}
.hp .my-why-pain-text {
  margin: 0;
  font-family: var(--ec-sans);
  font-weight: 700;
  font-size: calc(20px * var(--hp-typescale));
  line-height: 1.25;
  color: #fff;
  text-wrap: pretty;
}

/* Resolve */
.hp .my-why-resolve {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 80px;
  padding-top: 64px;
  border-top: 1.5px solid rgba(255,255,255,0.18);
  flex-wrap: wrap;
}
.hp .my-why-resolve-text {
  font-family: var(--ec-sans);
  font-weight: 600;
  font-size: calc(28px * var(--hp-typescale));
  line-height: 1.25;
  margin: 0;
  max-width: 720px;
  text-wrap: balance;
  color: #fff;
}

/* Hide Flash decorations on narrow widths */
.fx-decorations-wrap { container-type: inline-size; }
@container (max-width: 760px) {
  .fx-decorations-wrap > * { display: none; }
}

/* ============================================
   HERO TIGER lede (under the title, above the buttons)
   ============================================ */
.hp .hero-tiger-lede {
  font-family: var(--ec-sans);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.5;
  max-width: 560px;
  color: rgba(255,255,255,0.85);
  margin: 0 0 32px;
  text-wrap: pretty;
}

/* ============================================
   WINS (rebuilt — simple 3-col screenshot grid)
   ============================================ */
.hp .wins {
  background: var(--ec-black);
  color: #fff;
  padding: 120px 0 120px;
  position: relative;
  overflow: hidden;
}
.hp .wins::before {
  content: '';
  position: absolute;
  top: 56px;
  right: -120px;
  width: 540px;
  height: 540px;
  background: url('assets/icons/tiger_head_1.svg') center / contain no-repeat;
  opacity: 0.045;
  transform: rotate(-8deg);
  pointer-events: none;
  z-index: 0;
  filter: brightness(0) saturate(100%) invert(94%) sepia(20%) saturate(550%) hue-rotate(110deg) brightness(99%) contrast(95%);
}
.hp .wins > .container { position: relative; z-index: 1; }

/* Centered eyebrow strip */
.hp .wins-header {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.hp .wins-eyebrow {
  font-family: var(--ec-sans);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hp-section-accent);
}
.hp .wins-meta {
  font-family: var(--ec-script);
  font-weight: 400;
  font-size: 36px;
  line-height: 0.9;
  color: var(--ec-lilac);
  transform: rotate(-2deg);
  display: inline-block;
}

/* Centered massive headline */
.hp .wins-heading {
  text-align: center;
  margin-bottom: 80px;
}
.hp .wins-h1 {
  font-family: var(--ec-sans);
  font-weight: 900;
  font-size: calc(96px * var(--hp-typescale));
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: #fff;
  text-wrap: balance;
}
.hp .wins-h1-alt { opacity: 0.92; margin-bottom: 0; }
.hp .wins-script {
  font-family: var(--ec-script);
  font-weight: 400;
  font-size: 1.3em;
  line-height: 0;
  text-transform: none;
  letter-spacing: 0;
  color: var(--hp-section-accent);
  display: inline-block;
  vertical-align: 0.1em;
  margin-left: 0.06em;
  transform: rotate(-3deg);
  overflow: visible;
}

/* Two-row horizontally-scrolling screenshot carousel (desktop) */
.hp .wins-rows {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 56px;
}
.hp .wins-grid {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 8px;
  padding: 4px 4px 16px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.22) transparent;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 36px, #000 calc(100% - 36px), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 36px, #000 calc(100% - 36px), transparent 100%);
}
.hp .wins-grid::-webkit-scrollbar { height: 6px; }
.hp .wins-grid::-webkit-scrollbar-track { background: transparent; }
.hp .wins-grid::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.18); border-radius: 999px; }
.hp .wins-grid::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.32); }

.hp .wins .dash-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  transition: transform .3s var(--ec-ease);
  scroll-snap-align: start;
  min-width: 0;
  flex: 0 0 auto;
}
.hp .wins .dash-card:hover { transform: translateY(-4px); }

/* Top row — captioned cards */
.hp .wins-grid-top .dash-card { width: clamp(320px, 30vw, 400px); }

/* Bottom row — same size, just no captions */
.hp .wins-grid-bottom .dash-card { width: clamp(320px, 30vw, 400px); gap: 0; }
.hp .wins-grid-bottom .dash-card-caption { display: none; }
.hp .dash-card-image-wrap {
  width: 100%;
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  padding: 0;
  box-shadow: none;
}
.hp .dash-card-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.hp .dash-card-caption {
  font-family: var(--ec-sans);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  color: #fff;
  text-align: center;
  text-wrap: balance;
}

/* CTA */
.hp .wins-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hp .wins-cta-meta {
  font-family: var(--ec-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* Scroll-driven parallax stack on the dashboard cards — disabled now that wins-grid is a horizontal carousel */

/* ============================================
   WHO I HELP  (rebuilt — DS section-header + bigger type)
   ============================================ */
.hp .who-i-help {
  background: var(--ec-black);
  color: #fff;
  border-top: 1.5px solid rgba(255,255,255,0.08);
  position: relative;
  padding: 96px 0 120px;
  overflow: hidden;
}
.hp .who-watermark {
  position: absolute;
  top: 8%;
  right: -120px;
  width: 620px;
  height: auto;
  opacity: 0.05;
  transform: rotate(-12deg);
  pointer-events: none;
  z-index: 0;
  filter: brightness(0) saturate(100%) invert(94%) sepia(28%) saturate(800%) hue-rotate(15deg) brightness(102%) contrast(94%); /* lime tint */
}
.hp .who-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}
.hp .who-eyebrow {
  font-family: var(--ec-sans);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hp-section-accent);
  white-space: nowrap;
}
.hp .who-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right,
    color-mix(in oklab, var(--hp-section-accent) 60%, transparent),
    transparent);
}
.hp .who-script-tag {
  font-family: var(--ec-script);
  font-weight: 400;
  font-size: 56px;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ec-lilac);
  transform: rotate(-2deg);
  display: inline-block;
  white-space: nowrap;
}

.hp .who-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
  /* Photo bleeds to the section's LEFT edge; right side aligns with
     the centered .container so text keeps its rhythm with the header. */
  padding-left: 0;
  padding-right: max(20px, calc((100% - 1280px) / 2));
}
/* Desktop: photo on the LEFT, text on the RIGHT */
.hp .who-grid > .who-photo-wrap { grid-column: 1; grid-row: 1; }
.hp .who-grid > .who-text       { grid-column: 2; grid-row: 1; }

.hp .who-text { position: relative; }
.hp .who-headline {
  font-family: var(--ec-sans);
  font-weight: 900;
  font-size: calc(96px * var(--hp-typescale));
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  margin: 0 0 28px;
  color: #fff;
  text-wrap: balance;
}
.hp .who-script-1 {
  display: block;
  font-family: var(--ec-script);
  font-weight: 400;
  font-size: 1.25em;
  line-height: 0.9;
  text-transform: none;
  letter-spacing: 0;
  color: var(--hp-section-accent);
  transform: rotate(-2deg);
  transform-origin: left center;
  margin-top: 0.08em;
}
.hp .who-sub {
  font-family: var(--ec-sans);
  font-weight: 900;
  font-size: calc(64px * var(--hp-typescale));
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  margin: 0 0 40px;
  color: #fff;
  text-wrap: balance;
}
.hp .who-script-2 {
  font-family: var(--ec-script);
  font-weight: 400;
  font-size: 1.5em;
  line-height: 0;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ec-lilac);
  display: inline-block;
  vertical-align: 0.1em;
  margin-left: 0.06em;
  transform: rotate(-3deg);
  overflow: visible;
}
.hp .who-body p {
  font-family: var(--ec-sans);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
  margin: 0 0 24px;
  color: rgba(255,255,255,0.88);
  max-width: 600px;
  text-wrap: pretty;
}
.hp .who-body em {
  font-style: normal;
  font-weight: 900;
  color: var(--hp-section-accent);
}

/* Body receipt = paragraph + sticker, side-by-side flex (no overlap) */
.hp .who-body-receipt {
  position: relative;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.hp .who-body-receipt p {
  flex: 1 1 auto;
  margin: 0;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
}
.hp .who-sticker {
  flex: 0 0 auto;
  position: relative;
  padding: 14px 22px;
  background: var(--ec-lilac);
  color: #000;
  border: 1.5px solid #000;
  box-shadow: 6px 6px 0 #000;
  transform: rotate(-3deg);
  font-family: var(--ec-scrawl);
  font-size: 22px;
  line-height: 1;
  z-index: 3;
  white-space: nowrap;
}
.hp .who-sticker-line, .hp .who-sticker-bold { display: contents; }

/* Photo — clean, no offset shadow */
.hp .who-photo-wrap {
  position: relative;
  align-self: stretch;
  display: flex;
}
.hp .who-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center 75%;
  border: 1.5px solid rgba(255,255,255,0.18);
}

/* ============================================
   PER-SECTION ACCENT (--hp-section-accent)
   Lets each section use a different neon while CTAs stay violet.
   ============================================ */
.hp .section-who    { --hp-section-accent: var(--ec-lime); }
.hp .section-why    { --hp-section-accent: var(--ec-aqua); }
.hp .section-wins   { --hp-section-accent: var(--ec-aqua); }
.hp .section-quotes { --hp-section-accent: var(--ec-lilac); }
.hp .section-method { --hp-section-accent: var(--ec-tangerine); }
.hp .section-tellme { --hp-section-accent: var(--ec-cherry); }
/* TELL ME WHAT TO DO — quote block */
.hp .tell-me-what-inner { text-align: center; }
.hp .tell-me-what-quote-wrap {
  display: inline-block;
  position: relative;
}
.hp .tell-me-what-mark {
  position: absolute;
  top: -32px;
  left: -44px;
  font-family: var(--ec-script);
  font-size: 84px;
  color: var(--hp-section-accent);
  line-height: 0.4;
}
.hp .tell-me-what-headline {
  font-family: var(--ec-sans);
  font-weight: 900;
  font-size: calc(108px * var(--hp-typescale));
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0;
  max-width: 1100px;
  text-wrap: balance;
}
.hp .tell-me-what-script {
  text-transform: none;
  font-size: 1.05em;
  color: var(--hp-section-accent);
}
.hp .tell-me-what-meta {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  opacity: 0.55;
}
.hp .tell-me-what-scrawl {
  margin-top: 56px;
  font-size: 36px;
  color: var(--hp-section-accent);
  transform: rotate(-2deg);
  display: inline-block;
}
.hp .section-about  { --hp-section-accent: var(--ec-lime); }
.hp .section-work   { --hp-section-accent: var(--ec-aqua); }
.hp .section-press  { --hp-section-accent: var(--ec-tangerine); }
.hp .section-faq    { --hp-section-accent: var(--ec-violet); }
.hp .section-cta    { --hp-section-accent: var(--ec-lilac); }

/* Spinning badge animation */
@keyframes hp-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hp .spin-badge { animation: hp-spin 18s linear infinite; transform-origin: center; }

/* ============================================
   FOOTER
   ============================================ */
.hp .footer {
  padding: 96px 0 48px;
  background: var(--hp-bg);
  border-top: 1.5px solid var(--hp-line);
}
.hp .footer .grid-footer {
  align-items: start;
  gap: 64px;
  margin-bottom: 64px;
}
.hp .footer-brand { display: flex; flex-direction: column; gap: 28px; max-width: 520px; }
.hp .footer-brand-logo {
  display: block;
  height: auto;
  width: 100%;
  max-width: 360px;
}
.hp .footer-brand-tag {
  font-family: var(--ec-sans);
  font-weight: 500;
  font-size: calc(22px * var(--hp-typescale));
  line-height: 1.3;
  color: var(--hp-fg);
  opacity: 0.85;
  margin: 0;
  max-width: 460px;
  text-wrap: balance;
}
.hp .footer-brand-tag .script {
  font-family: var(--ec-script);
  font-style: normal;
  font-weight: 400;
  font-size: 1.4em;
  color: var(--hp-section-accent, var(--hp-accent));
  line-height: 0.9;
}
.hp .footer .eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  margin-bottom: 18px !important;
  opacity: 0.7 !important;
}
.hp .footer ul a {
  display: inline-block;
  transition: opacity .15s var(--ec-ease), transform .15s var(--ec-ease);
}
.hp .footer ul a:hover { opacity: 0.7; transform: translateX(3px); }

/* ============================================
   TOP TAGLINE STRIP (centered above hero)
   ============================================ */
.hp .top-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 22px 24px;
  border-bottom: 1.5px solid var(--hp-line);
  background: var(--hp-bg);
  flex-wrap: wrap;
}
.hp .top-strip .eyebrow { opacity: 0.7; }

/* ============================================
   LAYOUT GRIDS (used by sections — responsive via container queries)
   ============================================ */
.hp .grid-2-A    { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: flex-start; }
.hp .grid-2-B    { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: flex-start; }
.hp .grid-2-eq   { display: grid; grid-template-columns: 1fr 1fr;       gap: 56px; align-items: flex-start; }
.hp .grid-2-half { display: grid; grid-template-columns: 1fr 1fr;       gap: 0;    align-items: stretch;   }
.hp .grid-3      { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.hp .grid-5      { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px;  background: var(--hp-line); border: 1.5px solid var(--hp-line); }
.hp .grid-press  { display: grid; grid-template-columns: 1.1fr 0.9fr;    gap: 56px; align-items: center; }
.hp .grid-about  { display: grid; grid-template-columns: 1fr 1.1fr;      gap: 64px; align-items: flex-start; }
.hp .grid-footer { display: grid; grid-template-columns: 2.2fr 1fr 1fr; gap: 48px; }

/* ============================================
   CONTAINER QUERIES — collapse for mobile widths
   ============================================ */
@container hp (max-width: 760px) {
  .hp .container { padding: 0 20px; }
  .hp .section   { padding: 56px 0; }
  .hp .nav       { padding: 10px 16px; gap: 8px; }
  .hp .nav .nav-links, .hp .nav-cta { display: none; }
  .hp .nav-burger { display: inline-flex; align-items: center; justify-content: center; }
  .hp .nav-mobile-panel { display: flex; }
  .hp .nav-logo-mark { height: 48px; }
  .hp .nav-wordmark  { font-size: 16px; }
  .hp .top-strip { padding: 16px 20px; gap: 10px; font-size: 11px; }
  .hp .top-strip .eyebrow { font-size: 10px; }

  .hp .grid-2-A, .hp .grid-2-B, .hp .grid-2-eq, .hp .grid-press, .hp .grid-about {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hp .grid-2-half { grid-template-columns: 1fr; }
  .hp .grid-3 { grid-template-columns: 1fr; }
  .hp .grid-5 { grid-template-columns: 1fr; }
  .hp .grid-footer { grid-template-columns: 1fr; gap: 32px; }

  .hp .display { font-size: calc(64px * var(--hp-typescale)); }
  .hp .h1      { font-size: calc(48px * var(--hp-typescale)); }
  .hp .h2      { font-size: calc(34px * var(--hp-typescale)); }
  .hp .h3      { font-size: calc(22px * var(--hp-typescale)); }
  .hp .lede    { font-size: 17px; }
  .hp .body    { font-size: 15px; }

  .hp .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .hp .marquee-track { font-size: 22px; padding: 16px 16px; gap: 28px; }
  .hp .marquee-item  { gap: 28px; }
  .hp .marquee-star  { font-size: 26px; }

  .hp .faq-q-text { font-size: 18px; }
  .hp .faq-toggle { font-size: 24px; width: 28px; }
  .hp .faq-q { padding: 20px 0; gap: 16px; }

  .hp .dash-strip { padding: 0 20px 24px; gap: 16px; }
  .hp .dash-card  { flex: 0 0 280px; padding: 14px; }
  .hp .dash-card .body { font-size: 12px; }

  .hp .btn { padding: 14px 22px; font-size: 13px; }
  .hp .program-card { padding: 28px 24px 24px; gap: 18px; border-radius: 16px; }
  .hp .program-title { font-size: calc(40px * var(--hp-typescale)) !important; }
  .hp .program-strip { padding: 22px 24px; gap: 18px; border-radius: 16px; }
  .hp .program-strip-text { font-size: 15px; }

  .hp .receipt { padding: 18px; }

  /* HERO TIGER on mobile — pill above photo above title */
  .hp .hero-tiger          { padding: 0 !important; }
  .hp .hero-tiger-inner    {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "eyebrow"
      "photo"
      "text";
    gap: 0;
    min-height: auto;
    padding-left: 0;
  }
  .hp .hero-tiger-eyebrow  { padding: 20px 20px 16px; text-align: center; }
  .hp .hero-tiger-pill     { font-size: 11px; padding: 7px 14px; }
  .hp .hero-tiger-photo    { min-height: 320px; background-position: center top !important; }
  .hp .hero-tiger-text     { padding: 32px 20px 56px; align-self: stretch; padding-bottom: 56px; }
  .hp .hero-tiger-title    { font-size: calc(60px * var(--hp-typescale)); margin-bottom: 24px; line-height: 0.92; }
  .hp .hero-tiger-script   { vertical-align: 0.12em; margin-left: 0.02em; margin-right: 0.1em; }
  .hp .hero-tiger-ctas     { flex-direction: column; align-items: stretch; }
  .hp .hero-tiger-ctas .btn { justify-content: center; }
  .hp .hero-tiger-badge    { width: 110px; height: 110px; top: auto; bottom: -48px; right: 16px; left: auto; }
  .hp .hero-tiger-spark-photo { width: 56px; height: 56px; bottom: 16px; right: 16px; }

  /* Generic stat row stacks */
  .hp .stat-row { flex-direction: column !important; align-items: flex-start !important; gap: 16px !important; }

  /* WINS mobile — horizontal scroll carousel for density */
  .hp .wins          { padding: 56px 0 72px; }
  .hp .wins-header   { gap: 6px; margin-bottom: 20px; flex-direction: column; align-items: center; text-align: center; }
  .hp .wins-eyebrow  { font-size: 13px; }
  .hp .wins-meta     { font-size: 22px; }
  .hp .wins-heading  { margin-bottom: 36px; padding: 0 8px; }
  .hp .wins-h1       { font-size: calc(44px * var(--hp-typescale)); line-height: 0.98; }
  .hp .wins-script   { font-size: 1.2em; }
  .hp .wins-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 14px;
    padding: 0 20px 0;
    margin: 0 -20px 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
            mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
  }
  .hp .wins-grid::-webkit-scrollbar { display: none; }
  .hp .wins-grid .dash-card {
    flex: 0 0 240px;
    scroll-snap-align: center;
    gap: 4px;
  }
  .hp .wins-cta      { margin-top: 0; }
  .hp .dash-card-image-wrap { aspect-ratio: 16 / 11; background: #fff; padding: 6px; border-radius: 4px; }
  .hp .dash-card-image { height: 100%; }
  .hp .dash-card-caption { font-size: 14px; line-height: 1.3; padding: 0 4px; }
  /* Disable scroll-driven parallax on mobile (cards live in a horizontal carousel) */
  .hp .wins-grid .dash-card { animation: none !important; transform: none !important; opacity: 1 !important; }

  /* WHO I HELP mobile */
  .hp .who-i-help    { padding: 56px 0 72px; }
  .hp .who-watermark { width: 320px; top: 30%; right: -120px; opacity: 0.04; }
  .hp .who-header    { gap: 10px; margin-bottom: 28px; flex-wrap: wrap; }
  .hp .who-eyebrow   { font-size: 13px; }
  .hp .who-rule      { display: none; }
  .hp .who-script-tag { font-size: 28px; }
  .hp .who-grid      { grid-template-columns: minmax(0, 1fr); gap: 48px; padding-left: 0; padding-right: 0; }
  .hp .who-grid > .who-photo-wrap,
  .hp .who-grid > .who-text { grid-column: 1; grid-row: auto; }
  .hp .who-grid > .who-text { padding: 0 20px; }
  .hp .who-photo-wrap { order: -1; }
  .hp .who-photo     { aspect-ratio: 4/5; border-color: rgba(255,255,255,0.18); }
  .hp .who-headline  { font-size: calc(44px * var(--hp-typescale)); margin-bottom: 18px; }
  .hp .who-script-1  { font-size: 1.25em; }
  .hp .who-sub       { font-size: calc(34px * var(--hp-typescale)); margin-bottom: 28px; }
  .hp .who-script-2  { font-size: 1.4em; }
  .hp .who-body p    { font-size: 17px; margin-bottom: 18px; }
  .hp .who-body-receipt { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hp .who-sticker   { font-size: 16px; padding: 9px 14px; box-shadow: 4px 4px 0 #000; }
  /* MY WHY mobile */
  .hp .my-why-headline { font-size: calc(48px * var(--hp-typescale)); letter-spacing: -0.035em; }
  .hp .my-why-script   { font-size: 1.25em; }
  .hp .my-why-scrawl   { font-size: 24px; margin-bottom: 40px; }
  .hp .my-why-top      { grid-template-columns: minmax(0, 1fr); gap: 32px; align-items: stretch; padding: 0 20px; }
  .hp .my-why-text     { max-width: none; display: block; }
  .hp .my-why-copy     { margin-top: 28px; padding-top: 0; max-width: none; }
  .hp .my-why-lede     { font-size: 18px; }
  .hp .my-why-body     { font-size: 16px; }
  .hp .my-why-photo-wrap { min-height: 0; margin-right: 0; }
  .hp .my-why-photo    { aspect-ratio: 4/5; height: auto; }
  .hp .my-why-pains-wrap { margin-top: 72px; }
  .hp .my-why-pains    { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hp .my-why-pain     { padding: 22px 20px 22px; gap: 14px; border-radius: 16px; }
  .hp .my-why-pain-icon { width: 64px; height: 64px; margin-top: 0; }
  .hp .my-why-pain-icon .icon { width: 64px !important; height: 64px !important; }
  .hp .my-why-pain-text { font-size: 15px; }
  .hp .my-why-resolve  { flex-direction: column; align-items: flex-start; gap: 20px; margin-top: 56px; padding-top: 40px; }
  .hp .my-why-resolve-text { font-size: calc(22px * var(--hp-typescale)); }

  /* TELL ME WHAT TO DO mobile — scale down headline, reposition quote mark inside the column */
  .hp .tell-me-what-quote-wrap { display: block; }
  .hp .tell-me-what-mark { top: -8px; left: 0; font-size: 56px; }
  .hp .tell-me-what-headline { font-size: calc(40px * var(--hp-typescale)); padding-top: 22px; }
  .hp .tell-me-what-script   { font-size: 1.05em; }
  .hp .tell-me-what-meta     { margin-top: 16px; font-size: 11px; }
  .hp .tell-me-what-scrawl   { margin-top: 36px; font-size: 24px; }

  /* METHOD mobile */
  /* METHOD mobile — small spinning badge over centered title, cards stack horizontally */
  .hp .method-section { padding: 64px 0; }
  .hp .method-spin-badge {
    display: block;
    position: static;
    width: 96px; height: 96px;
    margin: 0 auto 20px;
  }
  .hp .method-spin-badge svg { width: 96px; height: 96px; }
  .hp .method-spin-inner .icon img { width: 36px !important; height: 36px !important; }
  .hp .method-header { text-align: center; margin-bottom: 36px; }
  .hp .method-title  { font-size: calc(44px * var(--hp-typescale)); line-height: 0.98; }
  /* Each card: badge on the left, meta + title + line on the right */
  .hp .method-grid   { grid-template-columns: 1fr; gap: 10px; margin-bottom: 48px; }
  .hp .method-card   {
    display: grid;
    grid-template-columns: 64px 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 16px;
    row-gap: 4px;
    padding: 18px 20px;
    align-items: center;
  }
  .hp .method-card-badge {
    width: 56px; height: 56px;
    grid-column: 1;
    grid-row: 1 / 4;
  }
  .hp .method-card-badge .icon img { width: 30px !important; height: 30px !important; }
  .hp .method-card-meta  { grid-column: 2; grid-row: 1; gap: 8px; }
  .hp .method-card-title { grid-column: 2; grid-row: 2; font-size: 22px; margin: 2px 0 0; }
  .hp .method-card-line  { grid-column: 2; grid-row: 3; font-size: 14px; margin: 2px 0 0; }
  .hp .method-footer { grid-template-columns: 1fr; gap: 18px; }

  /* MEET ELYSE mobile — big headline, full-bleed photo, poster-shadow preserved */
  .hp .meet-elyse-inner { grid-template-columns: 1fr; gap: 32px; padding: 0; }
  /* Mobile: hide the desktop eyebrow above the photo and show the one in the text block. */
  .hp .meet-elyse-photo-wrap > .meet-elyse-eyebrow { display: none; }
  .hp .meet-elyse-eyebrow-mobile { display: block; font-size: 12px; margin-bottom: 14px; }
  .hp .meet-elyse-photo-wrap { margin: 0 -20px; width: auto; }
  .hp .meet-elyse-photo { aspect-ratio: 4 / 5; border-radius: 0; }
  .hp .meet-elyse-sticker { font-size: 18px; padding: 8px 14px; right: 16px; bottom: -16px; }
  .hp .meet-elyse-text { padding: 24px 20px 0; }
  .hp .meet-elyse-text > .eyebrow { margin-bottom: 14px; }
  .hp .meet-elyse-headline { font-size: calc(72px * var(--hp-typescale)); line-height: 0.92; letter-spacing: -0.03em; margin-bottom: 22px; }
  .hp .meet-elyse-tagline { font-size: 10px; padding: 12px 18px; margin-bottom: 28px; border-radius: 24px; letter-spacing: 0.12em; line-height: 1.7; }
  .hp .meet-elyse-stats { grid-template-columns: 1fr 1fr 1fr; gap: 16px; padding: 24px 0; margin-bottom: 28px; }
  .hp .meet-elyse-stat-n { font-size: calc(48px * var(--hp-typescale)); }
  .hp .meet-elyse-stat-l { font-size: 10px; letter-spacing: 0.1em; }

  /* PRESS mobile */
  .hp .press-section { padding: 56px 0; }
  .hp .press-quote   { font-size: calc(22px * var(--hp-typescale)); }
  .hp .press-credit  { gap: 12px; }
  .hp .press-credit-name { font-size: 16px; }

  /* FINAL CTA mobile */
  .hp .final-cta { padding: 64px 0 56px; }
  /* On mobile, kill the left-bleed margin and use normal container padding. */
  .hp .final-cta-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 20px; max-width: 100%; }
  .hp .final-cta-photo-wrap { margin: 0 -20px; }
  .hp .final-cta-headline { font-size: calc(48px * var(--hp-typescale)); }
  .hp .final-cta-lede { font-size: 17px; }
  .hp .final-cta-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hp .final-cta-meta { font-size: 10px; }
  .hp .final-cta-tagline { font-size: 18px; }
}

/* Slightly larger phones / small tablets — keep some 2col where it works */
@container hp (min-width: 761px) and (max-width: 1040px) {
  .hp .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .hp .grid-footer { grid-template-columns: 1.4fr 1fr 1fr; }
  .hp .ig-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================
   TESTIMONIALS — receipt cards
   White cards on a lilac section. Each card declares its own
   neon accent via --testi-accent.
   ============================================ */
.hp .testi-header {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.hp .testi-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ec-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.hp .testi-headline {
  font-family: var(--ec-sans);
  font-weight: 900;
  font-size: calc(96px * var(--hp-typescale));
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: lowercase;
  color: #fff;
  margin: 0;
  text-wrap: balance;
}
.hp .testi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.hp .testi-card {
  --testi-accent: var(--ec-lime);
  position: relative;
  display: flex;
  flex-direction: column;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 32px 36px 28px;
  overflow: hidden;
  isolation: isolate;
  min-width: 0;
}
.hp .testi-card::before {
  content: '';
  position: absolute;
  top: -140px; right: -140px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--testi-accent) 0%, transparent 65%);
  opacity: 0.16;
  z-index: -1;
  pointer-events: none;
}
.hp .testi-pill {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px 7px 12px;
  border: 1.5px solid var(--testi-accent);
  border-radius: 999px;
  color: var(--testi-accent);
  font-family: var(--ec-sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hp .testi-pill::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--testi-accent);
  box-shadow: 0 0 8px var(--testi-accent);
}
.hp .testi-mark {
  font-family: var(--ec-sans);
  font-weight: 900;
  font-size: 68px;
  line-height: 0.4;
  color: var(--testi-accent);
  opacity: 0.55;
  margin: 22px 0 10px;
  letter-spacing: -0.04em;
}
.hp .testi-quote {
  flex: 1 1 auto;
  font-family: var(--ec-sans);
  font-weight: 800;
  font-size: calc(26px * var(--hp-typescale));
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 26px;
  text-wrap: pretty;
}
.hp .testi-quote .script {
  /* Same look as the rest of the quote — plain white, no italic, no accent color. */
  font-family: inherit;
  font-weight: inherit;
  font-style: normal;
  font-size: 1em;
  color: inherit;
  letter-spacing: inherit;
}
.hp .testi-divider {
  height: 0;
  border-top: 1px dashed rgba(255,255,255,0.18);
  margin: 0 0 22px;
}
.hp .testi-foot {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hp .testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--testi-accent), var(--ec-lilac));
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ec-sans);
  font-weight: 900;
  font-size: 18px;
  flex: 0 0 auto;
}
.hp .testi-meta { flex: 1 1 auto; min-width: 0; }
.hp .testi-name {
  font-family: var(--ec-sans);
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.hp .testi-role {
  font-family: var(--ec-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin-top: 2px;
}
.hp .testi-stars {
  display: flex;
  gap: 2px;
  color: var(--testi-accent);
  font-size: 15px;
  flex: 0 0 auto;
}

@container hp (max-width: 760px) {
  /* Mobile: horizontal swipe carousel with snap. Cards size to their own
     content (align-items: start) so short quotes don't leave dead space. */
  .hp .testi-grid {
    display: flex;
    grid-template-columns: none;
    flex-direction: row;
    align-items: flex-start;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    margin: 0 -20px;
    padding: 4px 20px 24px;
    scroll-padding-left: 20px;
    scrollbar-width: none;
  }
  .hp .testi-grid::-webkit-scrollbar { display: none; }
  .hp .testi-card {
    flex: 0 0 86%;
    scroll-snap-align: start;
    min-width: 0;
    padding: 26px 22px 22px;
    border-radius: 16px;
  }
  /* Stop the quote from stretching to fill leftover space — keeps the
     footer right under the text for short testimonials. */
  .hp .testi-quote { flex: 0 0 auto; font-size: 21px; margin-bottom: 22px; }
  .hp .testi-mark  { font-size: 56px; margin: 18px 0 6px; }
  .hp .testi-headline { font-size: 56px; }
  .hp .testi-header   { margin-bottom: 36px; gap: 14px; }
}
