/* ABOUT SECTION */
.about-section {
  background: linear-gradient(120deg, #f8fafc 60%, #e0e7ef 100%);
  padding: 4rem 0 3rem 0;
  border-radius: 0;
  margin: 0;
  box-shadow: 0 4px 24px 0 rgba(60, 60, 90, 0.07);
}
.about-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 2.5rem;
  max-width: 820px;
  margin: 0 auto;
}

.about-photo {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.about-photo img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 2px 16px 0 rgba(60, 60, 90, 0.13);
  background: #fff;
}

.about-photo-name {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #214f67;
  text-align: center;
}

@media (max-width: 900px) {
  .about-container {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 1.5rem;
    padding: 0 1rem;
    max-width: 98vw;
  }

  .about-content {
    display: contents;
  }

  .about-content h2 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    text-align: center;
    order: -1;
  }

  .about-photo {
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    order: 0;
    justify-self: center;
  }

  .about-photo img {
    width: 120px;
    height: 120px;
  }

  .about-photo-name {
    text-align: center;
  }

  .about-content p,
  .about-content ul,
  .about-content .about-logos,
  .about-content .about-links {
    text-align: left;
    order: 1;
  }

  .about-content .about-links {
    justify-content: flex-start;
  }
}

.about-list {
  list-style: disc inside;
  color: #3d4e7a;
  margin-bottom: 1em;
  padding-left: 0.5em;
}
.about-list li {
  margin-bottom: 0.3em;
}
.about-desc {
  color: #3d4e7a;
  font-size: 1.1rem;
  margin-bottom: 1.2em;
}
.about-links {
  display: flex;
  gap: 1.2em;
  flex-wrap: wrap;
}
.about-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.1rem;
}
.about-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.38rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(9, 160, 227, 0.26);
  background: rgba(255, 255, 255, 0.72);
  color: #1f5573;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.about-link {
  display: inline-block;
  background: #3d4e7a;
  color: #fff;
  padding: 0.6em 1.2em;
  border-radius: 2em;
  font-weight: 500;
  text-decoration: none;
  font-size: 1.05rem;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px 0 rgba(60, 60, 90, 0.08);
}
.about-link:hover {
  background: #5a6b8c;
  color: #fff;
}

@media (max-width: 700px) {
  .about-container {
    padding: 0 0.9rem;
  }

  .about-photo {
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }

  .about-photo img {
    width: 120px;
    height: 120px;
  }

  .about-content .about-links {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .about-link {
    text-align: center;
  }

  .offer-cta {
    display: block;
    width: 100%;
    text-align: center;
  }
}

@media (max-height: 860px) and (min-width: 701px) {
  .story-visual-core {
    --caption-space: 13.5rem;
    gap: 0.45rem;
  }
}
:root {
  --bg: #f8faf8;
  --text: #1f4f62;
  --accent: #0f7db8;
  --card: #ffffff;
  --border: rgba(9, 160, 227, 0.22);
  --panel-glow: rgba(33, 149, 255, 0.28);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 20% 10%, #e7f3e7 0%, #f8faf8 45%, #edf4ec 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.6;
}

.container {
  width: min(960px, 92vw);
  margin: 0 auto;
}

.hero {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 3rem 0 2rem;
  text-align: center;
  color: #1f4f62;
}

.hero .container {
  width: min(1080px, 92vw);
}

.hero-logo {
  width: clamp(120px, 16vw, 200px);
  height: auto;
  margin: 0 auto 1rem;
  display: block;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0f7db8;
  font-weight: 700;
  margin: 0 0 0.85rem;
}

h1 {
  margin: 0 0 0.3rem;
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 20ch;
  margin-inline: auto;
  color: #11415e;
}

.hero-baseline {
  margin: 0 auto 1.2rem;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 500;
  color: #0f7db8;
  letter-spacing: 0.01em;
}

.lead {
  margin: 0 auto 1.15rem;
  max-width: 76ch;
  font-size: clamp(1.1rem, 2.3vw, 1.34rem);
  color: #24546d;
}

.lead-spotlight {
  max-width: min(820px, 100%);
  margin: 0 auto 1.4rem;
  text-align: center;
  padding: 0;
}

.lead-spotlight-targets {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem 0.7rem;
  margin: 0 0 0.55rem;
  font-size: clamp(1.22rem, 2.6vw, 1.6rem);
  font-weight: 700;
  line-height: 1.25;
  color: #0f4e78;
}

.lead-spotlight-targets span {
  position: relative;
}

.lead-spotlight-targets span:not(.lead-spotlight-sep)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.12em;
  height: 2px;
  background: #2cb478;
  border-radius: 2px;
}

