:root {
  --bg-0: #f5f5f7;
  --bg-1: #eceef3;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.84);
  --text: #0f172a;
  --text-soft: #334155;
  --text-muted: #667085;
  --glass-bg: linear-gradient(165deg, rgba(255, 255, 255, 0.88), rgba(245, 247, 252, 0.78));
  --glass-bg-strong: linear-gradient(165deg, rgba(255, 255, 255, 0.94), rgba(246, 248, 252, 0.88));
  --glass-border: rgba(15, 23, 42, 0.1);
  --glass-border-strong: rgba(15, 23, 42, 0.16);
  --glass-highlight: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
  --glass-blur: 16px;
  --glass-saturation: 120%;
  --liquid-bg: linear-gradient(165deg, rgba(255, 255, 255, 0.9), rgba(244, 246, 251, 0.8));
  --liquid-bg-tinted: linear-gradient(165deg, rgba(222, 238, 255, 0.58), rgba(255, 255, 255, 0.86));
  --liquid-border: rgba(15, 23, 42, 0.14);
  --liquid-shadow:
    0 10px 26px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  --liquid-edge: rgba(255, 255, 255, 0.88);
  --liquid-edge-soft: rgba(255, 255, 255, 0.56);
  --liquid-focus: rgba(33, 111, 224, 0.28);
  --liquid-panel-shadow:
    0 16px 34px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(204, 212, 225, 0.34);
  --ink: #101828;
  --muted: #475467;
  --line: #d8dde7;
  --line-soft: rgba(15, 23, 42, 0.1);
  --line-strong: rgba(15, 23, 42, 0.2);
  --accent: #1d4ed8;
  --accent-2: #2563eb;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 32px;
  --radius-pill: 999px;
  --shadow-soft: 0 10px 24px rgba(15, 23, 42, 0.08);
  --shadow-lift: 0 18px 34px rgba(15, 23, 42, 0.12);
  --shadow-sm: 0 8px 20px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 14px 30px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 20px 36px rgba(15, 23, 42, 0.13);
  --container: min(1160px, calc(100% - 2.2rem));
  --scroll-progress: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(120% 90% at 50% -20%, #ffffff 0%, #f7f8fb 58%, #f2f3f7 100%);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
}

h1,
h2,
h3,
p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

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

.section {
  padding: clamp(4rem, 8vw, 7.8rem) 0;
  position: relative;
}

.bg-orb,
.bg-grid {
  position: fixed;
  pointer-events: none;
  z-index: -2;
}

.bg-orb {
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.56;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  will-change: transform;
}

.orb-a {
  width: min(42vw, 500px);
  aspect-ratio: 1;
  top: -9rem;
  left: -10rem;
  background: radial-gradient(circle at 38% 38%, rgba(82, 121, 176, 0.14), rgba(82, 121, 176, 0));
}

.orb-b {
  width: min(36vw, 430px);
  aspect-ratio: 1;
  right: -8rem;
  bottom: -12rem;
  background: radial-gradient(circle at 42% 42%, rgba(92, 108, 142, 0.12), rgba(92, 108, 142, 0));
}

.bg-grid {
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.018) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 80%);
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  will-change: transform;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: none;
  background: transparent;
  box-shadow: none;
  padding: 0.68rem 0 0.5rem;
  transition: box-shadow 220ms ease;
}

.topbar.is-scrolled {
  box-shadow: none;
}

.topbar.is-scrolled .topbar-inner {
  box-shadow:
    0 14px 34px rgba(15, 23, 42, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.topbar-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 8px 24px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  padding: 0.32rem 0.45rem;
  position: relative;
  overflow: hidden;
}

.topbar-inner::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.6);
  pointer-events: none;
}

.topbar-inner::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 42%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.topbar-inner > * {
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.68rem;
  min-width: 0;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 8px 20px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  padding: 0.34rem 0.58rem 0.34rem 0.4rem;
}

.brand-mark-img {
  width: 1.56rem;
  height: 1.56rem;
  border-radius: 0.44rem;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.14);
}

.brand-text {
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 6px 18px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px) saturate(118%);
  -webkit-backdrop-filter: blur(14px) saturate(118%);
  padding: 0.26rem;
}

.nav-links a {
  font-size: 0.92rem;
  color: #475467;
  padding: 0.34rem 0.78rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  background: transparent;
  box-shadow: none;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 220ms ease;
}

.nav-links a:hover,
.nav-links a.is-current {
  color: #111827;
  border-color: rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.topbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.scroll-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.06), rgba(15, 23, 42, 0.12));
  overflow: hidden;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  transform: scaleX(var(--scroll-progress));
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.72), rgba(37, 99, 235, 0.8), rgba(29, 78, 216, 0.72));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.56rem;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #475467;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 1.2rem;
  height: 1px;
  background: #98a2b3;
}

.section-head h1,
.section-head h2 {
  margin-top: 0.9rem;
  line-height: 1.07;
  letter-spacing: -0.02em;
}

.section-head h1 {
  font-size: clamp(2.2rem, 5.1vw, 4.8rem);
  max-width: 15ch;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  max-width: 22ch;
}

.section-head p {
  margin-top: 0.8rem;
  color: var(--muted);
  max-width: 68ch;
}

