/* ═══════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════════ */
main.static-landing *, main.static-landing *::before, main.static-landing *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

main.static-landing {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #1a1a1a;
  background: #fff;
  overflow-x: hidden;
  min-width: 1200px;
}

main.static-landing a { color: inherit; text-decoration: none; }
main.static-landing ul { list-style: none; }
main.static-landing img { display: block; max-width: 100%; }

/* ═══════════════════════════════════════════
   TOKENS
══════════════════════════════════════════════ */
main.static-landing {
  --purple:       #3835a4;
  --purple-dark:  #483ab8;
  --lavender:     #e6e6f4;
  --lavender-mid: #d5d5f0;
  --lavender-dark:#d4d4e4;
  --orange:       #ff671f;
  --orange-light: #ffb998;
  --orange-bg:    #fff0e9;
  --black:        #181818;
  --grey-text:    #b1b1c0;
  --container:    1176px;
  --page-max:     1440px;
}

/* ═══════════════════════════════════════════
   TYPOGRAPHY HELPERS
══════════════════════════════════════════════ */
main.static-landing .display-heading-purple {
  font-family: 'Koulen', sans-serif;
  font-size: clamp(64px, 8vw, 128px);
  line-height: 0.9;
  color: var(--purple);
  letter-spacing: 0.02em;
}
main.static-landing .display-heading-white {
  font-family: 'Koulen', sans-serif;
  font-size: clamp(64px, 8vw, 128px);
  line-height: 0.9;
  color: #fff;
  letter-spacing: 0.02em;
}
main.static-landing .text-purple { color: var(--purple); }
main.static-landing .text-black  { color: var(--black); }
main.static-landing .text-orange { color: var(--orange); }

/* ═══════════════════════════════════════════
   BUTTON — BENTO STYLE
══════════════════════════════════════════════ */
main.static-landing .bento-btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 30px 48px;
  border: 1.5px solid var(--orange);
  border-radius: 24px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
main.static-landing .bento-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,103,31,0.18); }
main.static-landing .bento-btn--light { background: var(--orange-bg); }
main.static-landing .bento-btn--centered { justify-content: center; }
main.static-landing .bento-btn-text {
  font-family: 'Koulen', sans-serif;
  font-size: 40px;
  line-height: 1;
  color: #000;
}
main.static-landing .bento-btn-icon { width: 54px; height: 54px; flex-shrink: 0; }
main.static-landing .bento-btn-icon-svg { width: 54px; height: 54px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }

/* ═══════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
main.static-landing .site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
main.static-landing .header-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 70px;
  height: 96px;
  display: flex;
  align-items: center;
  gap: 32px;
}
main.static-landing .logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
main.static-landing .logo-mark { width: 44px; flex-shrink: 0; }
main.static-landing .logo-text  { height: 32px; width: auto; }
main.static-landing .logo-text-word {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #1a1a2e;
  letter-spacing: 0.05em;
}
main.static-landing .main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
main.static-landing .nav-link {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #000;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s;
}
main.static-landing .nav-link:hover { color: var(--purple); }
main.static-landing .nav-link--active { color: var(--purple); text-decoration: underline; }
main.static-landing .caret { font-size: 12px; opacity: 0.7; }

main.static-landing .btn-get-in-touch {
  margin-left: 24px;
  padding: 12px 24px;
  background: var(--orange-light);
  border: 1.5px solid var(--orange);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}
main.static-landing .btn-get-in-touch:hover { background: var(--orange); color: #fff; }

/* ═══════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
main.static-landing .hero-section {
  /* Smooth handoff from white site header to hero banner tone */
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #fafafe 16%,
    #f3f2fa 44%,
    #f3f2fa 100%
  );
  padding: 64px 0;
  min-height: 580px;
  position: relative;
  overflow: hidden;
}
main.static-landing .hero-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 132px;
  width: 100%;
  position: relative;
  min-height: 515px;
}
main.static-landing .hero-headline {
  font-family: 'Koulen', sans-serif;
  font-size: 128px;
  line-height: 0.94;
  color: #000;
  letter-spacing: 0;
  position: relative;
  z-index: 1;
  width: 756px;
}
/* Right-side block: separator line + subtitle + bento button */
main.static-landing .hero-right-block {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 132px;
  width: 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}
main.static-landing .hero-separator-line {
  width: 100%;
  padding-top: 108px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 130px;
}
main.static-landing .hero-line-img {
  width: 100%;
  height: auto;
  max-height: 12px;
  object-fit: cover;
}
/* hero line wrapper — positions line + dot independently */
main.static-landing .hero-line-wrapper {
  position: relative;
  width: 100%;
  height: 10px;
  margin-bottom: 12px;
}