.lead-spotlight-sep {
  font-size: 0.78em;
  font-weight: 400;
  color: #7aadcc;
  letter-spacing: 0.05em;
  text-transform: lowercase;
}

.lead-spotlight-geo {
  margin: 0 0 0.5rem;
  font-size: clamp(0.78rem, 1.3vw, 0.88rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7aadcc;
}

.lead-spotlight-stake {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: #3a7090;
  line-height: 1.55;
}

@media (max-width: 700px) {
  .lead-spotlight-targets {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
}

.hero-offers-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  width: min(820px, 100%);
  margin: 0 auto 1.8rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(9, 160, 227, 0.14);
}

.hero-offer-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 1rem 0.85rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(9, 160, 227, 0.18);
  background: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, background 0.2s, transform 0.18s;
  text-align: center;
}

.hero-offer-card:hover {
  border-color: rgba(44, 180, 120, 0.45);
  background: rgba(255, 255, 255, 0.82);
  transform: translateY(-2px);
}

.hero-offer-emoji {
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.15rem;
}

.hero-offer-name {
  font-size: clamp(0.82rem, 1.3vw, 0.93rem);
  font-weight: 700;
  color: #0f4e78;
  line-height: 1.25;
}

.hero-offer-card ul {
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.hero-offer-card ul li {
  font-size: clamp(0.74rem, 1.1vw, 0.82rem);
  color: #5a8fa8;
  line-height: 1.3;
}

@media (max-width: 600px) {
  .hero-offers-nav {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .hero-offer-card {
    flex-direction: row;
    text-align: left;
    padding: 0.75rem 1rem;
    gap: 0.75rem;
  }

  .hero-offer-emoji {
    font-size: 1.35rem;
    margin-bottom: 0;
  }

  .hero-offer-card ul {
    flex-direction: row-reverse;
    flex-wrap: wrap;
    gap: 0.1rem 0.5rem;
  }
}

.hero strong {
  color: #0f4e78;
}

.hero-promise {
  max-width: 68ch;
  margin: 0 auto 0;
  color: #3a7090;
  font-size: clamp(0.95rem, 1.5vw, 1.06rem);
  line-height: 1.6;
}

.hero-signature {
  max-width: 60ch;
  margin: 2rem auto 0;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: #0f4f7b;
  letter-spacing: 0.005em;
  padding-top: 1.4rem;
  border-top: 2px solid rgba(44, 180, 120, 0.25);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.1rem 1.2rem;
}

.hero-signature strong {
  color: #0f4f7b;
  font-weight: 800;
  white-space: nowrap;
}

.hero-scroll-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: clamp(1.8rem, 4.5vh, 3rem);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(9, 160, 227, 0.35);
  background: rgba(255, 255, 255, 0.7);
  color: #0f5f8f;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.96rem;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.hero-scroll-cta:hover {
  transform: translateY(1px);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(9, 160, 227, 0.58);
}

.hero-scroll-cta span {
  display: inline-block;
  animation: hero-scroll-bounce 1.25s ease-in-out infinite;
}

@media (max-width: 700px) {
  .hero-scroll-cta {
    display: none;
  }
}

@keyframes hero-scroll-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

.story {
  position: relative;
  width: 100%;
  max-width: 100vw;
  margin-top: 1rem;
  background: linear-gradient(105deg, #eaf4ed 0%, #f1f8f3 34%, #f8fbf8 64%, #ffffff 100%);
  isolation: isolate;
  overflow: visible;
  overflow-x: clip;
}

.story::before,
.story::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.story::before {
  background-image:
    radial-gradient(circle at 20% 24%, rgba(54, 150, 102, 0.24) 0 2.4px, transparent 3.5px),
    radial-gradient(circle at 42% 64%, rgba(90, 176, 132, 0.22) 0 2.2px, transparent 3.3px),
    radial-gradient(circle at 68% 32%, rgba(54, 150, 102, 0.2) 0 2.4px, transparent 3.5px),
    radial-gradient(circle at 84% 76%, rgba(90, 176, 132, 0.2) 0 2px, transparent 3.1px),
    radial-gradient(circle at 8% 78%, rgba(90, 176, 132, 0.18) 0 1.9px, transparent 3px);
  background-size: 280px 220px, 260px 240px, 300px 240px, 260px 220px, 240px 220px;
  background-repeat: repeat;
  mix-blend-mode: normal;
  opacity: 0.56;
  will-change: transform;
  animation: story-particles-float-a 22s ease-in-out infinite;
}

.story::after {
  background-image:
    radial-gradient(circle at 14% 58%, rgba(120, 204, 164, 0.18) 0 1.6px, transparent 2.6px),
    radial-gradient(circle at 36% 16%, rgba(84, 167, 126, 0.16) 0 1.6px, transparent 2.5px),
    radial-gradient(circle at 58% 82%, rgba(120, 204, 164, 0.16) 0 1.7px, transparent 2.7px),
    radial-gradient(circle at 74% 22%, rgba(84, 167, 126, 0.16) 0 1.6px, transparent 2.5px),
    radial-gradient(circle at 88% 52%, rgba(120, 204, 164, 0.15) 0 1.6px, transparent 2.5px);
  background-size: 220px 210px, 240px 220px, 260px 220px, 220px 210px, 240px 220px;
  background-repeat: repeat;
  mix-blend-mode: normal;
  opacity: 0.44;
  will-change: transform;
  animation: story-particles-float-b 31s ease-in-out infinite;
}

.story > * {
  position: relative;
  z-index: 1;
}

@keyframes story-particles-float-a {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  25% {
    transform: translate3d(6px, -8px, 0) scale(1.01);
  }
  50% {
    transform: translate3d(-4px, -14px, 0) scale(0.995);
  }
  75% {
    transform: translate3d(5px, -7px, 0) scale(1.008);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes story-particles-float-b {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  20% {
    transform: translate3d(-5px, -6px, 0) scale(0.996);
  }
  45% {
    transform: translate3d(7px, -11px, 0) scale(1.01);
  }
  70% {
    transform: translate3d(-3px, -9px, 0) scale(0.998);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.story-grid {
  width: min(1200px, 96vw);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: clamp(2.2rem, 4vw, 5.2rem);
  align-items: flex-start;
  padding: clamp(1.2rem, 2.8vw, 2.2rem) clamp(1rem, 2.6vw, 2rem);
  overflow-x: hidden;
  position: relative;
  z-index: 0;
}

.story-visual {
  position: sticky;
  top: 2.2rem;
  /* align-self removed to let sticky work in grid */
  /* min-height removed to allow sticky to work */
  width: clamp(240px, 32vw, 400px);
  min-width: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 2;
  flex: 0 0 clamp(240px, 32vw, 400px);
  justify-self: start;
  /* background and box-shadow removed for transparency */
}

.story-flow {
  flex: 1 1 auto;
  z-index: 1;
  position: relative;
  overflow: visible;
  min-width: 0;
}

.visual-panel {
  width: 100%;
  min-height: min(82vh, 760px);
  padding: 0.7rem 0.6rem 5.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: visible;
}

.ambient-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.ambient-particles span {
  position: absolute;
  left: var(--x);
  bottom: 10%;
  width: var(--size);
  height: var(--size);
  border-radius: 999px;
  background: rgba(77, 206, 255, 0.78);
  box-shadow: 0 0 12px rgba(33, 149, 255, 0.52);
  opacity: 0;
  animation: float-particle var(--duration) ease-in-out var(--delay) infinite;
}

.ambient-particles span:nth-child(odd) {
  background: rgba(122, 233, 255, 0.75);
  box-shadow: 0 0 12px rgba(45, 224, 255, 0.5);
}


.tree-animation {
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  margin: 0.5rem auto;
  filter: drop-shadow(0 20px 26px rgba(8, 19, 12, 0.5));
  position: relative;
  z-index: 2;
  overflow: visible;
}

.tree-visual svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 340px;
  max-height: 90vh;
  object-fit: contain;
  margin: 0 auto;
}

.tree-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes float-particle {
  0% {
    transform: translate3d(0, 0, 0) scale(0.7);
    opacity: 0;
  }

  12% {
    opacity: 0.55;
  }

  70% {
    opacity: 0.35;
  }

  100% {
    transform: translate3d(14px, -220px, 0) scale(1.1);
    opacity: 0;
  }
}

.tree-svg {
  width: 100%;
  height: auto;
}

#small-tree,
#mid-tree,
#big-tree {
  opacity: 0;
  transition: opacity 0.68s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity;
}

#grass-heap {
  opacity: 0.92;
  transform-box: fill-box;
  transform-origin: center;
  filter: saturate(1.15) brightness(1.03) contrast(1.04);
  transition: none;
  animation: none;
  will-change: auto;
}

.tree-visual,
.story-flow-core {
  overflow-anchor: none;
}

.tree-visual[data-stage="seedling"] #small-tree,
.tree-visual[data-stage="shrub"] #mid-tree,
.tree-visual[data-stage="tree"] #big-tree {
  opacity: 1;
}

/* ── Visual caption (stage-specific text under animation) ── */
.visual-caption {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.4s ease;
  pointer-events: none;
  text-align: left;
  padding: 0.9rem 1.1rem;
  margin-top: 0.8rem;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(9, 160, 227, 0.18);
  border-radius: 10px;
  backdrop-filter: blur(4px);
  width: 100%;
  max-width: 420px;
  color: #0f4e78;
  z-index: 3;
  position: relative;
}

.visual-panel {
  position: relative;
}
.visual-caption {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0) translateY(10px);
  width: 100%;
  max-width: 420px;
  z-index: 3;
  margin-top: 0;
}

.tree-visual[data-stage="seedling"] ~ .visual-caption--seedling,
.tree-visual[data-stage="shrub"] ~ .visual-caption--shrub,
.tree-visual[data-stage="tree"] ~ .visual-caption--tree {
  opacity: 1;
  transform: translate(-50%, 0) translateY(0);
  pointer-events: auto;
}

.visual-caption-title {
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  font-weight: 700;
  color: #0f7db8;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.visual-caption p {
  margin: 0 0 0.4rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #24546d;
}

.visual-caption ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
}

