/* =============================================================================
   entify. landing — design tokens, layout, responsive behavior
   Palette: exact hex values from brand spec (image_0)
   ============================================================================= */

:root {
  /* Brand palette — do not substitute generic colors */
  --primary-dark: #2c3531;
  --secondary-teal: #116466;
  --accent-beige: #d9b08c;
  --accent-peach: #ffcb9a;
  --background-light: #d1e8e2;

  /* Derived UI tokens */
  --text-body: color-mix(in srgb, var(--primary-dark) 88%, white);
  --text-muted: color-mix(in srgb, var(--primary-dark) 55%, white);
  --surface: #ffffff;
  --surface-soft: color-mix(in srgb, var(--background-light) 35%, white);
  --surface-card: color-mix(in srgb, var(--background-light) 22%, white);
  --border-subtle: color-mix(in srgb, var(--primary-dark) 8%, transparent);
  --teal-hover: #0d5052;
  --teal-soft: color-mix(in srgb, var(--secondary-teal) 14%, transparent);
  --teal-softer: color-mix(in srgb, var(--secondary-teal) 8%, transparent);
  --shadow-soft: 0 24px 60px color-mix(in srgb, var(--primary-dark) 12%, transparent);
  --radius-lg: 24px;
  --radius-pill: 999px;
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --container: min(1120px, calc(100% - 2.5rem));
  --header-h: 4.25rem;
}

/* Fallbacks where color-mix is unsupported */
@supports not (color: color-mix(in srgb, black 50%, white)) {
  :root {
    --text-body: #3d4542;
    --text-muted: #6a726f;
    --surface-soft: #e8f4f1;
    --surface-card: #eef7f5;
    --border-subtle: rgba(44, 53, 49, 0.08);
    --teal-soft: rgba(17, 100, 102, 0.14);
    --teal-softer: rgba(17, 100, 102, 0.08);
    --shadow-soft: 0 24px 60px rgba(44, 53, 49, 0.12);
  }
}

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

html {
  /* Smooth scroll fights ScrollTrigger pin timing; pin uses start: "top top" */
  scroll-behavior: auto;
  scroll-padding-top: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

#main {
  margin: 0;
  padding: 0;
  /* Offset for fixed header so first scroll hits ScrollTrigger start at scrollY≈0 */
  padding-top: var(--header-h);
}

#creators.hero {
  margin-top: 0;
  scroll-margin-top: 0;
}

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

a {
  color: var(--secondary-teal);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--teal-hover);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--secondary-teal);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* -----------------------------------------------------------------------------
   Header & navigation
   ----------------------------------------------------------------------------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}

@supports not (backdrop-filter: blur(12px)) {
  .site-header {
    background: var(--surface);
  }
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

/* Logo: lowercase “entify.” + period; color = primary-dark per spec */
.logo {
  text-decoration: none;
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--primary-dark);
  text-transform: lowercase;
}

.logo:hover .logo-text {
  color: var(--secondary-teal);
}

/* CSS-only mobile menu */
/* Removed from flex layout so mobile row is logo | menu button */
.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.nav-toggle-label {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 10px;
}

.nav-toggle-label:hover {
  background: var(--teal-softer);
}

.nav-toggle-bar {
  width: 22px;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  text-decoration: none;
}

.nav-list a:hover {
  color: var(--secondary-teal);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.35rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}

/* Get Started — teal per spec */
.btn--header {
  background: var(--secondary-teal);
  color: #fff;
  box-shadow: 0 2px 12px var(--teal-soft);
}

.btn--header:hover {
  background: var(--teal-hover);
  color: #fff;
  box-shadow: 0 4px 20px var(--teal-soft);
  transform: translateY(-1px);
}

.btn--header:active {
  transform: translateY(0);
}

/* Apply Now — dark pill like structural reference */
.btn--primary {
  background: var(--primary-dark);
  color: #fff;
  padding: 0.85rem 1.65rem;
  font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(44, 53, 49, 0.2);
}

.btn--primary:hover {
  background: var(--secondary-teal);
  color: #fff;
  box-shadow: 0 6px 28px var(--teal-soft);
  transform: translateY(-1px);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn-arrow {
  font-size: 1.1em;
  transition: transform 0.2s ease;
}

.btn--primary:hover .btn-arrow {
  transform: translateX(4px);
}

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

.hero {
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 8vw, 6rem);
  background: linear-gradient(
    180deg,
    var(--surface) 0%,
    color-mix(in srgb, var(--background-light) 18%, white) 100%
  );
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  overflow: visible;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary-teal);
  margin: 0 0 1rem;
}

