:root {
  --bg: #fffef8;
  --ink: #0d2123;
  --ink-2: #123033;
  --muted: #456165;
  --cream: #fbf9eb;
  --blue: #a7d9de;
  --sky: #4fbfcb;
  --green: #0f6b5d;
  --green-dark: #0a4f45;
  --copper: #b86b42;
  --coral: #e28768;
  --signal: #d5df59;
  --product-blue: #295f8f;
  --line: #d8ded2;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(13, 33, 35, 0.12);
  --shadow-soft: 0 16px 46px rgba(13, 33, 35, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(120deg, rgba(167, 217, 222, 0.18), transparent calc(26% + var(--scroll-shift, 0px))),
    linear-gradient(180deg, var(--bg) 0%, #f8fbf2 46%, var(--bg) 100%);
  background-attachment: fixed;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(13, 33, 35, 0.1);
  background: rgba(255, 254, 248, 0.88);
  backdrop-filter: blur(18px) saturate(135%);
}

.nav {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  text-decoration: none;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink-2);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--green);
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sky), var(--signal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg) !important;
  box-shadow: 0 12px 28px rgba(13, 33, 35, 0.14);
}

.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  min-height: 42px;
  padding: 0 14px;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 700;
  color: var(--ink);
}

.section {
  padding: clamp(56px, 8vw, 104px) 0;
}

.section.soft {
  position: relative;
  background:
    radial-gradient(circle at 0% 0%, rgba(167, 217, 222, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(213, 223, 89, 0.15) 0%, transparent 50%),
    linear-gradient(180deg, var(--cream), #f7fbef);
  overflow: hidden;
}

.section.soft::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23a7d9de' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.section.soft > .wrap {
  position: relative;
  z-index: 1;
}

.wrap {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(18px, 3.5vw, 40px) 0 clamp(24px, 4vw, 44px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(13, 33, 35, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 33, 35, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
}

.hero > .wrap {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.46fr);
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
}

.eyebrow,
.kicker {
  margin: 0 0 10px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
  line-height: 1.02;
  color: var(--ink);
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  max-width: min(700px, 100%);
  font-size: clamp(2.15rem, 4.45vw, 3.9rem);
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4.25rem);
}

h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
}

p {
  margin: 0;
}

.lead {
  margin-top: 14px;
  max-width: min(650px, 100%);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  color: var(--muted);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  align-items: center;
}

.chip-arrow {
  display: flex;
  align-items: center;
  color: var(--muted);
  opacity: 0.5;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(13, 33, 35, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-2);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
}

.actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--bg);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  box-shadow: 0 8px 24px rgba(13, 33, 35, 0.12);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.button:hover,
.button:focus-visible {
  background: var(--ink-2);
  box-shadow: 0 12px 30px rgba(13, 33, 35, 0.18);
  transform: translateY(-2px);
}

.button.secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: var(--white);
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(13, 33, 35, 0.1);
}

.polaroid-card {
  position: relative;
  background: var(--white);
  padding: 14px 14px 34px 14px;
  border-radius: 4px;
  box-shadow: 0 24px 64px rgba(13, 33, 35, 0.18), 0 4px 12px rgba(13, 33, 35, 0.08);
  max-width: 320px;
  justify-self: end;
  transform: rotate(2deg);
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 300ms ease;
  z-index: 2;
}

.polaroid-card:hover {
  transform: translateY(-8px) rotate(-1deg) scale(1.02);
  box-shadow: 0 32px 80px rgba(13, 33, 35, 0.22), 0 8px 24px rgba(13, 33, 35, 0.12);
}

.polaroid-frame {
  position: relative;
}

.polaroid-frame img {
  width: 100%;
  aspect-ratio: 4 / 4.5;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
  background: var(--cream);
  filter: contrast(1.05) saturate(1.05);
}

.polaroid-caption {
  position: absolute;
  bottom: -28px;
  left: 0;
  right: 0;
  text-align: center;
}

.polaroid-caption strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.95rem;
  color: var(--ink);
}

.polaroid-caption span {
  display: block;
  margin-top: 2px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.polaroid-pin {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #e28768, #b85c4a);
  box-shadow: -2px 4px 6px rgba(13, 33, 35, 0.3), inset -2px -2px 4px rgba(0,0,0,0.2);
}
.polaroid-pin::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
}

/* Hero Intro Animation */
.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: center;
}