/* the line — reveals left→right via clip-path (does NOT clip siblings) */
main.static-landing .hero-line-css {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background: #b0b0c0;
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  animation: heroLineDraw 4.2s cubic-bezier(0.22, 1, 0.36, 1) 0.7s both;
  margin-bottom: 0;
}
@keyframes heroLineDraw {
  0%   { clip-path: inset(0 100% 0 0); opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { clip-path: inset(0 0% 0 0);   opacity: 1; }
}

/* the dot — fades in, travels right, then pulses forever */
main.static-landing .hero-line-dot {
  position: absolute;
  top: 50%;
  right: calc(100% - 10px);
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0;
  animation:
    heroDotTravel 4.2s cubic-bezier(0.22, 1, 0.36, 1) 0.7s both,
    heroDotPulse  2.4s ease-out 4.9s infinite;
}
@keyframes heroDotTravel {
  0%   { right: calc(100% - 10px); opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { right: 0;                  opacity: 1; }
}
@keyframes heroDotPulse {
  0%   { box-shadow: 0 0 0 0    rgba(255, 103, 31, 0.6); }
  70%  { box-shadow: 0 0 0 12px rgba(255, 103, 31, 0);   }
  100% { box-shadow: 0 0 0 0    rgba(255, 103, 31, 0);   }
}
main.static-landing .hero-subtitle {
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  max-width: 320px;
  text-align: left;
}
main.static-landing .hero-subtitle strong { font-weight: 700; }
main.static-landing .hero-bento {
  width: 335px;
  padding: 28px 28px;
  align-items: flex-start;
  margin-top: auto;
}

/* ═══════════════════════════════════════════
   YOU'RE IN THE RIGHT PLACE
══════════════════════════════════════════════ */
main.static-landing .right-place-section {
  background: var(--lavender);
  padding: 64px 0 80px;
  overflow: hidden;
  position: relative;
}
main.static-landing .right-place-section::before {
  content: '';
  position: absolute;
  top: -83px;
  right: -67px;
  width: 233px;
  height: 243px;
  background-image: url('images/pattern-dots-purple.png');
  background-size: contain;
  background-repeat: no-repeat;
}
main.static-landing .right-place-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -67px;
  width: 285px;
  height: 274px;
  background-image: url('images/pattern-dots-orange.png');
  background-size: contain;
  background-repeat: no-repeat;
  transform: scaleY(-1);
}
main.static-landing .right-place-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 132px;
}
main.static-landing .section-eyebrow { margin-bottom: 48px; }
main.static-landing .eyebrow-label {
  font-family: 'Koulen', sans-serif;
  font-size: 40px;
  line-height: 1.3;
  color: #000;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

/* Problem cards grid */
main.static-landing .problem-cards-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
main.static-landing .problem-card:nth-child(1) { grid-column: span 2; }
main.static-landing .problem-card:nth-child(2) { grid-column: span 2; }
main.static-landing .problem-card:nth-child(3) { grid-column: span 2; }
main.static-landing .problem-card:nth-child(4) { grid-column: span 3; }
main.static-landing .problem-card:nth-child(5) { grid-column: span 3; }

main.static-landing .problem-card {
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
main.static-landing .problem-card--dark { background: var(--purple-dark); }
main.static-landing .problem-card--light { background: var(--lavender-mid); }

main.static-landing .card-image-wrapper {
  position: relative;
  width: 168px;
  height: 133px;
  flex-shrink: 0;
}
main.static-landing .card-image-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 168px;
  height: 64px;
  border-radius: 12px;
  background: rgba(255,255,255,0.9);
}
main.static-landing .card-illustration {
  position: absolute;
  top: 0;
  left: 24px;
  width: 120px;
  height: 120px;
  object-fit: cover;
  z-index: 1;
}
main.static-landing .card-illustration--lg {
  width: 133px;
  height: 133px;
  left: 24px;
}

main.static-landing .card-title {
  font-family: 'Koulen', sans-serif;
  font-size: 32px;
  line-height: 1;
  color: var(--black);
}
main.static-landing .card-title--white { color: #fff; }
main.static-landing .card-body {
  font-size: 16px;
  line-height: 1.5;
  color: var(--black);
}
main.static-landing .card-body--white { color: #fff; }

/* ═══════════════════════════════════════════
   WE KNOW THE WAY — CAROUSEL
══════════════════════════════════════════════ */
main.static-landing .know-the-way-section {
  background: #fff;
  padding: 64px 0;
}
main.static-landing .know-the-way-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 132px;
}
main.static-landing .know-banner {
  background: var(--purple);
  border-radius: 16px;
  padding: 40px 48px;
  margin-bottom: 48px;
}
main.static-landing .know-banner-text {
  font-family: 'Koulen', sans-serif;
  font-size: 48px;
  line-height: 1.1;
  color: #fff;
  letter-spacing: 0.02em;
}

/* Carousel */
main.static-landing .carousel-outer {
  position: relative;
  padding: 0 72px;  /* room for the 56px buttons + a little breathing space */
}
main.static-landing .carousel-viewport {
  overflow: hidden;
  width: 100%;
}
main.static-landing .carousel-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

/* Arrow buttons — exact Figma spec: 65×74px, rounded rect, salmon bg + orange outline */
main.static-landing .carousel-arrow {
  position: absolute;
  /* vertically centred in the image (image h = 291 * 216/291.5 ≈ 216px) */
  top: calc(216px / 2 - 37px);
  z-index: 10;
  width: 65px;
  height: 74px;
  border-radius: 8px;
  background: var(--orange-light);       /* #ffb998  salmon fill */
  border: 1.5px solid var(--orange);     /* #ff671f  orange outline  ← the missing outline */
  color: #000;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  transition: background 0.18s;
}
main.static-landing .carousel-arrow--prev { left: 0; }
main.static-landing .carousel-arrow--next { right: 0; }
main.static-landing .carousel-arrow:hover  { background: #ffcfb0; }

/* Cards */
main.static-landing .blog-card {
  flex: 0 0 291px;
  min-width: 291px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
  cursor: pointer;
}
main.static-landing .blog-card:hover { opacity: 0.88; }
main.static-landing .blog-card-img {
  width: 100%;
  aspect-ratio: 1200 / 630;   /* matches standard og:image ratio — no cropping */
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
  margin-bottom: 16px;
  flex-shrink: 0;
}
main.static-landing .blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
main.static-landing .blog-card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #000;
  margin-bottom: 10px;
}
main.static-landing .blog-card-tags {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #3835a4;       /* Figma exact purple */
  line-height: 1.4;
}

/* ═══════════════════════════════════════════
   WHAT WE HELP YOU ACHIEVE
══════════════════════════════════════════════ */
main.static-landing .achieve-section {
  background: #fff;
  padding: 64px 0;
}
main.static-landing .achieve-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 132px;
}
main.static-landing .achieve-inner .display-heading-purple { margin-bottom: 40px; }
main.static-landing .achieve-chart-wrapper {
  position: relative;
  margin-bottom: 48px;
}
main.static-landing .chart-label-from {
  position: absolute;
  left: 28%;
  top: 54%;
  background: var(--lavender);
  border: 1px solid #d0d0e0;
  border-radius: 10px;
  padding: 12px 20px;
  font-family: 'Koulen', sans-serif;
  font-size: 22px;
  color: #000;
  z-index: 2;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
main.static-landing .chart-label-to {
  position: absolute;
  right: 7%;
  top: 3%;
  background: var(--purple);
  border-radius: 10px;
  padding: 12px 20px;
  font-family: 'Koulen', sans-serif;
  font-size: 22px;
  color: #fff;
  z-index: 2;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
main.static-landing .achieve-chart {
  width: 100%;
  padding: 0 0 60px;
}
main.static-landing .growth-svg {
  width: 100%;
  height: 520px;
  overflow: visible;
}
main.static-landing .achieve-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
main.static-landing .achieve-col-title {
  font-family: 'Koulen', sans-serif;
  font-size: 20px;
  line-height: 1.15;
  color: var(--purple);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
main.static-landing .achieve-col-title .text-black {
  color: var(--black);
}
main.static-landing .achieve-col-body {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}

/* ═══════════════════════════════════════════
   WHAT WE DO
══════════════════════════════════════════════ */
main.static-landing .what-we-do-section {
  background: var(--lavender);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
main.static-landing .what-we-do-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 132px;
  position: relative;
  z-index: 1;
}
main.static-landing .what-we-do-header {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 80px;
}
main.static-landing .what-we-do-sub {
  font-family: 'Koulen', sans-serif;
  font-size: 40px;
  line-height: 1.1;
  color: #000;
  max-width: 515px;
  letter-spacing: 0.02em;
}
main.static-landing .what-we-do-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
main.static-landing .do-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 24px 0;
}
main.static-landing .do-item-left { flex: 1; }
main.static-landing .do-item-title {
  font-family: 'Koulen', sans-serif;
  font-size: 40px;
  line-height: 1.3;
  color: var(--purple);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
main.static-landing .do-item-body {
  font-size: 22px;
  line-height: 1.4;
  color: #000;
  max-width: 551px;
}
main.static-landing .do-item-num {
  font-family: 'Koulen', sans-serif;
  font-size: 64px;
  line-height: 1.3;
  color: var(--grey-text);
  flex-shrink: 0;
  padding-top: 4px;
}
main.static-landing .do-divider {
  height: 1px;
  background: rgba(56, 53, 164, 0.15);
  width: 100%;
}

/* ═══════════════════════════════════════════
   8 WEEKS — CLEAR CADENCE
══════════════════════════════════════════════ */
main.static-landing .eight-weeks-section {
  background: #fff;
  padding: 68px 136px;
}
main.static-landing .eight-weeks-inner {
  max-width: var(--page-max);
  margin: 0 auto;
}
main.static-landing .eight-weeks-headline {
  position: relative;
  height: 130px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
}
main.static-landing .eight-weeks-bg-text {
  font-family: 'Koulen', sans-serif;
  font-size: 156px;
  line-height: 1;
  color: #d0d0e8;
  letter-spacing: 0.02em;
  filter: blur(1.5px);
  position: absolute;
  left: 0;
  top: -10px;
  z-index: 0;
  white-space: nowrap;
  user-select: none;
}
main.static-landing .eight-weeks-fg-text {
  font-family: 'Koulen', sans-serif;
  font-size: 60px;
  line-height: 1.15;
  color: #000;
  letter-spacing: 0.02em;
  margin-left: 50%;
  z-index: 1;
  position: relative;
}
main.static-landing .eight-weeks-sub {
  font-size: 22px;
  line-height: 1.5;
  color: #000;
  text-align: center;
  max-width: 715px;
  margin: 0 auto 48px;
}

/* Progress chart */
main.static-landing .progress-chart-wrapper {
  margin-bottom: 48px;
  position: relative;
}
main.static-landing .progress-chart-area {
  position: relative;
  width: 100%;
  /* viewBox is 1104×520 so height preserves ratio */
  height: 0;
  padding-bottom: calc(520 / 1104 * 100%);
}
main.static-landing .progress-chart-area svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
main.static-landing .progress-x-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
}
main.static-landing .progress-x-axis span { font-size: 13px; color: #9ca3af; font-weight: 500; }

/* ── SVG milestone elements (pm = progress milestone) ── */
/* Start invisible; JS adds .pm-active to the SVG to reveal them */
main.static-landing .pm-dot, main.static-landing .pm-line, main.static-landing .pm-box, main.static-landing .pm-text {
  opacity: 0;
  transition: opacity 0.4s ease var(--pm-d, 0s);
}
main.static-landing .progress-svg.pm-active .pm-dot,
main.static-landing .progress-svg.pm-active .pm-line,
main.static-landing .progress-svg.pm-active .pm-box,
main.static-landing .progress-svg.pm-active .pm-text {
  opacity: 1;
}

/* Rocket pulses once visible */
@keyframes rocketPulse {
  0%, 100% { transform: scale(1) translateY(0); }
  50%       { transform: scale(1.25) translateY(-4px); }
}
main.static-landing .pm-rocket {
  transform-box: fill-box;
  transform-origin: center bottom;
}
main.static-landing .progress-svg.pm-active .pm-rocket {
  animation: rocketPulse 1.6s ease-in-out infinite;
  animation-delay: var(--pm-d, 0s);
}

/* Fix tracer dot — hidden until JS animation fires */
main.static-landing .progress-tracer {
  opacity: 0;
}

/* Cadence cards */
main.static-landing .cadence-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
main.static-landing .cadence-card {
  background: var(--lavender);
  border-radius: 13px;
  padding: 40px 24px 40px 24px;
  box-shadow: 0 3px 49px 9px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}
main.static-landing .cadence-card::after {
  content: '';
  position: absolute;
  top: 8px;
  right: 8px;
  width: 72px;
  height: 72px;
  background-image: radial-gradient(circle, #c8c8e8 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  opacity: 0.55;
}
main.static-landing .cadence-card h3 {
  font-family: 'Koulen', sans-serif;
  font-size: 36px;
  line-height: 1.2;
  color: #000;
  margin-bottom: 16px;
}
main.static-landing .cadence-card p {
  font-size: 18px;
  color: rgba(0,0,0,0.75);
  line-height: 1.4;
}

/* ═══════════════════════════════════════════
   FIXED PRICE SPRINT
══════════════════════════════════════════════ */
main.static-landing .fixed-price-section {
  background: var(--purple);
  padding: 64px 0 120px;
  position: relative;
  overflow: hidden;
}
main.static-landing .fixed-price-inner {
  position: relative;
  z-index: 1;
}
main.static-landing .fixed-price-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 136px;
}
main.static-landing .fixed-price-header {
  margin-bottom: 64px;
}
main.static-landing .fixed-price-sub {
  font-family: 'Koulen', sans-serif;
  font-size: 40px;
  line-height: 1.1;
  color: #fff;
  max-width: 689px;
  letter-spacing: 0.02em;
  margin-top: 40px;
}
main.static-landing .fixed-price-chart {
  margin-bottom: 80px;
}
main.static-landing .results-chart-wrapper {
  width: 100%;
}
main.static-landing .results-y-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 12px;
  flex-shrink: 0;
}
main.static-landing .results-y-label {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
}
main.static-landing .results-chart-area {
  position: relative;
  height: 459px;
  width: 100%;
}
main.static-landing .results-y-axis-right {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 8px;
}
main.static-landing .results-y-axis-right span {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  text-align: right;
}
main.static-landing .results-svg { width: 100%; height: 100%; }
/* ── Legend ── */
main.static-landing .results-legend {
  display: flex;
  gap: 28px;
  margin-bottom: 20px;
}
main.static-landing .results-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
}
main.static-landing .results-legend-swatch {
  display: inline-block;
  width: 28px;
  height: 3px;
  border-radius: 2px;
  flex-shrink: 0;
}
main.static-landing .results-legend-swatch--before { background: rgba(255,255,255,0.28); }
main.static-landing .results-legend-swatch--after  { background: #ff671f; }

/* ── Badges (after/before, combined layout) ── */
main.static-landing .chart-badge {
  position: absolute;
  border-radius: 10px;
  color: #fff;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  padding: 6px 12px;
  line-height: 1;
  backdrop-filter: blur(8px);
}
main.static-landing .chart-badge--orange {
  background: rgba(220,90,28,0.90);
  border: 1px solid rgba(255,183,152,0.35);
  animation: afterBadgePulse 3s ease-in-out infinite;
}
@keyframes afterBadgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,103,31,0); }
  50%       { box-shadow: 0 0 14px 4px rgba(255,103,31,0.45); }
}
main.static-landing .chart-badge--before {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  font-family: 'Koulen', sans-serif;
  font-size: 16px;
  animation: beforeBadgeBreathe 4s ease-in-out infinite;
}
@keyframes beforeBadgeBreathe {
  0%, 100% { opacity: 0.75; }
  50%       { opacity: 1; }
}
main.static-landing .badge-pct {
  font-family: 'Koulen', sans-serif;
  font-size: 24px;
  line-height: 1;
}
main.static-landing .badge-lift {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ffcfb0;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── Results tracer dot ── */
main.static-landing .results-tracer {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff671f;
  border: 2px solid #fff;
  box-shadow: 0 0 10px 3px rgba(255,103,31,0.6);
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  transform: translate(-50%,-50%);
  transition: opacity 0.3s;
}

main.static-landing .results-x-axis {
  display: flex;
  justify-content: space-between;
  padding-left: 0;
  margin-top: 16px;
}
main.static-landing .results-x-axis span {
  font-family: 'Koulen', sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.03em;
}
main.static-landing .results-note {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  margin-top: 16px;
  line-height: 1.5;
  max-width: 600px;
}
main.static-landing .price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}
main.static-landing .price-number {
  font-family: 'Koulen', sans-serif;
  font-size: 244px;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.01em;
}
main.static-landing .price-period {
  font-family: 'Koulen', sans-serif;
  font-size: 48px;
  color: #fff;
  line-height: 1;
  text-align: center;
  margin-top: -48px;
}

