/* ============ TOKENS ============ */
:root {
  --bg: oklch(98% 0.008 85);
  --bg-tint: oklch(96% 0.018 295);
  --bg-lilac: oklch(94% 0.03 295);
  --ink: oklch(18% 0.012 285);
  --ink-2: oklch(36% 0.015 285);
  --ink-3: oklch(54% 0.012 285);
  --line: oklch(90% 0.01 285);
  --line-2: oklch(86% 0.012 285);

  --purple: oklch(52% 0.18 295);
  --purple-deep: oklch(42% 0.19 295);
  --purple-soft: oklch(88% 0.06 295);
  --peach: oklch(74% 0.13 55);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(30, 20, 60, 0.04), 0 2px 6px rgba(30, 20, 60, 0.04);
  --shadow-md: 0 4px 12px rgba(30, 20, 60, 0.06), 0 16px 40px rgba(60, 40, 120, 0.08);
  --shadow-purple: 0 10px 30px -8px oklch(52% 0.18 295 / 0.45);

  --font-display: "Bricolage Grotesque", "Geist", ui-sans-serif, system-ui, sans-serif;
  --font-ui: "Geist", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ============ LAYOUT ============ */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--bg) 85%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid color-mix(in oklab, var(--line) 60%, transparent);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
  min-width: 0;
}
.brand-mark {
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  display: grid; place-items: center;
  color: white; font-family: var(--font-display); font-weight: 700; font-size: 16px;
  box-shadow: var(--shadow-purple);
}
.nav-links {
  display: flex; align-items: center; gap: 36px;
}
.nav-links a {
  font-size: 14.5px;
  color: var(--ink-2);
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--purple); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  font-size: 14.5px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: transform 0.12s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-primary,
.btn-primary:link,
.btn-primary:visited {
  background: var(--purple);
  color: #ffffff !important;
  box-shadow: var(--shadow-purple);
}
.btn-primary:hover {
  background: var(--purple-deep);
  color: #ffffff !important;
  transform: translateY(-1px);
}
.btn-primary svg { color: #ffffff; }
.btn-primary:active { transform: translateY(0); }
.btn-primary .arr {
  transition: transform 0.2s ease;
}
.btn-primary:hover .arr { transform: translateX(3px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover { border-color: var(--ink); }

.btn-lg { padding: 16px 28px; font-size: 15.5px; }

/* ============ HERO ============ */
.hero {
  padding: 72px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
  padding: 6px 14px 6px 8px;
  border-radius: var(--r-pill);
  background: white;
  border: 1px solid var(--line);
  margin-bottom: 28px;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--purple) 20%, transparent);
}
.eyebrow strong { color: var(--ink); font-weight: 600; }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 96, "wdth" 100;
  font-size: clamp(44px, 5.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 28px;
}
.hero h1 em {
  font-style: normal;
  color: var(--purple);
  font-weight: 600;
}
.hero h1 .underline {
  position: relative;
  white-space: nowrap;
}
.hero h1 .underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.04em;
  height: 0.14em;
  background: var(--peach);
  opacity: 0.55;
  border-radius: 4px;
  z-index: -1;
}

.fineprint {
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.55;
  max-width: 520px;
  margin: 0 0 36px;
}
.fineprint .star { color: var(--purple); font-weight: 600; }

.hero-ctas {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex; gap: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-stat .k {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1;
  font-weight: 600;
}
.hero-stat .k em { color: var(--purple); font-style: normal; }
.hero-stat .v {
  font-size: 12.5px;
  color: var(--ink-3);
  margin-top: 6px;
  letter-spacing: 0.01em;
}

/* ============ ZOOMING QUOTES PANEL ============ */
.quotes {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  background:
    radial-gradient(120% 80% at 85% 15%, oklch(88% 0.08 295) 0%, transparent 55%),
    radial-gradient(110% 90% at 10% 90%, oklch(92% 0.05 55) 0%, transparent 55%),
    linear-gradient(180deg, oklch(96% 0.025 295), oklch(94% 0.03 295));
  padding: 40px;
  overflow: hidden;
  border: 1px solid color-mix(in oklab, var(--purple) 15%, var(--line));
  display: flex; flex-direction: column; justify-content: space-between;
}
.quotes::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, color-mix(in oklab, var(--purple) 20%, transparent) 1px, transparent 0);
  background-size: 22px 22px;
  opacity: 0.35;
  pointer-events: none;
}
.quotes-head {
  position: relative;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--ink-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.quotes-head .live {
  display: inline-flex; align-items: center; gap: 6px;
}
.quotes-head .live .d {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--purple);
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.1); }
}