.hero-intro {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 10;
  background: var(--bg);
  transition: opacity 800ms ease, visibility 800ms ease;
}

.hero-intro.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero-intro-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: opacity 600ms cubic-bezier(0.34, 1.56, 0.64, 1), transform 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-intro.play .hero-intro-node {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero-intro-icon {
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(13, 33, 35, 0.12);
}

.hero-intro-icon.find {
  background: linear-gradient(135deg, rgba(79, 191, 203, 0.18), rgba(167, 217, 222, 0.3));
  color: var(--green-dark);
}

.hero-intro-icon.test {
  background: linear-gradient(135deg, rgba(226, 135, 104, 0.18), rgba(184, 107, 66, 0.2));
  color: var(--copper);
}

.hero-intro-icon.build {
  background: linear-gradient(135deg, rgba(213, 223, 89, 0.2), rgba(15, 107, 93, 0.15));
  color: var(--green);
}

.hero-intro-node span {
  font-family: Montserrat, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}

.hero-intro-arrow {
  opacity: 0;
  transform: translateX(-10px);
  color: var(--muted);
  transition: opacity 400ms ease, transform 400ms ease;
}

.hero-intro.play .hero-intro-arrow {
  opacity: 0.5;
  transform: translateX(0);
}

.hero-intro.play .hero-intro-node:nth-child(1) { transition-delay: 100ms; }
.hero-intro.play .hero-intro-arrow:nth-child(2) { transition-delay: 300ms; }
.hero-intro.play .hero-intro-node:nth-child(3) { transition-delay: 500ms; }
.hero-intro.play .hero-intro-arrow:nth-child(4) { transition-delay: 700ms; }
.hero-intro.play .hero-intro-node:nth-child(5) { transition-delay: 900ms; }

.hero-content {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 800ms ease, transform 800ms ease;
}

.hero-content.fade-in {
  opacity: 1;
  transform: translateY(0);
}


.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-head p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.08rem;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-top: 4px solid rgba(79, 191, 203, 0.72);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  box-shadow: 0 16px 40px rgba(13, 33, 35, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.card:nth-child(3n + 2) {
  border-top-color: rgba(226, 135, 104, 0.8);
}

.card:nth-child(3n + 3) {
  border-top-color: rgba(213, 223, 89, 0.9);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(13, 33, 35, 0.12);
  border-color: rgba(13, 33, 35, 0.18);
}

.card.tint {
  background:
    linear-gradient(160deg, rgba(167, 217, 222, 0.22), rgba(251, 249, 235, 0.96));
}

.card .meta,
.stat .meta {
  display: block;
  margin-bottom: 12px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--green);
  text-transform: uppercase;
}

.card p {
  margin-top: 10px;
  color: var(--muted);
}

.card a {
  display: inline-block;
  margin-top: 18px;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  text-decoration: none;
  transition: color 160ms ease;
}

.card a:hover,
.card a:focus-visible {
  color: var(--product-blue);
}

.quote-card {
  position: relative;
  min-height: 118px;
  padding: 22px;
  padding-top: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.25;
  box-shadow: 0 16px 40px rgba(13, 33, 35, 0.08);
}

.chat-bubble {
  min-height: auto;
  padding: 16px 20px;
  border-radius: 18px 18px 18px 4px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 8px 16px rgba(13, 33, 35, 0.06);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink-2);
}

.chat-bubble:nth-child(even) {
  border-radius: 18px 18px 4px 18px;
  background: linear-gradient(135deg, var(--ink), var(--ink-2));
  color: var(--bg);
  border-color: transparent;
}

.chat-bubble .quote-icon {
  display: none;
}

.quote-icon {
  position: absolute;
  top: 14px;
  left: 18px;
  width: 28px;
  height: 28px;
}

.narrative-block {
  max-width: 900px;
}

.narrative-block p:not(.kicker) {
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
}

/* Shift panel — animated From → To crossfade on scroll */
.shift-panel {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow-soft);
}

/* Before trigger: From side fully visible, To side dimmed */
[data-animate-shift] .shift-from {
  transition: opacity 800ms ease, transform 800ms ease;
}

[data-animate-shift] .shift-to {
  opacity: 0.28;
  transform: translateX(8px);
  transition: opacity 1000ms ease 400ms, transform 1000ms ease 400ms;
}

[data-animate-shift] .shift-from li {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 700ms ease, transform 700ms ease;
}

