/* ==========================================================================
   Change is Possible — Section layouts
   ========================================================================== */

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
  padding-bottom: 0;
  background:
    radial-gradient(120% 90% at 8% 0%, rgba(57, 248, 189, 0.16), transparent 55%),
    radial-gradient(90% 80% at 100% 15%, rgba(33, 149, 125, 0.12), transparent 60%),
    var(--paper);
  isolation: isolate;
}
.hero__blob-1 { width: 46vw; height: 46vw; max-width: 620px; max-height: 620px; top: -14%; left: -12%; opacity: 0.32; }
.hero__blob-2 { width: 38vw; height: 38vw; max-width: 500px; max-height: 500px; bottom: 4%; right: -10%; opacity: 0.24; }

.hero__inner {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: end;
  min-height: min(78vh, 760px);
}
@media (max-width: 1000px) {
  .hero__inner { grid-template-columns: minmax(0, 1fr); align-items: start; min-height: 0; }
}

.hero__copy {
  padding-bottom: clamp(2.5rem, 6vw, 5rem);
  display: grid;
  gap: clamp(1.15rem, 2.2vw, 1.65rem);
  align-content: center;
  position: relative;
  z-index: 2;
}

.hero__title {
  font-size: var(--fs-display);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.045em;
}
.hero__title span { display: block; }
.hero__title .l1 { animation: fade-up 800ms var(--e-out) 60ms both; }
.hero__title .l2 { animation: fade-up 800ms var(--e-out) 180ms both; }
.hero__title .l3 { animation: fade-up 800ms var(--e-out) 300ms both; }
.hero__title .l3 em {
  font-style: italic;
  background: var(--grad-text);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: grad-pan 8s ease-in-out infinite;
  padding-right: 0.06em;
}

.hero__lede {
  font-size: var(--fs-md);
  color: var(--slate-500);
  max-width: 46ch;
  line-height: 1.66;
  animation: fade-up 800ms var(--e-out) 420ms both;
}
.hero__lede strong { color: var(--ink-900); }

.hero__cta { animation: fade-up 800ms var(--e-out) 540ms both; }

.hero__proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fade-up 800ms var(--e-out) 660ms both;
}
.hero__avatars { display: flex; }
.hero__avatars img,
.hero__avatars span {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid #fff;
  box-shadow: var(--sh-xs);
  margin-left: -12px;
  transition: transform var(--t) var(--e-spring);
}
.hero__avatars > *:first-child { margin-left: 0; }
.hero__avatars > *:hover { transform: translateY(-5px) scale(1.1); z-index: 2; }
.hero__avatars span {
  display: grid;
  place-items: center;
  background: var(--ink-900);
  color: var(--mint-400);
  font-size: 0.6875rem;
  font-weight: 800;
}
.hero__proof-text { font-size: 0.8125rem; font-weight: 600; color: var(--slate-500); line-height: 1.45; }
.hero__proof-text b { display: block; color: var(--ink-900); font-size: 0.875rem; }

/* Hero visual */
.hero__visual {
  position: relative;
  align-self: end;
  justify-self: center;
  width: 100%;
  max-width: 520px;
}
.hero__portrait {
  position: relative;
  z-index: 2;
  width: 100%;
  filter: drop-shadow(0 34px 46px rgba(7, 16, 13, 0.22));
  animation: fade-up 1s var(--e-out) 300ms both;
}
/* soft disc behind portrait */
.hero__disc {
  position: absolute;
  left: 50%;
  bottom: 0;
  translate: -50% 0;
  width: 92%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--grad-brand);
  opacity: 0.16;
  z-index: 0;
}
.hero__ring {
  position: absolute;
  left: 50%;
  bottom: 2%;
  translate: -50% 0;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1.5px dashed rgba(33, 149, 125, 0.32);
  z-index: 0;
  animation: spin-slow 40s linear infinite;
}

/* floating labels around the portrait */
.hero__tag {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.95rem;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  box-shadow: var(--sh-md);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ink-900);
  white-space: nowrap;
  animation: float-y-sm 5.5s ease-in-out infinite;
}
.hero__tag i {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grad-brand);
  flex: none;
}
.hero__tag--1 { top: 12%; left: -6%; --rot: -3deg; animation-delay: 0s; }
.hero__tag--2 { top: 34%; right: -8%; --rot: 3deg; animation-delay: 0.9s; }
.hero__tag--3 { bottom: 26%; left: -9%; --rot: 2deg; animation-delay: 1.7s; }
.hero__tag--4 { bottom: 8%; right: -4%; --rot: -2deg; animation-delay: 2.4s; }

@media (max-width: 1000px) {
  .hero__visual { max-width: 380px; margin-inline: auto; }
  .hero__tag--1 { left: -2%; }
  .hero__tag--3 { left: -4%; }
}
@media (max-width: 560px) {
  .hero__tag { font-size: 0.6875rem; padding: 0.42rem 0.7rem; }
  .hero__tag--2, .hero__tag--4 { right: -2%; }
}