.quotes-stage {
  position: relative;
  flex: 1;
  display: grid;
  place-items: center;
  min-height: 0;
}
.quote {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 0 8px;
  font-family: var(--font-display);
  font-size: clamp(26px, 2.2vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.quote.is-in {
  opacity: 1;
  transform: scale(1);
}
.quote.is-out {
  opacity: 0;
  transform: scale(0.7);
}
.quote span.hi { color: var(--purple); font-style: normal; font-weight: 600; }
.quote .num {
  display: none;
}

.quotes-foot {
  position: relative;
  display: flex; gap: 6px;
}
/* make progress bars clickable */
.qbar {
  flex: 1; height: 6px; border-radius: 3px;
  background: color-mix(in oklab, var(--ink) 10%, transparent);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  padding: 0;
  border: none;
  transition: transform 0.12s ease;
}
.qbar:hover { transform: scaleY(1.4); }
.qbar .fill {
  position: absolute; inset: 0;
  background: var(--purple);
  transform-origin: left;
  transform: scaleX(0);
}
.qbar.active .fill {
  animation: fillbar 4.2s linear forwards;
}
.qbar.done .fill { transform: scaleX(1); }
@keyframes fillbar { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* ============ SECTION BASE ============ */
section { scroll-margin-top: 80px; }
.section {
  padding: 104px 0;
}
.section-tint { background: var(--bg-tint); }
.section-head {
  max-width: 760px;
  margin-bottom: 56px;
}
.section-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 18px;
}
.section-kicker .bar {
  width: 22px; height: 1.5px; background: var(--purple);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 20px;
}
.section-title em { font-style: normal; color: var(--purple); font-weight: 600; }
.section-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 620px;
}

/* ============ BENEFITS ============ */
.benefits-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: center;
}

.portrait {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bg-lilac);
  border: 1px solid var(--line);
}
.portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.portrait-stripes {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg,
      oklch(90% 0.04 295) 0 14px,
      oklch(94% 0.03 295) 14px 28px);
}
.portrait-caption {
  position: absolute;
  left: 20px; bottom: 20px;
  padding: 10px 14px;
  background: white;
  border-radius: var(--r-sm);
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-2);
  border: 1px solid var(--line);
  max-width: 78%;
}
.portrait-caption strong { color: var(--ink); }
.portrait-tag {
  position: absolute;
  top: 20px; right: 20px;
  padding: 8px 14px;
  background: var(--purple);
  color: white;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 500;
  box-shadow: var(--shadow-purple);
}

.bio-intro {
  margin-bottom: 20px;
}
.bio-chips {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 20px;
}
.bio-chips button {
  padding: 7px 14px;
  border-radius: var(--r-pill);
  font-size: 12.5px;
  font-weight: 500;
  border: 1px solid var(--line-2);
  background: white;
  color: var(--ink-2);
  transition: all 0.15s;
}
.bio-chips button.on {
  background: var(--purple);
  color: white;
  border-color: var(--purple);
}
.bio-copy {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 32px;
  text-wrap: pretty;
}
.bio-copy em { color: var(--purple); font-style: normal; font-weight: 600; }

