.bshero[data-astro-cid-hlrivt6u] {
  background: linear-gradient(170deg, #0f2920 0%, #1a3c34 40%, #162e28 80%, #0d1f1a 100%);
  background-size: 200% 200%;
  animation: 15s infinite bgShift;
  padding: 6rem 0 4rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

@keyframes bgShift {
  0%, 100% {
    background-position: 0%;
  }

  50% {
    background-position: 100%;
  }
}

@keyframes heroFadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroClipReveal {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }

  to {
    opacity: 1;
    clip-path: inset(0);
  }
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes heroSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroScaleIn {
  from {
    opacity: 0;
    transform: scale(.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroBarGrow {
  from {
    max-width: 0;
  }

  to {
    max-width: 100%;
  }
}

@media (width >= 1024px) {
  .bshero[data-astro-cid-hlrivt6u] {
    padding: 8rem 0 5rem;
  }
}

.bshero-noise[data-astro-cid-hlrivt6u] {
  position: absolute;
  inset: 0;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 1;
}

.bshero-glow[data-astro-cid-hlrivt6u] {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(#10b9810f 0%, #0000 70%);
  pointer-events: none;
  z-index: 1;
}

.bshero-content[data-astro-cid-hlrivt6u] {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.bshero-eyebrow[data-astro-cid-hlrivt6u] {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  animation: .7s cubic-bezier(.22, 1, .36, 1) both heroFadeSlideDown;
}

.bshero-eyebrow-line[data-astro-cid-hlrivt6u] {
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--color-accent, #e1bf4e);
  opacity: .7;
}

@media (width >= 640px) {
  .bshero-eyebrow-line[data-astro-cid-hlrivt6u] {
    width: 3rem;
  }
}

.bshero-eyebrow-text[data-astro-cid-hlrivt6u] {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--color-accent, #e1bf4e);
}

.bshero-h1[data-astro-cid-hlrivt6u] {
  font-family: var(--font-heading, "DM Serif Display", serif);
  font-size: clamp(1.75rem, 5.5vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: 0 0 1.75rem;
  font-weight: 400;
  background: linear-gradient(135deg, #fff 0% 60%, #e1bf4e 80%, #fff 100%);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: .9s cubic-bezier(.22, 1, .36, 1) .2s both heroClipReveal;
}

.bshero-sub[data-astro-cid-hlrivt6u] {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  color: #ffffffbf;
  max-width: 620px;
  margin: 0 0 2.25rem;
  animation: .8s cubic-bezier(.22, 1, .36, 1) .5s both heroFadeIn;
}

.bshero-ctas[data-astro-cid-hlrivt6u] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .875rem;
  margin-bottom: 1.25rem;
  animation: .7s cubic-bezier(.22, 1, .36, 1) .7s both heroSlideUp;
}

@media (width >= 640px) {
  .bshero-ctas[data-astro-cid-hlrivt6u] {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
}

.bshero-btn-primary[data-astro-cid-hlrivt6u] {
  background: #fff;
  color: var(--color-brand, #1a3c34);
  font-weight: 600;
  box-shadow: 0 8px 30px #00000040;
  transition: all .25s;
}

.bshero-btn-primary[data-astro-cid-hlrivt6u]:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px #00000059;
  color: var(--color-brand, #1a3c34) !important;
}

.bshero-btn-primary[data-astro-cid-hlrivt6u]:focus-visible {
  outline: 2px solid #fff9;
  outline-offset: 2px;
}

.bshero-btn-secondary[data-astro-cid-hlrivt6u] {
  background: none;
  color: #ffffffd9;
  border: 1px solid #ffffff4d;
  transition: all .25s;
}

.bshero-btn-secondary[data-astro-cid-hlrivt6u]:hover {
  background: #ffffff14;
  border-color: #ffffff80;
  color: #fff !important;
}

.bshero-btn-secondary[data-astro-cid-hlrivt6u]:focus-visible {
  outline: 2px solid #fff9;
  outline-offset: 2px;
}

.bshero-microcopy[data-astro-cid-hlrivt6u] {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: .85rem;
  color: #ffffff73;
  margin: 0 0 3rem;
  max-width: 480px;
  line-height: 1.5;
}

.bshero-mockup-wrapper[data-astro-cid-hlrivt6u] {
  width: 100%;
  max-width: 520px;
  margin-bottom: 2.5rem;
  animation: .8s cubic-bezier(.22, 1, .36, 1) .9s both heroScaleIn;
}

.bshero-mockup[data-astro-cid-hlrivt6u] {
  border: 1px solid #ffffff1a;
  border-top: 2px solid #d4af3780;
  border-radius: 1rem;
  overflow: hidden;
  background: #ffffff0a;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 40px #0000004d, 0 -4px 30px #d4af370f, 0 0 60px #10b98108, inset 0 1px #ffffff0f;
  animation: 7s ease-in-out infinite bsheroFloat;
}

@keyframes bsheroFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.bshero-mockup-header[data-astro-cid-hlrivt6u] {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.25rem;
  border-bottom: 1px solid #ffffff0f;
  background: #ffffff05;
}

.bshero-mockup-dot[data-astro-cid-hlrivt6u] {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.bshero-mockup-dot--live[data-astro-cid-hlrivt6u] {
  background: var(--color-brand-light, #10b981);
  box-shadow: 0 0 8px #10b98180;
  animation: 2.5s ease-in-out infinite bsheroPulse;
}

@keyframes bsheroPulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .4;
  }
}

.bshero-mockup-label[data-astro-cid-hlrivt6u] {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: #fff6;
  text-transform: uppercase;
}

.bshero-mockup-body[data-astro-cid-hlrivt6u] {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
}

@media (width <= 480px) {
  .bshero-mockup-body[data-astro-cid-hlrivt6u] {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 1.25rem;
  }
}

.bshero-mockup-icon[data-astro-cid-hlrivt6u] {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #10b9810f;
  border: 1px solid #10b98126;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (width <= 480px) {
  .bshero-mockup-icon[data-astro-cid-hlrivt6u] {
    width: 52px;
    height: 52px;
  }
}

.bshero-mockup-svg[data-astro-cid-hlrivt6u] {
  width: 36px;
  height: 36px;
}

@media (width <= 480px) {
  .bshero-mockup-svg[data-astro-cid-hlrivt6u] {
    width: 30px;
    height: 30px;
  }
}

.bshero-mockup-metrics[data-astro-cid-hlrivt6u] {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .625rem;
  min-width: 0;
}

.bshero-mockup-metric[data-astro-cid-hlrivt6u] {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.bshero-mockup-metric-row[data-astro-cid-hlrivt6u] {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.bshero-mockup-metric-label[data-astro-cid-hlrivt6u] {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: .7rem;
  font-weight: 500;
  color: #ffffff8c;
  letter-spacing: .02em;
}

.bshero-mockup-metric-value[data-astro-cid-hlrivt6u] {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: .7rem;
  font-weight: 600;
  color: #ffffffbf;
  letter-spacing: .02em;
}

.bshero-mockup-bar[data-astro-cid-hlrivt6u] {
  width: 100%;
  height: 5px;
  border-radius: 3px;
  background: #ffffff14;
  overflow: hidden;
}

.bshero-mockup-bar-fill[data-astro-cid-hlrivt6u] {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--color-brand-light, #10b981), #10b98199);
  animation: 1s cubic-bezier(.22, 1, .36, 1) both heroBarGrow;
}

.bshero-mockup-metric[data-astro-cid-hlrivt6u]:first-child .bshero-mockup-bar-fill[data-astro-cid-hlrivt6u] {
  animation-delay: 1.2s;
}

.bshero-mockup-metric[data-astro-cid-hlrivt6u]:nth-child(2) .bshero-mockup-bar-fill[data-astro-cid-hlrivt6u] {
  animation-delay: 1.35s;
}

.bshero-mockup-metric[data-astro-cid-hlrivt6u]:nth-child(3) .bshero-mockup-bar-fill[data-astro-cid-hlrivt6u] {
  animation-delay: 1.5s;
}

.bshero-mockup-metric[data-astro-cid-hlrivt6u]:nth-child(4) .bshero-mockup-bar-fill[data-astro-cid-hlrivt6u] {
  animation-delay: 1.65s;
}

.bshero-mockup-bar-fill[data-astro-cid-hlrivt6u].bshero-bar--terracotta {
  background: linear-gradient(90deg, var(--color-terracota, #c65d3b), #c65d3b99);
}

.bshero-mockup-bar-fill[data-astro-cid-hlrivt6u].bshero-bar--gold {
  background: linear-gradient(90deg, var(--color-accent, #e1bf4e), #d4af3799);
}

.bshero-mockup-archetype[data-astro-cid-hlrivt6u] {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .375rem .625rem;
  margin-top: .125rem;
  border-top: 1px solid #ffffff0f;
  background: #d4af3714;
  border-radius: .375rem;
}

.bshero-mockup-archetype-label[data-astro-cid-hlrivt6u] {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: .6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #ffffff59;
}

.bshero-mockup-archetype-value[data-astro-cid-hlrivt6u] {
  font-family: var(--font-heading, "DM Serif Display", serif);
  font-size: .8rem;
  color: var(--color-accent, #e1bf4e);
  font-weight: 400;
}

.bshero-position[data-astro-cid-hlrivt6u] {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: .85rem;
  font-style: italic;
  color: #fff6;
  max-width: 520px;
  line-height: 1.6;
  margin: 0;
  animation: .7s cubic-bezier(.22, 1, .36, 1) 1.1s both heroFadeIn;
}

@media (width <= 480px) {
  .bshero-h1[data-astro-cid-hlrivt6u] {
    font-size: 1.75rem;
    line-height: 1.18;
  }

  .bshero-mockup-metric-label[data-astro-cid-hlrivt6u] {
    font-size: .6rem;
  }

  .bshero-mockup-metric-value[data-astro-cid-hlrivt6u] {
    font-size: .6rem;
  }
}

@media (width <= 640px) {
  .bshero[data-astro-cid-hlrivt6u] {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bshero[data-astro-cid-hlrivt6u], .bshero-mockup[data-astro-cid-hlrivt6u], .bshero-mockup-dot--live[data-astro-cid-hlrivt6u], .bshero-eyebrow[data-astro-cid-hlrivt6u], .bshero-h1[data-astro-cid-hlrivt6u], .bshero-sub[data-astro-cid-hlrivt6u], .bshero-ctas[data-astro-cid-hlrivt6u], .bshero-mockup-wrapper[data-astro-cid-hlrivt6u], .bshero-mockup-bar-fill[data-astro-cid-hlrivt6u], .bshero-position[data-astro-cid-hlrivt6u] {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }

  .bshero-noise[data-astro-cid-hlrivt6u] {
    display: none;
  }
}
.qualify-section[data-astro-cid-rgilrfev] {
  background-color: var(--color-white, #fdfbf7);
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.qualify-section[data-astro-cid-rgilrfev]:before {
  content: "";
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg,
      transparent 0%,
      var(--color-brand, #1a3c34) 30%,
      var(--color-brand-light, #10b981) 70%,
      transparent 100%);
  opacity: .3;
}

.qualify-container[data-astro-cid-rgilrfev] {
  max-width: var(--container-max, 1200px);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (width >= 768px) {
  .qualify-container[data-astro-cid-rgilrfev] {
    padding: 0 2rem;
  }

  .qualify-section[data-astro-cid-rgilrfev] {
    padding: 7rem 0;
  }
}

.qualify-header[data-astro-cid-rgilrfev] {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.qualify-h2[data-astro-cid-rgilrfev] {
  font-family: var(--font-heading, "DM Serif Display", serif);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  line-height: 1.25;
  color: var(--color-neutral-900, #2c2416);
  margin: 0 0 1rem;
}

.qualify-sub[data-astro-cid-rgilrfev] {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-neutral-600, #6b5d4d);
  margin: 0;
}

.qualify-bars[data-astro-cid-rgilrfev] {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.qualify-bar[data-astro-cid-rgilrfev] {
  border-bottom: 1px solid #2c241614;
}

.qualify-bar[data-astro-cid-rgilrfev]:last-child {
  border-bottom: none;
}

.qualify-bar-inner[data-astro-cid-rgilrfev] {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem 0;
  transition: padding-left .3s;
}

.qualify-bar[data-astro-cid-rgilrfev]:hover .qualify-bar-inner[data-astro-cid-rgilrfev] {
  padding-left: .5rem;
}

.qualify-indicator[data-astro-cid-rgilrfev] {
  flex-shrink: 0;
  padding-top: .15rem;
}

@keyframes qualifyCirclePop {
  0% {
    transform: scale(.5);
    opacity: .3;
  }

  60% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes drawCheck {
  from {
    stroke-dashoffset: 20px;
  }

  to {
    stroke-dashoffset: 0;
  }
}

.qualify-circle[data-astro-cid-rgilrfev] {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 2px solid var(--color-brand, #1a3c34);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .35s, border-color .35s, transform .35s;
}

.qualify-bar[data-astro-cid-rgilrfev]:nth-child(2n) .qualify-circle[data-astro-cid-rgilrfev] {
  border-color: var(--color-accent, #e1bf4e);
}

.qualify-check-icon[data-astro-cid-rgilrfev] {
  color: var(--color-brand, #1a3c34);
  opacity: 0;
  transform: scale(.6);
  transition: opacity .35s, transform .35s;
  stroke-dasharray: 20;
  stroke-dashoffset: 20px;
}

.qualify-bar[data-astro-cid-rgilrfev]:hover .qualify-circle[data-astro-cid-rgilrfev] {
  background: var(--color-brand, #1a3c34);
  border-color: var(--color-brand, #1a3c34);
  animation: .45s cubic-bezier(.22, 1, .36, 1) both qualifyCirclePop;
}

.qualify-bar[data-astro-cid-rgilrfev]:nth-child(2n):hover .qualify-circle[data-astro-cid-rgilrfev] {
  background: var(--color-accent, #e1bf4e);
  border-color: var(--color-accent, #e1bf4e);
}

.qualify-bar[data-astro-cid-rgilrfev]:hover .qualify-check-icon[data-astro-cid-rgilrfev] {
  color: #fff;
  opacity: 1;
  transform: scale(1);
  stroke-dashoffset: 0;
  transition: opacity .35s, transform .35s, stroke-dashoffset .4s .15s;
}

[data-astro-cid-rgilrfev][data-reveal].is-visible .qualify-circle[data-astro-cid-rgilrfev], [data-astro-cid-rgilrfev][data-reveal][style*="opacity: 1"] .qualify-circle[data-astro-cid-rgilrfev] {
  background: var(--color-brand, #1a3c34);
  border-color: var(--color-brand, #1a3c34);
  animation: .45s cubic-bezier(.22, 1, .36, 1) both qualifyCirclePop;
}

.qualify-bar[data-astro-cid-rgilrfev]:nth-child(2n)[data-reveal].is-visible .qualify-circle[data-astro-cid-rgilrfev], .qualify-bar[data-astro-cid-rgilrfev]:nth-child(2n)[data-reveal][style*="opacity: 1"] .qualify-circle[data-astro-cid-rgilrfev] {
  background: var(--color-accent, #e1bf4e);
  border-color: var(--color-accent, #e1bf4e);
}

[data-astro-cid-rgilrfev][data-reveal].is-visible .qualify-check-icon[data-astro-cid-rgilrfev], [data-astro-cid-rgilrfev][data-reveal][style*="opacity: 1"] .qualify-check-icon[data-astro-cid-rgilrfev] {
  color: #fff;
  opacity: 1;
  transform: scale(1);
  animation: .4s .2s both drawCheck;
}

.qualify-content[data-astro-cid-rgilrfev] {
  flex: 1;
  min-width: 0;
}

.qualify-title[data-astro-cid-rgilrfev] {
  font-family: var(--font-heading, "DM Serif Display", serif);
  font-size: 1.125rem;
  line-height: 1.35;
  color: var(--color-neutral-900, #2c2416);
  margin: 0 0 .375rem;
}

.qualify-body[data-astro-cid-rgilrfev] {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: .9375rem;
  line-height: 1.65;
  color: var(--color-neutral-600, #6b5d4d);
  margin: 0;
}

.qualify-footer[data-astro-cid-rgilrfev] {
  max-width: 640px;
  margin: 3.5rem auto 0;
  text-align: center;
}

.qualify-closing[data-astro-cid-rgilrfev] {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-neutral-700, #5a4f3a);
  font-weight: 500;
  margin: 0 0 2rem;
}

@media (width >= 768px) {
  .qualify-bar-inner[data-astro-cid-rgilrfev] {
    gap: 1.75rem;
    padding: 2rem 0;
  }

  .qualify-circle[data-astro-cid-rgilrfev] {
    width: 2.75rem;
    height: 2.75rem;
  }

  .qualify-check-icon[data-astro-cid-rgilrfev] {
    width: 18px;
    height: 18px;
  }

  .qualify-title[data-astro-cid-rgilrfev] {
    font-size: 1.25rem;
  }

  .qualify-body[data-astro-cid-rgilrfev] {
    font-size: 1rem;
  }
}

@keyframes goldShimmerQualify {
  0% {
    background-position: -200%;
  }

  100% {
    background-position: 200%;
  }
}

.qualify-cta-btn[data-astro-cid-rgilrfev]:hover {
  animation: 2s linear infinite goldShimmerQualify;
  background: linear-gradient(90deg, #e1bf4e 0%, #f5e6a3 30%, #e1bf4e 60%, #c49b28 100%) !important;
  background-size: 200% !important;
  color: #0f2920 !important;
  border-color: #0000 !important;
}

@media (width <= 640px) {
  .qualify-bar-inner[data-astro-cid-rgilrfev] {
    gap: .75rem;
  }

  .qualify-indicator[data-astro-cid-rgilrfev] {
    width: 1.75rem;
    height: 1.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .qualify-circle[data-astro-cid-rgilrfev], .qualify-check-icon[data-astro-cid-rgilrfev], .qualify-cta-btn[data-astro-cid-rgilrfev]:hover {
    animation: none !important;
    transition: none !important;
  }
}
.wyg-section[data-astro-cid-skawmzvm] {
  background: var(--color-brand, #1a3c34);
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.wyg-section[data-astro-cid-skawmzvm]:before {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 60%;
  background: radial-gradient(#10b98114 0%, #0000 70%);
  pointer-events: none;
}

.wyg-container[data-astro-cid-skawmzvm] {
  max-width: var(--container-max, 1200px);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

@media (width >= 768px) {
  .wyg-container[data-astro-cid-skawmzvm] {
    padding: 0 2rem;
  }

  .wyg-section[data-astro-cid-skawmzvm] {
    padding: 7rem 0;
  }
}

.wyg-header[data-astro-cid-skawmzvm] {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.wyg-label[data-astro-cid-skawmzvm] {
  display: inline-block;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-brand-light, #10b981);
  margin-bottom: 1rem;
}

.wyg-h2[data-astro-cid-skawmzvm] {
  font-family: var(--font-heading, "DM Serif Display", serif);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  line-height: 1.25;
  color: #fff;
  margin: 0 0 1rem;
  padding-bottom: 1.25rem;
  position: relative;
}

.wyg-h2[data-astro-cid-skawmzvm]:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 5rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent, #e1bf4e), transparent);
  border-radius: 1px;
}

.wyg-sub[data-astro-cid-skawmzvm] {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #ffffffa6;
  margin: 0;
}

.wyg-grid[data-astro-cid-skawmzvm] {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 1080px;
  margin: 0 auto;
}

@media (width >= 640px) {
  .wyg-grid[data-astro-cid-skawmzvm] {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (width >= 1024px) {
  .wyg-grid[data-astro-cid-skawmzvm] {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
  }

  .wyg-card--featured[data-astro-cid-skawmzvm] {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .wyg-card--compact[data-astro-cid-skawmzvm] {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
    align-self: center;
  }
}

.wyg-card[data-astro-cid-skawmzvm] {
  position: relative;
  padding: 2rem;
  border-radius: 1rem;
  background: #ffffff0d;
  border: 1px solid #ffffff1a;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .3s, border-color .3s, box-shadow .3s;
}

.wyg-card[data-astro-cid-skawmzvm]:hover {
  background: #ffffff14;
  border-color: #d4af3740;
  box-shadow: 0 0 40px #d4af3714;
}

.wyg-card-icon[data-astro-cid-skawmzvm] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: .75rem;
  background: #10b9811f;
  color: var(--color-brand-light, #10b981);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.wyg-card[data-astro-cid-skawmzvm]:nth-child(2) .wyg-card-icon[data-astro-cid-skawmzvm], .wyg-card[data-astro-cid-skawmzvm]:nth-child(4) .wyg-card-icon[data-astro-cid-skawmzvm] {
  background: #d4af371f;
  color: var(--color-accent, #e1bf4e);
}

.wyg-card-number[data-astro-cid-skawmzvm] {
  display: block;
  font-family: var(--font-heading, "DM Serif Display", serif);
  font-size: .875rem;
  font-weight: 400;
  color: #ffffff40;
  letter-spacing: .05em;
  margin-bottom: .625rem;
}

.wyg-card[data-astro-cid-skawmzvm]:nth-child(2n) .wyg-card-number[data-astro-cid-skawmzvm] {
  color: #d4af3773;
}

.wyg-card[data-astro-cid-skawmzvm]:nth-child(odd) .wyg-card-number[data-astro-cid-skawmzvm] {
  color: #10b98166;
}

.wyg-card-title[data-astro-cid-skawmzvm] {
  font-family: var(--font-heading, "DM Serif Display", serif);
  font-size: 1.0625rem;
  line-height: 1.35;
  color: #fff;
  margin: 0 0 .5rem;
}

.wyg-card-desc[data-astro-cid-skawmzvm] {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: .875rem;
  line-height: 1.65;
  color: #ffffff8c;
  margin: 0;
}

@media (width <= 640px) {
  .wyg-grid[data-astro-cid-skawmzvm] {
    gap: .75rem;
  }
}

@media (width <= 480px) {
  .wyg-card[data-astro-cid-skawmzvm] {
    padding: 1.25rem;
  }
}

@media (width <= 768px) {
  .wyg-card[data-astro-cid-skawmzvm] {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
}

.wyg-reinforcement[data-astro-cid-skawmzvm] {
  text-align: center;
  max-width: 600px;
  margin: 3.5rem auto 0;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 1.0625rem;
  font-weight: 500;
  font-style: italic;
  color: #ffffffb3;
  line-height: 1.6;
}
.hiw-section[data-astro-cid-vcy5v63n] {
  background: linear-gradient(#f5f0e8 0%, #f0ebe0 100%);
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

@media (width >= 768px) {
  .hiw-section[data-astro-cid-vcy5v63n] {
    padding: 7rem 0;
  }
}

.hiw-container[data-astro-cid-vcy5v63n] {
  max-width: var(--container-max, 1200px);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (width >= 768px) {
  .hiw-container[data-astro-cid-vcy5v63n] {
    padding: 0 2rem;
  }
}

.hiw-header[data-astro-cid-vcy5v63n] {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.hiw-h2[data-astro-cid-vcy5v63n] {
  font-family: var(--font-heading, "DM Serif Display", serif);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  line-height: 1.25;
  color: var(--color-neutral-900, #2c2416);
  margin: 0 0 1rem;
}

.hiw-sub[data-astro-cid-vcy5v63n] {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-neutral-600, #6b5d4d);
  margin: 0;
  font-weight: 500;
}

.hiw-timeline[data-astro-cid-vcy5v63n] {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

@keyframes lineGrow {
  from {
    height: 0;
  }

  to {
    height: 100%;
  }
}

@keyframes nodePulse {
  0% {
    box-shadow: 0 0 0 6px #1a3c341a, 0 0 0 12px #1a3c340a;
  }

  50% {
    box-shadow: 0 0 0 8px #1a3c342e, 0 0 0 16px #1a3c3414;
  }

  100% {
    box-shadow: 0 0 0 6px #1a3c341a, 0 0 0 12px #1a3c340a;
  }
}

@keyframes mockupEntrance {
  from {
    opacity: 0;
    transform: scale(.9);
    box-shadow: 0 2px 8px #2c241608;
  }

  to {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 4px 20px #2c24160f;
  }
}

.hiw-line[data-astro-cid-vcy5v63n] {
  position: absolute;
  left: 1.75rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg,
      var(--color-brand, #1a3c34) 0%,
      var(--color-brand-light, #10b981) 40%,
      var(--color-terracota, #c65d3b) 100%);
  border-radius: 1px;
}

.hiw-timeline[data-astro-cid-vcy5v63n][data-reveal].is-visible .hiw-line[data-astro-cid-vcy5v63n], .hiw-timeline[data-astro-cid-vcy5v63n][data-reveal][style*="opacity: 1"] .hiw-line[data-astro-cid-vcy5v63n] {
  animation: 1.2s cubic-bezier(.22, 1, .36, 1) both lineGrow;
}

@media (width >= 768px) {
  .hiw-line[data-astro-cid-vcy5v63n] {
    left: 50%;
    transform: translateX(-50%);
  }
}

.hiw-step[data-astro-cid-vcy5v63n] {
  position: relative;
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.25rem;
  padding-bottom: 3rem;
  align-items: start;
}

.hiw-step[data-astro-cid-vcy5v63n]:last-child {
  padding-bottom: 0;
}

.hiw-step[data-astro-cid-vcy5v63n] .hiw-step-visual[data-astro-cid-vcy5v63n] {
  grid-column: 2;
  grid-row: 1;
}

.hiw-step[data-astro-cid-vcy5v63n] .hiw-step-content[data-astro-cid-vcy5v63n] {
  grid-column: 2;
  grid-row: 2;
}

.hiw-step[data-astro-cid-vcy5v63n] .hiw-node[data-astro-cid-vcy5v63n] {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: start;
}

@media (width >= 768px) {
  .hiw-step[data-astro-cid-vcy5v63n] {
    grid-template-columns: 1fr 4.5rem 1fr;
    gap: 2rem;
    padding-bottom: 4rem;
  }

  .hiw-step[data-astro-cid-vcy5v63n] .hiw-node[data-astro-cid-vcy5v63n] {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    align-self: start;
  }

  .hiw-step--left[data-astro-cid-vcy5v63n] .hiw-step-content[data-astro-cid-vcy5v63n] {
    grid-column: 1;
    grid-row: 1;
    text-align: right;
  }

  .hiw-step--left[data-astro-cid-vcy5v63n] .hiw-step-visual[data-astro-cid-vcy5v63n] {
    grid-column: 3;
    grid-row: 1;
  }

  .hiw-step--right[data-astro-cid-vcy5v63n] .hiw-step-visual[data-astro-cid-vcy5v63n] {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
  }

  .hiw-step--right[data-astro-cid-vcy5v63n] .hiw-step-content[data-astro-cid-vcy5v63n] {
    grid-column: 3;
    grid-row: 1;
    text-align: left;
  }
}

.hiw-node[data-astro-cid-vcy5v63n] {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-astro-cid-vcy5v63n][data-reveal].is-visible .hiw-node-number[data-astro-cid-vcy5v63n], [data-astro-cid-vcy5v63n][data-reveal][style*="opacity: 1"] .hiw-node-number[data-astro-cid-vcy5v63n] {
  animation: .8s cubic-bezier(.22, 1, .36, 1) both nodePulse;
}

.hiw-node-number[data-astro-cid-vcy5v63n] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--color-brand, #1a3c34);
  color: #fff;
  font-family: var(--font-heading, "DM Serif Display", serif);
  font-size: 1.5rem;
  line-height: 1;
  box-shadow: 0 0 0 6px #1a3c341a, 0 0 0 12px #1a3c340a;
}

@media (width >= 768px) {
  .hiw-node-number[data-astro-cid-vcy5v63n] {
    width: 4rem;
    height: 4rem;
    font-size: 1.75rem;
  }
}

.hiw-step-title[data-astro-cid-vcy5v63n] {
  font-family: var(--font-heading, "DM Serif Display", serif);
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--color-neutral-900, #2c2416);
  margin: 0 0 .5rem;
}

@media (width >= 768px) {
  .hiw-step-title[data-astro-cid-vcy5v63n] {
    font-size: 1.375rem;
  }
}

.hiw-step-desc[data-astro-cid-vcy5v63n] {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: .9375rem;
  line-height: 1.7;
  color: var(--color-neutral-600, #6b5d4d);
  margin: 0;
}

.hiw-mockup[data-astro-cid-vcy5v63n] {
  max-width: 220px;
  border-radius: .75rem;
  border: 1px solid #2c24161a;
  background: #fff;
  box-shadow: 0 4px 20px #2c24160f;
  overflow: hidden;
}

[data-astro-cid-vcy5v63n][data-reveal].is-visible .hiw-mockup[data-astro-cid-vcy5v63n], [data-astro-cid-vcy5v63n][data-reveal][style*="opacity: 1"] .hiw-mockup[data-astro-cid-vcy5v63n] {
  animation: .7s cubic-bezier(.22, 1, .36, 1) .2s both mockupEntrance;
}

@media (width >= 768px) {
  .hiw-mockup[data-astro-cid-vcy5v63n] {
    max-width: 240px;
  }
}

.hiw-mockup-header[data-astro-cid-vcy5v63n] {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .5rem .75rem;
  background: var(--color-neutral-100, #f5f3ee);
  border-bottom: 1px solid #2c24160f;
}

.hiw-mockup-dot[data-astro-cid-vcy5v63n] {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2c241626;
}

.hiw-mockup-dot--green[data-astro-cid-vcy5v63n] {
  background: var(--color-brand-light, #10b981);
  box-shadow: 0 0 0 2px #10b98126;
}

.hiw-mockup-body[data-astro-cid-vcy5v63n] {
  padding: .75rem;
}

.hiw-quiz-row[data-astro-cid-vcy5v63n] {
  display: flex;
  align-items: center;
  gap: .625rem;
  padding: .35rem 0;
}

.hiw-quiz-row[data-astro-cid-vcy5v63n]:not(:last-child) {
  border-bottom: 1px solid #2c24160a;
}

.hiw-quiz-radios[data-astro-cid-vcy5v63n] {
  display: flex;
  gap: .3rem;
}

.hiw-quiz-radio[data-astro-cid-vcy5v63n] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid #1a3c3440;
  background: none;
  flex-shrink: 0;
}

.hiw-quiz-radio--on[data-astro-cid-vcy5v63n] {
  border-color: var(--color-brand, #1a3c34);
  background: var(--color-brand, #1a3c34);
  box-shadow: inset 0 0 0 1.5px #fff;
}

.hiw-quiz-label[data-astro-cid-vcy5v63n] {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: .625rem;
  font-weight: 500;
  color: var(--color-neutral-600, #6b5d4d);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hiw-analysis-label[data-astro-cid-vcy5v63n] {
  display: block;
  font-family: var(--font-heading, "DM Serif Display", serif);
  font-size: .6875rem;
  color: var(--color-neutral-700, #5a4f3a);
  margin-bottom: .625rem;
  letter-spacing: .02em;
}

.hiw-metric[data-astro-cid-vcy5v63n] {
  margin-bottom: .5rem;
}

.hiw-metric[data-astro-cid-vcy5v63n]:last-child {
  margin-bottom: 0;
}

.hiw-metric-label[data-astro-cid-vcy5v63n] {
  display: block;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: .5625rem;
  font-weight: 600;
  color: var(--color-neutral-500, #8b7e6a);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .2rem;
}

.hiw-metric-bar[data-astro-cid-vcy5v63n] {
  width: 100%;
  height: 5px;
  border-radius: 3px;
  background: #1a3c3414;
  overflow: hidden;
}

.hiw-metric-fill[data-astro-cid-vcy5v63n] {
  height: 100%;
  border-radius: 3px;
  transition: width .8s;
}

.hiw-metric-fill--0[data-astro-cid-vcy5v63n] {
  width: 82%;
  background: var(--color-brand, #1a3c34);
}

.hiw-metric-fill--1[data-astro-cid-vcy5v63n] {
  width: 65%;
  background: var(--color-terracota, #c65d3b);
}

.hiw-metric-fill--2[data-astro-cid-vcy5v63n] {
  width: 74%;
  background: var(--color-accent, #e1bf4e);
}

.hiw-routine-block[data-astro-cid-vcy5v63n] {
  margin-bottom: .5rem;
}

.hiw-routine-block[data-astro-cid-vcy5v63n]:last-child {
  margin-bottom: 0;
}

.hiw-routine-period[data-astro-cid-vcy5v63n] {
  display: inline-block;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: .5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .15rem .5rem;
  border-radius: .25rem;
  margin-bottom: .35rem;
}

.hiw-routine-period--morning[data-astro-cid-vcy5v63n] {
  background: #d4af371f;
  color: var(--color-accent, #e1bf4e);
}

.hiw-routine-period--night[data-astro-cid-vcy5v63n] {
  background: #1a3c341a;
  color: var(--color-brand, #1a3c34);
}

.hiw-routine-steps[data-astro-cid-vcy5v63n] {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem;
}

.hiw-routine-step[data-astro-cid-vcy5v63n] {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: .5625rem;
  font-weight: 500;
  color: var(--color-neutral-600, #6b5d4d);
  background: var(--color-neutral-100, #f5f3ee);
  padding: .15rem .4rem;
  border-radius: .2rem;
  white-space: nowrap;
}

.hiw-footer[data-astro-cid-vcy5v63n] {
  text-align: center;
  max-width: 600px;
  margin: 4rem auto 0;
}

.hiw-reinforcement[data-astro-cid-vcy5v63n] {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--color-neutral-700, #5a4f3a);
  margin: 0 0 2rem;
}

@media (width <= 768px) {
  .hiw-section[data-astro-cid-vcy5v63n] {
    overflow-x: hidden;
  }

  .hiw-timeline[data-astro-cid-vcy5v63n] {
    max-width: 100%;
    overflow: hidden;
  }

  .hiw-step[data-astro-cid-vcy5v63n] {
    overflow: hidden;
  }

  .hiw-mockup[data-astro-cid-vcy5v63n] {
    max-width: 100%;
    overflow: hidden;
    transform: none !important;
  }

  .hiw-step-content[data-astro-cid-vcy5v63n] {
    max-width: 100%;
  }

  .hiw-node-number[data-astro-cid-vcy5v63n] {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hiw-line[data-astro-cid-vcy5v63n], .hiw-node-number[data-astro-cid-vcy5v63n], .hiw-mockup[data-astro-cid-vcy5v63n] {
    animation: none !important;
  }
}
@keyframes radarExpand {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes signalPulse {
  0%, 100% {
    box-shadow: 0 0 8px var(--dot-glow, #10b9814d);
  }

  50% {
    box-shadow: 0 0 16px var(--dot-glow, #10b98180), 0 0 24px var(--dot-glow, #10b98133);
  }
}

@keyframes arrowOscillate {
  0%, 100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(4px);
  }
}

.bsprev[data-astro-cid-wfk54btr] {
  background: linear-gradient(#0d1f1a 0%, #132a24 30%, #162e28 60%, #0f2920 100%);
  padding: 5rem 0 4rem;
}

@media (width >= 1024px) {
  .bsprev[data-astro-cid-wfk54btr] {
    padding: 7rem 0 5rem;
  }
}

.bsprev-noise[data-astro-cid-wfk54btr] {
  position: absolute;
  inset: 0;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 1;
}

.bsprev-header[data-astro-cid-wfk54btr] {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

@media (width >= 1024px) {
  .bsprev-header[data-astro-cid-wfk54btr] {
    margin-bottom: 3.5rem;
  }
}

.bsprev-subtitle[data-astro-cid-wfk54btr] {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #ffffff59;
  margin-bottom: .75rem;
}

.bsprev-h2[data-astro-cid-wfk54btr] {
  font-family: var(--font-heading, "DM Serif Display", serif);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  line-height: 1.15;
  color: #fff;
  margin: 0 0 1rem;
  font-weight: 400;
}

.bsprev-sub[data-astro-cid-wfk54btr] {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: clamp(.95rem, 1.3vw, 1.05rem);
  line-height: 1.65;
  color: #fff9;
  margin: 0;
}

.bsprev-dashboard[data-astro-cid-wfk54btr] {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.bsprev-row--top[data-astro-cid-wfk54btr] {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
}

@media (width >= 768px) {
  .bsprev-row--top[data-astro-cid-wfk54btr] {
    grid-template-columns: 5fr 7fr;
  }
}

.bsprev-right-col[data-astro-cid-wfk54btr] {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.bsprev-panel[data-astro-cid-wfk54btr] {
  border: 1px solid #ffffff14;
  border-radius: .875rem;
  background: #ffffff08;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px #0003, 0 0 40px #10b98105, inset 0 1px #ffffff0a;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.bsprev-panel[data-astro-cid-wfk54btr]:before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, #0000, #10b98133, #0000);
  pointer-events: none;
}

.bsprev-panel--profile[data-astro-cid-wfk54btr]:before {
  background: linear-gradient(90deg, #0000, #10b98140, #0000);
}

.bsprev-panel--signals[data-astro-cid-wfk54btr]:before {
  background: linear-gradient(90deg, #0000, #d4af374d, #0000);
}

.bsprev-panel--routine[data-astro-cid-wfk54btr]:before {
  background: linear-gradient(90deg, #0000, #c65d3b40, #0000);
}

.bsprev-panel-title[data-astro-cid-wfk54btr] {
  font-family: var(--font-heading, "DM Serif Display", serif);
  font-size: .95rem;
  font-weight: 400;
  color: #ffffffbf;
  margin: 0 0 1.125rem;
  padding-bottom: .625rem;
  border-bottom: 1px solid #ffffff0f;
}

.bsprev-panel--profile[data-astro-cid-wfk54btr] {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bsprev-panel--profile[data-astro-cid-wfk54btr] .bsprev-panel-title[data-astro-cid-wfk54btr] {
  width: 100%;
  text-align: left;
}

.bsprev-radar-wrapper[data-astro-cid-wfk54btr] {
  width: 100%;
  max-width: 220px;
  margin: .5rem auto 1rem;
}

.bsprev-radar[data-astro-cid-wfk54btr] {
  width: 100%;
  height: auto;
  display: block;
}

.bsprev-radar[data-astro-cid-wfk54btr] path[data-astro-cid-wfk54btr][fill="rgba(16, 185, 129, 0.15)"] {
  transform-origin: 60px 60px;
}

[data-astro-cid-wfk54btr][data-reveal].is-visible .bsprev-radar[data-astro-cid-wfk54btr] path[data-astro-cid-wfk54btr][fill="rgba(16, 185, 129, 0.15)"], [data-astro-cid-wfk54btr][data-reveal][style*="opacity: 1"] .bsprev-radar[data-astro-cid-wfk54btr] path[data-astro-cid-wfk54btr][fill="rgba(16, 185, 129, 0.15)"] {
  animation: .8s cubic-bezier(.22, 1, .36, 1) .3s both radarExpand;
}

.bsprev-radar[data-astro-cid-wfk54btr] circle[data-astro-cid-wfk54btr][fill="#10b981"] {
  transform-origin: center;
}

[data-astro-cid-wfk54btr][data-reveal].is-visible .bsprev-radar[data-astro-cid-wfk54btr] circle[data-astro-cid-wfk54btr][fill="#10b981"], [data-astro-cid-wfk54btr][data-reveal][style*="opacity: 1"] .bsprev-radar[data-astro-cid-wfk54btr] circle[data-astro-cid-wfk54btr][fill="#10b981"] {
  animation: .5s cubic-bezier(.22, 1, .36, 1) .6s both radarExpand;
}

.bsprev-archetype[data-astro-cid-wfk54btr] {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .875rem;
  border-radius: .5rem;
  background: #d4af3714;
  border: 1px solid #d4af3733;
  width: 100%;
  justify-content: center;
}

.bsprev-archetype-label[data-astro-cid-wfk54btr] {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: .625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #ffffff59;
}

.bsprev-archetype-value[data-astro-cid-wfk54btr] {
  font-family: var(--font-heading, "DM Serif Display", serif);
  font-size: .875rem;
  color: var(--color-accent, #e1bf4e);
  font-weight: 400;
}

.bsprev-signals-list[data-astro-cid-wfk54btr] {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.bsprev-signal[data-astro-cid-wfk54btr] {
  display: flex;
  align-items: center;
  gap: .625rem;
  padding: .625rem .875rem;
  border-radius: .5rem;
  background: #ffffff08;
  border: 1px solid #ffffff0d;
}

.bsprev-signal-dot[data-astro-cid-wfk54btr] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.bsprev-signal-dot--terracotta[data-astro-cid-wfk54btr] {
  background: var(--color-terracota, #c65d3b);
  box-shadow: 0 0 8px #c65d3b59;
  --dot-glow: #c65d3b59;
}

.bsprev-signal-dot--amber[data-astro-cid-wfk54btr] {
  background: var(--color-accent, #e1bf4e);
  box-shadow: 0 0 8px #d4af374d;
  --dot-glow: #d4af374d;
}

.bsprev-signal-dot--green[data-astro-cid-wfk54btr] {
  background: var(--color-brand-light, #10b981);
  box-shadow: 0 0 8px #10b9814d;
  --dot-glow: #10b9814d;
}

[data-astro-cid-wfk54btr][data-reveal].is-visible .bsprev-signal-dot[data-astro-cid-wfk54btr], [data-astro-cid-wfk54btr][data-reveal][style*="opacity: 1"] .bsprev-signal-dot[data-astro-cid-wfk54btr] {
  animation: 2.5s ease-in-out infinite signalPulse;
}

.bsprev-signal[data-astro-cid-wfk54btr]:nth-child(2) .bsprev-signal-dot[data-astro-cid-wfk54btr] {
  animation-delay: .3s;
}

.bsprev-signal[data-astro-cid-wfk54btr]:nth-child(3) .bsprev-signal-dot[data-astro-cid-wfk54btr] {
  animation-delay: .6s;
}

.bsprev-signal-label[data-astro-cid-wfk54btr] {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: .8125rem;
  font-weight: 500;
  color: #ffffffb3;
  line-height: 1.4;
}

.bsprev-routine-cols[data-astro-cid-wfk54btr] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (width <= 480px) {
  .bsprev-routine-cols[data-astro-cid-wfk54btr] {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.bsprev-routine-period[data-astro-cid-wfk54btr] {
  display: flex;
  flex-direction: column;
  gap: .625rem;
}

.bsprev-period-label[data-astro-cid-wfk54btr] {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #fff6;
}

.bsprev-period-list[data-astro-cid-wfk54btr] {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.bsprev-period-item[data-astro-cid-wfk54btr] {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: .8rem;
  color: #ffffffa6;
  line-height: 1.4;
}

.bsprev-step-icon[data-astro-cid-wfk54btr] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.bsprev-panel--nextstep[data-astro-cid-wfk54btr] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .625rem;
  padding: 1rem 1.5rem;
  background: #10b9810a;
  border-color: #10b9811f;
}

.bsprev-panel--nextstep[data-astro-cid-wfk54btr]:before {
  background: linear-gradient(90deg, #0000, #d4af3759, #0000);
}

.bsprev-nextstep-text[data-astro-cid-wfk54btr] {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: .8rem;
  font-weight: 600;
  color: #ffffff80;
  letter-spacing: .02em;
}

.bsprev-nextstep-arrow[data-astro-cid-wfk54btr] {
  display: flex;
  align-items: center;
  color: var(--color-accent, #e1bf4e);
  opacity: .85;
  animation: 2s ease-in-out infinite arrowOscillate;
}

.bsprev-nextstep-arrow[data-astro-cid-wfk54btr] svg[data-astro-cid-wfk54btr] {
  width: 18px;
  height: 18px;
}

.bsprev-nextstep-value[data-astro-cid-wfk54btr] {
  font-family: var(--font-heading, "DM Serif Display", serif);
  font-size: .9rem;
  color: var(--color-brand-light, #10b981);
  font-weight: 400;
}

.bsprev-reinforcement[data-astro-cid-wfk54btr] {
  text-align: center;
  margin: 2.5rem auto 0;
  max-width: 520px;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: .9rem;
  font-style: italic;
  color: #fff6;
  line-height: 1.6;
}

@media (width <= 480px) {
  .bsprev-radar-wrapper[data-astro-cid-wfk54btr] {
    max-width: 160px;
  }
}

@media (width <= 768px) {
  .bsprev-panel[data-astro-cid-wfk54btr] {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
}

@media (width <= 640px) {
  .bsprev[data-astro-cid-wfk54btr] {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bsprev-noise[data-astro-cid-wfk54btr] {
    display: none;
  }

  .bsprev-radar[data-astro-cid-wfk54btr] path[data-astro-cid-wfk54btr], .bsprev-radar[data-astro-cid-wfk54btr] circle[data-astro-cid-wfk54btr], .bsprev-signal-dot[data-astro-cid-wfk54btr], .bsprev-nextstep-arrow[data-astro-cid-wfk54btr] {
    animation: none !important;
  }
}
.howdecides-section[data-astro-cid-4fidjvbf] {
  padding: 5rem 0;
  background: linear-gradient(165deg, #0f241f 0%, #1a3c34 40%, #162e28 100%);
  position: relative;
  overflow: hidden;
}

.howdecides-section[data-astro-cid-4fidjvbf]:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 50%, #10b9810a 0%, #0000 70%);
  pointer-events: none;
}

@media (width >= 768px) {
  .howdecides-section[data-astro-cid-4fidjvbf] {
    padding: 7rem 0;
  }
}

.howdecides-heading[data-astro-cid-4fidjvbf] {
  font-family: var(--font-heading, "DM Serif Display", serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  color: var(--color-white, #fdfbf7);
}

.howdecides-subtitle[data-astro-cid-4fidjvbf] {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #fdfbf7b3;
  margin-top: 1rem;
  font-weight: 500;
}

.howdecides-intro[data-astro-cid-4fidjvbf] {
  font-size: .9375rem;
  line-height: 1.7;
  color: #fdfbf799;
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3.5rem;
}

.diamond-grid[data-astro-cid-4fidjvbf] {
  position: relative;
  max-width: 44rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (width >= 768px) {
  .diamond-grid[data-astro-cid-4fidjvbf] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 1.25rem;
    max-width: 44rem;
    padding: 0 1rem;
  }

  .pillar-top[data-astro-cid-4fidjvbf] {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 20rem;
  }

  .pillar-left[data-astro-cid-4fidjvbf] {
    grid-column: 1;
    justify-self: end;
    max-width: 20rem;
  }

  .pillar-right[data-astro-cid-4fidjvbf] {
    grid-column: 2;
    justify-self: start;
    max-width: 20rem;
  }

  .pillar-bottom[data-astro-cid-4fidjvbf] {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 20rem;
  }
}

@keyframes drawLine {
  from {
    stroke-dashoffset: 200px;
  }

  to {
    stroke-dashoffset: 0;
  }
}

.diamond-lines[data-astro-cid-4fidjvbf] {
  display: none;
}

@media (width >= 768px) {
  .diamond-lines[data-astro-cid-4fidjvbf] {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
  }

  .diamond-lines[data-astro-cid-4fidjvbf] line[data-astro-cid-4fidjvbf] {
    stroke-dasharray: 200;
    stroke-dashoffset: 200px;
  }

  [data-astro-cid-4fidjvbf][data-reveal].is-visible .diamond-lines[data-astro-cid-4fidjvbf] line[data-astro-cid-4fidjvbf], [data-astro-cid-4fidjvbf][data-reveal][style*="opacity: 1"] .diamond-lines[data-astro-cid-4fidjvbf] line[data-astro-cid-4fidjvbf] {
    animation: 1.2s cubic-bezier(.22, 1, .36, 1) both drawLine;
  }

  [data-astro-cid-4fidjvbf][data-reveal].is-visible .diamond-lines[data-astro-cid-4fidjvbf] line[data-astro-cid-4fidjvbf]:nth-child(2), [data-astro-cid-4fidjvbf][data-reveal][style*="opacity: 1"] .diamond-lines[data-astro-cid-4fidjvbf] line[data-astro-cid-4fidjvbf]:nth-child(2) {
    animation-delay: .15s;
  }

  [data-astro-cid-4fidjvbf][data-reveal].is-visible .diamond-lines[data-astro-cid-4fidjvbf] line[data-astro-cid-4fidjvbf]:nth-child(3), [data-astro-cid-4fidjvbf][data-reveal][style*="opacity: 1"] .diamond-lines[data-astro-cid-4fidjvbf] line[data-astro-cid-4fidjvbf]:nth-child(3) {
    animation-delay: .3s;
  }

  [data-astro-cid-4fidjvbf][data-reveal].is-visible .diamond-lines[data-astro-cid-4fidjvbf] line[data-astro-cid-4fidjvbf]:nth-child(4), [data-astro-cid-4fidjvbf][data-reveal][style*="opacity: 1"] .diamond-lines[data-astro-cid-4fidjvbf] line[data-astro-cid-4fidjvbf]:nth-child(4) {
    animation-delay: .45s;
  }

  [data-astro-cid-4fidjvbf][data-reveal].is-visible .diamond-lines[data-astro-cid-4fidjvbf] line[data-astro-cid-4fidjvbf]:nth-child(n+5), [data-astro-cid-4fidjvbf][data-reveal][style*="opacity: 1"] .diamond-lines[data-astro-cid-4fidjvbf] line[data-astro-cid-4fidjvbf]:nth-child(n+5) {
    animation-delay: .6s;
  }
}

.diamond-center[data-astro-cid-4fidjvbf] {
  display: none;
}

@media (width >= 768px) {
  .diamond-center[data-astro-cid-4fidjvbf] {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50%;
    background: #d4af370f;
    border: 2px solid #d4af3759;
    animation: 3s ease-in-out infinite pulse-glow;
  }
}

.diamond-center-label[data-astro-cid-4fidjvbf] {
  font-family: var(--font-heading, "DM Serif Display", serif);
  font-size: .75rem;
  letter-spacing: .05em;
  color: #d4af37e6;
  text-transform: uppercase;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 25px #d4af371a, 0 0 50px #d4af370d, 0 0 80px #d4af3705;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    box-shadow: 0 0 40px #d4af3733, 0 0 80px #d4af371a, 0 0 120px #d4af370d;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

.pillar-card[data-astro-cid-4fidjvbf] {
  position: relative;
  z-index: 1;
  padding: 1.5rem 1.5rem 1.75rem;
  border-radius: .875rem;
  background: #fdfbf70a;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #fdfbf714;
  transition: transform .25s, border-color .25s;
  overflow: hidden;
}

.pillar-card[data-astro-cid-4fidjvbf]:hover {
  transform: translateY(-2px) rotate(1deg);
  border-color: #fdfbf724;
}

.pillar-accent-bar[data-astro-cid-4fidjvbf] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--pillar-accent);
  opacity: .85;
  border-radius: .875rem .875rem 0 0;
}

.pillar-number[data-astro-cid-4fidjvbf] {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--pillar-accent);
  opacity: .7;
  margin-bottom: .625rem;
}

.pillar-title[data-astro-cid-4fidjvbf] {
  font-family: var(--font-heading, "DM Serif Display", serif);
  font-size: 1.0625rem;
  line-height: 1.35;
  color: var(--color-white, #fdfbf7);
  margin-bottom: .5rem;
}

.pillar-body[data-astro-cid-4fidjvbf] {
  font-size: .875rem;
  line-height: 1.65;
  color: #fdfbf799;
}

.howdecides-closing[data-astro-cid-4fidjvbf] {
  font-family: var(--font-heading, "DM Serif Display", serif);
  font-size: 1.125rem;
  line-height: 1.5;
  color: #fdfbf7d9;
  text-align: center;
  max-width: 36rem;
  margin: 3.5rem auto 0;
  font-style: italic;
}

@media (width <= 768px) {
  .diamond-grid[data-astro-cid-4fidjvbf] {
    max-width: 100%;
    overflow: hidden;
  }
}

@media (width <= 480px) {
  .pillar-card[data-astro-cid-4fidjvbf] {
    padding: 1.25rem 1.25rem 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .diamond-lines[data-astro-cid-4fidjvbf] line[data-astro-cid-4fidjvbf], .diamond-center[data-astro-cid-4fidjvbf], .pillar-card[data-astro-cid-4fidjvbf] {
    animation: none !important;
    transition: none !important;
  }
}
.lp-section[data-astro-cid-pph5s6f4] {
  padding: 5rem 0;
  background: var(--color-neutral-100, #f5f3ee);
  position: relative;
}

@media (width >= 768px) {
  .lp-section[data-astro-cid-pph5s6f4] {
    padding: 7rem 0;
  }
}

.lp-heading[data-astro-cid-pph5s6f4] {
  font-family: var(--font-heading, "DM Serif Display", serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  color: var(--color-neutral-900, #2c2416);
}

.lp-subtitle[data-astro-cid-pph5s6f4] {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-neutral-600, #6b5d4d);
  margin-top: 1rem;
  font-weight: 500;
}

@keyframes flowNodeReveal {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes flowArrowDraw {
  from {
    stroke-dashoffset: 40px;
  }

  to {
    stroke-dashoffset: 0;
  }
}

.flow-diagram[data-astro-cid-pph5s6f4] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  margin: 3rem auto 0;
  max-width: 56rem;
}

@media (width >= 768px) {
  .flow-diagram[data-astro-cid-pph5s6f4] {
    flex-direction: row;
    justify-content: center;
    gap: 0;
  }
}

.flow-node[data-astro-cid-pph5s6f4] {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.25rem 1rem;
  background: var(--color-white, #fdfbf7);
  border: 1px solid #2c241614;
  border-radius: .75rem;
  width: 100%;
  max-width: 14rem;
  transition: transform .2s, box-shadow .2s;
}

[data-astro-cid-pph5s6f4][data-reveal].is-visible .flow-node[data-astro-cid-pph5s6f4], [data-astro-cid-pph5s6f4][data-reveal][style*="opacity: 1"] .flow-node[data-astro-cid-pph5s6f4] {
  animation: .6s cubic-bezier(.22, 1, .36, 1) both flowNodeReveal;
}

[data-astro-cid-pph5s6f4][data-reveal].is-visible .flow-node[data-astro-cid-pph5s6f4]:first-child, [data-astro-cid-pph5s6f4][data-reveal][style*="opacity: 1"] .flow-node[data-astro-cid-pph5s6f4]:first-child {
  animation-delay: 0s;
}

[data-astro-cid-pph5s6f4][data-reveal].is-visible .flow-node[data-astro-cid-pph5s6f4]:nth-of-type(2), [data-astro-cid-pph5s6f4][data-reveal][style*="opacity: 1"] .flow-node[data-astro-cid-pph5s6f4]:nth-of-type(2) {
  animation-delay: .2s;
}

[data-astro-cid-pph5s6f4][data-reveal].is-visible .flow-node[data-astro-cid-pph5s6f4]:nth-of-type(3), [data-astro-cid-pph5s6f4][data-reveal][style*="opacity: 1"] .flow-node[data-astro-cid-pph5s6f4]:nth-of-type(3) {
  animation-delay: .4s;
}

[data-astro-cid-pph5s6f4][data-reveal].is-visible .flow-node[data-astro-cid-pph5s6f4]:nth-of-type(4), [data-astro-cid-pph5s6f4][data-reveal][style*="opacity: 1"] .flow-node[data-astro-cid-pph5s6f4]:nth-of-type(4) {
  animation-delay: .6s;
}

.flow-node[data-astro-cid-pph5s6f4]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px #2c241612;
}

@media (width >= 768px) {
  .flow-node[data-astro-cid-pph5s6f4] {
    flex: none;
    width: 11rem;
    padding: 1.5rem .75rem;
  }
}

.flow-node-icon[data-astro-cid-pph5s6f4] {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #1a3c340f;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .75rem;
}

.flow-node-label[data-astro-cid-pph5s6f4] {
  font-family: var(--font-heading, "DM Serif Display", serif);
  font-size: .9375rem;
  color: var(--color-neutral-900, #2c2416);
  font-weight: 600;
  margin-bottom: .25rem;
}

.flow-node-desc[data-astro-cid-pph5s6f4] {
  font-size: .8125rem;
  line-height: 1.5;
  color: var(--color-neutral-600, #6b5d4d);
}

.flow-arrow[data-astro-cid-pph5s6f4] {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.flow-arrow[data-astro-cid-pph5s6f4] line[data-astro-cid-pph5s6f4], .flow-arrow-h[data-astro-cid-pph5s6f4] line[data-astro-cid-pph5s6f4], .flow-arrow-v[data-astro-cid-pph5s6f4] line[data-astro-cid-pph5s6f4] {
  stroke-dasharray: 40;
  stroke-dashoffset: 40px;
}

[data-astro-cid-pph5s6f4][data-reveal].is-visible .flow-arrow[data-astro-cid-pph5s6f4] line[data-astro-cid-pph5s6f4], [data-astro-cid-pph5s6f4][data-reveal][style*="opacity: 1"] .flow-arrow[data-astro-cid-pph5s6f4] line[data-astro-cid-pph5s6f4] {
  animation: .6s cubic-bezier(.22, 1, .36, 1) .3s both flowArrowDraw;
}

.flow-arrow-h[data-astro-cid-pph5s6f4] {
  display: none;
}

.flow-arrow-v[data-astro-cid-pph5s6f4] {
  display: block;
  max-height: 32px;
  width: auto;
  margin: .5rem auto;
}

@media (width >= 768px) {
  .flow-arrow[data-astro-cid-pph5s6f4] {
    margin: 0 .375rem;
  }

  .flow-arrow-h[data-astro-cid-pph5s6f4] {
    display: block;
  }

  .flow-arrow-v[data-astro-cid-pph5s6f4] {
    display: none;
  }
}

.lp-body-cols[data-astro-cid-pph5s6f4] {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (width >= 768px) {
  .lp-body-cols[data-astro-cid-pph5s6f4] {
    flex-direction: row;
    gap: 2rem;
  }
}

.lp-body-text[data-astro-cid-pph5s6f4] {
  font-size: .9375rem;
  line-height: 1.7;
  color: var(--color-neutral-700, #5a4f3a);
  flex: 1;
}

.botanical-strip[data-astro-cid-pph5s6f4] {
  max-width: 56rem;
  margin: 2.5rem auto 0;
  padding: 1.5rem 0;
  border-top: 1px solid #2c241614;
  border-bottom: 1px solid #2c241614;
}

.botanical-strip-scroll[data-astro-cid-pph5s6f4] {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  padding: .25rem 0;
  scrollbar-width: none;
}

.botanical-strip-scroll[data-astro-cid-pph5s6f4]::-webkit-scrollbar {
  display: none;
}

@media (width >= 768px) {
  .botanical-strip-scroll[data-astro-cid-pph5s6f4] {
    justify-content: center;
    overflow-x: visible;
  }
}

.botanical-chip[data-astro-cid-pph5s6f4] {
  flex: none;
  display: flex;
  align-items: center;
  gap: .625rem;
  scroll-snap-align: start;
  padding: .375rem .75rem .375rem .375rem;
  border-radius: 2.5rem;
  background: var(--color-white, #fdfbf7);
  border: 1px solid #2c24160f;
  transition: box-shadow .2s;
}

.botanical-chip[data-astro-cid-pph5s6f4]:hover {
  box-shadow: 0 4px 12px #2c241614;
}

.botanical-chip-img-wrap[data-astro-cid-pph5s6f4] {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--color-neutral-100, #f5f3ee);
}

.botanical-chip-img[data-astro-cid-pph5s6f4] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s cubic-bezier(.22, 1, .36, 1);
}

.botanical-chip[data-astro-cid-pph5s6f4]:hover .botanical-chip-img[data-astro-cid-pph5s6f4] {
  transform: scale(1.05);
}

.botanical-chip-info[data-astro-cid-pph5s6f4] {
  display: flex;
  flex-direction: column;
}

.botanical-chip-name[data-astro-cid-pph5s6f4] {
  font-family: var(--font-heading, "DM Serif Display", serif);
  font-size: .8125rem;
  color: var(--color-neutral-900, #2c2416);
  line-height: 1.3;
  white-space: nowrap;
}

.botanical-chip-origin[data-astro-cid-pph5s6f4] {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--color-terracota, #c65d3b);
  line-height: 1.3;
  white-space: nowrap;
}

.lp-reinforcement[data-astro-cid-pph5s6f4] {
  font-family: var(--font-heading, "DM Serif Display", serif);
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--color-neutral-900, #2c2416);
  text-align: center;
  max-width: 34rem;
  margin: 2.5rem auto 0;
  font-style: italic;
}

@media (width <= 767px) {
  .botanical-strip-scroll[data-astro-cid-pph5s6f4] {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .botanical-chip[data-astro-cid-pph5s6f4]:last-child {
    margin-right: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .flow-node[data-astro-cid-pph5s6f4], .flow-arrow[data-astro-cid-pph5s6f4] line[data-astro-cid-pph5s6f4] {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .botanical-chip-img[data-astro-cid-pph5s6f4] {
    transition: none !important;
  }
}
.evo-section[data-astro-cid-45vvbmlt] {
  padding: 5rem 0;
  background: var(--color-white, #fdfbf7);
}

@media (width >= 768px) {
  .evo-section[data-astro-cid-45vvbmlt] {
    padding: 7rem 0;
  }
}

.evo-heading[data-astro-cid-45vvbmlt] {
  font-family: var(--font-heading, "DM Serif Display", serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  color: var(--color-neutral-900, #2c2416);
}

.evo-subtitle[data-astro-cid-45vvbmlt] {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-neutral-600, #6b5d4d);
  margin-top: 1rem;
  font-weight: 500;
}

.evo-body[data-astro-cid-45vvbmlt] {
  font-size: .9375rem;
  line-height: 1.7;
  color: var(--color-neutral-700, #5a4f3a);
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3.5rem;
}

@keyframes trackGrowH {
  from {
    clip-path: inset(0 100% 0 0);
  }

  to {
    clip-path: inset(0);
  }
}

@keyframes trackGrowV {
  from {
    clip-path: inset(0 0 100%);
  }

  to {
    clip-path: inset(0);
  }
}

@keyframes milestonePop {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  60% {
    transform: scale(1.3);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes glowTrail {
  0% {
    left: 0;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

.timeline[data-astro-cid-45vvbmlt] {
  position: relative;
  max-width: 52rem;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}

.timeline-track[data-astro-cid-45vvbmlt] {
  position: absolute;
  background: linear-gradient(90deg, #10b981 0%, #e1bf4e 40%, #c65d3b 65%, #e1bf4e 100%);
  border-radius: 2px;
  opacity: .45;
}

@media (width >= 768px) {
  .timeline-track[data-astro-cid-45vvbmlt] {
    top: 2.75rem;
    left: 3rem;
    right: 3rem;
    height: 3px;
  }

  .timeline[data-astro-cid-45vvbmlt][data-reveal].is-visible .timeline-track[data-astro-cid-45vvbmlt], .timeline[data-astro-cid-45vvbmlt][data-reveal][style*="opacity: 1"] .timeline-track[data-astro-cid-45vvbmlt] {
    animation: 1.2s cubic-bezier(.22, 1, .36, 1) both trackGrowH;
  }

  .timeline-track[data-astro-cid-45vvbmlt]:after {
    content: "";
    position: absolute;
    top: -3px;
    width: 40px;
    height: 9px;
    border-radius: 50%;
    background: radial-gradient(#d4af3780 0%, #0000 70%);
    pointer-events: none;
    opacity: 0;
  }

  .timeline[data-astro-cid-45vvbmlt][data-reveal].is-visible .timeline-track[data-astro-cid-45vvbmlt]:after, .timeline[data-astro-cid-45vvbmlt][data-reveal][style*="opacity: 1"] .timeline-track[data-astro-cid-45vvbmlt]:after {
    animation: 1.5s cubic-bezier(.22, 1, .36, 1) .3s both glowTrail;
  }
}

@media (width <= 767px) {
  .timeline-track[data-astro-cid-45vvbmlt] {
    background: linear-gradient(#10b981 0%, #e1bf4e 40%, #c65d3b 65%, #e1bf4e 100%);
    top: 0;
    bottom: 0;
    left: .875rem;
    width: 3px;
  }

  .timeline[data-astro-cid-45vvbmlt][data-reveal].is-visible .timeline-track[data-astro-cid-45vvbmlt], .timeline[data-astro-cid-45vvbmlt][data-reveal][style*="opacity: 1"] .timeline-track[data-astro-cid-45vvbmlt] {
    animation: 1.2s cubic-bezier(.22, 1, .36, 1) both trackGrowV;
  }
}

.timeline-milestones[data-astro-cid-45vvbmlt] {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (width >= 768px) {
  .timeline-milestones[data-astro-cid-45vvbmlt] {
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
  }
}

.milestone[data-astro-cid-45vvbmlt] {
  display: flex;
  flex-direction: column;
  position: relative;
}

@media (width <= 767px) {
  .milestone[data-astro-cid-45vvbmlt] {
    padding-left: 3rem;
  }
}

@media (width >= 768px) {
  .milestone[data-astro-cid-45vvbmlt] {
    flex: 1;
    align-items: center;
    text-align: center;
  }
}

.milestone-week[data-astro-cid-45vvbmlt] {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-neutral-500, #8b7e6a);
  margin-bottom: .5rem;
}

.milestone-dot[data-astro-cid-45vvbmlt] {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--color-white, #fdfbf7);
  border: 3px solid var(--color-brand, #1a3c34);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .625rem;
  position: relative;
  z-index: 1;
}

[data-astro-cid-45vvbmlt][data-reveal].is-visible .milestone-dot[data-astro-cid-45vvbmlt], [data-astro-cid-45vvbmlt][data-reveal][style*="opacity: 1"] .milestone-dot[data-astro-cid-45vvbmlt] {
  animation: .5s cubic-bezier(.22, 1, .36, 1) both milestonePop;
}

.milestone[data-astro-cid-45vvbmlt]:first-child[data-reveal].is-visible .milestone-dot[data-astro-cid-45vvbmlt], .milestone[data-astro-cid-45vvbmlt]:first-child[data-reveal][style*="opacity: 1"] .milestone-dot[data-astro-cid-45vvbmlt] {
  animation-delay: .3s;
}

.milestone[data-astro-cid-45vvbmlt]:nth-child(2)[data-reveal].is-visible .milestone-dot[data-astro-cid-45vvbmlt], .milestone[data-astro-cid-45vvbmlt]:nth-child(2)[data-reveal][style*="opacity: 1"] .milestone-dot[data-astro-cid-45vvbmlt] {
  animation-delay: .5s;
}

.milestone[data-astro-cid-45vvbmlt]:nth-child(3)[data-reveal].is-visible .milestone-dot[data-astro-cid-45vvbmlt], .milestone[data-astro-cid-45vvbmlt]:nth-child(3)[data-reveal][style*="opacity: 1"] .milestone-dot[data-astro-cid-45vvbmlt] {
  animation-delay: .7s;
}

.milestone[data-astro-cid-45vvbmlt]:nth-child(4)[data-reveal].is-visible .milestone-dot[data-astro-cid-45vvbmlt], .milestone[data-astro-cid-45vvbmlt]:nth-child(4)[data-reveal][style*="opacity: 1"] .milestone-dot[data-astro-cid-45vvbmlt] {
  animation-delay: .9s;
}

.milestone-dot-inner[data-astro-cid-45vvbmlt] {
  width: .375rem;
  height: .375rem;
  border-radius: 50%;
  background: var(--color-brand-light, #10b981);
}

@media (width <= 767px) {
  .milestone-dot[data-astro-cid-45vvbmlt] {
    position: absolute;
    left: .25rem;
    top: .25rem;
  }
}

.milestone[data-astro-cid-45vvbmlt]:first-child .milestone-dot[data-astro-cid-45vvbmlt] {
  border-color: #10b981;
}

.milestone[data-astro-cid-45vvbmlt]:nth-child(2) .milestone-dot[data-astro-cid-45vvbmlt] {
  border-color: #6b8a5e;
}

.milestone[data-astro-cid-45vvbmlt]:nth-child(3) .milestone-dot[data-astro-cid-45vvbmlt] {
  border-color: #e1bf4e;
  box-shadow: 0 0 10px #d4af3740;
}

.milestone[data-astro-cid-45vvbmlt]:nth-child(4) .milestone-dot[data-astro-cid-45vvbmlt] {
  border-color: #e1bf4e;
  box-shadow: 0 0 12px #d4af3759, 0 0 24px #d4af3726;
}

.milestone[data-astro-cid-45vvbmlt]:nth-child(2) .milestone-dot-inner[data-astro-cid-45vvbmlt] {
  background: #6b8a5e;
}

.milestone[data-astro-cid-45vvbmlt]:nth-child(3) .milestone-dot-inner[data-astro-cid-45vvbmlt] {
  background: #e1bf4e;
}

.milestone[data-astro-cid-45vvbmlt]:nth-child(4) .milestone-dot-inner[data-astro-cid-45vvbmlt] {
  background: #e1bf4e;
}

.milestone-title[data-astro-cid-45vvbmlt] {
  font-family: var(--font-heading, "DM Serif Display", serif);
  font-size: 1rem;
  color: var(--color-neutral-900, #2c2416);
  line-height: 1.3;
  margin-bottom: .375rem;
}

.milestone-desc[data-astro-cid-45vvbmlt] {
  font-size: .8125rem;
  line-height: 1.6;
  color: var(--color-neutral-600, #6b5d4d);
  max-width: 14rem;
}

@media (width <= 767px) {
  .milestone-desc[data-astro-cid-45vvbmlt] {
    max-width: none;
  }
}

.evo-values[data-astro-cid-45vvbmlt] {
  max-width: 36rem;
  margin: 0 auto 3rem;
  padding-top: 2rem;
  border-top: 1px solid #2c241614;
}

.evo-values-label[data-astro-cid-45vvbmlt] {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--color-neutral-900, #2c2416);
  margin-bottom: 1rem;
}

.evo-values-list[data-astro-cid-45vvbmlt] {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .625rem;
}

.evo-value-item[data-astro-cid-45vvbmlt] {
  display: flex;
  align-items: baseline;
  gap: .625rem;
  font-size: .875rem;
  line-height: 1.6;
  color: var(--color-neutral-700, #5a4f3a);
}

.evo-check[data-astro-cid-45vvbmlt] {
  flex-shrink: 0;
  margin-top: .125rem;
}

.evo-footer[data-astro-cid-45vvbmlt] {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
}

.evo-reinforcement[data-astro-cid-45vvbmlt] {
  font-family: var(--font-heading, "DM Serif Display", serif);
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--color-neutral-900, #2c2416);
  font-style: italic;
  margin-bottom: 2rem;
}

.evo-cta[data-astro-cid-45vvbmlt] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .875rem 2rem;
  border-radius: .5rem;
  background: var(--color-brand, #1a3c34);
  color: var(--color-white, #fdfbf7);
  font-family: var(--font-body, "Inter", sans-serif);
  font-weight: 600;
  font-size: .9375rem;
  text-decoration: none;
  transition: all .2s;
  border: none;
  cursor: pointer;
}

.evo-cta[data-astro-cid-45vvbmlt]:hover {
  background: var(--color-brand-hover, #14302a);
  box-shadow: 0 4px 16px #1a3c3440;
  transform: translateY(-1px);
}

.evo-cta[data-astro-cid-45vvbmlt]:focus-visible {
  outline: 2px solid var(--color-brand, #1a3c34);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .timeline-track[data-astro-cid-45vvbmlt], .timeline-track[data-astro-cid-45vvbmlt]:after, .milestone-dot[data-astro-cid-45vvbmlt] {
    animation: none !important;
    clip-path: none !important;
  }
}
.landingfaq-list[data-astro-cid-jhknarts] {
  border-top: 1px solid #2c24161a;
}

.landingfaq-item[data-astro-cid-jhknarts] {
  border-bottom: 1px solid #2c24161a;
}

.landingfaq-summary[data-astro-cid-jhknarts] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem .5rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.landingfaq-summary[data-astro-cid-jhknarts]::-webkit-details-marker {
  display: none;
}

.landingfaq-summary[data-astro-cid-jhknarts]::marker {
  content: "";
}

.landingfaq-summary[data-astro-cid-jhknarts]:focus-visible {
  outline: 2px solid var(--color-brand, #1a3c34);
  outline-offset: 2px;
  border-radius: 4px;
}

.landingfaq-question[data-astro-cid-jhknarts] {
  font-family: var(--font-heading, "DM Serif Display", serif);
  font-size: 1.05rem;
  line-height: 1.4;
  color: var(--color-neutral-900, #2c2416);
}

.landingfaq-icon[data-astro-cid-jhknarts] {
  flex-shrink: 0;
  color: var(--color-neutral-700, #5a4f3a);
  transition: color .2s;
}

.landingfaq-icon-line-v[data-astro-cid-jhknarts] {
  transition: transform .25s, opacity .25s;
  transform-origin: center;
}

details[data-astro-cid-jhknarts][open] .landingfaq-icon-line-v[data-astro-cid-jhknarts] {
  transform: rotate(90deg);
  opacity: 0;
}

.landingfaq-answer[data-astro-cid-jhknarts] {
  padding: 0 0 1.25rem;
  animation: .25s landingfaq-slide-down;
}

details[data-astro-cid-jhknarts][open].landingfaq-item {
  border-left: 3px solid var(--faq-accent, var(--color-terracota, #c65d3b));
  padding-left: 1rem;
  margin-left: -1rem;
  border-bottom-color: #0000;
}

@keyframes landingfaq-slide-down {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.landingfaq-finalcta-section[data-astro-cid-jhknarts] {
  background: var(--color-brand, #1a3c34);
  position: relative;
  overflow: hidden;
}

.landingfaq-finalcta-section[data-astro-cid-jhknarts]:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20%, #ffffff0a 0%, #0000 50%), radial-gradient(circle at 80% 30%, #c65d3b0f 0%, #0000 40%), radial-gradient(circle at 50% 80%, #d4af370f 0%, #0000 40%), linear-gradient(135deg, #0000 0%, #d4af370a 50%, #0000 100%);
  pointer-events: none;
}

.landingfaq-finalcta-section[data-astro-cid-jhknarts] > [data-astro-cid-jhknarts] {
  position: relative;
  z-index: 1;
}

.landingfaq-final-cta-btn[data-astro-cid-jhknarts] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: .5rem;
  background: var(--color-white, #fdfbf7);
  color: var(--color-brand, #1a3c34);
  font-family: var(--font-body, "Inter", sans-serif);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all .3s;
  border: 2px solid #d4af374d;
  cursor: pointer;
}

@keyframes goldShimmerFaq {
  0% {
    background-position: -200%;
  }

  100% {
    background-position: 200%;
  }
}

.landingfaq-final-cta-btn[data-astro-cid-jhknarts]:hover {
  background: linear-gradient(90deg, #e1bf4e 0%, #f5e6a3 30%, #e1bf4e 60%, #c49b28 100%);
  background-size: 200%;
  animation: 2s linear infinite goldShimmerFaq;
  color: #0f2920;
  border-color: #0000;
  box-shadow: 0 4px 20px #d4af374d;
  transform: translateY(-1px);
}

.landingfaq-final-cta-btn[data-astro-cid-jhknarts]:focus-visible {
  outline: 2px solid var(--color-white, #fdfbf7);
  outline-offset: 3px;
}

@media (width <= 480px) {
  .landingfaq-question[data-astro-cid-jhknarts] {
    font-size: .95rem;
  }
}