/* ═══════════════════════════════════════════
   8-WEEK SPRINT INCLUDED
══════════════════════════════════════════════ */
main.static-landing .sprint-included-section {
  background: var(--lavender);
  padding: 64px 0;
}
main.static-landing .sprint-included-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}
main.static-landing .sprint-included-header {
  text-align: left;
  width: 100%;
  max-width: var(--container);
}
main.static-landing .sprint-included-header .eyebrow-label {
  font-size: 40px;
  font-family: 'Koulen', sans-serif;
  color: #000;
}
main.static-landing .sprint-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
  max-width: var(--container);
}
main.static-landing .sprint-checklist-col { display: flex; flex-direction: column; gap: 24px; }
main.static-landing .sprint-check-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
main.static-landing .sprint-emoji {
  font-size: 30px;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}
main.static-landing .sprint-check-item p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.35;
  color: #2a2a2a;
}

/* ═══════════════════════════════════════════
   WHO THIS IS FOR
══════════════════════════════════════════════ */
main.static-landing .who-section {
  background: #fff;
  padding: 96px 0;
}
main.static-landing .who-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 136px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
main.static-landing .who-inner .display-heading-purple { line-height: 0.87; }
main.static-landing .who-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 29px;
}
main.static-landing .who-col {
  background: var(--lavender);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
main.static-landing .who-col-label {
  font-family: 'Koulen', sans-serif;
  font-size: 42px;
  line-height: 1;
  letter-spacing: 0.03em;
}
main.static-landing .who-col-label--fit { color: var(--purple); }
main.static-landing .who-col-label--nofit { color: #000; opacity: 0.65; }
main.static-landing .who-card {
  border-radius: 13px;
  overflow: hidden;
  padding: 25px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}
main.static-landing .who-card--fit { background: var(--purple); }
main.static-landing .who-card--nofit { background: var(--lavender-dark); }
main.static-landing .who-check {
  font-size: 20px;
  width: 24px;
  flex-shrink: 0;
  padding-top: 4px;
  font-weight: 700;
}
main.static-landing .who-check--fit { color: #fff; }
main.static-landing .who-check--nofit { color: #000; font-weight: 900; }
main.static-landing .who-card-content { flex: 1; }
main.static-landing .who-card-content h3 {
  font-family: 'Koulen', sans-serif;
  font-size: 32px;
  line-height: 1.06;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 16px;
}
main.static-landing .who-card-content--dark h3 { color: #000; }
main.static-landing .who-card-content p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  color: rgba(255,255,255,0.85);
}
main.static-landing .who-card-content--dark p { color: rgba(0,0,0,0.7); }
main.static-landing .who-banner {
  background: var(--purple);
  border-radius: 24px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  position: relative;
}
main.static-landing .who-banner::after {
  content: '';
  position: absolute;
  top: 10px;
  right: 20px;
  width: 160px;
  height: 90px;
  background-image: radial-gradient(circle, rgba(255,255,255,0.4) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  pointer-events: none;
}
main.static-landing .who-banner-icon { width: 64px; height: 64px; flex-shrink: 0; filter: brightness(0) invert(1); }
main.static-landing .who-banner-check {
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
main.static-landing .who-banner p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.4;
  color: #fff;
  max-width: 901px;
}

/* ═══════════════════════════════════════════
   FAQ
══════════════════════════════════════════════ */
main.static-landing .faq-section {
  background: var(--lavender);
  padding: 132px 0 80px;
  position: relative;
}
main.static-landing .faq-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 136px;
}
main.static-landing .faq-heading {
  font-family: 'Koulen', sans-serif;
  font-size: 128px;
  line-height: 1;
  color: #000;
  letter-spacing: 0.02em;
  margin-bottom: 64px;
  max-width: 1210px;
}
main.static-landing .faq-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}
main.static-landing .faq-list { display: flex; flex-direction: column; }
main.static-landing .faq-item { padding: 40px 0 40px 61px; }
main.static-landing .faq-divider { height: 1px; background: rgba(56,53,164,0.15); }
main.static-landing .faq-q {
  font-family: 'Koulen', sans-serif;
  font-size: 40px;
  line-height: 1.3;
  color: var(--purple);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
main.static-landing .faq-a {
  font-size: 22px;
  line-height: 1.5;
  color: #000;
  max-width: 594px;
}
main.static-landing .faq-aside { padding-top: 160px; }
main.static-landing .faq-aside-card {
  background: var(--lavender-dark);
  border-radius: 13px;
  padding: 25px 24px;
  transform: rotate(17.36deg);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
main.static-landing .faq-aside-card h3 {
  font-family: 'Koulen', sans-serif;
  font-size: 32px;
  line-height: 1;
  color: var(--purple);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
main.static-landing .faq-aside-card p {
  font-size: 18px;
  font-weight: 500;
  color: rgba(0,0,0,0.6);
  line-height: 1.4;
}

/* ═══════════════════════════════════════════
   CTA — LET'S GET YOUR STARTUP MOVING AGAIN
══════════════════════════════════════════════ */
main.static-landing .cta-section {
  background: var(--purple);
  padding: 120px 70px;
  position: relative;
  overflow: hidden;
}
main.static-landing .cta-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  text-align: center;
}
main.static-landing .cta-headline {
  font-family: 'Koulen', sans-serif;
  font-size: 128px;
  line-height: 0.87;
  color: #fff;
  letter-spacing: 0.02em;
  text-align: center;
  width: 1300px;
  max-width: 100%;
}
main.static-landing .cta-body {
  font-size: 24px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  max-width: 938px;
  line-height: 1.5;
  text-align: center;
}
main.static-landing .cta-stats {
  display: flex;
  gap: 63px;
  align-items: flex-start;
}
main.static-landing .cta-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 310px;
  color: #fff;
  text-align: center;
}
main.static-landing .cta-stat-num {
  font-family: 'Koulen', sans-serif;
  font-size: 80px;
  line-height: 1;
}
main.static-landing .cta-stat-right {
  display: contents; /* transparent on desktop — acts like the children are direct children of .cta-stat */
}
main.static-landing .cta-stat-label {
  font-family: 'Koulen', sans-serif;
  font-size: 40px;
  line-height: 1;
}
main.static-landing .cta-stat-desc {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}
main.static-landing .bento-btn--cta { align-self: center; }

/* ═══════════════════════════════════════════
   PRE-FOOTER
══════════════════════════════════════════════ */
main.static-landing .prefooter-section {
  background: var(--lavender);
  padding: 64px 0;
}
main.static-landing .prefooter-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 134px;
  display: flex;
  gap: 64px;
  align-items: flex-start;
}
main.static-landing .prefooter-col { flex: 1; }
main.static-landing .prefooter-col-title {
  font-family: 'Koulen', sans-serif;
  font-size: 26px;
  line-height: 1;
  color: #000;
  margin-bottom: 28px;
}
main.static-landing .prefooter-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}
main.static-landing .prefooter-links li {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #000;
  padding: 2px 0;
}
main.static-landing .prefooter-links-row {
  display: flex;
  gap: 32px;
}

/* ═══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
main.static-landing .site-footer {
  background: #fff;
  border-top: 1px solid #000;
}
main.static-landing .footer-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 64px 70px;
  display: grid;
  grid-template-columns: 320px 1fr 300px;
  gap: 64px;
}
main.static-landing .footer-brand {}
main.static-landing .footer-logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
main.static-landing .footer-logo-mark { width: 44px; flex-shrink: 0; }
main.static-landing .footer-logo-text { height: 32px; }
main.static-landing .footer-logo-text-word {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #1a1a2e;
  letter-spacing: 0.05em;
}
main.static-landing .footer-tagline {
  font-size: 14px;
  line-height: 1.4;
  color: #000;
  max-width: 180px;
  margin-bottom: 40px;
}
main.static-landing .footer-contact { display: flex; flex-direction: column; gap: 20px; }
main.static-landing .footer-contact-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0;
  font-size: 14px;
  line-height: 1.4;
  color: #000;
}
main.static-landing .footer-contact-label { font-weight: 700; }
main.static-landing .footer-contact a { color: #000; }
main.static-landing .footer-contact a:hover { text-decoration: underline; }

main.static-landing .footer-links-col {}
main.static-landing .footer-col-title {
  font-family: 'Koulen', sans-serif;
  font-size: 26px;
  line-height: 1;
  color: #000;
  margin-bottom: 24px;
}
main.static-landing .footer-links-list { display: flex; flex-direction: column; gap: 8px; }
main.static-landing .footer-links-list li a {
  font-size: 14px;
  line-height: 1.4;
  color: #000;
  text-decoration: underline;
}
main.static-landing .footer-links-list li a:hover { color: var(--purple); }

main.static-landing .footer-hq-col {
  position: relative;
}
main.static-landing .footer-hq-col p {
  font-size: 14px;
  line-height: 1.4;
  color: #000;
}
main.static-landing .footer-hq-col::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(circle, #3835a4 1.5px, transparent 1.5px), radial-gradient(circle, #FF671F 1.5px, transparent 1.5px);
  background-size: 14px 14px, 14px 14px;
  background-position: 0 0, 7px 7px;
  opacity: 0.25;
  pointer-events: none;
}
main.static-landing .footer-webdev { margin-top: 16px; }
main.static-landing .footer-webdev a { text-decoration: underline; }

main.static-landing .footer-bottom {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 16px 70px 24px;
  font-size: 12px;
  color: #666;
}

/* ═══════════════════════════════════════════
   RESPONSIVE (basic)
══════════════════════════════════════════════ */
@media (max-width: 1280px) {
  main.static-landing .hero-headline { font-size: 96px; }
  main.static-landing .hero-inner { padding: 0 64px; }
  main.static-landing .right-place-inner { padding: 0 64px; }
  main.static-landing .know-the-way-inner { padding: 0 64px; }
  main.static-landing .achieve-inner { padding: 0 64px; }
  main.static-landing .what-we-do-inner { padding: 0 64px; }
  main.static-landing .eight-weeks-section { padding: 68px 64px; }
  main.static-landing .fixed-price-inner { padding: 0 64px; }
  main.static-landing .sprint-included-inner { padding: 0 64px; }
  main.static-landing .who-inner { padding: 0 64px; }
  main.static-landing .faq-inner { padding: 0 64px; }
  main.static-landing .cta-section { padding: 80px 64px; }
  main.static-landing .prefooter-inner { padding: 0 64px; }
  main.static-landing .footer-inner { padding: 64px; }
}

/* ══════════════════════════════════════════════════════════
   AMBIENT LOOP ANIMATIONS
   Always-on, ongoing animations that keep the page alive
══════════════════════════════════════════════════════════ */

/* ── 1. Hero — floating orb blobs ── */
main.static-landing .hero-orb {
  animation: heroOrbFloat var(--dur, 10s) ease-in-out var(--del, 0s) infinite alternate;
  z-index: 0;
}
@keyframes heroOrbFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(var(--tx, 20px), var(--ty, -15px)) scale(1.1); }
}