/* testimonial carousel */
.testi {
  position: relative;
  padding: 32px 32px 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.testi-quote-mark {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 0.6;
  color: var(--purple);
  opacity: 0.25;
  margin-bottom: -16px;
}
.testi-stage {
  position: relative;
  min-height: 180px;
}
.testi-item {
  position: absolute; inset: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.testi-item.is-in {
  opacity: 1; transform: none;
  pointer-events: auto;
}
.testi-item p {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}
.testi-item .who {
  display: flex; align-items: center; gap: 12px;
}
.testi-item .avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-soft), var(--purple));
  display: grid; place-items: center;
  color: white; font-weight: 600; font-size: 13px;
}
.testi-item .who .name {
  font-size: 13.5px; font-weight: 600; color: var(--ink);
}
.testi-item .who .role {
  font-size: 12.5px; color: var(--ink-3);
}

.testi-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.testi-dots { display: flex; gap: 8px; }
.testi-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  border: none; padding: 0;
  background: var(--line-2);
  transition: background 0.2s, width 0.2s;
}
.testi-dots button.on {
  background: var(--purple);
  width: 22px; border-radius: 4px;
}
.testi-nav { display: flex; gap: 8px; }
.testi-nav button {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line-2);
  background: white;
  display: grid; place-items: center;
  color: var(--ink-2);
  transition: all 0.15s;
}
.testi-nav button:hover {
  border-color: var(--purple);
  color: var(--purple);
}

.bio-cta-row {
  display: flex; align-items: center; gap: 16px;
  margin-top: 32px;
}
.bio-cta-row .note {
  font-size: 13px; color: var(--ink-3);
}

/* ============ SERVICES ============ */
.services-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 56px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.svc-card {
  position: relative;
  padding: 36px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--purple-soft);
}
.svc-card.featured {
  background: linear-gradient(180deg, oklch(98% 0.014 295), white 60%);
  border-color: var(--purple-soft);
}
.svc-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px;
}
.svc-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: var(--bg-lilac);
  color: var(--purple-deep);
  font-size: 12px;
  font-weight: 500;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.svc-seats {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-3);
}
.svc-seats strong { color: var(--ink); }

.svc-title {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: -0.025em;
  line-height: 1.1;
  font-weight: 600;
  margin: 0 0 32px;
}
.svc-title em { color: var(--purple); font-style: normal; }
.svc-sub {
  font-size: 15px;
  color: var(--ink-2);
  margin: 0 0 28px;
  line-height: 1.5;
}
.svc-for {
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.svc-audience {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 28px;
}
.svc-audience span {
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: var(--bg);
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-2);
}
.svc-list {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: grid; gap: 12px;
}
.svc-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.45;
}
.svc-list .check {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--bg-lilac);
  color: var(--purple);
  display: grid; place-items: center;
  font-size: 11px;
  margin-top: 2px;
}

/* ROI strip */
.roi {
  position: relative;
  padding: 40px 48px;
  border-radius: var(--r-xl);
  background:
    radial-gradient(120% 120% at 100% 0%, oklch(62% 0.18 295) 0%, transparent 60%),
    linear-gradient(135deg, oklch(42% 0.19 295), oklch(32% 0.16 295));
  color: white;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
.roi::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.12) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.6;
  pointer-events: none;
}
.roi h3 {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 10px;
  text-wrap: pretty;
}
.roi h3 em { font-style: normal; color: oklch(90% 0.08 55); }
.roi p {
  position: relative;
  font-size: 14px;
  color: oklch(86% 0.04 295);
  margin: 0;
  max-width: 640px;
  line-height: 1.5;
}
.roi p .star { color: oklch(90% 0.08 55); }
.roi .btn {
  position: relative;
  background: white;
  color: var(--purple-deep);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.4);
}
.roi .btn:hover { background: oklch(95% 0.02 295); transform: translateY(-1px); }

/* ============ FOOTER ============ */
.footer {
  padding: 56px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--ink-3);
  font-size: 13.5px;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.footer-links { display: flex; gap: 28px; }
.footer-links a:hover { color: var(--purple); }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .hero-grid, .benefits-grid, .services-grid, .services-head, .roi {
    grid-template-columns: 1fr;
  }
  .hero { padding: 48px 0 64px; }
  .section { padding: 72px 0; }
  .nav-links a:not(.btn) { display: none; }
  .quotes { aspect-ratio: 3/4; padding: 28px; }
  .testi-stage { min-height: 240px; }
}