.visual-caption ul li {
  font-size: 0.88rem;
  color: #1b4f6a;
  padding-left: 0.1rem;
}

.visual-caption ul li::before {
  content: "▸ ";
  color: #0f7db8;
  font-size: 0.8em;
}

.visual-caption-conclusion {
  font-size: 0.88rem !important;
  font-style: italic;
  color: #2a6e8a !important;
  border-top: 1px solid rgba(9, 160, 227, 0.15);
  padding-top: 0.45rem;
  margin-top: 0.1rem !important;
}

.story-flow {
  position: relative;
  z-index: 1;
}

.offer {
  min-height: 90vh;
  display: flex;
  align-items: flex-start;
  padding: 2rem 0;
  justify-content: flex-start;
}


.offer-card {
  width: min(650px, 100%);
  border-radius: 0;
  padding: clamp(1rem, 2.2vw, 1.5rem) 0;
  opacity: 0.72;
  transform: translateY(22px) scale(0.97);
  transition: opacity 0.3s ease, transform 0.3s ease;
  color: #24546d;
  background: none;
  border: none;
  box-shadow: none;
}

.offer.is-active .offer-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.offer-card h2 {
  margin-top: 0;
  font-size: clamp(1.55rem, 3.4vw, 2.15rem);
  font-weight: 700;
  line-height: 1.2;
  color: #11415e;
  letter-spacing: -0.01em;
}