/* ── 2. Hero section — slow lavender-tinted bg pulse ── */
@keyframes heroBgBreath {
  0%, 100% { background-color: #ffffff; }
  50%       { background-color: #f5f4ff; }
}
main.static-landing .hero-section { animation: heroBgBreath 10s ease-in-out infinite; }

/* ── 3. Card illustrations — gentle float ── */
@keyframes illustFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-10px) rotate(0.6deg); }
}
main.static-landing .card-illustration {
  animation: illustFloat 5s ease-in-out infinite;
}
main.static-landing .problem-card:nth-child(2) .card-illustration { animation-delay: 0.8s; }
main.static-landing .problem-card:nth-child(3) .card-illustration { animation-delay: 1.6s; }
main.static-landing .problem-card:nth-child(4) .card-illustration { animation-delay: 2.4s; animation-duration: 6s; }
main.static-landing .problem-card:nth-child(5) .card-illustration { animation-delay: 0.4s; animation-duration: 7s; }

/* ── 4. Know banner — shimmer light sweep ── */
main.static-landing .know-banner {
  position: relative;
  overflow: hidden;
}
main.static-landing .know-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 25%,
    rgba(255, 255, 255, 0.09) 50%,
    transparent 75%
  );
  background-size: 250% 100%;
  animation: bannerSweep 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes bannerSweep {
  0%   { background-position: 150% 0; }
  100% { background-position: -150% 0; }
}

/* ── 5. Achieve SVG radar rings — inside the SVG, pixel-perfect ── */
main.static-landing .achieve-radar-svg {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  pointer-events: none;
}
main.static-landing .achieve-radar-svg.radar-active {
  animation: svgRadarPulse 2.5s ease-out infinite;
}
main.static-landing .achieve-radar-svg-2.radar-active { animation-delay: 1.25s; }

/* Amber warning radar (bottom endpoint) */
@keyframes svgRadarPulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(4.5); opacity: 0;   }
}
/* Good purple radar (top endpoint) */
main.static-landing .achieve-radar-good { stroke: #3835a4; }

/* ── Rescue label — hopeful, softer amber palette ── */
main.static-landing .chart-label-danger {
  position: absolute;
  transform: translate(-108%, -50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fdf6f0;
  border: 1.5px solid #c4834a;
  border-radius: 10px;
  padding: 10px 18px;
  font-family: 'Koulen', sans-serif;
  font-size: 18px;
  letter-spacing: 0.03em;
  color: #7a4520;
  white-space: nowrap;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.7s ease;
  box-shadow: 0 4px 20px rgba(196, 131, 74, 0.12);
}
main.static-landing .chart-label-danger.danger-visible {
  opacity: 1;
  animation: rescuePulse 3.5s ease-in-out 0.7s infinite;
}
main.static-landing .danger-icon {
  font-size: 18px;
  line-height: 1;
  color: #c4834a;
  font-style: normal;
  animation: arrowBob 2.5s ease-in-out infinite;
}
main.static-landing .danger-text { line-height: 1; }

@keyframes rescuePulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(196, 131, 74, 0.12);
    border-color: #c4834a;
  }
  50% {
    box-shadow: 0 6px 28px rgba(196, 131, 74, 0.28);
    border-color: #e09a60;
  }
}
@keyframes arrowBob {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(2px, -2px); }
}

/* ── 6. 8-weeks bg text — slow horizontal drift (starts invisible, drifts once visible) ── */
@keyframes bgTextRevealDrift {
  0%   { opacity: 0; transform: translateX(0px); }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { opacity: 1; transform: translateX(-60px); }
}
main.static-landing .eight-weeks-bg-text {
  opacity: 0;  /* reset from original rule so animation controls it */
}
main.static-landing .eight-weeks-bg-text.in {
  animation: bgTextRevealDrift 18s ease-in-out infinite alternate;
  transition: none;   /* let animation handle opacity, not the transition */
}

/* ── 7. Fixed-price — floating sparkle dots ── */
main.static-landing .fp-star {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(255, 183, 152, 0.75);
  animation: fpTwinkle var(--dur, 3.5s) ease-in-out var(--del, 0s) infinite;
}
@keyframes fpTwinkle {
  0%, 100% { opacity: 0; transform: scale(0) translateY(0); }
  30%       { opacity: 0.9; transform: scale(1) translateY(-6px); }
  60%       { opacity: 0.5; transform: scale(0.8) translateY(-14px); }
}

/* ── 8. Fixed-price orange line — subtle glow pulse ── */
@keyframes orangeLinePulse {
  0%, 100% { filter: drop-shadow(0 0 0px transparent); }
  50%       { filter: drop-shadow(0 0 7px rgba(255, 103, 31, 0.55)); }
}
@keyframes orangeGlowPulse {
  0%, 100% { opacity: 0.25; }
  50%       { opacity: 0.55; }
}
main.static-landing #results-orange.in {
  animation: orangeLinePulse 3s ease-in-out infinite;
}
main.static-landing #results-orange-glow {
  animation: orangeGlowPulse 3s ease-in-out infinite;
}

/* ── 9. CTA orange text — warm glow ── */
@keyframes orangeGlow {
  0%, 100% { text-shadow: none; }
  50%       { text-shadow: 0 0 28px rgba(255, 103, 31, 0.45), 0 2px 12px rgba(255, 103, 31, 0.2); }
}
main.static-landing .cta-headline .text-orange {
  animation: orangeGlow 2.8s ease-in-out infinite;
}

/* ── 10. Sprint emojis — playful bounce ── */
@keyframes emojiBounce {
  0%, 60%, 100% { transform: translateY(0px); }
  30%            { transform: translateY(-7px); }
}
main.static-landing .sprint-emoji {
  display: inline-block;
  animation: emojiBounce 4.5s ease-in-out infinite;
}
main.static-landing .sprint-check-item:nth-child(2) .sprint-emoji { animation-delay: 0.7s; }
main.static-landing .sprint-check-item:nth-child(3) .sprint-emoji { animation-delay: 1.4s; }
main.static-landing .sprint-check-item:nth-child(4) .sprint-emoji { animation-delay: 2.1s; }
main.static-landing .sprint-check-item:nth-child(5) .sprint-emoji { animation-delay: 2.8s; }
main.static-landing .sprint-check-item:nth-child(6) .sprint-emoji { animation-delay: 3.5s; }

/* ── 11. Who section — ✓ checkmarks pulse ── */
@keyframes checkPulse {
  0%, 70%, 100% { transform: scale(1); }
  35%            { transform: scale(1.25); }
}
main.static-landing .who-check--fit {
  animation: checkPulse 4s ease-in-out infinite;
}
main.static-landing .who-card:nth-child(2) .who-check--fit { animation-delay: 1.4s; }
main.static-landing .who-card:nth-child(3) .who-check--fit { animation-delay: 2.8s; }

/* ── 12. Hero bento button — gentle float ── */
@keyframes heroButtonFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}
main.static-landing .hero-bento {
  animation: heroButtonFloat 4s ease-in-out infinite;
}

/* ── 13. Price number — glow pulse once revealed ── */
@keyframes priceGlow {
  0%, 100% { text-shadow: none; }
  50%       { text-shadow: 0 0 40px rgba(255,183,152,0.35), 0 0 16px rgba(255,183,152,0.15); }
}
main.static-landing .price-number {
  animation: priceGlow 3.5s ease-in-out 1.5s infinite;
}

/* ── 14. FAQ aside card — border shimmer ── */
@keyframes asideBorder {
  0%, 100% { box-shadow: 0 0 0 0 rgba(56, 53, 164, 0); }
  50%       { box-shadow: 0 0 0 3px rgba(56, 53, 164, 0.18), 0 8px 32px rgba(56, 53, 164, 0.08); }
}
main.static-landing .faq-aside-card {
  animation: asideBorder 4s ease-in-out infinite;
}

/* ── 15. Progress chart line — traveling dot ── */
main.static-landing .progress-tracer {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3835a4;
  box-shadow: 0 0 8px rgba(56, 53, 164, 0.6);
  pointer-events: none;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
}

/* ══════════════════════════════════════════════════════════
   SCROLL-TRIGGERED ANIMATIONS
   Story-telling, scroll-driven reveals for every section
══════════════════════════════════════════════════════════ */

/* ── Page-load: hero animates in immediately ── */
@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(36px); filter: blur(4px); }
  to   { opacity: 1; transform: none; filter: blur(0); }
}
main.static-landing .hero-headline {
  opacity: 0;
  animation: heroSlideUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}
main.static-landing .hero-right-block {
  opacity: 0;
  animation: heroSlideUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

/* ── Generic reveal states (start hidden) ── */
main.static-landing .reveal,
main.static-landing .reveal-left,
main.static-landing .reveal-right,
main.static-landing .reveal-tilt,
main.static-landing .reveal-pop,
main.static-landing .reveal-drop {
  opacity: 0;
  will-change: opacity, transform;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  transition-duration: 0.78s;
  transition-delay: var(--d, 0ms);
}
main.static-landing .reveal       { transform: translateY(52px); }
main.static-landing .reveal-left  { transform: translateX(-68px); }
main.static-landing .reveal-right { transform: translateX(68px); }
main.static-landing .reveal-tilt  {
  transform: translateY(40px) rotate(4deg);
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-duration: 0.7s;
}
main.static-landing .reveal-pop {
  transform: scale(0.84);
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-duration: 0.65s;
}
main.static-landing .reveal-drop {
  transform: translateY(-44px);
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Activated ── */
main.static-landing .reveal.in,
main.static-landing .reveal-left.in,
main.static-landing .reveal-right.in,
main.static-landing .reveal-tilt.in,
main.static-landing .reveal-pop.in,
main.static-landing .reveal-drop.in {
  opacity: 1;
  transform: none;
}

/* ── Divider lines grow left → right ── */
main.static-landing .do-divider {
  transform-origin: left center;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0ms);
}
main.static-landing .do-divider.line-hidden { transform: scaleX(0); }
main.static-landing .do-divider.in          { transform: scaleX(1); }

/* ── SVG stroke draw-on ── */
main.static-landing .anim-path {
  stroke-dasharray: var(--len, 2400);
  stroke-dashoffset: var(--len, 2400);
  transition: stroke-dashoffset var(--dur, 1.6s) cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--path-d, 0s);
}
main.static-landing .anim-path.in { stroke-dashoffset: 0; }