.hero-title {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--primary-dark);
}

.hero-lead {
  margin: 0 0 2rem;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: var(--text-muted);
  max-width: 36ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-timeline-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(52vh, 28rem);
  padding: clamp(1rem, 3vw, 2rem) 0;
  overflow: visible;
}

/* -----------------------------------------------------------------------------
   Hero — minimal floating timeline (GSAP + ScrollTrigger)
   ----------------------------------------------------------------------------- */

.creator-timeline {
  position: relative;
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  padding: 100px clamp(0.5rem, 2vw, 1rem);
  min-height: min(220px, 30vh);
  overflow: visible;
}

.creator-timeline__rail {
  position: relative;
  min-height: 12rem;
  padding: clamp(4.25rem, 11vw, 6.5rem) 0;
  margin: 0;
  overflow: visible;
}

/* Track mask: clips motion + soft-fades entire assembly at left/right (no background here) */
.creator-timeline__mask {
  position: relative;
  width: 100%;
  min-height: 13rem;
  padding: clamp(2.75rem, 7vw, 3.75rem) 0 clamp(2.25rem, 5vw, 3.25rem);
  overflow-x: clip;
  overflow-y: visible;
  isolation: isolate;
  background: transparent;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

@supports not (overflow: clip) {
  .creator-timeline__mask {
    overflow: hidden;
    padding-bottom: clamp(3.5rem, 9vw, 5rem);
  }
}

.creator-timeline__line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(
    90deg,
    transparent 0%,
    color-mix(in srgb, var(--primary-dark) 18%, transparent) 12%,
    color-mix(in srgb, var(--primary-dark) 35%, transparent) 50%,
    color-mix(in srgb, var(--primary-dark) 18%, transparent) 88%,
    transparent 100%
  );
  pointer-events: none;
}