.offer-card h2 em {
  font-style: normal;
  color: #0f7db8;
}

.offer-card p {
  font-size: clamp(1rem, 1.7vw, 1.14rem);
  line-height: 1.65;
  color: #26546a;
  margin: 0.6rem 0 0;
}

.offer-card strong {
  color: #0f4e78;
  font-weight: 650;
}

/* ── Offer 1 rich layout ─────────────────────────────── */
.offer-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #0f7db8;
  background: rgba(9, 160, 227, 0.1);
  border: 1px solid rgba(9, 160, 227, 0.3);
  border-radius: 999px;
  padding: 0.22em 0.9em;
  margin-bottom: 0.75rem;
}

.offer-tagline {
  font-size: clamp(0.95rem, 1.5vw, 1.06rem) !important;
  color: #2a7a9a !important;
  font-style: italic;
  margin-top: 0.1rem !important;
  margin-bottom: 0.85rem !important;
}

.offer-problem {
  --problem-accent-a: #0f7db8;
  --problem-accent-b: #2cb478;
  --problem-accent-soft: rgba(9, 160, 227, 0.18);
  --problem-chip-soft: rgba(44, 180, 120, 0.2);
  --problem-chip-border: rgba(44, 180, 120, 0.45);
  --problem-summary: #5f8ea8;
  margin-bottom: 1.1rem !important;
  padding: 0.85rem 0.95rem 0.95rem;
  border-radius: 12px;
  border: 1px solid var(--problem-accent-soft);
  background:
    linear-gradient(180deg, var(--problem-accent-a) 0%, var(--problem-accent-b) 100%) left top / 3px 100% no-repeat,
    radial-gradient(circle at 85% 8%, rgba(44, 180, 120, 0.12), transparent 38%),
    linear-gradient(110deg, rgba(9, 160, 227, 0.045), rgba(255, 255, 255, 0.92));
  position: relative;
}

