:root {
  --navy-950: #050914;
  --navy-900: #071126;
  --navy-850: #0b1730;
  --navy-800: #10203d;
  --violet-700: #5b2bd6;
  --violet-600: #6f3bf4;
  --violet-500: #8250ff;
  --violet-100: #eee8ff;
  --mint-600: #0aa76a;
  --mint-500: #18c77d;
  --mint-100: #e8fbf3;
  --orange-500: #ff9b45;
  --red-500: #df4a5b;
  --red-100: #fff0f2;
  --ink-900: #10192f;
  --ink-700: #35405a;
  --ink-500: #667187;
  --surface-100: #f6f8fc;
  --surface-200: #eef2f8;
  --line: #dfe5ef;
  --white: #ffffff;
  --shadow-sm: 0 14px 38px rgba(7, 17, 38, 0.08);
  --shadow-md: 0 24px 60px rgba(7, 17, 38, 0.12);
  --shadow-lg: 0 34px 100px rgba(7, 17, 38, 0.18);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --header-height: 74px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink-900);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.58;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }
img { display: block; width: auto; max-width: 100%; height: auto; }
picture { display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }
svg { display: block; }

:focus-visible {
  outline: 3px solid rgba(24, 199, 125, 0.95);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  padding: 12px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--navy-900);
  font-weight: 800;
  transition: top 180ms ease;
}
.skip-link:focus { top: 16px; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section { padding: 96px 0; }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { text-wrap: balance; }
h1 {
  margin-bottom: 24px;
  font-size: clamp(58px, 7.2vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.062em;
}
h2 {
  margin-bottom: 20px;
  font-size: clamp(40px, 4.8vw, 62px);
  line-height: 1.03;
  letter-spacing: -0.046em;
}
h3 {
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}
h4 { margin-bottom: 0; }
p { color: var(--ink-500); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 7px 11px;
  border: 1px solid #ded3ff;
  border-radius: 999px;
  color: #5828c9;
  background: #f1edff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint-500);
  box-shadow: 0 0 0 5px rgba(24, 199, 125, 0.13);
}
.eyebrow--dark {
  border-color: rgba(126, 245, 190, 0.25);
  color: #b9f5d7;
  background: rgba(24, 199, 125, 0.11);
}

.btn {
  min-height: 52px;
  border: 0;
  border-radius: 13px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, opacity 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.99); }
.btn:disabled { cursor: not-allowed; opacity: 0.64; transform: none; }
.btn--large { min-height: 56px; padding-inline: 26px; }
.btn--full { width: 100%; }
.btn--primary {
  color: var(--white);
  background: linear-gradient(135deg, #10b86e, #20d78a);
  box-shadow: 0 14px 34px rgba(16, 184, 110, 0.28);
}
.btn--primary:hover { box-shadow: 0 18px 42px rgba(16, 184, 110, 0.36); }
.btn--secondary {
  color: var(--white);
  background: linear-gradient(135deg, var(--violet-700), var(--violet-500));
  box-shadow: 0 14px 32px rgba(111, 59, 244, 0.26);
}
.btn--quiet {
  min-height: 48px;
  color: #dce5f6;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.announcement {
  position: relative;
  z-index: 80;
  color: var(--white);
  background: linear-gradient(90deg, #24115c, #6f3bf4 54%, #0b8f61);
  font-size: 13px;
}
.announcement__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}
.announcement__inner strong { color: #cbffe3; }
.announcement__cta {
  min-height: 32px;
  border: 0;
  border-radius: 9px;
  padding: 0 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  color: var(--white);
  background: rgba(5, 9, 20, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}
.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { flex: 0 0 auto; }
.brand img { width: 214px; height: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #d7e0f1;
  font-size: 14px;
  font-weight: 750;
}
.nav__links a { transition: color 180ms ease; }
.nav__links a:hover { color: var(--white); }
.nav__actions { display: flex; align-items: center; gap: 10px; }
.nav__cta { min-height: 48px; }
.menu-button {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: none;
  place-content: center;
  gap: 5px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}
.menu-button span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 9, 20, 0.99);
}
.mobile-menu__inner {
  padding-top: 18px;
  padding-bottom: 24px;
  display: grid;
  gap: 4px;
}
.mobile-menu__inner a {
  min-height: 48px;
  border-radius: 10px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  color: #e0e7f4;
  font-weight: 800;
}
.mobile-menu__inner a:hover { background: rgba(255, 255, 255, 0.06); }
.mobile-menu__inner .btn { margin-top: 10px; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  color: var(--white);
  background:
    radial-gradient(circle at 73% 24%, rgba(111, 59, 244, 0.32), transparent 28%),
    radial-gradient(circle at 86% 92%, rgba(24, 199, 125, 0.13), transparent 27%),
    linear-gradient(145deg, var(--navy-950), #07162f 62%, #0a203c);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 85%);
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(55px);
  pointer-events: none;
}
.hero__glow--one { width: 420px; height: 420px; right: -110px; top: 140px; background: rgba(111, 59, 244, 0.22); }
.hero__glow--two { width: 360px; height: 360px; right: 25%; bottom: -260px; background: rgba(24, 199, 125, 0.16); }
.hero__grid {
  position: relative;
  z-index: 2;
  min-height: 720px;
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  align-items: center;
  gap: 44px;
}
.hero__copy { padding: 78px 0; }
.hero h1 span { color: #8d5dff; }
.hero__lead {
  max-width: 600px;
  margin-bottom: 0;
  color: #ccd6e8;
  font-size: 20px;
  line-height: 1.55;
}
.hero__actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #e9eef8;
  font-weight: 850;
}
.text-link span { color: #88edbb; transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(4px); }
.hero__trust {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  color: #aebcd2;
  font-size: 13px;
  font-weight: 700;
}
.hero__trust span::before {
  content: "✓";
  margin-right: 8px;
  color: #6ee8ac;
  font-weight: 950;
}
.hero__visual {
  position: relative;
  min-height: 630px;
  display: grid;
  place-items: end center;
}
.ollie-wrap {
  position: relative;
  z-index: 3;
  width: min(520px, 100%);
  transform-origin: center bottom;
  animation: ollie-breathe 4.8s ease-in-out infinite;
}
.hero__ollie {
  width: 100%;
  filter: drop-shadow(0 34px 38px rgba(0, 0, 0, 0.36));
}
@keyframes ollie-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.012) translateY(-3px); }
}
.hero-flow { position: absolute; inset: 0; z-index: 4; pointer-events: none; }
.flow-doc,
.flow-organise,
.flow-insight {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}
.flow-doc {
  width: 150px;
  min-height: 84px;
  border-radius: 16px;
  padding: 14px;
  color: var(--ink-900);
  background: rgba(255, 255, 255, 0.94);
  opacity: 0;
  animation: doc-enter 8s ease-in-out infinite;
}
.flow-doc span { display: block; color: var(--ink-500); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; }
.flow-doc b { display: block; margin-top: 7px; font-size: 20px; }
.flow-doc--one { left: 2%; top: 21%; transform: rotate(-5deg); }
.flow-doc--two { left: 7%; top: 40%; transform: rotate(4deg); animation-delay: 0.6s; }
@keyframes doc-enter {
  0%, 8% { opacity: 0; transform: translateX(-24px) rotate(-4deg); }
  14%, 48% { opacity: 1; transform: translateX(0) rotate(-2deg); }
  58%, 100% { opacity: 0; transform: translateX(130px) scale(0.82); }
}
.flow-organise {
  left: 33%;
  top: 12%;
  width: 170px;
  border-radius: 17px;
  padding: 14px 16px;
  color: #dce6f8;
  background: rgba(9, 23, 48, 0.86);
  opacity: 0;
  animation: organise-show 8s ease-in-out infinite;
}
.flow-organise__label { font-size: 11px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.flow-organise div { margin-top: 10px; display: grid; gap: 6px; }
.flow-organise i { height: 6px; border-radius: 999px; background: linear-gradient(90deg, #7b4df4, #21cf87); }
.flow-organise i:nth-child(2) { width: 72%; }
.flow-organise i:nth-child(3) { width: 48%; }
@keyframes organise-show {
  0%, 38% { opacity: 0; transform: translateY(12px) scale(0.96); }
  46%, 68% { opacity: 1; transform: none; }
  76%, 100% { opacity: 0; transform: translateY(-8px); }
}
.flow-insight {
  right: 0;
  top: 16%;
  width: 230px;
  border-radius: 18px;
  padding: 17px;
  color: var(--ink-900);
  background: rgba(255, 255, 255, 0.96);
  opacity: 0;
  animation: insight-show 8s ease-in-out infinite;
}
.flow-insight small { display: block; color: var(--mint-600); font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em; }
.flow-insight strong { display: block; margin: 8px 0 10px; font-size: 14px; line-height: 1.35; }
.flow-insight span { color: var(--violet-700); font-size: 12px; font-weight: 850; }
@keyframes insight-show {
  0%, 62% { opacity: 0; transform: translateX(18px) scale(0.96); }
  70%, 93% { opacity: 1; transform: none; }
  100% { opacity: 0; }
}

.section-heading { max-width: 790px; margin-bottom: 48px; }
.section-heading p { max-width: 680px; margin-bottom: 0; font-size: 18px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading--center p { margin-inline: auto; }
.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: end;
}

.product { background: var(--white); }
.proof-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 32px;
  align-items: stretch;
}
.proof-cards { display: grid; gap: 14px; }
.proof-card {
  position: relative;
  min-height: 188px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 23px 24px 22px 88px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.proof-card--insight { border-color: #d8cdfb; background: linear-gradient(145deg, #fbf9ff, #f4efff); }
.proof-card__tag {
  position: absolute;
  right: 16px;
  top: 14px;
  border-radius: 999px;
  padding: 5px 9px;
  color: #6e7380;
  background: #eef1f6;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.proof-card__icon {
  position: absolute;
  left: 22px;
  top: 24px;
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: var(--violet-600);
  background: var(--violet-100);
}
.proof-card__icon svg,
.how-card__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.proof-card__label {
  display: block;
  margin-bottom: 4px;
  color: var(--ink-500);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.proof-card strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink-900);
  font-size: 29px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}
.proof-card p { margin-bottom: 0; font-size: 14px; line-height: 1.48; }
.dashboard-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}
.dashboard-card__bar {
  min-height: 52px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-700);
  font-size: 13px;
  font-weight: 850;
}
.demo-pill {
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--violet-700);
  background: var(--violet-100);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dashboard-card img { width: 100%; aspect-ratio: 1.73 / 1; object-fit: cover; object-position: top left; }
.dashboard-card figcaption { padding: 13px 18px 16px; color: var(--ink-500); font-size: 12px; }

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.comparison-exact {
  margin: 0;
  padding: 0;
  overflow: hidden;
  line-height: 0;
  background: #f4f6fb;
}
.comparison-exact__image {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}
.comparison { background: var(--surface-100); }
.comparison-shell {
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr 90px 1fr;
  align-items: stretch;
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.comparison-column {
  min-width: 0;
  border-radius: 22px;
  padding: 28px;
}
.comparison-column--traditional { color: var(--white); background: #101a2d; }
.comparison-column--ecfo { background: linear-gradient(145deg, #f7f3ff, #f0ebff); }
.comparison-column__head {
  margin-bottom: 26px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.comparison-column__head span { color: #acb9ce; font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: 0.07em; }
.comparison-column--ecfo .comparison-column__head span { color: #6b4ab5; }
.comparison-column__head strong { font-size: 25px; letter-spacing: -0.03em; }
.step-track {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
}
.step-track--eight { grid-template-columns: repeat(4, 1fr); }
.step-track--four { grid-template-columns: repeat(2, 1fr); }
.step-track li {
  min-height: 77px;
  border-radius: 15px;
  padding: 11px;
  display: grid;
  align-content: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 850;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 480ms ease, transform 480ms ease;
}
.comparison-column--traditional .step-track li { background: #202b3f; }
.comparison-column--ecfo .step-track li { color: var(--violet-700); background: var(--white); box-shadow: 0 10px 24px rgba(76, 40, 160, 0.08); }
.step-track li span {
  width: 27px;
  height: 27px;
  margin: 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
  font-size: 11px;
}
.comparison-column--ecfo .step-track li span { background: var(--violet-100); }
.comparison-shell.is-visible .step-track li { opacity: 1; transform: none; }
.comparison-shell.is-visible .step-track li:nth-child(2) { transition-delay: 70ms; }
.comparison-shell.is-visible .step-track li:nth-child(3) { transition-delay: 140ms; }
.comparison-shell.is-visible .step-track li:nth-child(4) { transition-delay: 210ms; }
.comparison-shell.is-visible .step-track li:nth-child(5) { transition-delay: 280ms; }
.comparison-shell.is-visible .step-track li:nth-child(6) { transition-delay: 350ms; }
.comparison-shell.is-visible .step-track li:nth-child(7) { transition-delay: 420ms; }
.comparison-shell.is-visible .step-track li:nth-child(8) { transition-delay: 490ms; }
.comparison-transform {
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 10px;
  color: var(--violet-600);
  font-weight: 950;
}
.comparison-transform span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--violet-100);
}
.comparison-transform svg { width: 58px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.comparison-result {
  margin-top: 18px;
  border-radius: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.07);
}
.comparison-result--positive { background: rgba(255, 255, 255, 0.72); }
.comparison-result span { display: block; margin-bottom: 5px; color: #aeb9ca; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em; }
.comparison-result--positive span { color: #6f579f; }
.comparison-result strong { display: block; font-size: 14px; line-height: 1.45; }
.comparison-note { margin: 16px auto 0; max-width: 850px; font-size: 12px; text-align: center; }

.how {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(145deg, #1a084d, #120433 62%, #281072);
}
.how::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  right: -240px;
  top: -220px;
  border-radius: 50%;
  background: rgba(111, 59, 244, 0.25);
  filter: blur(10px);
}
.how .section-heading { position: relative; z-index: 2; }
.how .section-heading p { color: #cbc5df; }
.how-grid {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  list-style: none;
}
.how-card {
  position: relative;
  min-height: 285px;
  border-radius: 22px;
  padding: 24px;
  color: var(--ink-900);
  background: var(--white);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}
.how-card:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -17px;
  top: 49%;
  z-index: 3;
  color: var(--white);
  font-size: 27px;
  font-weight: 950;
}
.how-card__number {
  display: block;
  margin-bottom: 24px;
  color: #d5c7ff;
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
}
.how-card__icon {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--violet-600);
  background: var(--violet-100);
}
.how-card p { margin-bottom: 0; font-size: 14px; line-height: 1.5; }

.scenario { background: var(--white); }
.scenario__grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 56px;
  align-items: center;
}
.scenario__copy p { max-width: 520px; font-size: 18px; }
.scenario__note {
  margin-top: 22px;
  border-left: 3px solid var(--violet-600);
  padding: 9px 0 9px 14px;
  color: var(--ink-500);
  font-size: 12px;
}
.scenario-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}
.scenario-card__top {
  min-height: 50px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: var(--ink-500);
  font-size: 12px;
  font-weight: 850;
}
.scenario-metrics {
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.scenario-metrics div {
  min-height: 110px;
  border-radius: 17px;
  padding: 17px;
  background: var(--surface-100);
}
.scenario-metrics span { display: block; color: var(--ink-500); font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: 0.05em; }
.scenario-metrics strong { display: block; margin-top: 8px; font-size: 25px; letter-spacing: -0.03em; }
.scenario-metrics .up { color: var(--mint-600); }
.scenario-metrics .down { color: var(--red-500); }
.scenario-insight {
  margin: 0 20px 14px;
  border-radius: 18px;
  padding: 18px 20px 18px 120px;
  min-height: 126px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #101a2f, #18274a);
}
.scenario-insight img {
  position: absolute;
  left: 8px;
  bottom: -50px;
  width: 112px;
}
.scenario-insight small { display: block; margin-bottom: 5px; color: #86e8b8; font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em; }
.scenario-insight p { margin-bottom: 0; color: #edf2fb; font-size: 14px; }
.scenario-action {
  margin: 0 20px 20px;
  border: 1px solid #ded3ff;
  border-radius: 18px;
  padding: 18px 20px;
  background: #f6f2ff;
}
.scenario-action span { display: block; margin-bottom: 5px; color: var(--violet-700); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em; }
.scenario-action strong { display: block; font-size: 15px; line-height: 1.5; }

.pricing {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(145deg, #19094a, #0e032c 64%, #211066);
}
.pricing::before {
  content: "";
  position: absolute;
  width: 640px;
  height: 640px;
  left: -280px;
  top: -300px;
  border-radius: 50%;
  background: rgba(111, 59, 244, 0.21);
  filter: blur(18px);
}
.pricing .section-heading { position: relative; z-index: 2; }
.pricing .section-heading p { color: #cbc5dd; }
.billing-toggle {
  width: max-content;
  margin-top: 18px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  display: flex;
  background: rgba(255, 255, 255, 0.08);
}
.billing-toggle__button {
  min-height: 44px;
  border: 0;
  border-radius: 9px;
  padding: 0 18px;
  color: #cbc5dd;
  background: transparent;
  font-weight: 850;
}
.billing-toggle__button.is-active {
  color: var(--ink-900);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}
.price-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}
.price-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(12px);
}
.price-card--featured {
  border: 2px solid #8f64ff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}
.price-card__badge {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  padding: 6px 13px;
  color: var(--white);
  background: var(--mint-500);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.price-card__header { min-height: 112px; }
.price-card__header p { margin-bottom: 0; color: #c9c3d8; font-size: 13px; }
.price-card__price { margin-top: 22px; font-size: 50px; line-height: 1; font-weight: 950; letter-spacing: -0.05em; }
.price-card__price small { font-size: 14px; letter-spacing: 0; }
.price-card__price--custom { font-size: 43px; }
.price-card__alt { min-height: 35px; margin-top: 9px; color: #7ef0b7; font-size: 13px; font-weight: 850; }
.check-list {
  margin: 22px 0 28px;
  padding: 0;
  display: grid;
  gap: 10px;
  color: #e0dceb;
  font-size: 13px;
  list-style: none;
  flex: 1;
}
.check-list li { position: relative; padding-left: 22px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: #6ae8aa; font-weight: 950; }
.scope-card {
  position: relative;
  z-index: 2;
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: rgba(255, 255, 255, 0.07);
}
.scope-card__column:not(:last-child) { border-right: 1px solid rgba(255, 255, 255, 0.12); padding-right: 24px; }
.scope-card h3 { font-size: 18px; }
.scope-list { margin: 15px 0 0; padding: 0; display: grid; gap: 9px; color: #d7d1e5; font-size: 12px; list-style: none; }
.scope-list li { position: relative; padding-left: 20px; }
.scope-list li::before { position: absolute; left: 0; font-weight: 950; }
.scope-list--included li::before { content: "✓"; color: #65e5a5; }
.scope-list--not li::before { content: "—"; color: #ff9da8; }
.scope-list--optional li::before { content: "+"; color: #c6b4ff; }

.trust { background: var(--surface-100); }
.trust__grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 50px;
  align-items: start;
}
.trust__story > p { max-width: 520px; font-size: 18px; }
.trust__ollie {
  margin: 28px 0 22px;
  min-height: 160px;
  border-radius: 22px;
  padding: 24px 24px 24px 160px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #0b1730, #1b3260);
}
.trust__ollie img {
  position: absolute;
  left: 8px;
  bottom: -70px;
  width: 150px;
}
.trust__ollie strong { display: block; margin-top: 15px; font-size: 17px; }
.trust__ollie span { display: block; margin-top: 6px; color: #c5d0e2; font-size: 13px; }
.trust-points { display: grid; gap: 10px; }
.trust-points div {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 17px;
  background: var(--white);
}
.trust-points strong { display: block; font-size: 14px; }
.trust-points span { display: block; margin-top: 3px; color: var(--ink-500); font-size: 12px; }
.faq {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px 30px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.faq > h3 { margin-bottom: 12px; font-size: 25px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 0; }
.faq-item h4 { margin: 0; }
.faq-item button {
  width: 100%;
  min-height: 62px;
  border: 0;
  padding: 13px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink-900);
  background: transparent;
  font-weight: 850;
  text-align: left;
}
.faq-item button span {
  flex: 0 0 auto;
  color: var(--violet-600);
  font-size: 25px;
  transition: transform 180ms ease;
}
.faq-item button[aria-expanded="true"] span { transform: rotate(45deg); }
.faq-answer p { margin: 0; padding: 0 34px 18px 0; font-size: 14px; }
.final-cta {
  margin-top: 54px;
  border-radius: 28px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-900), #29106d 66%, #087752);
  box-shadow: var(--shadow-lg);
}
.final-cta h2 { max-width: 790px; margin-bottom: 12px; font-size: clamp(36px, 4vw, 54px); }
.final-cta p { margin-bottom: 0; color: #d6dfed; }

.footer { color: #a9b4c7; background: var(--navy-950); }
.footer__grid {
  min-height: 120px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
}
.footer__brand img { width: 190px; }
.footer p { margin: 0; color: #a9b4c7; font-size: 13px; }
.footer__links { display: flex; gap: 18px; font-size: 13px; font-weight: 700; }
.footer small { grid-column: 1 / -1; padding-bottom: 22px; font-size: 11px; }

.mobile-sticky {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 65;
  display: none;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}
.mobile-sticky.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.mobile-sticky .btn { width: 100%; max-height: 56px; box-shadow: 0 18px 46px rgba(16, 184, 110, 0.4); }

.modal[hidden] { display: none; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 18, 0.78);
  backdrop-filter: blur(9px);
}
.modal__card {
  position: relative;
  z-index: 2;
  width: min(540px, 100%);
  max-height: min(760px, calc(100dvh - 40px));
  overflow: auto;
  border-radius: 26px;
  padding: 32px;
  background: var(--white);
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.42);
  overscroll-behavior: contain;
}
.modal__close {
  position: sticky;
  z-index: 3;
  top: 0;
  margin-left: auto;
  margin-bottom: -42px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink-900);
  background: var(--surface-200);
  font-size: 25px;
  line-height: 1;
}
.modal h2 { margin: 10px 52px 10px 0; font-size: 40px; }
.modal__content > p { margin-bottom: 22px; font-size: 15px; }
#founderForm { display: grid; gap: 14px; }
.form-field { display: grid; gap: 7px; }
.form-field label { font-size: 12px; font-weight: 850; }
.form-field input,
.form-field select {
  width: 100%;
  min-height: 50px;
  border: 1px solid #d7deea;
  border-radius: 12px;
  padding: 0 14px;
  color: var(--ink-900);
  background: var(--white);
  outline: none;
}
.form-field input:focus,
.form-field select:focus { border-color: var(--violet-600); box-shadow: 0 0 0 4px rgba(111, 59, 244, 0.1); }
.form-field.is-invalid input,
.form-field.is-invalid select { border-color: var(--red-500); }
.field-error { min-height: 17px; color: var(--red-500); font-size: 11px; }
.form-consent { margin: 0; color: var(--ink-500); font-size: 11px; }
.form-status { min-height: 20px; color: var(--red-500); font-size: 12px; }
.form-submit { position: sticky; bottom: 0; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.modal__success { padding: 28px 8px 10px; text-align: center; }
.success-mark {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--mint-600);
  background: var(--mint-100);
  font-size: 34px;
  font-weight: 950;
}
.modal__success h2 { margin-right: 0; }
.modal__success p { max-width: 390px; margin: 0 auto 24px; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 520ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--delay-1 { transition-delay: 80ms; }
.reveal--delay-2 { transition-delay: 160ms; }
.reveal--delay-3 { transition-delay: 240ms; }

@media (max-width: 1080px) {
  .nav__links { display: none; }
  .menu-button { display: grid; }
  .hero__grid { grid-template-columns: 0.9fr 1.1fr; gap: 20px; }
  .flow-insight { right: -20px; }
  .proof-grid,
  .scenario__grid,
  .trust__grid { grid-template-columns: 1fr; }
  .proof-cards { grid-template-columns: repeat(3, 1fr); }
  .proof-card { padding: 82px 20px 20px; }
  .proof-card__icon { left: 20px; top: 22px; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .how-card:nth-child(2)::after { display: none; }
  .price-grid { grid-template-columns: 1fr; }
  .price-card__header { min-height: 0; }
  .scope-card { grid-template-columns: 1fr; }
  .scope-card__column:not(:last-child) { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.12); padding-right: 0; padding-bottom: 22px; }
  .trust__story > p { max-width: 700px; }
}

@media (max-width: 820px) {
  .container { width: min(var(--container), calc(100% - 28px)); }
  .section { padding: 76px 0; }
  .nav__secondary { display: none; }
  .hero { min-height: auto; }
  .hero__grid { min-height: auto; grid-template-columns: 1fr; }
  .hero__copy { padding: 62px 0 22px; text-align: center; }
  .hero__lead { margin-inline: auto; }
  .hero__actions,
  .hero__trust { justify-content: center; }
  .hero__visual { min-height: 430px; }
  .ollie-wrap { width: 390px; }
  .flow-doc--one { left: 6%; top: 18%; }
  .flow-doc--two { left: 10%; top: 45%; }
  .flow-organise { left: 32%; top: 7%; }
  .flow-insight { right: 2%; top: 24%; }
  .section-heading--split { grid-template-columns: 1fr; gap: 18px; }
  .proof-cards { grid-template-columns: 1fr; }
  .proof-card { padding: 22px 22px 22px 88px; }
  .comparison-shell { grid-template-columns: 1fr; gap: 16px; }
  .comparison-transform { grid-auto-flow: column; padding: 2px 0; }
  .comparison-transform svg { transform: rotate(90deg); }
  .final-cta { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; padding: 34px 0; align-items: start; }
  .footer small { grid-column: auto; padding-bottom: 0; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .container { width: min(var(--container), calc(100% - 24px)); }
  .section { padding: 64px 0; }
  h1 { font-size: clamp(46px, 13vw, 58px); line-height: 0.97; }
  h2 { font-size: clamp(36px, 10vw, 44px); }
  .announcement__inner { min-height: 34px; justify-content: center; }
  .announcement__inner span { font-size: 11px; }
  .announcement__cta { display: none; }
  .nav { min-height: 66px; }
  .brand img { width: 168px; }
  .nav__cta { display: none; }

  .hero__copy { padding: 44px 0 10px; }
  .hero__copy .eyebrow { margin-bottom: 14px; }
  .hero__lead { max-width: 350px; font-size: 17px; line-height: 1.47; }
  .hero__actions { margin-top: 23px; display: grid; gap: 8px; justify-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .hero__actions .text-link { justify-content: center; font-size: 14px; }
  .hero__trust { margin-top: 15px; gap: 10px 16px; font-size: 11px; }
  .hero__visual { min-height: 285px; margin-top: 0; overflow: hidden; }
  .ollie-wrap { position: absolute; left: 50%; bottom: -110px; width: 300px; transform: translateX(-50%); animation: none; }
  .hero__ollie { filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.34)); }
  .flow-doc { width: 108px; min-height: 62px; padding: 9px; border-radius: 12px; }
  .flow-doc span { font-size: 8px; }
  .flow-doc b { margin-top: 4px; font-size: 14px; }
  .flow-doc--one { left: 2%; top: 22%; }
  .flow-doc--two { left: 3%; top: 53%; }
  .flow-organise { left: auto; right: 1%; top: 8%; width: 120px; padding: 10px; }
  .flow-organise__label { font-size: 8px; }
  .flow-insight { right: 0; top: 46%; width: 144px; padding: 11px; border-radius: 13px; }
  .flow-insight small { font-size: 8px; }
  .flow-insight strong { margin: 5px 0 6px; font-size: 10px; }
  .flow-insight span { font-size: 9px; }

  .section-heading { margin-bottom: 34px; }
  .section-heading p { font-size: 16px; }
  .proof-card { min-height: 176px; padding: 76px 18px 18px; }
  .proof-card__icon { width: 46px; height: 46px; left: 18px; top: 18px; }
  .proof-card strong { font-size: 26px; }
  .proof-card p { font-size: 13px; }
  .dashboard-card img { aspect-ratio: 1.05 / 1; object-position: 48% top; }

  .comparison-shell { padding: 12px; border-radius: 22px; }
  .comparison-column { padding: 20px; }
  .comparison-column__head { align-items: flex-start; flex-direction: column; gap: 4px; }
  .step-track--eight { grid-template-columns: repeat(2, 1fr); }
  .step-track--four { grid-template-columns: repeat(2, 1fr); }
  .step-track li { min-height: 68px; }
  .comparison-transform { grid-auto-flow: column; }
  .comparison-transform svg { width: 45px; }

  .how-grid { grid-template-columns: 1fr; }
  .how-card { min-height: 225px; }
  .how-card::after { display: none !important; }

  .scenario__grid { gap: 28px; }
  .scenario__copy p { font-size: 16px; }
  .scenario-metrics { grid-template-columns: 1fr 1fr; }
  .scenario-metrics div:last-child { grid-column: 1 / -1; }
  .scenario-insight { padding-left: 96px; }
  .scenario-insight img { width: 92px; bottom: -38px; }

  .price-card { padding: 23px; }
  .price-card__price { font-size: 46px; }
  .billing-toggle { width: 100%; }
  .billing-toggle__button { flex: 1; }
  .scope-card { padding: 22px; }

  .trust__ollie { padding: 22px 18px 22px 118px; }
  .trust__ollie img { width: 116px; bottom: -42px; }
  .faq { padding: 22px 20px; }
  .faq-item button { min-height: 58px; font-size: 14px; }
  .faq-answer p { padding-right: 10px; font-size: 13px; }
  .final-cta { margin-top: 38px; padding: 28px 22px; }
  .final-cta h2 { font-size: 36px; }

  .mobile-sticky { display: block; }
  .modal { padding: 0; align-items: end; }
  .modal__card {
    width: 100%;
    max-height: min(720px, calc(100dvh - 14px));
    border-radius: 24px 24px 0 0;
    padding: 24px 18px max(22px, env(safe-area-inset-bottom));
  }
  .modal h2 { margin-top: 6px; font-size: 34px; }
  .form-submit { min-height: 54px; }
}

@media (max-width: 390px) {
  .hero__copy { padding-top: 38px; }
  .hero__lead { font-size: 16px; }
  .hero__visual { min-height: 270px; }
  .ollie-wrap { width: 285px; bottom: -106px; }
}

@media (max-width: 360px) {
  h1 { font-size: 44px; }
  .hero__copy { padding-top: 32px; }
  .hero__trust { font-size: 10px; }
  .hero__visual { min-height: 258px; }
  .ollie-wrap { width: 270px; bottom: -100px; }
  .flow-doc--two { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .step-track li { opacity: 1; transform: none; }
}