/* ── SVG circle pop ── */
main.static-landing .anim-circle {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(0);
  transition: opacity 0.4s ease, transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: var(--path-d, 0s);
}
main.static-landing .anim-circle.in { opacity: 1; transform: scale(1); }

/* ── SVG fill area fade ── */
main.static-landing .anim-fill {
  opacity: 0;
  transition: opacity 0.9s ease;
  transition-delay: var(--path-d, 0s);
}
main.static-landing .anim-fill.in { opacity: 1; }

/* ── Chart badges pop ── */
main.static-landing .chart-badge {
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: var(--d, 0ms);
}
main.static-landing .chart-badge.in { opacity: 1; transform: none; }

/* eight-weeks bg text: handled entirely by ambient bgTextRevealDrift animation */

/* ── What-we-do numbered items ── */
main.static-landing .do-item-num {
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: var(--d, 0ms);
}
main.static-landing .do-item-num.in { opacity: 1; transform: none; }

/* ── CTA button breathes when section enters view ── */
@keyframes btnBreathe {
  0%, 100% { box-shadow: 0 4px 20px rgba(255, 103, 31, 0.22), 0 0 0 0 rgba(255, 103, 31, 0); }
  50%       { box-shadow: 0 10px 40px rgba(255, 103, 31, 0.48), 0 0 0 12px rgba(255, 103, 31, 0); }
}
main.static-landing .bento-btn--cta {
  animation: btnBreathe 2.6s ease-in-out infinite;
}

/* ── CTA section: animated background orbs ── */
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(24px, -18px) scale(1.06); }
  66%       { transform: translate(-16px, 12px) scale(0.96); }
}
main.static-landing .cta-section::before {
  content: '';
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,103,31,0.18) 0%, transparent 70%);
  top: -120px; right: -60px;
  pointer-events: none;
  animation: orbFloat 9s ease-in-out infinite;
}
main.static-landing .cta-section::after {
  content: '';
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,185,152,0.14) 0%, transparent 70%);
  bottom: -80px; left: -40px;
  pointer-events: none;
  animation: orbFloat 12s ease-in-out 2s infinite reverse;
}