.creator-timeline__anomalies {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.creator-timeline__anomaly {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: -0.78rem;
  margin-left: -0.675rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: color-mix(in srgb, #c45c3e 55%, var(--primary-dark));
  opacity: 0;
  transform: translate3d(0, -4px, 0) scale(1);
  transform-origin: 50% 80%;
  filter: drop-shadow(0 0 10px color-mix(in srgb, #e87850 45%, transparent))
    drop-shadow(0 0 20px color-mix(in srgb, #d4624a 22%, transparent));
}

.creator-timeline__anomaly svg {
  width: 100%;
  height: 100%;
}

.creator-timeline__anomaly:nth-child(1) {
  left: 22%;
}

.creator-timeline__anomaly:nth-child(2) {
  left: 48%;
}

.creator-timeline__anomaly:nth-child(3) {
  left: 74%;
}

/* Problem callouts — fine red strokes; GSAP opacity */
.creator-timeline__callouts {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}

.creator-timeline__callout {
  position: absolute;
  top: calc(50% + 0.72rem);
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 5.5rem;
  margin-left: -2.75rem;
  color: color-mix(in srgb, #c45c3e 72%, var(--primary-dark));
  opacity: 0;
  will-change: opacity, transform;
}

.creator-timeline__callout:nth-child(1) {
  left: 22%;
}

.creator-timeline__callout:nth-child(2) {
  left: 48%;
}

.creator-timeline__callout:nth-child(3) {
  left: 74%;
}

.creator-timeline__callout-text {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0.35rem 0 0;
  line-height: 1.25;
  color: inherit;
}

.creator-timeline__callout-arrow {
  display: block;
  width: 1.35rem;
  height: auto;
  flex-shrink: 0;
  opacity: 0.95;
}

/* Energy barrier: teal blade; right edge at GSAP x (20% smaller than v1 for sleeker look) */
.creator-timeline__barrier {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 7;
  width: 6px;
  height: 80px;
  margin-top: -40px;
  margin-left: -6px;
  pointer-events: none;
  opacity: 0;
  will-change: transform, opacity;
  display: block;
}

.creator-timeline__barrier-core {
  display: block;
  width: 6px;
  height: 80px;
  border-radius: 8px;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, white 22%, var(--secondary-teal)),
    var(--secondary-teal) 22%,
    var(--secondary-teal) 78%,
    color-mix(in srgb, white 18%, var(--secondary-teal))
  );
  box-shadow:
    0 0 10px var(--secondary-teal),
    0 0 19px var(--secondary-teal),
    0 0 32px rgba(17, 100, 102, 0.44),
    0 0 51px rgba(17, 100, 102, 0.28),
    inset 0 0 0 1px color-mix(in srgb, white 35%, transparent);
}

.creator-timeline__anno {
  position: absolute;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--secondary-teal);
}

.creator-timeline__anno-text {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.2rem;
  line-height: 1.25;
}

.creator-timeline__anno-arrow {
  display: block;
  width: 1.5rem;
  height: auto;
  opacity: 0.95;
}

.creator-timeline__anno-arrow--down {
  flex-shrink: 0;
}

/* "vy" — above track, arrow points down at pin; moves with playhead wrap */
.creator-timeline__anno--you {
  left: 50%;
  top: calc(50% - 5.35rem);
  width: 3.25rem;
  margin-left: -1.625rem;
  align-items: center;
  z-index: 1;
  color: var(--secondary-teal);
}

/* "my" — above track, centered on barrier, arrow points down; moves with barrier */
.creator-timeline__anno--us {
  left: 50%;
  right: auto;
  top: auto;
  bottom: calc(100% + 2px);
  width: 3.25rem;
  margin-left: -1.625rem;
  margin-right: 0;
  margin-top: 0;
  align-items: center;
  text-align: center;
}

.creator-timeline__anno--us .creator-timeline__anno-text {
  align-self: center;
}

.creator-timeline__anno--us .creator-timeline__anno-arrow {
  align-self: center;
  width: 1.5rem;
}

.creator-timeline__playhead-wrap {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 8;
  width: 14px;
  margin-left: -7px;
  pointer-events: none;
  will-change: transform, opacity;
}

.creator-timeline__playhead {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.creator-timeline__playhead-inner {
  position: absolute;
  left: 50%;
  top: calc(50% - 2.45rem);
  margin-left: -7px;
  width: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform-origin: 50% 0;
  will-change: transform;
}

.creator-timeline__playhead-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  background: radial-gradient(
    circle at 35% 30%,
    color-mix(in srgb, white 35%, var(--secondary-teal)),
    var(--secondary-teal)
  );
  box-shadow:
    0 0 0 1px color-mix(in srgb, white 25%, transparent),
    0 0 12px color-mix(in srgb, var(--secondary-teal) 75%, transparent),
    0 0 28px color-mix(in srgb, var(--secondary-teal) 45%, transparent);
}

.creator-timeline__playhead-stem {
  width: 2px;
  height: 3.4rem;
  margin-top: 3px;
  flex-shrink: 0;
  background: linear-gradient(
    180deg,
    var(--secondary-teal) 0%,
    color-mix(in srgb, var(--secondary-teal) 55%, transparent) 42%,
    color-mix(in srgb, var(--secondary-teal) 18%, transparent) 100%
  );
  border-radius: 1px;
  box-shadow: 0 0 10px color-mix(in srgb, var(--secondary-teal) 45%, transparent);
}

.creator-timeline__finale {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  padding: 0 clamp(0.75rem, 3vw, 1.25rem);
  box-sizing: border-box;
  z-index: 10;
}

.creator-timeline__finale-mark {
  margin: 0 0 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: lowercase;
  color: var(--secondary-teal);
  opacity: 0.85;
}

.creator-timeline__finale-headline {
  margin: 0 auto;
  max-width: 28ch;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: color-mix(in srgb, var(--primary-dark) 88%, var(--secondary-teal));
  text-shadow:
    0 0 20px color-mix(in srgb, var(--secondary-teal) 42%, transparent),
    0 0 42px color-mix(in srgb, var(--secondary-teal) 24%, transparent),
    0 0 72px color-mix(in srgb, var(--secondary-teal) 12%, transparent);
}

.creator-timeline--cleared .creator-timeline__anomaly {
  visibility: hidden;
  pointer-events: none;
}

.creator-timeline--cleared .creator-timeline__finale {
  opacity: 1;
}

.creator-timeline--cleared .creator-timeline__line {
  opacity: 0;
}

.creator-timeline--cleared .creator-timeline__callout {
  opacity: 0 !important;
  visibility: hidden !important;
}

/* -----------------------------------------------------------------------------
   Services grid
   ----------------------------------------------------------------------------- */

.section-alt {
  background: var(--surface-soft);
  border-block: 1px solid color-mix(in srgb, var(--accent-beige) 35%, transparent);
}

.section-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 3rem;
}

.section-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--primary-dark);
}

.section-sub {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.services {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-soft);
  border-color: color-mix(in srgb, var(--secondary-teal) 22%, transparent);
  transform: translateY(-2px);
}

.service-icon {
  color: var(--secondary-teal);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-softer);
  border-radius: 14px;
}