/* logo cloud / credibility strip under hero */
.credibility {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 4vw, 3rem);
  flex-wrap: wrap;
  padding-block: clamp(1.5rem, 3vw, 2.25rem);
  border-top: 1px solid var(--line);
}
.credibility__label {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate-400);
}
.credibility__item {
  font-size: clamp(0.9375rem, 1.6vw, 1.15rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  opacity: 0.72;
  transition: opacity var(--t), transform var(--t) var(--e-out);
}
.credibility__item:hover { opacity: 1; transform: translateY(-2px); }
.credibility__item em { font-style: normal; color: var(--teal-700); }

/* ==========================================================================
   Audience tabs
   ========================================================================== */
.aud-panel {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(1.75rem, 3.5vw, 3rem);
  border-radius: var(--r-2xl);
  background: linear-gradient(150deg, var(--mint-050), #fff 62%);
  border: 1px solid var(--line);
  box-shadow: var(--sh-md);
}
@media (max-width: 860px) { .aud-panel { grid-template-columns: minmax(0, 1fr); } }

.aud-panel__body { display: grid; gap: 1.1rem; }
.aud-panel__title { font-size: var(--fs-h3); }
.aud-panel__quote {
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--mint-400);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  background: #fff;
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--slate-600);
  box-shadow: var(--sh-xs);
}
.aud-panel__media { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-md); background: #fff; }
.aud-panel__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; }

/* ==========================================================================
   Pain / gain comparison
   ========================================================================== */
.compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: stretch;
}
@media (max-width: 900px) { .compare { grid-template-columns: minmax(0, 1fr); } }

.compare__col {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--r-2xl);
  display: grid;
  gap: 1.1rem;
  align-content: start;
}
.compare__col--from {
  background: var(--paper-2);
  border: 1px solid var(--line);
}
.compare__col--to {
  background: var(--grad-dark);
  color: rgba(255, 255, 255, 0.78);
  box-shadow: var(--sh-xl);
  position: relative;
  overflow: hidden;
}
.compare__col--to::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 60% at 100% 0%, rgba(57, 248, 189, 0.2), transparent 60%);
  pointer-events: none;
}
.compare__col--to h3, .compare__col--to strong { color: #fff; }

.compare__label {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate-400);
}
.compare__col--to .compare__label { color: var(--mint-400); }

.compare__list { display: grid; gap: 0.65rem; }
.compare__list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.compare__list li b { color: inherit; }
.compare__x, .compare__v {
  flex: none;
  display: grid;
  place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  margin-top: 0.1em;
}
.compare__x { background: rgba(178, 59, 59, 0.12); color: #b23b3b; }
.compare__v { background: rgba(57, 248, 189, 0.2); color: var(--mint-400); }
.compare__x svg, .compare__v svg { width: 12px; height: 12px; }

.compare__arrow {
  display: grid;
  place-items: center;
  align-self: center;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--mint-400);
  color: var(--ink-900);
  box-shadow: 0 10px 30px -8px rgba(57, 248, 189, 0.75);
  animation: float-y 4.5s ease-in-out infinite;
}
.compare__arrow svg { width: 26px; height: 26px; }
@media (max-width: 900px) {
  .compare__arrow { rotate: 90deg; margin-inline: auto; width: 48px; height: 48px; }
}

/* ==========================================================================
   Transformation banner (Ani_Mockup)
   ========================================================================== */
.transform-figure {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: linear-gradient(180deg, #fff, var(--mint-050));
  border: 1px solid var(--line);
  box-shadow: var(--sh-lg);
  padding: clamp(1rem, 2.5vw, 2rem);
}
.transform-figure img { width: 100%; }
.transform-figure__badges {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   Case studies
   ========================================================================== */
.case {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  height: 100%;
  padding: clamp(1.5rem, 2.8vw, 2rem);
  border-radius: var(--r-xl);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  transition: transform var(--t) var(--e-out), box-shadow var(--t), border-color var(--t);
}
.case:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: rgba(34, 227, 166, 0.42); }
.case__top { display: flex; align-items: center; gap: 0.9rem; }
.case__avatar {
  width: 62px; height: 62px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--mint-300);
  flex: none;
}
.case__name { font-size: 1.0625rem; font-weight: 800; color: var(--ink-900); line-height: 1.25; }
.case__tag { font-size: 0.75rem; font-weight: 700; color: var(--teal-700); margin-top: 0.2rem; }
.case__kicker {
  font-size: var(--fs-lg);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.015em;
  color: var(--ink-900);
}
.case__body { font-size: 0.9375rem; color: var(--slate-500); line-height: 1.7; }
.case__mix { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: auto; padding-top: 0.9rem; border-top: 1px solid var(--line); }
.case__mix span {
  padding: 0.32em 0.7em;
  border-radius: var(--r-pill);
  background: var(--mint-050);
  border: 1px solid var(--mint-200);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--teal-800);
}

/* ==========================================================================
   Deliverables (vertical tabs) panel
   ========================================================================== */