main :where(
    [class*="card"],
    [class*="panel"],
    [class*="tile"],
    [class*="node"],
    .hero-visual,
    .form-shell,
    .mode-btn,
    .pool-entry,
    .logo-marquee,
    .org-logo,
    .metrics-row,
    .impact-band,
    .glass-pill
  ) {
  border-color: rgba(15, 23, 42, 0.1);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.9), rgba(246, 248, 252, 0.8));
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px) saturate(118%);
  -webkit-backdrop-filter: blur(12px) saturate(118%);
}

main :where(
    .hero-panel,
    .hero-logo-lockup,
    .social-tile,
    .social-icon,
    .trust-badges article,
    .logo-marquee,
    .org-logo,
    .impact-band,
    .impact-item,
    .metrics-row,
    .metrics-row article,
    .process-card,
    .surface-card,
    .story-card,
    .lane-card,
    .photo-card,
    .hero-visual,
    .hero-flow-list article,
    .step-card,
    .pipeline-node,
    .role-card,
    .rhythm-grid article,
    .kpi-grid article,
    .sticky-panel,
    .sticky-bars article,
    .scene-step,
    .scene-modules article,
    .form-shell,
    .mode-btn,
    .pool-entry
  ) {
  border-radius: 22px !important;
  border: 1px solid rgba(15, 23, 42, 0.1) !important;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.92), rgba(246, 248, 252, 0.82)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0)) !important;
  box-shadow:
    0 14px 34px rgba(15, 23, 42, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(211, 218, 230, 0.38) !important;
  backdrop-filter: blur(13px) saturate(118%) !important;
  -webkit-backdrop-filter: blur(13px) saturate(118%) !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.05rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(15, 23, 42, 0.14);
  padding: 0 1.38rem;
  font-size: 0.93rem;
  font-weight: 650;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease, background-color 200ms ease;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #101828;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(247, 248, 251, 0.9));
  box-shadow:
    0 8px 20px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px) saturate(118%);
  -webkit-backdrop-filter: blur(10px) saturate(118%);
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 23, 42, 0.2);
  box-shadow:
    0 12px 26px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.btn:active {
  transform: translateY(0) scale(0.995);
}

.btn:focus-visible {
  outline: 2px solid var(--liquid-focus);
  outline-offset: 3px;
}

.btn-small {
  min-height: 2.45rem;
  font-size: 0.84rem;
  padding: 0 1rem;
}

.btn-primary {
  color: #f8fafc;
  border-color: rgba(15, 23, 42, 0.88);
  background: linear-gradient(165deg, #1f2937, #111827);
  box-shadow:
    0 14px 24px rgba(15, 23, 42, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn-secondary {
  color: #111827;
  border-color: rgba(15, 23, 42, 0.14);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(246, 248, 251, 0.9));
}

.btn-ghost {
  color: #334155;
  border-color: rgba(15, 23, 42, 0.1);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 253, 0.8));
}

.btn-full {
  width: 100%;
}

input,
select,
textarea {
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(246, 248, 251, 0.9));
  box-shadow:
    0 8px 18px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px) saturate(116%);
  -webkit-backdrop-filter: blur(10px) saturate(116%);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.56);
  box-shadow:
    0 0 0 3px rgba(37, 99, 235, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.final-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border-strong);
  background: var(--glass-bg-strong);
  box-shadow:
    0 22px 40px rgba(20, 32, 49, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(1.8rem, 4vw, 3rem);
}

.final-card h2 {
  margin-top: 0.86rem;
  font-size: clamp(1.9rem, 4.4vw, 3.8rem);
  line-height: 1.03;
}

.final-card p {
  margin: 0.8rem auto 0;
  max-width: 54ch;
  color: var(--muted);
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.hero-actions.center {
  justify-content: center;
}

.footer {
  border-top: 1px solid var(--glass-border-strong);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.86), rgba(247, 248, 251, 0.82));
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  padding: 1.4rem 0 1.8rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
}

.footer-brand img {
  display: block;
  width: auto;
  height: clamp(2.5rem, 4vw, 3.1rem);
  border-radius: 0.72rem;
  box-shadow:
    0 0 0 1px rgba(29, 49, 83, 0.18),
    0 12px 24px rgba(21, 36, 61, 0.12);
}

.footer-copy {
  color: #667085;
  font-size: 0.84rem;
  max-width: 42ch;
  text-align: right;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  filter: blur(5px);
  transition:
    opacity 620ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 760ms cubic-bezier(0.16, 0.79, 0.21, 1),
    filter 760ms cubic-bezier(0.16, 0.79, 0.21, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

@media (max-width: 940px) {
  :root {
    --container: min(1160px, calc(100% - 1.3rem));
  }

  .topbar-inner {
    min-height: auto;
    gap: 0.45rem;
    border-radius: 22px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand actions"
      "nav nav";
    align-items: center;
    padding: 0.5rem 0.55rem;
  }

  .brand {
    grid-area: brand;
  }

  .nav-links {
    grid-area: nav;
    display: inline-flex;
    overflow-x: auto;
    scrollbar-width: thin;
    width: 100%;
    white-space: nowrap;
    justify-content: flex-start;
    min-width: 0;
  }

  .topbar-actions {
    grid-area: actions;
    justify-self: end;
    gap: 0.34rem;
  }

  .topbar-inner > .btn.btn-small {
    grid-area: actions;
    justify-self: end;
  }

  .topbar-actions .btn-ghost,
  .topbar-actions .btn-secondary,
  .topbar-inner > .btn.btn-small.btn-ghost,
  .topbar-inner > .btn.btn-small.btn-secondary {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