.service-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.service-text {
  margin: 0;
  flex: 1;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.service-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--secondary-teal);
  text-decoration: none;
  margin-top: 0.25rem;
  align-self: flex-start;
}

.service-link:hover {
  color: var(--teal-hover);
}

.service-link span {
  display: inline-block;
  transition: transform 0.2s ease;
}

.service-link:hover span {
  transform: translateX(4px);
}

/* -----------------------------------------------------------------------------
   About + brands
   ----------------------------------------------------------------------------- */

.about {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.about-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

.pillar-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pillar-list li {
  padding-left: 1.25rem;
  border-left: 3px solid var(--accent-beige);
  color: var(--text-body);
  font-size: 0.98rem;
}

.pillar-list strong {
  color: var(--primary-dark);
}

.about-highlight {
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--accent-peach) 45%, white),
    color-mix(in srgb, var(--background-light) 50%, white)
  );
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border: 1px solid color-mix(in srgb, var(--accent-beige) 40%, transparent);
}

.highlight-quote {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--primary-dark);
}

.highlight-meta {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.brands {
  padding: 2.5rem 0;
  background: var(--primary-dark);
  color: color-mix(in srgb, white 88%, var(--background-light));
}

.brands-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brands-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-peach);
}

.brands-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.9;
}

/* -----------------------------------------------------------------------------
   Problem agitation
   ----------------------------------------------------------------------------- */

.problem {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
  background: var(--surface);
}

.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.problem-heading {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--primary-dark);
  max-width: 16ch;
}

.problem-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  color: var(--text-body);
  line-height: 1.45;
}

.problem-check {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--teal-softer);
  color: var(--secondary-teal);
}

.problem-text {
  padding-top: 0.2rem;
}

/* -----------------------------------------------------------------------------
   How it works (process)
   ----------------------------------------------------------------------------- */

.process {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.process-head {
  max-width: 40rem;
  margin: 0 0 clamp(2.5rem, 5vw, 3.5rem);
  text-align: left;
}

.process-head .section-title {
  margin: 0;
}

.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 2.5rem);
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 1.35rem;
  left: calc(16.666% + 1.5rem);
  right: calc(16.666% + 1.5rem);
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--teal-soft),
    color-mix(in srgb, var(--secondary-teal) 35%, transparent) 50%,
    var(--teal-soft)
  );
  pointer-events: none;
  z-index: 0;
}

@supports not (color: color-mix(in srgb, black 50%, white)) {
  .process-steps::before {
    background: linear-gradient(90deg, var(--teal-soft), rgba(17, 100, 102, 0.2), var(--teal-soft));
  }
}

.process-step {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: 0 1px 0 color-mix(in srgb, var(--primary-dark) 4%, transparent);
}

.process-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0 0 1rem;
  border-radius: 50%;
  border: 2px solid var(--secondary-teal);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--secondary-teal);
  background: var(--surface);
}

.process-title {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
}

.process-text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* -----------------------------------------------------------------------------
   Who it's for (qualification)
   ----------------------------------------------------------------------------- */

.qualify {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  background: var(--surface);
}

.qualify-panel {
  max-width: 44rem;
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--accent-beige) 18%, white);
  border: 1px solid color-mix(in srgb, var(--accent-beige) 45%, transparent);
  text-align: center;
}

.qualify-heading {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--primary-dark);
}

.qualify-text {
  margin: 0;
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  color: var(--text-body);
  line-height: 1.65;
}

/* -----------------------------------------------------------------------------
   FAQ
   ----------------------------------------------------------------------------- */