.offer--seedling .offer-problem {
  --problem-accent-a: #2cb478;
  --problem-accent-b: #65b95f;
  --problem-accent-soft: rgba(44, 180, 120, 0.22);
  --problem-chip-soft: rgba(44, 180, 120, 0.17);
  --problem-chip-border: rgba(44, 180, 120, 0.4);
  --problem-summary: #4a8f6d;
}

.offer--shrub .offer-problem {
  --problem-accent-a: #2cb478;
  --problem-accent-b: #0f7db8;
  --problem-accent-soft: rgba(15, 125, 184, 0.22);
  --problem-chip-soft: rgba(15, 125, 184, 0.14);
  --problem-chip-border: rgba(15, 125, 184, 0.36);
  --problem-summary: #4f86a8;
}

.offer--tree .offer-problem {
  --problem-accent-a: #1f5f87;
  --problem-accent-b: #0f7db8;
  --problem-accent-soft: rgba(31, 95, 135, 0.24);
  --problem-chip-soft: rgba(31, 95, 135, 0.14);
  --problem-chip-border: rgba(31, 95, 135, 0.35);
  --problem-summary: #5e7f95;
}

.offer-problem-kicker {
  margin: 0;
  padding-left: 0.6rem;
  font-size: 0.7rem !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #6f9cb2;
}

