/* ==========================================================================
   Grow512 - Site styles
   ========================================================================== */

/* ---- Reset & base ---------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: #FFFFFF;
  color: #1A1A1A;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

ul { margin: 0; }

/* ---- Layout container ------------------------------------------------ */

.page { max-width: 1100px; margin: 0 auto; }

/* ---- Navigation ------------------------------------------------------ */

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px;
  border-bottom: 0.5px solid #EEEEEE;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #1A1A1A;
}

.nav__logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
}
.footer__brand .nav__logo { width: 18px; height: 18px; }

.nav__dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #4A8B3A;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__dot span {
  color: white;
  font-weight: 800;
  font-size: 16px;
}

.nav__brand-name {
  font-weight: 800;
  font-size: 22px;
  color: #1A1A1A;
  letter-spacing: -0.01em;
}

.nav__links {
  display: flex;
  gap: 32px;
  font-size: 17px;
  color: #1A1A1A;
  font-weight: 600;
  align-items: center;
}

.nav__links a {
  text-decoration: none;
  color: #1A1A1A;
}

.nav__links a:hover { color: #4A8B3A; }

.nav__links a.is-current { color: #4A8B3A; font-weight: 600; }

.nav__cta {
  background: #4A8B3A;
  color: white !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.15s ease;
}

.nav__cta:hover { background: #3d7530; }

/* ---- Nav dropdown ---------------------------------------------------- */

.nav__group {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav__trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  user-select: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  color: #1A1A1A;
  -webkit-appearance: none;
  appearance: none;
}

.nav__trigger:hover { color: #4A8B3A; }

.nav__trigger.is-current { color: #4A8B3A; font-weight: 600; }

.nav__chevron {
  width: 12px !important;
  height: 12px !important;
  flex: 0 0 12px;
  transition: transform 0.15s ease;
  display: block;
}

.nav__group[aria-expanded="true"] .nav__chevron,
.nav__group:hover .nav__chevron {
  transform: rotate(180deg);
}

.nav__menu {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: -12px;
  background: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 16px;
  padding: 8px;
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  flex-direction: column;
  gap: 2px;
  z-index: 20;
}

/* Open on hover (desktop) and when group is explicitly expanded (touch/click) */
.nav__group:hover .nav__menu,
.nav__group[aria-expanded="true"] .nav__menu {
  display: flex;
}

/* Invisible bridge so the menu doesn't close when crossing the gap from trigger to menu */
.nav__group:hover::after,
.nav__group[aria-expanded="true"]::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -12px;
  right: -12px;
  height: 16px;
  z-index: 19;
}

.nav__menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #1A1A1A;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.1s ease, color 0.1s ease;
}

.nav__menu a:hover {
  background: #F5F8F2;
  color: #4A8B3A;
}

.nav__menu a.is-current {
  color: #4A8B3A;
  font-weight: 600;
}

/* ---- Headline highlight (yellow pill) -------------------------------- */

.hl {
  background: #FFE066;
  padding: 4px 12px;
  border-radius: 12px;
  display: inline-block;
  line-height: 1;
}

.hl--on-dark {
  background: #FFE066;
  color: #1A1A1A;
}

.text-green { color: #4A8B3A; }

/* ---- Eyebrow labels -------------------------------------------------- */

.eyebrow {
  font-size: 14px;
  font-weight: 600;
  color: #4A8B3A;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.eyebrow--lg {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
}

.eyebrow--yellow { color: #FFE066; }

/* ---- Section dividers ------------------------------------------------ */

.section {
  padding: 64px 32px 80px;
}

.section--top { padding: 64px 32px 80px; }

.section--divided { border-top: 0.5px solid #EEEEEE; }

/* ---- Buttons --------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  cursor: pointer;
  border: 0;
}

.btn--dark {
  background: #1A1A1A;
  color: white;
}

.btn--dark:hover { background: #333333; }

.btn--green {
  background: #4A8B3A;
  color: white;
  padding: 18px 28px;
  font-size: 17px;
  gap: 12px;
}

.btn--green:hover { background: #3d7530; }

.btn--outline {
  background: transparent;
  color: #1A1A1A;
  border: 1.5px solid #1A1A1A;
  padding: 14px 22px;
  font-size: 15px;
  justify-content: center;
}

.btn--outline:hover { background: #1A1A1A; color: #FFFFFF; }

.btn--white {
  background: #FFFFFF;
  color: #1A1A1A;
  padding: 14px 22px;
  font-size: 15px;
  justify-content: center;
}

.btn--white:hover { background: #f5f5f5; }

.btn__icon { width: 18px; height: 18px; flex-shrink: 0; }
.btn--green .btn__icon { width: 20px; height: 20px; }

/* ---- Hero - Home ----------------------------------------------------- */

.hero {
  padding: 64px 32px 72px;
}

.hero__headline {
  font-weight: 800;
  font-size: 96px;
  line-height: 0.95;
  color: #1A1A1A;
  letter-spacing: -0.04em;
  max-width: 700px;
  margin: 0 0 36px;
}

.hero__sub {
  font-size: 19px;
  color: #3A3A3A;
  line-height: 1.5;
  margin: 0 0 16px;
  max-width: 580px;
}

.hero__sub--bold {
  font-size: 19px;
  color: #1A1A1A;
  line-height: 1.5;
  margin: 0;
  max-width: 580px;
  font-weight: 600;
}

/* ---- Section heads (used in WHAT WE DO, HOW IT WORKS, etc.) ---------- */

.section-head { margin-bottom: 48px; }

.section-head--tight { margin-bottom: 40px; }

.section-head--loose { margin-bottom: 56px; }

.section-headline {
  font-weight: 800;
  font-size: 96px;
  line-height: 0.98;
  color: #1A1A1A;
  letter-spacing: -0.04em;
  max-width: 960px;
  margin: 0 0 20px;
}

.section-sub {
  font-size: 18px;
  color: #3A3A3A;
  line-height: 1.55;
  margin: 0;
  max-width: 680px;
}

/* ---- Service cards (What we do) -------------------------------------- */

.cards-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.card {
  background: #FFFFFF;
  border: 1.5px solid #EEEEEE;
  border-radius: 24px;
  padding: 28px;
}

.card__title {
  font-size: 19px;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 8px;
}

.card__body {
  font-size: 15px;
  color: #3A3A3A;
  line-height: 1.55;
}

.section__closing {
  font-size: 18px;
  color: #1A1A1A;
  line-height: 1.5;
  margin: 40px 0 0;
  max-width: 580px;
  font-weight: 600;
}

/* ---- How it works (numbered steps) ----------------------------------- */

.step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  align-items: start;
  padding: 36px 0;
  border-top: 1.5px solid #EEEEEE;
}

.step:last-child { padding-bottom: 0; }

.step__num {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #4A8B3A;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step__num span {
  font-size: 44px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1;
}

.step__title {
  font-size: 32px;
  font-weight: 800;
  color: #1A1A1A;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.step__lede {
  font-size: 17px;
  color: #3A3A3A;
  line-height: 1.55;
  margin: 0 0 24px;
  max-width: 640px;
}

.step__p {
  font-size: 17px;
  color: #3A3A3A;
  line-height: 1.55;
  margin: 0 0 14px;
  max-width: 640px;
}

.step__p--bold {
  font-size: 17px;
  color: #1A1A1A;
  line-height: 1.55;
  margin: 0;
  max-width: 640px;
  font-weight: 600;
}

.step__qs {
  font-size: 17px;
  color: #1A1A1A;
  line-height: 1.85;
  font-weight: 500;
}

/* ---- Who it's for (3-col card grid) ---------------------------------- */

.cards-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.audience-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 28px 24px;
  border: 1.5px solid #EEEEEE;
}

.audience-card__heading {
  font-size: 26px;
  font-weight: 800;
  color: #4A8B3A;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}

.audience-card__line {
  font-size: 15px;
  color: #3A3A3A;
  line-height: 1.55;
  margin-bottom: 16px;
}

.audience-card__list {
  padding-left: 18px;
  font-size: 14px;
  color: #3A3A3A;
  line-height: 1.75;
}

/* ---- Dark CTA section + footer (shared across all pages) ------------- */

.cta-dark {
  padding: 56px 32px 64px;
  border-top: 0.5px solid #EEEEEE;
  background: #1A1A1A;
  color: white;
}

.cta-dark__inner { max-width: 680px; }

.cta-dark__headline {
  font-weight: 800;
  font-size: 64px;
  line-height: 1.05;
  color: white;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
}

.cta-dark__headline--md {
  font-size: 56px;
  margin: 0 0 24px;
}

.cta-dark__body {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
  margin: 0 0 40px;
}

.cta-dark__body--md {
  font-size: 18px;
  margin: 0 0 36px;
}

.footer {
  padding: 32px;
  border-top: 0.5px solid #EEEEEE;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #888888;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__brand .nav__dot { width: 18px; height: 18px; }
.footer__brand .nav__dot span { font-size: 10px; }

.footer__brand-name {
  font-weight: 700;
  color: #1A1A1A;
  font-size: 13px;
}

/* ==========================================================================
   Pricing page
   ========================================================================== */

.pricing-hero {
  padding: 72px 32px 56px;
}

.pricing-hero__headline {
  font-weight: 800;
  font-size: 96px;
  line-height: 0.98;
  color: #1A1A1A;
  letter-spacing: -0.04em;
  max-width: 960px;
  margin: 0 0 24px;
}

.pricing-hero__sub {
  font-size: 19px;
  color: #3A3A3A;
  line-height: 1.55;
  margin: 0;
  max-width: 620px;
}

.pricing {
  padding: 0 32px 64px;
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  align-items: stretch;
  margin-bottom: 32px;
}

.tier {
  background: #FFFFFF;
  border: 1.5px solid #1A1A1A;
  border-radius: 24px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.tier--featured {
  background: #4A8B3A;
  border-color: #4A8B3A;
  color: white;
}

.tier__name {
  font-size: 14px;
  font-weight: 700;
  color: #4A8B3A;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  line-height: 1;
}

.tier--featured .tier__name { color: #FFE066; }

.tier__name--coral { color: #FF8C5A; }

.tier__price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
}

.tier__price {
  font-size: 48px;
  font-weight: 800;
  color: #1A1A1A;
  letter-spacing: -0.03em;
  line-height: 1;
}

.tier--featured .tier__price { color: #FFFFFF; }

.tier__period {
  font-size: 15px;
  color: #5A5A5A;
  font-weight: 500;
}

.tier--featured .tier__period { color: #FFFFFF; opacity: 0.85; }

.tier__tagline {
  font-size: 16px;
  color: #3A3A3A;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 24px;
  min-height: 44px;
}

.tier--featured .tier__tagline { color: #FFFFFF; opacity: 0.9; }

.tier__outcome {
  font-size: 15px;
  color: #1A1A1A;
  line-height: 1.5;
  margin-bottom: 24px;
  font-weight: 500;
}

.tier--featured .tier__outcome { color: #FFFFFF; }

.tier__list {
  padding-left: 18px;
  margin: 0 0 28px;
  font-size: 14px;
  color: #3A3A3A;
  line-height: 1.7;
  flex: 1;
}

.tier__list li { margin-bottom: 6px; }
.tier__list li:last-child { margin-bottom: 0; }

.tier--featured .tier__list { color: #FFFFFF; opacity: 0.95; }

.pricing__custom {
  font-size: 15px;
  color: #5A5A5A;
  line-height: 1.5;
  margin: 0;
  font-style: italic;
}

/* ---- Every plan includes strip --------------------------------------- */

.plan-includes {
  padding: 56px 32px;
  border-top: 0.5px solid #EEEEEE;
}

.plan-includes__headline {
  font-weight: 800;
  font-size: 40px;
  line-height: 1.1;
  color: #1A1A1A;
  letter-spacing: -0.025em;
  margin: 0 0 32px;
  max-width: 720px;
}

.plan-includes__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.plan-includes__title {
  font-size: 18px;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 6px;
}

.plan-includes__body {
  font-size: 14px;
  color: #3A3A3A;
  line-height: 1.5;
}

/* ==========================================================================
   Bio page
   ========================================================================== */

.bio-hero {
  padding: 72px 32px 56px;
}

.bio-hero__headline {
  font-weight: 800;
  font-size: 64px;
  line-height: 1;
  color: #1A1A1A;
  letter-spacing: -0.035em;
  margin: 0;
}

.bio {
  padding: 32px 32px 80px;
}

.bio__grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
}

.bio__photo-frame {
  background: #F0F0F0;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
}

.bio__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.bio__name {
  font-size: 28px;
  font-weight: 800;
  color: #1A1A1A;
  letter-spacing: -0.02em;
  margin: 24px 0 4px;
}

.bio__role {
  font-size: 16px;
  color: #4A8B3A;
  font-weight: 600;
  margin: 0 0 20px;
}

.bio__also {
  border-top: 1px solid #EEEEEE;
  padding-top: 20px;
}

.bio__also-label {
  font-size: 12px;
  font-weight: 600;
  color: #4A8B3A;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.bio__also-list {
  padding-left: 20px;
  margin: 0;
  font-size: 15px;
  color: #1A1A1A;
  line-height: 1.85;
}

.bio__also-list a {
  color: #1A1A1A;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: #4A8B3A;
  text-decoration-thickness: 1.5px;
}

.bio__p {
  font-size: 18px;
  color: #1A1A1A;
  line-height: 1.65;
  margin: 0 0 28px;
}

.bio__p:last-child { margin-bottom: 0; }

/* ==========================================================================
   Responsive - mobile breakpoint
   ========================================================================== */

@media (max-width: 768px) {
  /* Nav: two rows - brand+CTA on top, links below */
  .nav { padding: 14px 20px; gap: 10px; flex-wrap: wrap; }
  .nav__links {
    width: 100%;
    order: 2;
    gap: 14px;
    font-size: 13px;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .nav__links a, .nav__trigger { white-space: nowrap; }
  .nav__cta { padding: 5px 11px; font-size: 11px; margin-left: auto; flex-shrink: 0; white-space: nowrap; }

  /* Dropdown on mobile: tap to expand, absolute positioned */
  .nav__group { position: relative; }
  .nav__trigger { padding: 6px 0; font-size: 13px; }
  .nav__menu {
    position: absolute;
    top: calc(100% + 8px);
    left: -12px;
    border: 1px solid #EEEEEE;
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    min-width: 160px;
    background: #FFFFFF;
  }
  .nav__menu a { padding: 6px 10px; font-size: 13px; }
  /* On mobile, hover doesn't apply - only show menu when explicitly expanded */
  .nav__group:hover .nav__menu { display: none; }
  .nav__group[aria-expanded="true"] .nav__menu { display: flex; }
  .nav__group:hover .nav__chevron { transform: none; }
  .nav__group[aria-expanded="true"] .nav__chevron { transform: rotate(180deg); }

  /* Section padding */
  .section, .section--top, .hero, .pricing-hero, .bio-hero, .bio { padding-left: 20px; padding-right: 20px; }
  .hero { padding-top: 48px; padding-bottom: 56px; }
  .section { padding-top: 48px; padding-bottom: 56px; }
  .plan-includes { padding: 40px 20px; }
  .pricing { padding: 0 20px 48px; }
  .cta-dark { padding: 56px 20px 48px; }

  /* Headlines scale down */
  .hero__headline { font-size: 56px; letter-spacing: -0.03em; }
  .section-headline { font-size: 40px; }
  .pricing-hero__headline { font-size: 48px; }
  .bio-hero__headline { font-size: 40px; }
  .cta-dark__headline { font-size: 40px; }
  .cta-dark__headline--md { font-size: 36px; }
  .step__title { font-size: 26px; }
  .plan-includes__headline { font-size: 30px; }

  /* Highlight pill: smaller padding on mobile */
  .hl { padding: 2px 8px; border-radius: 8px; }

  /* Grids collapse to single column */
  .cards-2, .cards-3, .pricing__grid, .plan-includes__grid, .bio__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bio__grid { gap: 32px; }
  .bio__photo-frame { max-width: 320px; }

  /* Steps stack the number above the content on narrow screens */
  .step { grid-template-columns: 1fr; gap: 20px; padding: 28px 0; }
  .step__num { width: 64px; height: 64px; }
  .step__num span { font-size: 32px; }

  /* Hero subhead widths */
  .hero__sub, .hero__sub--bold, .section-sub, .pricing-hero__sub { max-width: 100%; }

  /* Footer wraps cleanly */
  .footer { flex-direction: column; gap: 16px; align-items: flex-start; padding: 24px 20px; }
}

@media (max-width: 420px) {
  .hero__headline { font-size: 44px; }
  .section-headline { font-size: 34px; }
  .pricing-hero__headline { font-size: 40px; }
  .bio-hero__headline { font-size: 34px; }
  .cta-dark__headline, .cta-dark__headline--md { font-size: 32px; }
  .tier__price { font-size: 40px; }
}

/* ==========================================================================
   v2 - gradient design system
   (added during the pre-launch design pass: green/yellow gradient cards
   on /what-we-do, /how-it-works, /who-its-for, and /what-it-costs)
   ========================================================================== */

/* ---- Green interlude band (/what-we-do) ---------------------------------- */

.interlude {
  background: linear-gradient(180deg, #4A8B3A 0%, #3d7530 100%);
  color: white;
  padding: 48px 32px;
}

.interlude__inner { max-width: 760px; }

.interlude__text {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
}

.interlude__text strong {
  color: #FFFFFF;
  font-weight: 700;
  display: block;
  margin-top: 16px;
}

/* ---- Yellow gradient service cards (/what-we-do) ------------------------- */

.cards-2--yellow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.card--yellow-grad {
  background: linear-gradient(180deg, #FFE066 0%, #F5C842 100%);
  border: 0;
  border-radius: 24px;
  padding: 28px;
}

.card--yellow-grad .card__title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  color: #1A1A1A;
}

.card--yellow-grad .card__body {
  font-size: 16px;
  color: #2A2A2A;
  line-height: 1.55;
  margin: 0;
}

/* ---- Green gradient step boxes (/how-it-works) --------------------------- */

.steps--green {
  padding: 3px 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step--green {
  background: linear-gradient(180deg, #4A8B3A 0%, #3d7530 100%);
  border-radius: 24px;
  padding: 40px;
  color: white;
}

.step--green .step__title {
  font-size: 36px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.step--green .step__p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.55;
  margin: 0 0 14px;
  max-width: 720px;
}

.step--green .step__p:last-child { margin-bottom: 0; }

.step--green .step__p--bold {
  font-size: 18px;
  color: #FFFFFF;
  line-height: 1.55;
  margin: 0;
  max-width: 720px;
  font-weight: 700;
}

/* ---- Green gradient audience boxes (/who-its-for) ------------------------ */

.audiences {
  padding: 32px 32px 64px;
}

.audiences__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.audience {
  background: linear-gradient(180deg, #4A8B3A 0%, #3d7530 100%);
  border-radius: 24px;
  padding: 36px 28px;
  color: white;
  display: flex;
  flex-direction: column;
}

.audience__heading {
  font-size: 32px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}

.audience__line {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
  margin: 0 0 24px;
}

.audience__list {
  padding-left: 20px;
  margin: 0;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 1.85;
  font-weight: 500;
}

/* ---- Pricing tiers v2 - gradient (/what-it-costs) ------------------------ */

.pricing-v2 { padding: 32px 32px 48px; }

.pricing-v2__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  align-items: stretch;
  margin-bottom: 32px;
}

.tier-v2 {
  border-radius: 24px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
}

.tier-v2--green {
  background: linear-gradient(180deg, #4A8B3A 0%, #3d7530 100%);
  color: white;
}

.tier-v2--yellow {
  background: linear-gradient(180deg, #FFE066 0%, #F5C842 100%);
  color: #1A1A1A;
}

.tier-v2__name {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  line-height: 1;
}

.tier-v2--green .tier-v2__name { color: #FFE066; }
.tier-v2--yellow .tier-v2__name { color: #3d7530; }

.tier-v2__price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
}

.tier-v2__price {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.tier-v2--green .tier-v2__price { color: #FFFFFF; }
.tier-v2--yellow .tier-v2__price { color: #1A1A1A; }

.tier-v2__period { font-size: 15px; font-weight: 500; }
.tier-v2--green .tier-v2__period { color: rgba(255, 255, 255, 0.85); }
.tier-v2--yellow .tier-v2__period { color: #3A3A3A; }

.tier-v2__tagline {
  font-style: italic;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 24px;
  min-height: 44px;
}

.tier-v2--green .tier-v2__tagline { color: rgba(255, 255, 255, 0.92); }
.tier-v2--yellow .tier-v2__tagline { color: #2A2A2A; }

.tier-v2__outcome {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 24px;
}

.tier-v2--green .tier-v2__outcome { color: #FFFFFF; }
.tier-v2--yellow .tier-v2__outcome { color: #1A1A1A; }

.tier-v2__list {
  padding-left: 18px;
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  flex: 1;
}

.tier-v2__list li { margin-bottom: 6px; }
.tier-v2__list li:last-child { margin-bottom: 0; }

.tier-v2--green .tier-v2__list { color: rgba(255, 255, 255, 0.95); }
.tier-v2--yellow .tier-v2__list { color: #2A2A2A; }

.pricing-v2__custom {
  font-size: 15px;
  color: #5A5A5A;
  line-height: 1.5;
  margin: 0;
  font-style: italic;
}

/* ---- "Every plan includes" v2 - three yellow boxes ----------------------- */

.includes-v2 {
  padding: 56px 32px 64px;
  border-top: 0.5px solid #EEEEEE;
}

.includes-v2__headline {
  font-weight: 800;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 32px;
  max-width: 720px;
  color: #1A1A1A;
}

.includes-v2__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.includes-v2__item {
  background: linear-gradient(180deg, #FFE066 0%, #F5C842 100%);
  border-radius: 20px;
  padding: 28px 24px;
}

.includes-v2__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #1A1A1A;
}

.includes-v2__body {
  font-size: 14px;
  color: #2A2A2A;
  line-height: 1.5;
}

/* ---- Responsive overrides for v2 ----------------------------------------- */

@media (max-width: 768px) {
  .cards-2--yellow,
  .audiences__grid,
  .pricing-v2__grid,
  .includes-v2__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .interlude { padding: 32px 20px; }
  .interlude__text { font-size: 19px; }

  .step--green { padding: 28px 24px; }
  .step--green .step__title { font-size: 28px; }
  .step--green .step__p,
  .step--green .step__p--bold { font-size: 16px; }

  .audience { padding: 28px 24px; }
  .audience__heading { font-size: 26px; }

  .tier-v2 { padding: 28px 24px; }
  .tier-v2__price { font-size: 40px; }
  .tier-v2__tagline { min-height: 0; }

  .includes-v2 { padding: 40px 20px; }
  .includes-v2__headline { font-size: 30px; }

  .steps--green,
  .audiences,
  .pricing-v2 { padding-left: 20px; padding-right: 20px; }
}

@media (max-width: 420px) {
  .interlude__text { font-size: 17px; }
  .step--green .step__title { font-size: 24px; }
  .audience__heading { font-size: 24px; }
  .tier-v2__price { font-size: 36px; }
  .includes-v2__headline { font-size: 26px; }
}

/* ==========================================================================
   v3 -- May 2026 page updates
   (Day One Build, marker highlights, updated tiers, other stuff,
   fine print, yellow interlude, green service cards, CTA dark)
   ========================================================================== */

/* ---- Marker highlight on dark backgrounds -------------------------------- */

.hl--marker {
  background: rgba(255, 224, 102, 0.35);
  color: #FFFFFF;
  padding: 2px 6px;
  border-radius: 4px;
  display: inline;
  line-height: 1.65;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  font-weight: 700;
}

/* ---- Updated tier name sizing -------------------------------------------- */

.tier-v2__name--lg {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  line-height: 1;
}

.tier-v2--green .tier-v2__name--lg { color: #FFE066; }
.tier-v2--yellow .tier-v2__name--lg { color: #3d7530; }

/* ---- Updated tier list sizing -------------------------------------------- */

.tier-v2__list--lg {
  padding-left: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  flex: 1;
  list-style: none;
}

.tier-v2__list--lg li { margin-bottom: 14px; }
.tier-v2__list--lg li:last-child { margin-bottom: 0; }
.tier-v2--green .tier-v2__list--lg { color: rgba(255, 255, 255, 0.95); }
.tier-v2--yellow .tier-v2__list--lg { color: #1A1A1A; }

/* ---- Tier includes line -------------------------------------------------- */

.tier-v2__includes {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  padding-bottom: 14px;
}

.tier-v2--green .tier-v2__includes {
  color: rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.tier-v2--yellow .tier-v2__includes {
  color: #5a7a3a;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* ---- Day One Build card -------------------------------------------------- */

.day-one { padding: 32px 32px 48px; }

.day-one__card {
  background: linear-gradient(180deg, #4A8B3A 0%, #3d7530 100%);
  border-radius: 24px;
  padding: 36px 40px;
  color: white;
}

.day-one__name {
  font-size: 40px;
  font-weight: 800;
  color: #FFE066;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  line-height: 1;
}

.day-one__price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
}

.day-one__price {
  font-size: 48px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.03em;
  line-height: 1;
}

.day-one__period {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.day-one__subtitle {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.65);
  padding-bottom: 14px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.day-one__list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: d1;
}

.day-one__list li {
  counter-increment: d1;
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
}

.day-one__list li:last-child { margin-bottom: 0; }

.day-one__list li::before {
  content: counter(d1);
  font-weight: 800;
  font-size: 13px;
  color: #FFE066;
  min-width: 20px;
  text-align: right;
  flex-shrink: 0;
}

/* ---- Other Stuff section ------------------------------------------------- */

.other-stuff { padding: 56px 32px 64px; border-top: 0.5px solid #EEEEEE; }

.other-stuff__headline {
  font-weight: 800;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 32px;
  color: #1A1A1A;
}

.other-stuff__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.other-stuff__item {
  background: #FFFFFF;
  border: 1.5px solid #EEEEEE;
  border-radius: 20px;
  padding: 24px;
}

.other-stuff__name {
  font-size: 17px;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 6px;
}

.other-stuff__detail {
  font-size: 15px;
  color: #3A3A3A;
  line-height: 1.5;
  margin: 0;
}

/* ---- Fine print section -------------------------------------------------- */

.fine-print { padding: 56px 32px 64px; border-top: 0.5px solid #EEEEEE; }

.fine-print__headline {
  font-weight: 800;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 36px;
  color: #1A1A1A;
}

.fine-print__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.fine-print__item {
  background: linear-gradient(180deg, #FFE066 0%, #F5C842 100%);
  border-radius: 20px;
  padding: 28px 24px;
}

.fine-print__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #1A1A1A;
}

.fine-print__body {
  font-size: 14px;
  color: #2A2A2A;
  line-height: 1.5;
  margin: 0;
}

/* ---- CTA dark section ---------------------------------------------------- */

.cta-dark__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---- Yellow interlude band ----------------------------------------------- */

.interlude-yellow {
  background: linear-gradient(180deg, #FFE066 0%, #F5C842 100%);
  color: #1A1A1A;
  padding: 48px 32px;
}

.interlude-yellow__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.interlude-yellow__text {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin: 0;
  max-width: 760px;
}

.interlude-yellow__text strong {
  font-weight: 800;
  display: block;
  margin-top: 12px;
}

/* ---- Green service cards (/what-we-do v3) -------------------------------- */

.services-green { padding: 32px 32px 64px; }

.services-green__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.service-green {
  background: linear-gradient(180deg, #4A8B3A 0%, #3d7530 100%);
  border-radius: 24px;
  padding: 32px 28px;
  color: white;
}

.service-green__title {
  font-size: 22px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.02em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.service-green__body {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.55;
  margin: 0;
}

/* ---- Closing line -------------------------------------------------------- */

.closing { padding: 0 32px 64px; }

.closing__text {
  font-size: 20px;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.5;
  max-width: 580px;
}

/* ---- v3 responsive overrides --------------------------------------------- */

@media (max-width: 768px) {
  .day-one { padding: 20px 20px 32px; }
  .day-one__card { padding: 28px 24px; }
  .day-one__name { font-size: 32px; }
  .day-one__price { font-size: 40px; }

  .tier-v2__name--lg { font-size: 32px; }

  .other-stuff { padding: 40px 20px; }
  .other-stuff__headline { font-size: 30px; }
  .other-stuff__grid { grid-template-columns: 1fr; }

  .fine-print { padding: 40px 20px; }
  .fine-print__headline { font-size: 30px; }
  .fine-print__grid { grid-template-columns: 1fr; }

  .interlude-yellow { padding: 32px 20px; }
  .interlude-yellow__text { font-size: 19px; }

  .services-green { padding: 20px 20px 48px; }
  .services-green__grid { grid-template-columns: 1fr; }
  .service-green { padding: 28px 24px; }
  .service-green__body { font-size: 16px; }

  .closing { padding: 0 20px 48px; }
}

@media (max-width: 420px) {
  .day-one__name { font-size: 28px; }
  .day-one__price { font-size: 36px; }
  .tier-v2__name--lg { font-size: 28px; }
  .other-stuff__headline { font-size: 26px; }
  .fine-print__headline { font-size: 26px; }
  .interlude-yellow__text { font-size: 17px; }
}

/* ============================================================
   CONTACT FORM (replaces "Email us" in dark CTA)
   ============================================================ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  width: 100%;
}
.contact-form__row {
  display: flex;
  gap: 12px;
}
.contact-form__row > * {
  flex: 1;
}
.contact-form__input {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  padding: 12px 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  outline: none;
  transition: border-color 0.15s ease;
  width: 100%;
}
.contact-form__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.contact-form__input:focus {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
}
.contact-form__textarea {
  resize: vertical;
  min-height: 80px;
}
.contact-form__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
}
.contact-form__submit {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 28px;
  border: 2px solid #FFFFFF;
  border-radius: 999px;
  background: #FFFFFF;
  color: #1A1A1A;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.contact-form__submit:hover {
  background: transparent;
  color: #FFFFFF;
}
.contact-form__success {
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 500;
  display: none;
}
.contact-form__success.is-visible {
  display: block;
}
/* Add-on jump link */
.addon-link {
  text-align: center;
  margin: 32px 0 0;
  font-size: 15px;
}
.addon-link a {
  color: #4A8B3A;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.addon-link a:hover {
  color: #3a7030;
}
@media (max-width: 600px) {
  .contact-form__row { flex-direction: column; }
  .contact-form__actions { flex-direction: column; }
}

/* ==========================================================================
   Blog + article  (added for /blog/)
   All selectors namespaced so existing pages are untouched.
   ========================================================================== */

/* ---- Blog listing ---------------------------------------------------- */
.blog-wrap { padding: 64px 32px 80px; }
.blog-head { max-width: 760px; margin: 0 auto 44px; }
.blog-head__title { font-weight: 800; font-size: clamp(40px, 6vw, 68px); line-height: 1.02; letter-spacing: -0.03em; color: #1A1A1A; margin: 14px 0 16px; }
.blog-head__sub { font-size: 19px; line-height: 1.55; color: #3A3A3A; margin: 0; max-width: 600px; }
.blog-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 22px; }
.blog-card { display: block; text-decoration: none; color: inherit; background: #FFFFFF; border: 1px solid #ECECEC; border-radius: 16px; padding: 28px 30px; transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.blog-card:hover { border-color: #4A8B3A; box-shadow: 0 12px 30px rgba(0,0,0,.07); transform: translateY(-2px); }
.blog-card__meta { font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #4A8B3A; margin: 0 0 10px; }
.blog-card__title { font-weight: 800; font-size: 27px; line-height: 1.14; letter-spacing: -.02em; color: #1A1A1A; margin: 0 0 10px; }
.blog-card__dek { font-size: 17px; line-height: 1.5; color: #3A3A3A; margin: 0 0 14px; }
.blog-card__more { font-size: 15px; font-weight: 700; color: #4A8B3A; }

/* ---- Article shell --------------------------------------------------- */
.post-wrap { padding: 52px 32px 80px; }
.post { max-width: 720px; margin: 0 auto; }
.post-back { display: inline-block; font-size: 14px; font-weight: 600; color: #7A7A7A; text-decoration: none; margin: 0 0 24px; }
.post-back:hover { color: #4A8B3A; }
.post__eyebrow { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #4A8B3A; margin: 0 0 14px; }
.post__title { font-weight: 800; font-size: clamp(34px, 5.2vw, 56px); line-height: 1.04; letter-spacing: -.03em; color: #1A1A1A; margin: 0 0 18px; }
.post__meta { font-size: 15px; color: #6A6A6A; margin: 0; padding: 0 0 28px; border-bottom: 1px solid #EDEDED; }
.post__meta strong { color: #1A1A1A; font-weight: 600; }

/* ---- Article body ---------------------------------------------------- */
.post-body { padding-top: 34px; }
.post-body p { font-size: 18px; line-height: 1.72; color: #2A2A2A; margin: 0 0 22px; }
.post-body a { color: #1A1A1A; text-decoration: underline; text-decoration-color: #4A8B3A; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.post-body a:hover { color: #4A8B3A; }
.post-body strong { font-weight: 700; color: #1A1A1A; }

/* ---- Decay-curve figure ---------------------------------------------- */
.lrt-fig { margin: 38px 0; background: #FFFFFF; border: 1px solid #ECECEC; border-radius: 18px; padding: 26px 26px 22px; box-shadow: 0 10px 30px rgba(0,0,0,.05); }
.lrt-fig__title { font-weight: 800; font-size: 21px; line-height: 1.25; letter-spacing: -.01em; color: #1A1A1A; margin: 0 0 16px; }
.lrt-fig__svg { width: 100%; height: auto; display: block; }
.lrt-fig .lrt-fig__cap { font-size: 13px; line-height: 1.45; color: #8A8A8A; margin: 14px 0 0; }

/* ---- Money-math figure (bold, native) ------------------------------- */
.lrt-money { margin: 38px 0; background: #FFFFFF; border: 1px solid #ECECEC; border-radius: 20px; overflow: hidden; box-shadow: 0 14px 40px rgba(0,0,0,.10); }
.lrt-money .lrt-money__head { padding: 26px 28px 2px; }
.lrt-money .lrt-money__eyebrow { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #4A8B3A; margin: 0 0 6px; }
.lrt-money .lrt-money__title { font-weight: 800; font-size: 23px; line-height: 1.2; letter-spacing: -.01em; color: #1A1A1A; margin: 0; }
.lrt-money .lrt-money__gap { display: flex; align-items: center; justify-content: center; gap: 24px; padding: 24px 28px 4px; }
.lrt-money .lrt-money__num { text-align: center; }
.lrt-money .lrt-money__numval { font-weight: 800; font-size: clamp(48px, 12vw, 70px); line-height: 1; letter-spacing: -.03em; }
.lrt-money .lrt-money__num--now .lrt-money__numval { color: #CFCFCF; }
.lrt-money .lrt-money__num--goal .lrt-money__numval { color: #4A8B3A; }
.lrt-money .lrt-money__numlab { font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #9A9A9A; margin-top: 8px; }
.lrt-money .lrt-money__arrow { font-size: 36px; line-height: 1; color: #D0D0D0; }
.lrt-money .lrt-money__cap { text-align: center; font-size: 16px; line-height: 1.5; color: #3A3A3A; margin: 0; padding: 6px 28px 26px; }
.lrt-money .lrt-money__payoff { background: linear-gradient(180deg, #4A8B3A 0%, #3d7530 100%); color: #FFFFFF; padding: 30px 28px 32px; text-align: center; }
.lrt-money .lrt-money__lead { font-size: 15px; font-weight: 600; letter-spacing: .01em; color: rgba(255,255,255,.9); margin: 0 0 8px; }
.lrt-money .lrt-money__big { font-weight: 800; font-size: clamp(52px, 14vw, 86px); line-height: .92; letter-spacing: -.035em; color: #FFE066; margin: 0; }
.lrt-money .lrt-money__sub { font-size: 15px; line-height: 1.45; color: rgba(255,255,255,.92); margin: 8px 0 0; }
.lrt-money .lrt-money__foot { font-size: 12.5px; line-height: 1.45; color: #9A9A9A; margin: 0; padding: 14px 28px 18px; text-align: center; }

/* ---- End-of-post CTA ------------------------------------------------- */
.post-cta { margin: 46px 0 0; background: #1A1A1A; border-radius: 18px; padding: 38px 32px; text-align: center; }
.post-cta__h { font-weight: 800; font-size: 24px; line-height: 1.2; color: #FFFFFF; margin: 0 0 10px; }
.post-cta__p { font-size: 16px; line-height: 1.55; color: rgba(255,255,255,.82); margin: 0 auto 22px; max-width: 460px; }
.post-cta__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 640px) {
  .blog-wrap { padding: 46px 22px 60px; }
  .post-wrap { padding: 38px 22px 60px; }
  .post-body p { font-size: 17px; }
  .lrt-money__gap { gap: 16px; }
  .lrt-money__cap { font-size: 15px; }
}

/* ---- Post title caps variant + lead photo (polaroid) ---------------- */
.post__title--caps { text-transform: uppercase; letter-spacing: -0.005em; }
.post-polaroid { display: block; max-width: 480px; margin: 32px auto 34px; background: #FFFFFF; padding: 14px 14px 0; border-radius: 4px; box-shadow: 0 16px 44px rgba(0,0,0,.16); transform: rotate(-1.4deg); }
.post-polaroid img { width: 100%; height: auto; display: block; border-radius: 2px; }
.post-polaroid figcaption { font-family: 'Permanent Marker', cursive; text-align: center; padding: 14px 8px 18px; font-size: 22px; line-height: 1.1; color: #1A1A1A; }
@media (max-width: 640px) {
  .post-polaroid { max-width: 100%; transform: rotate(-1deg); margin: 26px auto 28px; }
}