/* After trigger: From dims and retracts, To brightens and slides home */
[data-animate-shift].shift-revealed .shift-from {
  opacity: 0.65;
}

[data-animate-shift].shift-revealed .shift-from li {
  opacity: 0.75;
  transform: translateX(-6px);
}

[data-animate-shift].shift-revealed .shift-from li:nth-child(1) { transition-delay: 0ms; }
[data-animate-shift].shift-revealed .shift-from li:nth-child(2) { transition-delay: 150ms; }
[data-animate-shift].shift-revealed .shift-from li:nth-child(3) { transition-delay: 300ms; }
[data-animate-shift].shift-revealed .shift-from li:nth-child(4) { transition-delay: 450ms; }

[data-animate-shift].shift-revealed .shift-to {
  opacity: 1;
  transform: translateX(0);
}

[data-animate-shift].shift-revealed .shift-to li {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 800ms ease, transform 800ms ease;
}

[data-animate-shift].shift-revealed .shift-to li:nth-child(1) { transition-delay: 500ms; }
[data-animate-shift].shift-revealed .shift-to li:nth-child(2) { transition-delay: 700ms; }
[data-animate-shift].shift-revealed .shift-to li:nth-child(3) { transition-delay: 900ms; }
[data-animate-shift].shift-revealed .shift-to li:nth-child(4) { transition-delay: 1100ms; }

/* Initial state for To-side list items */
[data-animate-shift] .shift-to li {
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 700ms ease, transform 700ms ease;
}



.shift-from,
.shift-to {
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 254, 248, 0.96));
}

.shift-from {
  background:
    linear-gradient(180deg, rgba(255, 248, 248, 0.98), rgba(255, 254, 248, 0.96));
}

.shift-to {
  background:
    linear-gradient(180deg, rgba(245, 255, 248, 0.98), rgba(255, 254, 248, 0.96));
}

.shift-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--green);
}

.shift-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: var(--muted);
}

.shift-panel li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.shift-icon {
  flex-shrink: 0;
}

.shift-from .shift-icon {
  color: #b85c4a;
}

.shift-to .shift-icon {
  color: var(--green);
}

.method-card h3 {
  max-width: 320px;
}

.story-card blockquote {
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.24;
}

.story-card cite {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-style: normal;
}

.level {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.level:first-child {
  border-top: 1px solid var(--line);
}

.level-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background:
    linear-gradient(135deg, var(--blue), var(--signal));
  color: var(--ink);
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 800;
}

.route-list {
  display: grid;
  gap: 12px;
}

.route {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(13, 33, 35, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 254, 248, 0.96));
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.route:hover {
  transform: translateY(-2px);
  border-color: rgba(13, 33, 35, 0.18);
  box-shadow: 0 22px 52px rgba(13, 33, 35, 0.11);
}

.route strong {
  display: block;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.9rem;
}

.route span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.stat {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 242, 0.96));
}

.stat strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--product-blue);
}

.embed-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.embed-frame iframe {
  display: block;
  width: 100%;
  border: 0;
}

.testimonial {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial blockquote {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.22;
}

.testimonial cite {
  display: block;
  margin-top: 22px;
  color: var(--muted);
  font-style: normal;
}

/* Process flow diagram — Find → Test → Build */
.process-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  padding: 32px 0;
}

.process-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 1 200px;
  gap: 8px;
}

.process-icon {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(13, 33, 35, 0.12);
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.process-icon svg {
  width: 40px;
  height: 40px;
}

.process-icon.find {
  background: linear-gradient(135deg, rgba(79, 191, 203, 0.18), rgba(167, 217, 222, 0.3));
  color: var(--green-dark);
}

.process-icon.test {
  background: linear-gradient(135deg, rgba(226, 135, 104, 0.18), rgba(184, 107, 66, 0.2));
  color: var(--copper);
}

.process-icon.build {
  background: linear-gradient(135deg, rgba(213, 223, 89, 0.2), rgba(15, 107, 93, 0.15));
  color: var(--green);
}

.process-node:hover .process-icon {
  transform: scale(1.08) translateY(-4px);
  box-shadow: 0 12px 24px rgba(13, 33, 35, 0.12);
  border-color: var(--sky);
}

.process-label {
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}

.process-desc {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 180px;
}

.process-connector {
  flex: 0 1 80px;
  min-width: 40px;
  color: var(--muted);
  opacity: 0.5;
}

/* Section dividers — animated expanding line */
.section-divider {
  width: 0;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--sky), var(--signal), var(--coral), transparent);
  opacity: 0.4;
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-divider.divider-revealed {
  width: min(500px, 80%);
}