.offer-problem-intro {
  margin: 0.22rem 0 0;
  padding-left: 0.6rem;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: #2f657d;
  line-height: 1.6;
}

.offer-problem-list {
  list-style: none;
  margin: 0.36rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  counter-reset: problem-signal;
}

.offer-problem-list--core {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.offer-problem-list li {
  position: relative;
  padding: 0.52rem 0.7rem 0.52rem 2.35rem;
  font-size: clamp(0.93rem, 1.42vw, 1rem);
  line-height: 1.48;
  color: #25556d;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid color-mix(in srgb, var(--problem-accent-a) 20%, white);
  border-radius: 9px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.offer-problem-list--core li:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--problem-accent-b) 55%, white);
  background: rgba(255, 255, 255, 0.95);
}

.offer-problem-list li::before {
  content: counter(problem-signal);
  counter-increment: problem-signal;
  position: absolute;
  left: 0.58rem;
  top: 0.48rem;
  width: 1.28rem;
  height: 1.28rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--problem-accent-a);
  background: var(--problem-chip-soft);
  border: 1px solid var(--problem-chip-border);
}

.offer-problem-details {
  margin-top: 0.38rem;
  padding-left: 0.62rem;
}

.offer-problem-details summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--problem-summary);
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  line-height: 1.2;
}

.offer-problem-details summary::-webkit-details-marker {
  display: none;
}

.offer-problem-details summary::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  font-size: 0.78rem;
  line-height: 1;
  color: var(--problem-accent-a);
  background: color-mix(in srgb, var(--problem-accent-a) 10%, white);
}

.offer-problem-details[open] summary::after {
  content: "−";
}

.offer-problem-list--extra {
  margin-top: 0.32rem;
  gap: 0.32rem;
}

.offer-problem-list--extra li {
  padding: 0.44rem 0.64rem 0.44rem 1.72rem;
  background: rgba(255, 255, 255, 0.62);
  border-color: color-mix(in srgb, var(--problem-accent-a) 16%, white);
}

.offer-problem-list--extra li::before {
  content: "+";
  counter-increment: none;
  width: auto;
  height: auto;
  left: 0.58rem;
  top: 0.5rem;
  border: none;
  background: transparent;
  color: var(--problem-accent-a);
  font-size: 0.9rem;
  font-weight: 700;
}

.offer-problem-outro {
  margin: 0.4rem 0 0;
  padding: 0.6rem 0.72rem 0.2rem;
  border-top: 1px dashed color-mix(in srgb, var(--problem-accent-b) 45%, white);
  font-size: clamp(0.94rem, 1.48vw, 1.03rem);
  line-height: 1.58;
  color: #2f657d;
}

.offer-problem-outro strong {
  color: #0f4f7b;
}

@media (max-width: 700px) {
  .offer-problem {
    padding: 0.75rem 0.82rem 0.82rem;
  }

  .offer-problem-details {
    margin-top: 0.28rem;
    padding-left: 0.56rem;
  }

  .offer-problem-details summary {
    font-size: 0.74rem;
  }

  .offer-problem-list--core {
    grid-template-columns: 1fr;
  }

  .offer-problem-list li {
    padding: 0.48rem 0.62rem 0.48rem 2.05rem;
  }

  .offer-problem-list li::before {
    left: 0.5rem;
    top: 0.42rem;
    width: 1.14rem;
    height: 1.14rem;
    font-size: 0.7rem;
  }
}

.offer-section {
  margin-bottom: 1.1rem;
}

.offer-section-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0f4e78;
  margin-bottom: 0.55rem;
  opacity: 0.72;
}