/* ── Know banner: dramatic slide ── */
main.static-landing .know-banner {
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

/* ── Who-section columns perspective trick ── */
main.static-landing .who-columns {
  perspective: 1400px;
}

/* ════════════════════════════════════════════════
   AUDIT MODAL
════════════════════════════════════════════════ */

/* ── Overlay ── */
main.static-landing .audit-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 8, 40, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
main.static-landing .audit-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

/* ── Modal container ── */
main.static-landing .audit-modal {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 960px;
  max-height: 92vh;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.08);
  transform: translateY(28px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
main.static-landing .audit-overlay.is-open .audit-modal {
  transform: translateY(0) scale(1);
}

/* ── Close button ── */
main.static-landing .audit-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
main.static-landing .audit-close:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

/* ── Left brand panel ── */
main.static-landing .audit-brand {
  position: relative;
  flex: 0 0 42%;
  background: linear-gradient(145deg, #1a1660 0%, #0f0d35 60%, #3835a4 100%);
  padding: 52px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
}
main.static-landing .audit-brand-tag {
  display: inline-flex;
  align-self: flex-start;
  background: rgba(255,103,31,0.18);
  border: 1px solid rgba(255,103,31,0.45);
  color: #ff9a67;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}
main.static-landing .audit-brand-headline {
  font-family: 'Koulen', sans-serif;
  font-size: 32px;
  line-height: 1.1;
  color: #fff;
  letter-spacing: 0.02em;
  margin: 0;
}
main.static-landing .audit-brand-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  margin: 0;
}
main.static-landing .audit-brand-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
main.static-landing .audit-brand-list li {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  display: flex;
  align-items: center;
  gap: 10px;
}
main.static-landing .audit-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: rgba(255,103,31,0.2);
  border: 1px solid rgba(255,103,31,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #ff9a67;
}
main.static-landing .audit-brand-footer {
  display: flex;
  gap: 28px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
main.static-landing .audit-brand-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
main.static-landing .audit-brand-stat span {
  font-family: 'Koulen', sans-serif;
  font-size: 28px;
  color: #ff671f;
  line-height: 1;
}
main.static-landing .audit-brand-stat small {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* ── Decorative orbs on brand panel ── */
main.static-landing .audit-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
main.static-landing .audit-orb--1 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255,103,31,0.18) 0%, transparent 70%);
  bottom: -80px;
  right: -80px;
}
main.static-landing .audit-orb--2 {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(56,53,164,0.4) 0%, transparent 70%);
  top: -40px;
  left: -40px;
}

/* ── Right form panel ── */
main.static-landing .audit-form-panel {
  flex: 1;
  background: #fff;
  padding: 48px 40px 40px;
  overflow-y: auto;
}

/* ── HubSpot form overrides (white panel) ── */
main.static-landing .audit-form-panel .hs-form-html,
main.static-landing .audit-form-panel form {
  font-family: 'DM Sans', sans-serif !important;
}
main.static-landing .audit-form-panel .hs-form-field label {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #1a1660 !important;
  margin-bottom: 5px !important;
  display: block;
}
main.static-landing .audit-form-panel input[type="text"],
main.static-landing .audit-form-panel input[type="email"],
main.static-landing .audit-form-panel input[type="tel"],
main.static-landing .audit-form-panel select,
main.static-landing .audit-form-panel textarea {
  width: 100% !important;
  border: 1.5px solid #e0dff5 !important;
  border-radius: 10px !important;
  padding: 11px 14px !important;
  font-size: 14px !important;
  font-family: 'DM Sans', sans-serif !important;
  color: #1a1660 !important;
  background: #fafafe !important;
  outline: none !important;
  transition: border-color 0.2s !important;
  box-sizing: border-box !important;
}
main.static-landing .audit-form-panel input:focus,
main.static-landing .audit-form-panel select:focus,
main.static-landing .audit-form-panel textarea:focus {
  border-color: #ff671f !important;
  background: #fff !important;
}
main.static-landing .audit-form-panel .hs-button,
main.static-landing .audit-form-panel input[type="submit"] {
  background: #ff671f !important;
  color: #fff !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 14px 28px !important;
  font-family: 'Koulen', sans-serif !important;
  font-size: 20px !important;
  letter-spacing: 0.04em !important;
  cursor: pointer !important;
  width: 100% !important;
  transition: background 0.2s, transform 0.15s !important;
  margin-top: 8px !important;
}
main.static-landing .audit-form-panel .hs-button:hover,
main.static-landing .audit-form-panel input[type="submit"]:hover {
  background: #e05818 !important;
  transform: translateY(-1px) !important;
}
main.static-landing .audit-form-panel .hs-error-msg,
main.static-landing .audit-form-panel .hs-error-msgs {
  color: #c0392b !important;
  font-size: 12px !important;
  margin-top: 4px !important;
}
main.static-landing .audit-form-panel .hs-form-field {
  margin-bottom: 16px !important;
}



/* ════════════════════════════════════════════════
   MOBILE RESPONSIVE  ≤ 768px
   Based on Figma mobile frame (412px wide, 32px padding)
════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════════
   MOBILE  ≤ 768px  —  complete block-by-block override
   Selector pattern: body main.static-landing … (highest specificity
   inside a media query, beats host-site styles without !important spam)
════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── 0. ROOT LOCK ── */
  body main.static-landing {
    min-width: 320px !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    --page-max: 100%;
  }
  body main.static-landing *,
  body main.static-landing *::before,
  body main.static-landing *::after { box-sizing: border-box !important; }

  /* overflow fence on every section */
  body main.static-landing section { overflow-x: hidden; max-width: 100vw; }

  /* ── SHARED: all inner wrappers ── */
  body main.static-landing .hero-inner,
  body main.static-landing .right-place-inner,
  body main.static-landing .know-the-way-inner,
  body main.static-landing .achieve-inner,
  body main.static-landing .what-we-do-inner,
  body main.static-landing .eight-weeks-inner,
  body main.static-landing .fixed-price-inner,
  body main.static-landing .sprint-included-inner,
  body main.static-landing .who-inner,
  body main.static-landing .faq-inner,
  body main.static-landing .cta-inner {
    padding-left: 20px !important;
    padding-right: 20px !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  /* ── SHARED: display headings ── */
  body main.static-landing .display-heading-purple,
  body main.static-landing .display-heading-black,
  body main.static-landing .display-heading-white {
    font-size: 40px !important;
    line-height: 1.05 !important;
  }

  /* ── SHARED: bento buttons ── */
  body main.static-landing .bento-btn {
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
    padding: 20px 24px !important;
    gap: 12px !important;
  }
  body main.static-landing .bento-btn .bento-btn-text {
    font-size: 22px !important;
    white-space: normal !important;
    text-align: center !important;
    flex: 1 !important;
  }
  body main.static-landing .bento-btn .bento-btn-icon-svg { display: none !important; }

  /* ═══════════════════════════
     BLOCK 1 — HERO
  ═══════════════════════════ */
  body main.static-landing .hero-section {
    padding: 40px 0 48px !important;
    min-height: unset !important;
  }
  body main.static-landing .hero-inner {
    min-height: unset !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }
  /* headline: remove fixed 756 px width */
  body main.static-landing .hero-headline {
    font-size: 52px !important;
    line-height: 1 !important;
    width: 100% !important;
    margin-bottom: 20px !important;
  }
  /* right block: collapse from absolute into flow */
  body main.static-landing .hero-right-block {
    position: static !important;
    width: 100% !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    align-items: flex-start !important;
  }
  body main.static-landing .hero-separator-line {
    padding-top: 0 !important;
    margin-bottom: 16px !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }
  body main.static-landing .hero-line-wrapper { width: 100% !important; }
  body main.static-landing .hero-subtitle {
    font-size: 16px !important;
    line-height: 1.55 !important;
    max-width: 100% !important;
    margin-bottom: 24px !important;
  }
  /* shrink large bg text */
  body main.static-landing .hero-bg-text { font-size: 72px !important; }

  /* ═══════════════════════════
     BLOCK 2 — PROBLEM CARDS
  ═══════════════════════════ */
  body main.static-landing .right-place-section { padding: 48px 0 !important; }
  body main.static-landing .right-place-inner { gap: 28px !important; }
  body main.static-landing .eyebrow-label { font-size: 16px !important; }

  /* single-column grid; kill all nth-child span rules */
  body main.static-landing .problem-cards-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  body main.static-landing .problem-card:nth-child(1),
  body main.static-landing .problem-card:nth-child(2),
  body main.static-landing .problem-card:nth-child(3),
  body main.static-landing .problem-card:nth-child(4),
  body main.static-landing .problem-card:nth-child(5) {
    grid-column: 1 / -1 !important;
  }
  body main.static-landing .problem-card {
    padding: 20px !important;
    gap: 14px !important;
    width: 100% !important;
  }
  /* image wrapper: fixed px dimensions → auto */
  body main.static-landing .card-image-wrapper {
    position: relative !important;
    width: 100px !important;
    height: 100px !important;
    flex-shrink: 0 !important;
  }
  body main.static-landing .card-image-bg {
    width: 100px !important;
    height: 48px !important;
  }
  body main.static-landing .card-illustration {
    position: absolute !important;
    top: 0 !important;
    left: 10px !important;
    width: 80px !important;
    height: 80px !important;
    object-fit: cover !important;
  }
  body main.static-landing .card-illustration--lg {
    width: 90px !important;
    height: 90px !important;
    left: 5px !important;
  }
  body main.static-landing .card-title { font-size: 22px !important; }
  body main.static-landing .card-body  { font-size: 14px !important; }

  /* ═══════════════════════════
     BLOCK 3 — CAROUSEL
  ═══════════════════════════ */
  body main.static-landing .know-the-way-section { padding: 40px 0 !important; }
  body main.static-landing .know-the-way-inner {
    padding: 0 20px !important;
    gap: 20px !important;
  }
  body main.static-landing .know-banner {
    padding: 20px !important;
    border-radius: 12px !important;
    margin-bottom: 24px !important;
  }
  body main.static-landing .know-banner-text {
    font-size: 24px !important;
    line-height: 1.2 !important;
  }
  /* arrows: shrink, stay absolute inside carousel-outer */
  body main.static-landing .carousel-outer { padding: 0 52px !important; }
  body main.static-landing .carousel-arrow {
    width: 40px !important;
    height: 52px !important;
    font-size: 12px !important;
  }
  body main.static-landing .blog-card { width: 260px !important; flex: 0 0 260px !important; }
  body main.static-landing .blog-card-title { font-size: 14px !important; }

  /* ═══════════════════════════
     BLOCK 4 — ACHIEVE CHART
  ═══════════════════════════ */
  body main.static-landing .achieve-section { padding: 48px 0 !important; }
  body main.static-landing .achieve-inner { gap: 24px !important; }
  body main.static-landing .achieve-inner .display-heading-purple { margin-bottom: 20px !important; }

  /* scrollable chart container */
  body main.static-landing .achieve-chart-wrapper {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    margin: 0 -20px !important;
    padding: 0 20px 12px !important;
    position: relative !important;
  }
  body main.static-landing .achieve-chart { min-width: 560px !important; position: relative !important; }
  body main.static-landing .growth-svg { min-width: 560px !important; height: 280px !important; }

  /* floating labels: position them to not overflow the scrollable area */
  body main.static-landing .chart-label-from { font-size: 14px !important; padding: 8px 12px !important; }
  body main.static-landing .chart-label-to   { font-size: 14px !important; padding: 8px 12px !important; }
  body main.static-landing .chart-label-danger { display: none !important; }

  /* 2-column outcome grid */
  body main.static-landing .achieve-cols {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
  }
  body main.static-landing .achieve-col-title { font-size: 16px !important; }
  body main.static-landing .achieve-col-body  { font-size: 13px !important; }

  /* ═══════════════════════════
     BLOCK 5 — WHAT WE DO
  ═══════════════════════════ */
  body main.static-landing .what-we-do-section { padding: 48px 0 !important; }
  body main.static-landing .what-we-do-inner { gap: 0 !important; }
  body main.static-landing .what-we-do-header {
    gap: 16px !important;
    margin-bottom: 32px !important;
  }
  body main.static-landing .what-we-do-sub {
    font-size: 20px !important;
    max-width: 100% !important;
  }
  body main.static-landing .do-item {
    flex-direction: row !important; /* keep number on right */
    align-items: flex-start !important;
    gap: 12px !important;
    padding: 20px 0 !important;
  }
  body main.static-landing .do-item-title {
    font-size: 24px !important;
    margin-bottom: 8px !important;
  }
  body main.static-landing .do-item-body { font-size: 14px !important; max-width: 100% !important; }
  body main.static-landing .do-item-num  { font-size: 36px !important; padding-top: 0 !important; }

  /* ═══════════════════════════
     BLOCK 6 — 8-WEEK CHART
  ═══════════════════════════ */
  body main.static-landing .eight-weeks-section {
    padding: 48px 20px !important;
  }
  body main.static-landing .eight-weeks-inner { gap: 20px !important; }

  /* headline: bg text + fg text stacked */
  body main.static-landing .eight-weeks-headline {
    height: auto !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
    margin-bottom: 16px !important;
    overflow: hidden !important;
  }
  body main.static-landing .eight-weeks-bg-text {
    position: static !important;
    font-size: 72px !important;
    top: auto !important;
    left: auto !important;
    line-height: 1 !important;
  }
  body main.static-landing .eight-weeks-fg-text {
    position: static !important;
    margin-left: 0 !important;
    font-size: 32px !important;
    line-height: 1.15 !important;
  }
  body main.static-landing .eight-weeks-sub {
    font-size: 15px !important;
    text-align: left !important;
    margin: 0 0 24px !important;
    max-width: 100% !important;
  }

  /* chart: negative margin to bleed then scrollable */
  body main.static-landing .progress-chart-wrapper {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    margin: 0 -20px !important;
    padding: 0 20px !important;
    margin-bottom: 24px !important;
  }
  body main.static-landing .progress-chart-area {
    min-width: 520px !important;
    /* preserve aspect ratio padding-bottom is already responsive */
  }
  body main.static-landing .progress-x-axis {
    min-width: 520px !important;
    margin-top: 4px !important;
  }

  /* cadence cards: 2×2 */
  body main.static-landing .cadence-cards {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    margin-top: 24px !important;
  }
  body main.static-landing .cadence-card {
    padding: 20px 16px !important;
  }
  body main.static-landing .cadence-card h3 { font-size: 22px !important; margin-bottom: 8px !important; }
  body main.static-landing .cadence-card p  { font-size: 14px !important; }

  /* ═══════════════════════════
     BLOCK 7 — FIXED PRICE SPRINT
  ═══════════════════════════ */
  body main.static-landing .fixed-price-section { padding: 48px 0 64px !important; }
  body main.static-landing .fixed-price-header { margin-bottom: 28px !important; }
  body main.static-landing .fixed-price-sub {
    font-size: 22px !important;
    margin-top: 16px !important;
    max-width: 100% !important;
  }

  /* results chart: scrollable */
  body main.static-landing .results-chart-wrapper {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    margin: 0 -20px !important;
    padding: 0 20px !important;
  }
  body main.static-landing .results-chart-area {
    min-width: 460px !important;
    height: 240px !important;
  }
  body main.static-landing .results-x-axis {
    min-width: 460px !important;
    margin-top: 10px !important;
  }
  body main.static-landing .results-x-axis span { font-size: 13px !important; }
  body main.static-landing .results-legend { flex-wrap: wrap !important; gap: 12px !important; margin-bottom: 14px !important; }
  body main.static-landing .results-note { font-size: 13px !important; margin-top: 12px !important; }

  /* $10,000 price block */
  body main.static-landing .price-block {
    gap: 16px !important;
    margin-top: 40px !important;
  }
  body main.static-landing .price-number {
    font-size: 88px !important;
    line-height: 1 !important;
  }
  body main.static-landing .price-period {
    font-size: 26px !important;
    margin-top: -8px !important;
  }
  body main.static-landing .fixed-price-chart { margin-bottom: 0 !important; }

  /* ═══════════════════════════
     BLOCK 8 — SPRINT INCLUDED
  ═══════════════════════════ */
  body main.static-landing .sprint-included-section { padding: 40px 0 !important; }
  body main.static-landing .sprint-included-inner { gap: 28px !important; }
  body main.static-landing .sprint-included-header .eyebrow-label { font-size: 18px !important; }
  body main.static-landing .sprint-included-header .display-heading-purple { margin-bottom: 0 !important; }

  body main.static-landing .sprint-checklist {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    max-width: 100% !important;
  }
  body main.static-landing .sprint-checklist-col { gap: 0 !important; }
  body main.static-landing .sprint-check-item {
    padding: 14px 0 !important;
    gap: 14px !important;
    border-bottom: 1px solid rgba(56,53,164,0.1) !important;
  }
  body main.static-landing .sprint-emoji { font-size: 24px !important; width: 28px !important; }
  body main.static-landing .sprint-check-item p { font-size: 16px !important; }

  /* ═══════════════════════════
     BLOCK 9 — WHO IT'S FOR
  ═══════════════════════════ */
  body main.static-landing .who-section { padding: 48px 0 !important; }
  body main.static-landing .who-inner { gap: 28px !important; }

  body main.static-landing .who-columns {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  body main.static-landing .who-col { gap: 12px !important; }
  body main.static-landing .who-col-label { font-size: 28px !important; }
  body main.static-landing .who-card { padding: 18px 16px !important; }
  body main.static-landing .who-card-content h3 { font-size: 22px !important; margin-bottom: 8px !important; }
  body main.static-landing .who-card-content p  { font-size: 14px !important; }

  body main.static-landing .who-banner {
    padding: 20px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }
  body main.static-landing .who-banner-check {
    width: 44px !important;
    height: 44px !important;
    font-size: 28px !important;
  }
  body main.static-landing .who-banner p { font-size: 15px !important; max-width: 100% !important; }

  /* ═══════════════════════════
     BLOCK 10 — FAQ
  ═══════════════════════════ */
  body main.static-landing .faq-section { padding: 48px 0 40px !important; }
  body main.static-landing .faq-heading {
    font-size: 48px !important;
    line-height: 1 !important;
    margin-bottom: 28px !important;
    max-width: 100% !important;
  }
  /* collapse 2-col grid to 1 col */
  body main.static-landing .faq-content {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  body main.static-landing .faq-item { padding: 20px 0 !important; }
  body main.static-landing .faq-q {
    font-size: 22px !important;
    margin-bottom: 10px !important;
  }
  body main.static-landing .faq-a { font-size: 15px !important; max-width: 100% !important; }
  /* aside card: remove rotation, show as flat card */
  body main.static-landing .faq-aside { padding-top: 0 !important; }
  body main.static-landing .faq-aside-card {
    transform: none !important;
    border-radius: 12px !important;
  }
  body main.static-landing .faq-aside-card h3 { font-size: 22px !important; margin-bottom: 10px !important; }
  body main.static-landing .faq-aside-card p  { font-size: 14px !important; }

  /* ═══════════════════════════
     BLOCK 11 — CTA
  ═══════════════════════════ */
  body main.static-landing .cta-section { padding: 52px 20px !important; }
  body main.static-landing .cta-inner {
    align-items: flex-start !important;
    text-align: left !important;
    gap: 24px !important;
  }
  body main.static-landing .cta-headline {
    font-size: 48px !important;
    line-height: 1 !important;
    text-align: left !important;
    width: 100% !important;
  }
  body main.static-landing .cta-body {
    font-size: 15px !important;
    text-align: left !important;
    max-width: 100% !important;
  }
  /* stats: vertical, horizontal row per stat */
  body main.static-landing .cta-stats {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    width: 100% !important;
  }
  body main.static-landing .cta-stat {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    text-align: left !important;
    width: 100% !important;
    gap: 16px !important;
    padding: 18px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.12) !important;
  }
  body main.static-landing .cta-stat:last-child { border-bottom: none !important; }
  body main.static-landing .cta-stat-num {
    font-size: 48px !important;
    flex-shrink: 0 !important;
    width: 100px !important;
    text-align: right !important;
  }
  body main.static-landing .cta-stat-right {
    display: flex !important;
    flex-direction: column !important;
    gap: 3px !important;
    flex: 1 !important;
  }
  body main.static-landing .cta-stat-label { font-size: 22px !important; line-height: 1 !important; }
  body main.static-landing .cta-stat-desc  { font-size: 12px !important; }

  /* CTA button: full width */
  body main.static-landing .bento-btn--cta {
    align-self: stretch !important;
  }

  /* ═══════════════════════════
     BLOCK 12 — AUDIT MODAL
  ═══════════════════════════ */
  body main.static-landing .audit-overlay {
    padding: 0 !important;
    align-items: flex-end !important;
  }
  body main.static-landing .audit-modal {
    flex-direction: column !important;
    max-height: 90vh !important;
    border-radius: 20px 20px 0 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    transform: translateY(40px) !important;
  }
  body main.static-landing .audit-overlay.is-open .audit-modal {
    transform: translateY(0) !important;
  }
  body main.static-landing .audit-brand {
    flex: none !important;
    padding: 24px 20px 16px !important;
    gap: 8px !important;
  }
  body main.static-landing .audit-brand-sub,
  body main.static-landing .audit-brand-list,
  body main.static-landing .audit-brand-footer,
  body main.static-landing .audit-orb { display: none !important; }
  body main.static-landing .audit-brand-headline { font-size: 20px !important; }
  body main.static-landing .audit-form-panel {
    flex: 1 !important;
    padding: 16px 20px 28px !important;
    overflow-y: auto !important;
  }
  body main.static-landing .audit-close { top: 14px !important; right: 14px !important; }

}

/* ── Extra-small phones ≤ 390px ── */
@media (max-width: 390px) {
  body main.static-landing .hero-headline  { font-size: 44px !important; }
  body main.static-landing .price-number   { font-size: 72px !important; }
  body main.static-landing .cta-headline   { font-size: 40px !important; }
  body main.static-landing .cta-stat-num   { font-size: 40px !important; width: 84px !important; }
  body main.static-landing .faq-heading    { font-size: 40px !important; }
}

/* ════════════════════════════════════════════════════════════
   MOBILE FIXES — charts, 8-week headline, modal
   Appended after block-by-block override to take precedence
════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ══════════════════════════════════════
     CHART 1 — ACHIEVE (growth trajectory)
     Strategy: fully responsive, no scroll.
     SVG uses preserveAspectRatio="xMidYMid meet" so it
     scales proportionally when we give it 100% width.
  ══════════════════════════════════════ */
  body main.static-landing .achieve-chart-wrapper {
    overflow-x: visible !important;
    overflow-y: visible !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
  }
  body main.static-landing .achieve-chart {
    min-width: 0 !important;
    width: 100% !important;
    position: relative !important;
    padding: 0 0 48px !important; /* room for floating labels if any */
  }
  body main.static-landing .growth-svg {
    min-width: 0 !important;
    width: 100% !important;
    height: auto !important;    /* let aspect ratio drive height */
    display: block !important;
  }
  /* Floating "from/to" labels: re-anchor to fit the scaled SVG */
  body main.static-landing .chart-label-from {
    display: block !important;
    position: absolute !important;
    left: 26% !important;
    top: 56% !important;
    font-size: 12px !important;
    padding: 6px 10px !important;
    white-space: nowrap !important;
  }
  body main.static-landing .chart-label-to {
    display: block !important;
    position: absolute !important;
    right: 4% !important;
    top: 3% !important;
    font-size: 12px !important;
    padding: 6px 10px !important;
    white-space: nowrap !important;
  }
  /* Outcome cols: single column, each col clearly readable */
  body main.static-landing .achieve-cols {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  body main.static-landing .achieve-col {
    border-left: 3px solid var(--purple) !important;
    padding-left: 12px !important;
  }
  body main.static-landing .achieve-col-title {
    font-size: 15px !important;
    margin-bottom: 4px !important;
  }
  body main.static-landing .achieve-col-body { font-size: 13px !important; }

  /* ══════════════════════════════════════
     CHART 2 — 8-WEEK PROGRESS
     Strategy: horizontal scroll at 750px so milestone
     SVG text (13 SVG units) renders at ≈9 CSS px — readable.
     We also explicitly set the padded-height so the scrollable
     area has the right proportional height.
  ══════════════════════════════════════ */
  body main.static-landing .progress-chart-wrapper {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    /* bleed to section edge for full-bleed scroll feel */
    margin: 0 -20px !important;
    padding: 0 !important;
    margin-bottom: 20px !important;
    /* scroll hint gradient on right edge */
    background: linear-gradient(to right, transparent calc(100% - 32px), rgba(255,255,255,0.5)) !important;
  }
  body main.static-landing .progress-chart-area {
    min-width: 750px !important;
    width: 750px !important;
    /* aspect-ratio trick: padding-bottom calculates off width (750px) */
    height: 0 !important;
    padding-bottom: calc(520 / 1104 * 750px) !important;
  }
  body main.static-landing .progress-x-axis {
    min-width: 750px !important;
    width: 750px !important;
    padding: 0 8px !important;
    margin-top: 4px !important;
  }

  /* ── "8 WEEKS." blurred headline ── */
  body main.static-landing .eight-weeks-headline {
    position: relative !important;
    height: auto !important;
    min-height: 80px !important;
    display: block !important;       /* stack bg behind fg simply */
    margin-bottom: 16px !important;
    overflow: hidden !important;
  }
  body main.static-landing .eight-weeks-bg-text {
    /* keep as blurred bg decoration */
    position: absolute !important;
    top: -4px !important;
    left: 0 !important;
    /* clamp so "8 weeks." (≈3.5ch) always fits inside the section */
    font-size: clamp(40px, 14vw, 56px) !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    max-width: 100% !important;
    z-index: 0 !important;
  }
  body main.static-landing .eight-weeks-fg-text {
    position: relative !important;
    z-index: 1 !important;
    margin-left: 0 !important;
    margin-top: 30px !important;     /* push down past the blurred text */
    font-size: 28px !important;
    line-height: 1.2 !important;
    padding-bottom: 8px !important;
  }

  /* ══════════════════════════════════════
     CHART 3 — FIXED PRICE SPRINT (before/after)
     Strategy: horizontal scroll at 500px.
     Remove the padding-offset that was misaligning badges.
  ══════════════════════════════════════ */
  body main.static-landing .results-chart-wrapper {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    margin: 0 -20px !important;
    padding: 0 !important;           /* no side padding — avoids badge offset */
  }
  body main.static-landing .results-chart-area {
    min-width: 500px !important;
    width: 500px !important;
    height: 220px !important;
  }
  /* Badges: proportional to 220px height */
  body main.static-landing .chart-badge {
    padding: 4px 8px !important;
    border-radius: 8px !important;
  }
  body main.static-landing .badge-pct  { font-size: 18px !important; }
  body main.static-landing .badge-lift { font-size: 9px !important; letter-spacing: 0.04em !important; }
  body main.static-landing .chart-badge--before { font-size: 13px !important; }
  /* Hide y-axis labels — too cramped at this width */
  body main.static-landing .results-y-axis-right { display: none !important; }
  body main.static-landing .results-x-axis {
    min-width: 500px !important;
    width: 500px !important;
    padding: 0 4px !important;
    margin-top: 8px !important;
  }
  body main.static-landing .results-x-axis span { font-size: 12px !important; }
  body main.static-landing .results-legend {
    flex-direction: column !important;
    gap: 6px !important;
    margin-bottom: 12px !important;
  }

  /* ══════════════════════════════════════
     MODAL — complete mobile-safe rewrite
     Key issues fixed:
     • overflow-x:hidden on main can clip fixed descendants in
       some Safari versions → force z-index + explicit fixed coords
     • form panel must be scrollable with -webkit-overflow-scrolling
     • remove scale() from transform (can create stacking context)
  ══════════════════════════════════════ */

  /* Overlay: punch through any clipping from parent */
  body main.static-landing .audit-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 99999 !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: center !important;
    padding: 0 !important;
    background: rgba(10,8,40,0.72) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    transition: opacity 0.3s ease !important;
  }
  body main.static-landing .audit-overlay:not(.is-open) {
    opacity: 0 !important;
    pointer-events: none !important;
  }
  body main.static-landing .audit-overlay.is-open {
    opacity: 1 !important;
    pointer-events: all !important;
  }

  /* Modal container: bottom sheet, no scale transform */
  body main.static-landing .audit-modal {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    max-height: 92vh !important;
    border-radius: 20px 20px 0 0 !important;
    box-shadow: 0 -8px 40px rgba(0,0,0,0.4) !important;
    overflow: hidden !important;
    /* slide-up only — no scale (scale creates stacking context) */
    transform: translateY(100%) !important;
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1) !important;
  }
  body main.static-landing .audit-overlay.is-open .audit-modal {
    transform: translateY(0) !important;
  }

  /* Brand header strip (compact) */
  body main.static-landing .audit-brand {
    flex: 0 0 auto !important;
    background: linear-gradient(135deg, #1a1660 0%, #2d2a8a 100%) !important;
    padding: 20px 56px 16px 20px !important; /* right gap for close btn */
    gap: 4px !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 0 !important;
  }
  body main.static-landing .audit-brand-tag {
    display: inline-flex !important;
    align-self: flex-start !important;
    font-size: 10px !important;
    padding: 3px 8px !important;
    margin-bottom: 2px !important;
  }
  body main.static-landing .audit-brand-headline {
    font-size: 18px !important;
    line-height: 1.2 !important;
    color: #fff !important;
  }

  /* Form panel: takes all remaining height, scrollable */
  body main.static-landing .audit-form-panel {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    max-height: calc(92vh - 80px) !important; /* viewport minus header strip */
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 20px 20px 48px !important;
    background: #fff !important;
  }

  /* HubSpot form: make inputs large enough to tap */
  body main.static-landing .audit-form-panel input[type="text"],
  body main.static-landing .audit-form-panel input[type="email"],
  body main.static-landing .audit-form-panel input[type="tel"],
  body main.static-landing .audit-form-panel select,
  body main.static-landing .audit-form-panel textarea {
    min-height: 48px !important;    /* 48px minimum tap target */
    font-size: 16px !important;     /* prevents iOS auto-zoom on focus */
    padding: 12px 14px !important;
  }
  body main.static-landing .audit-form-panel .hs-button,
  body main.static-landing .audit-form-panel input[type="submit"] {
    min-height: 52px !important;
    font-size: 22px !important;
    margin-top: 12px !important;
  }
  body main.static-landing .audit-form-panel .hs-form-field {
    margin-bottom: 14px !important;
  }

  /* Close button: larger tap area */
  body main.static-landing .audit-close {
    position: absolute !important;
    top: 14px !important;
    right: 14px !important;
    width: 40px !important;
    height: 40px !important;
    z-index: 10 !important;
    background: rgba(255,255,255,0.15) !important;
    border: 1px solid rgba(255,255,255,0.25) !important;
  }

}

/* ════════════════════════════════════════════════════════════
   MOBILE CHART OVERHAUL — no horizontal scroll, fits any phone
   All three charts redesigned for mobile viewing.
════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ══════════════════════════════════════════
     CHART 1 — ACHIEVE (growth trajectory)
     Root problem: height was hard-coded 520px.
     Fix: height:auto + SVG has preserveAspectRatio=meet → scales.
     Floating labels hidden (too small at mobile scale).
  ══════════════════════════════════════════ */
  body main.static-landing .achieve-chart-wrapper {
    overflow: visible !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
  }
  body main.static-landing .achieve-chart {
    min-width: 0 !important;
    width: 100% !important;
    padding: 0 !important;
    position: relative !important;
  }
  /* SVG uses preserveAspectRatio="xMidYMid meet" → auto height works */
  body main.static-landing .growth-svg {
    min-width: 0 !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    max-height: 50vw !important; /* cap height on very wide phones */
  }
  /* Floating labels: too small at mobile scale → hide cleanly */
  body main.static-landing .chart-label-from,
  body main.static-landing .chart-label-to,
  body main.static-landing .chart-label-danger { display: none !important; }

  /* Outcome columns: single column with left accent border */
  body main.static-landing .achieve-cols {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  body main.static-landing .achieve-col {
    border-left: 3px solid var(--purple) !important;
    padding-left: 12px !important;
  }
  body main.static-landing .achieve-col-title {
    font-size: 15px !important;
    margin-bottom: 4px !important;
  }
  body main.static-landing .achieve-col-body { font-size: 13px !important; }

  /* ══════════════════════════════════════════
     CHART 2 — 8-WEEK PROGRESS
     Root problem: milestone callout boxes render at ~4px on mobile.
     Fix: keep the existing padding-bottom responsive trick (it works!),
     remove any min-width, hide milestone decorations,
     override SVG text to CSS px so phase labels stay readable.
  ══════════════════════════════════════════ */
  body main.static-landing .progress-chart-wrapper {
    overflow: visible !important;
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
    margin-bottom: 12px !important;
  }
  body main.static-landing .progress-chart-area {
    /* Remove any min-width set by earlier mobile rules;
       let desktop padding-bottom ratio handle the height */
    min-width: 0 !important;
    width: 100% !important;
    /* Desktop already has: height:0; padding-bottom:calc(520/1104*100%)
       That computes to ~47% → ~169px tall at 360px wide. */
  }
  body main.static-landing .progress-x-axis {
    min-width: 0 !important;
    width: 100% !important;
  }
  /* Milestone callout elements — unreadable at mobile scale → hide */
  body main.static-landing .pm-dot,
  body main.static-landing .pm-line,
  body main.static-landing .pm-box,
  body main.static-landing .pm-text { display: none !important; }

  /* Phase labels (DISCOVER/BUILD/LAUNCH/SCALE) are plain <text> elements
     without .pm-text class. CSS font-size overrides SVG presentation
     attribute and renders in CSS px, so they stay legible at any scale. */
  body main.static-landing .progress-svg text {
    font-size: 10px !important;
    letter-spacing: 0.5px !important;
  }

  /* ══════════════════════════════════════════
     CHART 3 — FIXED PRICE SPRINT (before/after)
     Root problem: height:459px is hard-coded; SVG is NOT position:absolute
     so the padding-bottom trick doesn't work for it.
     Fix: switch to padding-bottom ratio, make SVG position:absolute;inset:0.
     Simplify badges: hide "before" ones (too cramped), keep orange "after"
     badges scaled down. Hide y-axis labels.
  ══════════════════════════════════════════ */
  body main.static-landing .results-chart-wrapper {
    overflow: visible !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  /* Replace fixed 459px height with aspect-ratio trick */
  body main.static-landing .results-chart-area {
    min-width: 0 !important;
    width: 100% !important;
    height: 0 !important;
    /* ratio 459/1110 ≈ 41.4% → ~149px at 360px wide */
    padding-bottom: 41.4% !important;
    overflow: visible !important;
    position: relative !important;
  }
  /* Make SVG fill the padded area (mirrors what progress chart does) */
  body main.static-landing .results-chart-area .results-svg {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
  }
  /* Before badges: too cramped in 149px height → hide */
  body main.static-landing .chart-badge--before { display: none !important; }
  /* After (orange) badges: shrink to fit the scaled chart */
  body main.static-landing .chart-badge--orange {
    padding: 3px 7px !important;
    border-radius: 6px !important;
  }
  body main.static-landing .badge-pct  { font-size: 13px !important; line-height: 1 !important; }
  body main.static-landing .badge-lift { font-size: 7px !important; letter-spacing: 0 !important; }
  /* Y-axis labels + tracer: hide on mobile */
  body main.static-landing .results-y-axis-right { display: none !important; }
  body main.static-landing .results-tracer { display: none !important; }
  /* X-axis metric labels: keep full width */
  body main.static-landing .results-x-axis {
    min-width: 0 !important;
    width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
  }
  body main.static-landing .results-x-axis span { font-size: 11px !important; }

}

/* ════════════════════════════════════════════════════════════
   FINAL MOBILE TUNE — fix achieve chart visibility + phase labels size
════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* 1) Achieve chart must always render: force stable aspect-ratio box */
  body main.static-landing .achieve-chart {
    position: relative !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 0 !important;
    /* 582 / 1167 = 49.87% */
    padding-bottom: 49.9% !important;
    overflow: visible !important;
  }
  body main.static-landing .achieve-chart .growth-svg {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* 2) 8-week phase titles (DISCOVER/BUILD/LAUNCH/SCALE) too small */
  body main.static-landing .progress-svg text {
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 1.2px !important;
  }
}

/* Restore Achieve chart semantic labels on mobile */
@media (max-width: 768px) {
  body main.static-landing .achieve-chart-wrapper {
    padding-top: 34px !important; /* reserve space for top-right label */
  }

  body main.static-landing .chart-label-from,
  body main.static-landing .chart-label-to {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    z-index: 3 !important;
    border-radius: 8px !important;
    letter-spacing: 0.02em !important;
    font-family: 'Koulen', sans-serif !important;
    font-size: 11px !important;
    line-height: 1 !important;
    padding: 6px 9px !important;
  }

  body main.static-landing .chart-label-from {
    position: absolute !important;
    left: 18% !important;
    top: 66% !important;
    background: var(--lavender) !important;
    border: 1px solid #d0d0e0 !important;
    color: #000 !important;
  }

  body main.static-landing .chart-label-to {
    position: absolute !important;
    right: 2% !important;
    top: 8px !important;
    background: var(--purple) !important;
    color: #fff !important;
  }
}

/* Phase labels fix for 8-week chart on mobile */
body main.static-landing .progress-phase-axis-mobile {
  display: none !important;
}

@media (max-width: 768px) {
  /* Hide tiny SVG phase labels at y=514 only */
  body main.static-landing .progress-svg text[y="514"] {
    display: none !important;
  }

  /* Render readable phase labels as HTML (not scaled by SVG viewport) */
  body main.static-landing .progress-phase-axis-mobile {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
    margin-top: 8px;
    margin-bottom: 2px;
  }
  body main.static-landing .progress-phase-axis-mobile span {
    font-family: 'Koulen', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #3835a4;
    text-align: center;
    line-height: 1;
    white-space: nowrap;
  }
}

/* Restore danger/rescue label on achieve chart + more chart padding on mobile */
@media (max-width: 768px) {
  /* Show the label — override earlier display:none rules */
  body main.static-landing .chart-label-danger {
    display: flex !important;
    /* On desktop it uses transform:translate(-108%,-50%) anchored by JS.
       On mobile, position it below the declining orange line end-point. */
    position: absolute !important;
    right: 0 !important;
    bottom: 4px !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    /* Compact styling for small screens */
    font-size: 11px !important;
    padding: 5px 10px !important;
    border-radius: 6px !important;
    gap: 5px !important;
    white-space: nowrap !important;
    opacity: 1 !important;
    pointer-events: none !important;
  }
  body main.static-landing .danger-icon { font-size: 12px !important; }
  body main.static-landing .danger-text { font-size: 11px !important; }

  /* More padding below the achieve chart so labels don't collide with outcome cols */
  body main.static-landing .achieve-chart {
    padding-bottom: 32px !important;
  }
  body main.static-landing .achieve-chart-wrapper {
    margin-bottom: 24px !important;
  }
}

/* Fix: restore achieve chart height — use margin not padding for spacing */
@media (max-width: 768px) {
  body main.static-landing .achieve-chart {
    /* Restore the aspect-ratio height that was broken by padding-bottom:32px */
    padding-bottom: 49.9% !important;
    /* Use margin for spacing below the chart instead */
    margin-bottom: 32px !important;
  }

  /* Reposition danger label — it must sit inside the padding-bottom area,
     so anchor it relative to the SVG bottom, not the container bottom */
  body main.static-landing .chart-label-danger {
    bottom: auto !important;
    /* Position near the declining line end (bottom-right of SVG) */
    top: calc(49.9% - 8px) !important;
    right: 0 !important;
  }

  /* Push "from" label up so it doesn't collide with danger label */
  body main.static-landing .chart-label-from {
    top: calc(49.9% - 20px) !important;
    left: 10% !important;
  }
}

/* Move "8 weeks." blurred bg text to the right on mobile so it doesn't clip */
@media (max-width: 768px) {
  body main.static-landing .eight-weeks-bg-text {
    left: auto !important;
    right: 0 !important;
    text-align: right !important;
  }
}