.deliver {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: center;
  padding: clamp(1.6rem, 3.2vw, 2.75rem);
  border-radius: var(--r-2xl);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--sh-md);
  min-height: 380px;
}
@media (max-width: 860px) { .deliver { grid-template-columns: minmax(0, 1fr); } }
.deliver__body { display: grid; gap: 1.05rem; align-content: center; }
.deliver__title { font-size: var(--fs-h3); }
.deliver__value {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--r-pill);
  background: var(--ink-900);
  color: var(--mint-400);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  width: max-content;
}
.deliver__media {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--paper-3);
  box-shadow: var(--sh-md);
}
.deliver__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; }

/* ==========================================================================
   About / story
   ========================================================================== */
.about {
  position: relative;
  overflow: hidden;
}
.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 940px) { .about__grid { grid-template-columns: minmax(0, 1fr); } }

.about__media { position: relative; }
.about__photo {
  position: relative;
  z-index: 1;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  background: var(--ink-800);
}
.about__photo img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center 22%; }
/* Offset up-and-left so it peeks out past the photo on the opposite side to the
   stat badge, instead of hiding behind it. */
.about__frame {
  position: absolute;
  inset: -18px 18px 18px -18px;
  border: 2px solid var(--mint-400);
  border-radius: var(--r-2xl);
  z-index: 0;
}
@media (max-width: 940px) { .about__frame { inset: -12px 12px 12px -12px; } }
/* Overhangs the photo onto the white page, so it needs its own outline to keep
   an edge — a shadow alone disappears against white. */
.about__badge {
  position: absolute;
  z-index: 2;
  right: -5%;
  bottom: 8%;
  display: grid;
  gap: 0.15rem;
  padding: 0.95rem 1.35rem;
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--line-strong);
  box-shadow: var(--sh-lg);
  text-align: center;
  white-space: nowrap;
  animation: float-y 6s ease-in-out infinite;
}
.about__badge b { font-size: 1.6rem; font-weight: 800; color: var(--teal-700); letter-spacing: -0.03em; line-height: 1; }
.about__badge span { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--slate-500); }
@media (max-width: 560px) { .about__badge { right: 0; bottom: 4%; } }

.about__body { display: grid; gap: 1.2rem; }

/* story timeline */
.tl { display: grid; gap: 0; margin-block: 0.5rem; }
.tl__item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 1.15rem;
  padding-bottom: 1.35rem;
  position: relative;
}
.tl__item:last-child { padding-bottom: 0; }
.tl__marker { position: relative; display: grid; justify-items: center; }
.tl__dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--mint-500);
  margin-top: 0.42em;
  z-index: 1;
  transition: background var(--t), transform var(--t) var(--e-spring);
}
.tl__item:hover .tl__dot { background: var(--mint-400); transform: scale(1.25); }
.tl__bar {
  position: absolute;
  top: 1.5em;
  bottom: -0.3rem;
  width: 2px;
  background: linear-gradient(180deg, var(--mint-300), var(--line-strong));
}
.tl__item:last-child .tl__bar { display: none; }
.tl__text { font-size: 0.96875rem; line-height: 1.66; color: var(--slate-600); }
.tl__text b { color: var(--ink-900); }

/* ==========================================================================
   Guarantee
   ========================================================================== */
.guarantee {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
  align-items: center;
  padding: clamp(1.75rem, 3.5vw, 3rem);
  border-radius: var(--r-2xl);
  background: linear-gradient(140deg, var(--mint-050), #fff 60%);
  border: 1px solid var(--mint-200);
  box-shadow: var(--sh-md);
}
@media (max-width: 720px) { .guarantee { grid-template-columns: minmax(0, 1fr); text-align: center; justify-items: center; } }
.guarantee__seal {
  display: grid;
  place-items: center;
  width: clamp(110px, 16vw, 148px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--grad-brand);
  color: var(--ink-900);
  text-align: center;
  box-shadow: 0 14px 40px -10px rgba(34, 227, 166, 0.75);
  position: relative;
}
.guarantee__seal::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 2px dashed rgba(7, 16, 13, 0.28);
}
.guarantee__seal b { font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 800; line-height: 0.95; letter-spacing: -0.04em; }
.guarantee__seal span { font-size: 0.625rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.guarantee__body { display: grid; gap: 0.85rem; }

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-cta__blob-1 { width: 40vw; height: 40vw; max-width: 520px; max-height: 520px; top: -18%; left: -8%; opacity: 0.3; }
.final-cta__blob-2 { width: 34vw; height: 34vw; max-width: 440px; max-height: 440px; bottom: -20%; right: -6%; opacity: 0.22; }
.final-cta__inner { display: grid; gap: clamp(1.35rem, 3vw, 2.15rem); justify-items: center; position: relative; z-index: 1; }
.final-cta h2 { font-size: var(--fs-h1); letter-spacing: -0.04em; }

/* waitlist card */
.waitlist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(1.75rem, 3.5vw, 3rem);
  border-radius: var(--r-2xl);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-dark);
  backdrop-filter: blur(10px);
  text-align: left;
}
@media (max-width: 860px) { .waitlist { grid-template-columns: minmax(0, 1fr); } }