.offer-personas {
  position: relative;
  min-height: 2.2em;
  height: 2.2em;
  overflow: hidden;
  padding: 0;
  margin: 0;
  list-style: none;
}
.offer-personas li {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  transform: rotateX(90deg) scale(0.98);
  transition: opacity 0.5s, transform 0.5s;
  background: linear-gradient(90deg, #e7f7ee 60%, #f2f8fc 100%);
  color: #24546d;
  border: none;
  border-radius: 8px;
  padding: 0.38em 0.85em;
  font-size: clamp(0.88rem, 1.35vw, 0.97rem);
  line-height: 1.4;
  display: inline-block;
  align-items: center;
  justify-content: flex-start;
  box-shadow: none;
}
.offer-personas li.active {
  opacity: 1;
  transform: rotateX(0deg) scale(1);
  z-index: 2;
}
@media (max-width: 700px) {
  .offer-personas {
    min-height: 4.5em;
    height: 4.5em;
  }

  .offer-personas li strong {
    display: inline;
  }
}

/* Steps stepper */
.offer-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 0.2rem;
  margin-bottom: 0.2rem;
}

.offer-step {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0 0.85rem;
  position: relative;
}

/* vertical connector line between steps */
.offer-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: calc(1rem - 1px);
  top: 2rem;
  bottom: 0;
  width: 2px;
  background: rgba(44, 180, 120, 0.22);
}

.offer-step-num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #2cb478;
  color: #0f7db8;
  font-weight: 700;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
}

.offer-step-body {
  padding: 0.15rem 0 1rem;
}

.offer-step:last-child .offer-step-body {
  padding-bottom: 0.1rem;
}

.offer-step-body strong {
  display: block;
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  color: #0f4e78;
  margin-bottom: 0.38rem;
}

.offer-step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.offer-step-tags span {
  font-size: 0.77rem;
  color: #2a6080;
  background: rgba(9, 160, 227, 0.09);
  border: 1px solid rgba(9, 160, 227, 0.22);
  border-radius: 999px;
  padding: 0.12em 0.65em;
}

/* Outcomes grid */
.offer-outcomes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.4rem;
  margin-bottom: 1.1rem;
  padding-top: 0.15rem;
}

.offer-outcome {
  padding: 0;
}

.offer-outcome-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.offer-outcome ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.offer-outcome ul li {
  font-size: 0.87rem;
  line-height: 1.4;
}

.offer-outcome--avoid .offer-outcome-title {
  color: #0a5c85;
}

.offer-outcome--avoid ul li::before {
  content: "✕ ";
  color: #0f7db8;
  font-weight: 700;
}

.offer-outcome--avoid ul li {
  color: #1b4f6a;
}

.offer-outcome--gain .offer-outcome-title {
  color: #1e8a52;
}

.offer-outcome--gain ul li::before {
  content: "✓ ";
  color: #2cb478;
  font-weight: 700;
}

.offer-outcome--gain ul li {
  color: #24546d;
}

/* Format + CTA */
.offer-format {
  font-size: 0.82rem;
  color: #5a8fa8;
  margin-bottom: 1.1rem;
  line-height: 1.5;
}

.offer-cta {
  display: inline-block;
  background: #0f7db8;
  color: #fff;
  font-weight: 700;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  text-decoration: none;
  padding: 0.72em 1.6em;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.15s ease;
  letter-spacing: 0.01em;
}

.offer-cta:hover {
  background: #0a5c85;
  transform: translateY(-1px);
}

.footer {
  padding: 2rem 0 2.5rem;
  text-align: center;
  color: #2a6080;
  font-size: 0.95rem;
}