/* Image reveals */
[data-animate-image] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

[data-animate-image].image-revealed {
  opacity: 1;
  transform: translateY(0);
}

.signal-band {
  background:
    linear-gradient(135deg, rgba(79, 191, 203, 0.2), rgba(213, 223, 89, 0.14) 48%, rgba(226, 135, 104, 0.16));
}

.ai-band {
  background:
    linear-gradient(135deg, #0d2123, #123033 58%, #295f8f);
  color: var(--bg);
}

.ai-band h2,
.ai-band h3,
.ai-band p,
.ai-band .kicker {
  color: var(--bg);
}

.ai-band .section-head p,
.ai-band .card p,
.ai-band .card .meta {
  color: rgba(255, 254, 248, 0.78);
}

.ai-band .card {
  background: rgba(255, 254, 248, 0.08);
  border-color: rgba(255, 254, 248, 0.2);
  box-shadow: none;
}

.ai-band .card:nth-child(3n + 1) {
  border-top-color: var(--sky);
}

.ai-band .card:nth-child(3n + 2) {
  border-top-color: var(--signal);
}

.ai-band .card:nth-child(3n + 3) {
  border-top-color: var(--coral);
}

.founder-stack {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.founder-proof {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(255, 254, 248, 0.18);
  border-radius: 8px;
  background: rgba(255, 254, 248, 0.08);
}

.founder-proof strong {
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.founder-proof span {
  color: rgba(255, 254, 248, 0.78);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 11px 12px;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-status {
  min-height: 24px;
  color: var(--muted);
}

.form-status[data-state="success"] {
  color: var(--green);
}

.form-status[data-state="error"] {
  color: #9f3f2f;
}

.logos {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
}

.logos img {
  max-height: 58px;
  width: auto;
  object-fit: contain;
}

.final-cta {
  text-align: center;
  padding: clamp(56px, 8vw, 96px);
  border-radius: 8px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, var(--ink), var(--ink-2) 55%, var(--product-blue));
  color: var(--bg);
}

.final-cta h2,
.final-cta p {
  color: var(--bg);
}

.final-cta p {
  max-width: 700px;
  margin: 18px auto 0;
  opacity: 0.82;
}

.final-cta .button.secondary {
  border-color: rgba(255, 254, 248, 0.72);
  color: var(--bg);
}

.final-cta .button.secondary:hover,
.final-cta .button.secondary:focus-visible {
  background: var(--bg);
  border-color: var(--bg);
  color: var(--ink);
}

/* Section-level inline CTAs */
.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* Tertiary button — lightweight text-style */
.button.tertiary {
  background: transparent;
  color: var(--green);
  border-color: transparent;
  box-shadow: none;
  font-size: 0.78rem;
}

.button.tertiary:hover,
.button.tertiary:focus-visible {
  background: transparent;
  color: var(--product-blue);
  border-color: transparent;
  box-shadow: none;
  transform: none;
  text-decoration: underline;
}

/* Journey timeline — visual path with icons */
.journey-timeline {
  position: relative;
  display: grid;
  gap: 0;
  padding-left: 22px;
}

.journey-timeline::before {
  content: "";
  position: absolute;
  left: 49px; /* Centered with 56px icon + 22px padding */
  top: 22px;
  bottom: 22px;
  width: 2px;
  background: linear-gradient(180deg, var(--sky), var(--signal), var(--coral));
  border-radius: 999px;
}

.journey-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: center;
  padding: 22px 0;
}

.journey-icon {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--bg);
  border: 2px solid var(--line);
  color: var(--green);
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.journey-icon svg {
  width: 28px;
  height: 28px;
}

.journey-step:hover .journey-icon {
  border-color: var(--sky);
  background: rgba(167, 217, 222, 0.12);
}

.journey-step strong {
  display: block;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 1.1rem;
}

.journey-step span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 1rem;
}

/* Tool upsell — soft Actionship CTA inside resource cards */
.tool-upsell {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--muted);
}

.tool-upsell a {
  margin-top: 0;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  text-decoration: none;
  transition: color 160ms ease;
}