.faq {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
  background: color-mix(in srgb, var(--background-light) 12%, white);
  border-block: 1px solid color-mix(in srgb, var(--accent-beige) 22%, transparent);
}

.faq-wrap {
  max-width: 40rem;
  margin-inline: auto;
}

.faq-title {
  text-align: center;
  margin: 0 0 2.25rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-item:hover {
  border-color: color-mix(in srgb, var(--secondary-teal) 18%, transparent);
}

.faq-item[open] {
  box-shadow: var(--shadow-soft);
  border-color: color-mix(in srgb, var(--secondary-teal) 22%, transparent);
}

.faq-q {
  cursor: pointer;
  list-style: none;
  display: block;
  padding: 1.15rem 1.35rem;
  padding-right: 2.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-dark);
  position: relative;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid var(--secondary-teal);
  border-bottom: 2px solid var(--secondary-teal);
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-q::after {
  transform: translateY(-20%) rotate(225deg);
}

.faq-a {
  padding: 0 1.35rem 1.25rem;
  border-top: 1px solid var(--border-subtle);
}

.faq-a p {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* -----------------------------------------------------------------------------
   Final CTA
   ----------------------------------------------------------------------------- */

.final-cta {
  padding: clamp(3.5rem, 9vw, 5.5rem) 0;
  background: var(--primary-dark);
  color: color-mix(in srgb, white 92%, var(--background-light));
}

.final-cta-inner {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
}

.final-cta-title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
}

.final-cta-lead {
  margin: 0 0 1.75rem;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.55;
  color: color-mix(in srgb, white 72%, var(--accent-peach));
}

.btn--final-cta {
  background: var(--secondary-teal);
  color: #fff;
  padding: 0.9rem 1.85rem;
  font-size: 1rem;
  box-shadow: 0 4px 24px color-mix(in srgb, var(--secondary-teal) 45%, transparent);
  text-decoration: none;
}

.btn--final-cta:hover {
  background: var(--teal-hover);
  color: #fff;
  box-shadow: 0 6px 32px color-mix(in srgb, var(--secondary-teal) 55%, transparent);
  transform: translateY(-1px);
}

.btn--final-cta:active {
  transform: translateY(0);
}

/* -----------------------------------------------------------------------------
   Footer
   ----------------------------------------------------------------------------- */

.site-footer {
  padding: clamp(2.5rem, 5vw, 4rem) 0 2rem;
  background: color-mix(in srgb, var(--background-light) 25%, white);
  border-top: 1px solid var(--border-subtle);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem 3rem;
}

.footer-brand .logo--footer .logo-text {
  font-size: 1.5rem;
}

.footer-tagline {
  margin: 0.75rem 0 0;
  max-width: 28ch;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-heading {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-dark);
}

.footer-contact p {
  margin: 0 0 0.5rem;
}

.footer-contact a {
  font-weight: 600;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-meta {
  grid-column: 1 / -1;
  padding-top: 2rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--border-subtle);
}

.copyright {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* -----------------------------------------------------------------------------
   Responsive
   ----------------------------------------------------------------------------- */

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-timeline-col {
    order: -1;
    max-width: 22rem;
    min-height: auto;
    margin-inline: auto;
    padding: 0.5rem 0 1.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .problem-heading {
    max-width: none;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .process-steps::before {
    display: none;
  }

  .process-step {
    position: relative;
    padding-left: 1.25rem;
    border-left: 3px solid var(--secondary-teal);
  }

  .process-num {
    margin-bottom: 0.75rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle-label {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.25rem 1.5rem;
    background: color-mix(in srgb, var(--surface) 97%, var(--background-light));
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.3s ease,
      opacity 0.3s ease;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-bottom: 1rem;
  }

  .nav-list li {
    width: 100%;
    border-bottom: 1px solid var(--border-subtle);
  }

  .nav-list a {
    display: block;
    padding: 0.85rem 0;
  }

  .btn--header {
    width: 100%;
    justify-content: center;
  }

  .nav-toggle:checked ~ .nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle:checked ~ .nav-toggle-label .nav-toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle:checked ~ .nav-toggle-label .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked ~ .nav-toggle-label .nav-toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  :root {
    --container: calc(100% - 1.5rem);
  }

  .hero-title {
    font-size: 1.75rem;
  }
}