@media (max-width: 480px) {
  .story {
    background: linear-gradient(195deg, #edf6f0 0%, #f3f9f4 34%, #f9fcf9 62%, #ffffff 100%);
  }

  .story::before,
  .story::after {
    opacity: 0.38;
  }

  .story-visual {
    background: none;
  }

  .story-grid {
    width: 96vw;
    gap: 1rem;
    padding: 0.8rem 0.4rem 1rem;
  }

  .story-visual {
    top: 0.6rem;
    max-height: 44vh;
  }

  .visual-panel {
    min-height: 45vh;
    padding: 0.4rem 0.3rem 0.7rem;
  }

  .tree-visual svg {
    max-width: 100%;
    max-height: 44vh;
  }

  .offer {
    min-height: 72vh;
    padding: 1.2rem 0 2.2rem;
  }
}

/* Final layout guardrail: enforce 2-column story on desktop */
@media (min-width: 701px) {
  main.story > .story-grid:not(.story-grid-core) {
    display: grid !important;
    grid-template-columns: minmax(260px, 400px) minmax(0, 1fr) !important;
    gap: clamp(1.4rem, 2.6vw, 3rem) !important;
    align-items: start !important;
  }

  main.story > .story-grid:not(.story-grid-core) > .story-visual {
    grid-column: 1 !important;
    width: 100% !important;
    max-width: 400px !important;
    min-width: 0 !important;
    flex: initial !important;
    position: sticky !important;
    top: 2.2rem !important;
    z-index: 2 !important;
  }

  main.story > .story-grid:not(.story-grid-core) > .story-flow {
    grid-column: 2 !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    z-index: 1 !important;
  }

  /* Force flex for -core layout */
  main.story > .story-grid-core {
    display: flex !important;
    flex-direction: row !important;
    grid-template-columns: unset !important;
    gap: clamp(1.4rem, 2.4vw, 2.6rem) !important;
  }
}

/* Core story layout (bulletproof fallback) */
.story-grid-core {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(1.4rem, 2.4vw, 2.6rem);
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 1rem;
  position: relative;
  overflow: visible;
  box-sizing: border-box;
}

.story-visual-core {
  --sticky-top: clamp(0.9rem, 2.2vh, 1.8rem);
  --caption-space: 16rem;
  position: -webkit-sticky;
  position: sticky;
  top: var(--sticky-top);
  flex: 0 0 360px;
  width: 360px;
  align-self: flex-start;
  height: calc(100dvh - var(--sticky-top));
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-block: clamp(0.6rem, 1.6vh, 1.2rem);
  gap: 0.6rem;
}

.visual-panel-core {
  width: 100%;
}

.story-visual-core .tree-visual {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  min-height: 0;
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: clamp(320px, 56vh, 620px);
}

.story-visual-core .visual-caption-stack {
  margin-top: 0;
}

.story-visual-core .tree-visual svg {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: min(66vh, max(180px, calc(100dvh - var(--sticky-top) - var(--caption-space))));
}

.story-visual-core .visual-caption-stack {
  display: grid;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.story-visual-core .visual-caption {
  grid-area: 1 / 1;
  position: relative;
  left: auto;
  bottom: auto;
  width: 100%;
  max-width: none;
  margin: 0;
  display: none;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
}

.story-visual-core .tree-visual[data-stage="seedling"] ~ .visual-caption-stack .visual-caption--seedling,
.story-visual-core .tree-visual[data-stage="shrub"] ~ .visual-caption-stack .visual-caption--shrub,
.story-visual-core .tree-visual[data-stage="tree"] ~ .visual-caption-stack .visual-caption--tree {
  display: block;
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

.story-flow-core {
  flex: 1 1 auto;
  min-width: 0;
}

.story-flow-core .offer {
  min-height: auto;
  align-items: flex-start;
  padding: 0 0 1.8rem;
}

@media (min-width: 701px) {
  .story-flow-core .offer {
    min-height: clamp(42rem, 92vh, 56rem);
    padding: 0 0 3.2rem;
  }
}

@media (max-width: 700px) {
  .story-grid-core {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 0.8rem 0.6rem 1rem;
    overflow: visible;
  }

  .story-visual-core {
    display: none;
  }

  .story-flow-core {
    flex: 1 1 100%;
    width: 100%;
    position: relative;
    z-index: auto;
    overflow: visible;
  }
}

@media (max-height: 860px) and (min-width: 701px) {
  .story-visual-core {
    --sticky-top: 1rem;
    gap: 0.45rem;
  }

  .story-visual-core .visual-caption {
    padding: 0.75rem 0.9rem;
  }
}