.tool-upsell a:hover,
.tool-upsell a:focus-visible {
  color: var(--product-blue);
}

/* Category link cards — clickable navigation on podcast page */
a.card.category-link {
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

a.card.category-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(13, 33, 35, 0.14);
  border-color: var(--sky);
}

/* Footer links layout */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
}

.footer-links a {
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--green);
  transition: color 160ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--product-blue);
}

.site-footer {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
}

.footer-grid strong {
  color: var(--ink);
}

.page-hero {
  padding: clamp(48px, 8vw, 90px) 0;
  background:
    linear-gradient(135deg, rgba(79, 191, 203, 0.18), transparent 34%),
    linear-gradient(180deg, var(--cream), #f8fbf2);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(2.8rem, 6.8vw, 5.4rem);
}

.narrow {
  max-width: 760px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section.reveal,
.page-hero.reveal,
.hero.reveal {
  transition-duration: 680ms;
}

.card.reveal:nth-child(2),
.quote-card.reveal:nth-child(2),
.stat.reveal:nth-child(2) {
  transition-delay: 70ms;
}

.card.reveal:nth-child(3),
.quote-card.reveal:nth-child(3),
.stat.reveal:nth-child(3) {
  transition-delay: 140ms;
}

.card.reveal:nth-child(4),
.quote-card.reveal:nth-child(4),
.stat.reveal:nth-child(4) {
  transition-delay: 210ms;
}

/* Process node sequential stagger */
[data-stagger-children] .process-node,
[data-stagger-children] .process-connector {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 480ms ease, transform 480ms ease;
}

[data-stagger-children].stagger-revealed .process-node,
[data-stagger-children].stagger-revealed .process-connector {
  opacity: 1;
  transform: translateY(0);
}

[data-stagger-children].stagger-revealed .process-node:nth-child(1) { transition-delay: 0ms; }
[data-stagger-children].stagger-revealed .process-connector:nth-child(2) { transition-delay: 120ms; }
[data-stagger-children].stagger-revealed .process-node:nth-child(3) { transition-delay: 200ms; }
[data-stagger-children].stagger-revealed .process-connector:nth-child(4) { transition-delay: 320ms; }
[data-stagger-children].stagger-revealed .process-node:nth-child(5) { transition-delay: 400ms; }

/* Journey step sequential stagger */
[data-stagger-children] .journey-step {
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 460ms ease, transform 460ms ease;
}

[data-stagger-children].stagger-revealed .journey-step {
  opacity: 1;
  transform: translateX(0);
}

[data-stagger-children].stagger-revealed .journey-step:nth-child(1) { transition-delay: 0ms; }
[data-stagger-children].stagger-revealed .journey-step:nth-child(2) { transition-delay: 100ms; }
[data-stagger-children].stagger-revealed .journey-step:nth-child(3) { transition-delay: 200ms; }
[data-stagger-children].stagger-revealed .journey-step:nth-child(4) { transition-delay: 300ms; }
[data-stagger-children].stagger-revealed .journey-step:nth-child(5) { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  body {
    background-attachment: scroll;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  [data-animate-shift] .shift-from,
  [data-animate-shift] .shift-to,
  [data-animate-shift] .shift-from li,
  [data-animate-shift] .shift-to li,
  [data-stagger-children] .process-node,
  [data-stagger-children] .process-connector,
  [data-stagger-children] .journey-step {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (max-width: 920px) {
  .menu-button {
    display: inline-flex;
    align-items: center;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    justify-content: center;
  }

  .hero-grid,
  .grid.two,
  .grid.three,
  .grid.four,
  .grid.five,
  .shift-panel {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .portrait-card {
    max-width: 430px;
    justify-self: start;
  }

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

  .journey-step {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  .shift-panel {
    grid-template-columns: 1fr;
    background: transparent;
    border: none;
    box-shadow: none;
    gap: 16px;
    position: relative;
  }

  .shift-arrow {
    position: relative;
    margin: -16px auto;
    transform: rotate(90deg);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-soft);
    padding: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .shift-from, .shift-to {
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
  }

  [data-animate-shift] .shift-to {
    transform: translateY(8px);
  }

  [data-animate-shift].shift-revealed .shift-to {
    transform: translateY(0);
  }

  [data-animate-shift].shift-revealed .shift-from li {
    transform: translateY(-6px);
  }

  .process-flow {
    flex-direction: row;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-right: -24px;
    padding-right: 24px;
    padding-bottom: 24px;
    -webkit-overflow-scrolling: touch;
  }

  .process-node {
    flex: 0 0 75%;
    scroll-snap-align: center;
  }

  .process-connector {
    flex: 0 0 32px;
    width: 32px;
    min-height: auto;
  }

  .process-connector svg {
    transform: none;
    width: 32px;
  }

  .footer-links {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 1.12rem;
    line-height: 1.08;
    min-width: 0;
  }

  .nav {
    width: min(100% - 24px, 1160px);
    gap: 10px;
  }

  .wrap {
    width: min(100% - 24px, 1160px);
  }

  .actions,
  .footer-grid {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .chip-row {
    max-width: 100%;
  }

  .chip {
    min-height: 30px;
    padding: 0 9px;
    font-size: 0.66rem;
  }

  h1 {
    font-size: clamp(1.9rem, 11vw, 2.45rem);
  }

  .page-hero h1 {
    font-size: clamp(2.2rem, 13vw, 3rem);
  }

  /* Add horizontal scroll for lists of cards */
  .mobile-scroll-row {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 24px;
    -webkit-overflow-scrolling: touch;
    margin-right: -16px;
    padding-right: 16px;
  }
  
  .mobile-scroll-row::-webkit-scrollbar {
    display: none;
  }
  
  .mobile-scroll-row > * {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }

  .stat strong {
    font-size: 1.6rem;
  }

  .card,
  .quote-card {
    padding: 18px;
  }

  .final-cta {
    padding: 32px 18px;
  }
}

/* --- STICKY CTA BAR --- */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 16px 0;
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.05);
}
.sticky-cta-bar[aria-hidden="false"] {
  transform: translateY(0);
}
.sticky-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 600px) {
  .sticky-cta-bar {
    padding: 12px 0;
  }
  .sticky-cta-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .sticky-cta-content span {
    display: none !important;
  }
  .sticky-cta-content strong {
    font-size: 0.95rem;
  }
  .sticky-cta-content .button {
    padding: 10px 16px;
    font-size: 0.85rem;
    min-height: 40px;
    width: auto;
  }
}

/* --- QUICK ASK FORM --- */
.quick-ask-form {
  display: flex;
  gap: 8px;
}
.quick-ask-input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 16px; /* Prevents iOS auto-zoom */
}

/* --- INLINE MEDIA --- */
.inline-media-wrapper {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 8px;
  box-shadow: var(--shadow-soft);
}
.inline-media-inner {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--ink), var(--product-blue));
  border-radius: 8px;
  overflow: hidden;
}
.inline-media-inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 560px) {
  /* Hero intro scaling */
  .hero-intro {
    transform: scale(0.85);
  }

  /* Zero-click value resource links: block touch targets */
  .card .text-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
    margin-top: 16px !important;
    padding: 0 16px;
  }

  /* Forms: full-width stacking */
  .quick-ask-form {
    flex-direction: column;
  }
  .quick-ask-form .button {
    width: 100%;
  }

  /* Inline media: edge-to-edge bleed */
  .inline-media-wrapper {
    padding: 0;
    border-radius: 8px;
  }
  .inline-media-inner {
    border-radius: 8px;
  }
}

/* --- UTILITIES --- */
.text-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 700;
  color: var(--signal);
  text-decoration: none;
  transition: color 0.2s ease;
}
.text-link:hover {
  color: var(--ink);
}

/* Glassmorphic Overlays & Badges */
.glass-badge {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  z-index: 10;
}

.floating-badge {
  position: absolute;
  animation: float 4s ease-in-out infinite;
}

.floating-badge.top-right {
  top: -16px;
  right: -24px;
}

.floating-badge.bottom-left {
  bottom: 24px;
  left: -24px;
}

.floating-badge.top-left {
  top: -16px;
  left: -24px;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

@media (max-width: 560px) {
  .floating-badge {
    transform: scale(0.9);
  }
  .floating-badge.top-right {
    top: -10px;
    right: -10px;
  }
  .floating-badge.bottom-left {
    bottom: 10px;
    left: -10px;
  }
  .floating-badge.top-left {
    top: -10px;
    left: -10px;
  }
  @keyframes float {
    0% { transform: translateY(0px) scale(0.9); }
    50% { transform: translateY(-6px) scale(0.9); }
    100% { transform: translateY(0px) scale(0.9); }
  }
}
