:root {
  --ink: #0b1220;
  --ink-2: #111a2c;
  --ink-3: #18243a;
  --blue: #4f63ff;
  --blue-deep: #3f51e8;
  --mint: #75e3c3;
  --cloud: #f3f6f8;
  --warm-white: #fcfcfa;
  --white: #ffffff;
  --slate: #5d6675;
  --slate-dark: #3d4656;
  --line: rgba(11, 18, 32, 0.11);
  --line-dark: rgba(255, 255, 255, 0.12);
  --shadow-sm: 0 16px 40px rgba(25, 34, 55, 0.08);
  --shadow-md: 0 28px 70px rgba(25, 34, 55, 0.13);
  --shadow-lg: 0 45px 110px rgba(6, 12, 26, 0.28);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --container: 1220px;
  --header-height: 82px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 105px; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--warm-white);
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.dialog-open { overflow: hidden; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
a { color: inherit; }
img { display: block; max-width: 100%; }
svg { display: block; }
::selection { color: white; background: var(--blue); }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 10px;
  color: white;
  background: var(--ink);
  transform: translateY(-140%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 124px 0; }

.page-progress {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}
.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--mint));
  transform: scaleX(0);
  transform-origin: 0 50%;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 16px;
  transition: transform .35s var(--ease), padding .35s var(--ease);
}
.site-header.is-scrolled { padding-top: 9px; }
.nav-shell {
  min-height: var(--header-height);
  padding: 10px 12px 10px 18px;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(230px, 1fr);
  align-items: center;
  gap: 26px;
  border: 1px solid rgba(255, 255, 255, .86);
  border-radius: 22px;
  background: rgba(252, 252, 250, .79);
  box-shadow: 0 10px 40px rgba(17, 26, 44, .06);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  transition: min-height .35s var(--ease), box-shadow .35s ease, background .35s ease;
}
.site-header.is-scrolled .nav-shell {
  min-height: 68px;
  background: rgba(252, 252, 250, .93);
  box-shadow: 0 14px 45px rgba(17, 26, 44, .10);
}
.brand { width: 218px; text-decoration: none; }
.brand img { width: 100%; }
.desktop-nav { display: flex; align-items: center; gap: 30px; }
.desktop-nav a {
  position: relative;
  color: var(--slate-dark);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s ease;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}
.desktop-nav a:hover { color: var(--ink); }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { justify-self: end; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 13px;
  background: var(--ink);
}
.menu-toggle span {
  width: 18px;
  height: 1.5px;
  display: block;
  margin: 5px auto;
  background: white;
  transition: transform .25s ease;
}
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.25px) rotate(-45deg); }
.mobile-menu {
  display: none;
  width: min(calc(100% - 48px), var(--container));
  margin: 8px auto 0;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 20px;
  background: rgba(252, 252, 250, .97);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(20px);
  overflow: hidden;
}
.mobile-menu nav { display: grid; padding: 16px; }
.mobile-menu a {
  padding: 15px 8px;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  text-decoration: none;
}
.mobile-menu .button { margin-top: 16px; }
.mobile-menu.is-open { display: block; animation: menuIn .35s var(--ease); }
@keyframes menuIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* Buttons */
.button {
  position: relative;
  min-height: 52px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 14px;
  color: white;
  background: var(--ink);
  box-shadow: 0 10px 24px rgba(11, 18, 32, .14);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s ease, background .25s ease;
}
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, var(--blue), #6576ff 55%, var(--mint));
  opacity: 0;
  transition: opacity .35s ease;
}
.button > * { position: relative; z-index: 1; }
.button svg { position: relative; z-index: 1; width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; transition: transform .3s var(--ease); }
.button:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(11, 18, 32, .2); }
.button:hover::before { opacity: 1; }
.button:hover svg { transform: translateX(3px); }
.button:focus-visible, .problem-tab:focus-visible, .card-link:focus-visible, .inline-button:focus-visible, .menu-toggle:focus-visible, .dialog-close:focus-visible { outline: 3px solid rgba(79, 99, 255, .35); outline-offset: 3px; }
.button-small { min-height: 48px; padding-inline: 18px; font-size: 13px; }
.button-large { min-height: 62px; padding-inline: 24px; border-radius: 16px; font-size: 15px; }
.button-light { color: var(--ink); border-color: white; background: white; box-shadow: 0 12px 28px rgba(0,0,0,.17); }
.button-light::before { background: var(--mint); }
.button-full { width: 100%; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.text-link span { width: 27px; height: 27px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; transition: transform .3s var(--ease), background .3s ease; }
.text-link:hover span { transform: translateY(3px); background: white; }

/* Shared headings */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 5px rgba(117, 227, 195, .16); }
.eyebrow-light { color: var(--blue); }
.eyebrow-dark { color: var(--mint); }
.section-heading { margin-bottom: 64px; }
.section-heading h2,
.fit-copy h2,
.outcomes-copy h2,
.final-cta-copy h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 650;
  letter-spacing: -.05em;
  line-height: 1.04;
}
.section-heading p,
.fit-copy > p,
.outcomes-copy > p,
.final-cta-copy > p {
  margin: 24px 0 0;
  color: var(--slate);
  font-size: 18px;
  line-height: 1.75;
}
.heading-split { display: grid; grid-template-columns: 1.1fr .7fr; gap: 80px; align-items: end; }
.heading-split p { margin: 0 0 4px; }
.centered { max-width: 900px; margin-inline: auto; text-align: center; }
.centered h2 { margin-inline: auto; }
.centered p { max-width: 700px; margin-inline: auto; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 165px 0 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(243, 246, 248, .9), rgba(252, 252, 250, .95) 74%, var(--warm-white)),
    var(--warm-white);
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  opacity: .48;
  background-image: linear-gradient(rgba(11, 18, 32, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 18, 32, .045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 0, rgba(0,0,0,.7) 55%, transparent 91%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(12px); pointer-events: none; }
.hero-glow-one { width: 520px; height: 520px; top: 72px; left: -230px; background: radial-gradient(circle, rgba(79, 99, 255, .16), rgba(79, 99, 255, 0) 68%); }
.hero-glow-two { width: 470px; height: 470px; right: -140px; top: 245px; background: radial-gradient(circle, rgba(117, 227, 195, .18), rgba(117, 227, 195, 0) 70%); }
.hero-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr .98fr; gap: 52px; align-items: center; }
.hero-copy { padding: 38px 0 44px; }
.hero h1 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(52px, 6.4vw, 90px);
  font-weight: 650;
  letter-spacing: -.066em;
  line-height: .98;
}
.hero h1 span {
  position: relative;
  display: inline-block;
  color: var(--blue);
}
.hero h1 span::after {
  content: "";
  position: absolute;
  left: 2%;
  bottom: -5px;
  width: 97%;
  height: 13px;
  border-radius: 50%;
  border-top: 2px solid rgba(79, 99, 255, .7);
  transform: rotate(-1.5deg);
}
.hero-lead { max-width: 650px; margin: 32px 0 0; color: var(--slate); font-size: clamp(17px, 1.5vw, 20px); line-height: 1.72; }
.hero-actions { margin-top: 38px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero-assurance { margin-top: 34px; display: flex; gap: 18px 28px; flex-wrap: wrap; color: var(--slate-dark); font-size: 12px; font-weight: 600; }
.hero-assurance div { display: flex; align-items: center; gap: 6px; }
.hero-assurance svg { width: 16px; height: 16px; fill: none; stroke: var(--blue); stroke-width: 2; }

.hero-visual { position: relative; min-width: 0; }
.visual-card {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 34px;
  color: white;
  background:
    radial-gradient(circle at 80% 18%, rgba(79, 99, 255, .24), transparent 30%),
    radial-gradient(circle at 24% 82%, rgba(117, 227, 195, .12), transparent 28%),
    linear-gradient(155deg, #121b2e, #08101d 78%);
  box-shadow: var(--shadow-lg);
}
.visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}
.visual-topbar, .visual-footer { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; }
.visual-topbar { height: 70px; padding: 0 24px; border-bottom: 1px solid rgba(255,255,255,.09); }
.visual-status { display: flex; align-items: center; gap: 9px; color: #d9dfea; font-size: 12px; font-weight: 700; }
.visual-status span { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 6px rgba(117, 227, 195, .11); animation: statusPulse 2.4s ease infinite; }
@keyframes statusPulse { 50% { box-shadow: 0 0 0 11px rgba(117, 227, 195, 0); } }
.visual-live { padding: 6px 9px; border: 1px solid rgba(117,227,195,.28); border-radius: 8px; color: var(--mint); background: rgba(117,227,195,.08); font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.clarity-canvas { position: relative; height: 500px; }
.flow-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.flow-lines path { fill: none; stroke: url(#lineBlue); stroke-width: 1.5; stroke-dasharray: 8 13; filter: url(#lineGlow); animation: lineFlow 9s linear infinite; }
.flow-lines path:nth-child(2) { animation-duration: 7s; animation-direction: reverse; }
.flow-lines path:nth-child(3) { animation-duration: 10s; }
.flow-lines path:nth-child(4) { animation-duration: 8s; animation-direction: reverse; }
.flow-lines path:nth-child(5) { animation-duration: 11s; }
@keyframes lineFlow { to { stroke-dashoffset: -170; } }
.issue-chip {
  position: absolute;
  z-index: 2;
  width: 151px;
  min-height: 72px;
  padding: 13px 13px 12px 45px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 14px;
  background: rgba(255,255,255,.055);
  box-shadow: 0 16px 40px rgba(0,0,0,.16);
  backdrop-filter: blur(12px);
  animation: floatChip 5.8s ease-in-out infinite;
}
.issue-chip strong, .issue-chip small { display: block; }
.issue-chip strong { color: white; font-size: 12px; }
.issue-chip small { margin-top: 2px; color: #9fa9b9; font-size: 9px; line-height: 1.35; }
.chip-icon { position: absolute; left: 13px; top: 15px; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 8px; color: var(--mint); background: rgba(117,227,195,.1); font-size: 12px; }
.issue-one { left: 25px; top: 34px; }
.issue-two { left: 18px; top: 183px; animation-delay: -.8s; }
.issue-three { left: 38px; bottom: 25px; animation-delay: -1.8s; }
.issue-four { right: 26px; top: 72px; animation-delay: -2.7s; }
.issue-five { right: 18px; bottom: 54px; animation-delay: -3.6s; }
@keyframes floatChip { 50% { transform: translateY(-7px); } }
.clarity-core {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: 176px;
  height: 176px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  background: rgba(10, 18, 32, .84);
  box-shadow: 0 0 90px rgba(79, 99, 255, .24), inset 0 0 36px rgba(255,255,255,.04);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(18px);
}
.clarity-core img { position: relative; z-index: 2; width: 50px; margin-bottom: 12px; border-radius: 13px; box-shadow: 0 14px 30px rgba(0,0,0,.25); }
.clarity-core strong { position: relative; z-index: 2; font-size: 12px; }
.clarity-core small { position: relative; z-index: 2; margin-top: 3px; color: #9fa9b9; font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.core-rings span { position: absolute; inset: -1px; border: 1px solid rgba(79,99,255,.26); border-radius: 50%; animation: ringPulse 3.8s ease-out infinite; }
.core-rings span:nth-child(2) { animation-delay: 1.25s; }
.core-rings span:nth-child(3) { animation-delay: 2.5s; }
@keyframes ringPulse { 0% { opacity: .8; transform: scale(.85); } 75%,100% { opacity: 0; transform: scale(1.5); } }
.visual-footer { height: 70px; padding: 0 22px; border-top: 1px solid rgba(255,255,255,.09); color: #9fa9b9; font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.visual-footer span { display: flex; align-items: center; gap: 7px; }
.visual-footer i { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
.visual-footer span:last-child i { background: var(--mint); }
.floating-note {
  position: absolute;
  z-index: 6;
  padding: 12px 15px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 13px;
  color: var(--slate-dark);
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
  font-size: 10px;
  font-weight: 700;
}
.floating-note span { display: block; color: var(--ink); font-size: 18px; line-height: 1.1; }
.floating-note-one { left: -24px; bottom: 92px; transform: rotate(-2deg); }
.floating-note-two { right: -24px; top: 110px; transform: rotate(2deg); }

.audience-strip {
  position: relative;
  z-index: 2;
  margin-top: 92px;
  min-height: 88px;
  padding: 18px 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 25px;
  border-top: 1px solid var(--line);
}
.audience-strip > p { margin: 0; color: var(--slate); font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.audience-items { display: flex; align-items: center; justify-content: center; gap: 15px; color: var(--slate-dark); font-size: 12px; font-weight: 600; }
.audience-items i { width: 3px; height: 3px; border-radius: 50%; background: rgba(11,18,32,.22); }
.market-pill { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--slate-dark); background: white; font-size: 10px; font-weight: 800; letter-spacing: .06em; }

/* Friction */
.friction-section { padding-top: 142px; }
.friction-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.friction-card {
  position: relative;
  min-height: 370px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  transition: transform .4s var(--ease), box-shadow .4s ease, border-color .4s ease;
}
.friction-card::after {
  content: "";
  position: absolute;
  right: -95px;
  bottom: -105px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,99,255,.11), transparent 67%);
  transition: transform .55s var(--ease);
}
.friction-card:hover { transform: translateY(-8px); border-color: rgba(79,99,255,.23); box-shadow: var(--shadow-md); }
.friction-card:hover::after { transform: scale(1.35); }
.card-index { color: #a6adba; font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.friction-icon { width: 55px; height: 55px; margin-top: 35px; display: grid; place-items: center; border-radius: 17px; background: var(--cloud); }
.friction-icon svg { width: 27px; height: 27px; fill: none; stroke: var(--blue); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.friction-card h3 { margin: 24px 0 8px; font-size: 22px; letter-spacing: -.03em; line-height: 1.2; }
.friction-card > p { margin: 0; color: var(--slate); font-size: 14px; line-height: 1.7; }
.card-outcome { position: relative; z-index: 1; margin-top: auto; padding-top: 24px; color: var(--slate-dark); font-size: 11px; line-height: 1.55; }
.card-outcome span { margin-bottom: 5px; display: block; color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

/* Bento */
.simplify-section { background: var(--cloud); }
.bento-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.bento-card {
  position: relative;
  min-height: 440px;
  padding: 34px;
  overflow: hidden;
  grid-column: span 6;
  border: 1px solid rgba(11,18,32,.08);
  border-radius: 28px;
  background: white;
  box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
  transition: transform .4s var(--ease), box-shadow .4s ease;
}
.bento-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.bento-wide { min-height: 500px; grid-column: span 12; }
.bento-copy { position: relative; z-index: 2; max-width: 510px; }
.bento-label { margin-bottom: 18px; color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.bento-card h3 { margin: 0; max-width: 590px; font-size: clamp(28px, 3vw, 40px); font-weight: 650; letter-spacing: -.045em; line-height: 1.12; }
.bento-card > p, .bento-copy > p { max-width: 555px; margin: 17px 0 0; color: var(--slate); font-size: 15px; line-height: 1.75; }
.clean-list { margin: 28px 0 0; padding: 0; display: flex; gap: 8px; flex-wrap: wrap; list-style: none; }
.clean-list li { padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--slate-dark); background: rgba(255,255,255,.75); font-size: 10px; font-weight: 700; }
.operations-card { padding: 50px; display: grid; grid-template-columns: .83fr 1.17fr; gap: 48px; align-items: center; background: linear-gradient(135deg, white 45%, #f0f2ff); }
.mini-workflow { position: relative; z-index: 2; padding: 22px; border: 1px solid rgba(11,18,32,.09); border-radius: 22px; background: rgba(255,255,255,.85); box-shadow: 0 26px 60px rgba(40,51,110,.12); transform: rotate(1.2deg); }
.workflow-header { padding-bottom: 16px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.workflow-header span { font-size: 12px; font-weight: 800; }
.workflow-header small { padding: 5px 8px; border-radius: 999px; color: #148066; background: rgba(117,227,195,.18); font-size: 8px; font-weight: 800; text-transform: uppercase; }
.workflow-row { min-height: 68px; display: grid; grid-template-columns: 33px 1fr auto; gap: 12px; align-items: center; opacity: .55; }
.workflow-row i { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 10px; color: var(--slate); background: white; font-size: 9px; font-style: normal; font-weight: 800; }
.workflow-row strong, .workflow-row small { display: block; }
.workflow-row strong { font-size: 11px; }
.workflow-row small { margin-top: 3px; color: var(--slate); font-size: 8px; }
.workflow-row b { color: var(--slate); font-size: 8px; text-transform: uppercase; }
.workflow-row.active { opacity: 1; }
.workflow-row.active i { color: white; border-color: var(--blue); background: var(--blue); }
.workflow-row.active b { color: #148066; }
.workflow-row.current { opacity: 1; }
.workflow-row.current i { color: var(--ink); border-color: var(--mint); background: var(--mint); box-shadow: 0 0 0 5px rgba(117,227,195,.12); }
.workflow-row.current b { color: var(--blue); }
.workflow-line { width: 1px; height: 12px; margin: -6px 0 -6px 15px; background: var(--blue); }
.workflow-line.muted { background: var(--line); }

.sales-card { background: linear-gradient(150deg, white 45%, #eef1ff); }
.lead-stack { position: absolute; left: 34px; right: 34px; bottom: 38px; height: 178px; }
.lead-card { position: absolute; left: 50%; width: min(100%, 430px); border: 1px solid rgba(11,18,32,.09); border-radius: 17px; background: white; box-shadow: 0 18px 36px rgba(39,51,102,.11); transform: translateX(-50%); }
.lead-back, .lead-mid { height: 70px; padding: 15px 18px; display: flex; align-items: center; justify-content: space-between; color: var(--slate-dark); font-size: 10px; font-weight: 700; }
.lead-back i, .lead-mid i { padding: 5px 7px; border-radius: 999px; color: var(--blue); background: rgba(79,99,255,.08); font-size: 7px; font-style: normal; text-transform: uppercase; }
.lead-back { top: 0; opacity: .5; transform: translateX(-50%) scale(.87); }
.lead-mid { top: 28px; opacity: .75; transform: translateX(-50%) scale(.94); }
.lead-front { top: 68px; min-height: 94px; padding: 17px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.lead-front strong, .lead-front small { display: block; }
.lead-front strong { font-size: 12px; }
.lead-front small { margin-top: 4px; color: var(--slate); font-size: 9px; }
.lead-front button { padding: 10px 12px; border: 0; border-radius: 10px; color: white; background: var(--ink); font-size: 8px; font-weight: 700; }

.dashboard-card { color: white; border-color: rgba(255,255,255,.08); background: linear-gradient(155deg, #17233a, #08101d); }
.dashboard-card .bento-label { color: var(--mint); }
.dashboard-card > p { color: #aeb7c6; }
.dashboard-mini { position: absolute; left: 34px; right: 34px; bottom: 32px; min-height: 185px; padding: 17px; border: 1px solid rgba(255,255,255,.11); border-radius: 18px; background: rgba(255,255,255,.055); box-shadow: inset 0 1px 0 rgba(255,255,255,.06); backdrop-filter: blur(14px); }
.dash-top { display: flex; justify-content: space-between; color: #dce2ec; font-size: 9px; font-weight: 700; }
.dash-top small { color: #7f8b9d; }
.dash-numbers { margin-top: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.dash-numbers div { padding: 10px; border: 1px solid rgba(255,255,255,.08); border-radius: 11px; background: rgba(255,255,255,.035); }
.dash-numbers strong, .dash-numbers span { display: block; }
.dash-numbers strong { font-size: 20px; }
.dash-numbers span { color: #8f9bad; font-size: 7px; }
.dash-bars { height: 38px; margin: 12px 0; display: flex; align-items: end; gap: 6px; }
.dash-bars span { width: 100%; height: var(--bar); border-radius: 4px 4px 1px 1px; background: linear-gradient(to top, var(--blue), var(--mint)); opacity: .8; }
.dash-alert { padding: 8px 9px; display: flex; align-items: center; gap: 7px; border-radius: 9px; color: #dbe1ea; background: rgba(79,99,255,.12); font-size: 7px; }
.dash-alert i { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); }
.dash-alert b { margin-left: auto; color: var(--mint); text-transform: uppercase; }

.content-card { min-height: 390px; grid-column: span 12; background: linear-gradient(145deg, #f7fffc, white); }
.content-card p { max-width: 680px; }
.content-pipeline { margin-top: 50px; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; gap: 15px; }
.content-pipeline > div { min-height: 105px; padding: 17px; border: 1px solid var(--line); border-radius: 16px; background: white; box-shadow: 0 12px 28px rgba(25,34,55,.06); }
.content-pipeline span, .content-pipeline strong, .content-pipeline small { display: block; }
.content-pipeline span { color: var(--blue); font-size: 9px; font-weight: 800; }
.content-pipeline strong { margin-top: 18px; font-size: 12px; }
.content-pipeline small { margin-top: 3px; color: var(--slate); font-size: 8px; }
.content-pipeline > i { width: 30px; height: 1px; position: relative; background: linear-gradient(90deg, var(--blue), var(--mint)); }
.content-pipeline > i::after { content: ""; position: absolute; right: 0; top: -2px; width: 5px; height: 5px; border-radius: 50%; background: var(--mint); }

.apps-card { padding: 0; display: grid; grid-template-columns: 1.15fr .85fr; gap: 0; align-items: stretch; color: white; border-color: rgba(255,255,255,.06); background: #0b1220; }
.apps-card .bento-copy { padding: 52px 46px; display: flex; flex-direction: column; justify-content: center; }
.apps-card .bento-label { color: var(--mint); }
.apps-card p { color: #aeb7c6; }
.inline-button { width: fit-content; margin-top: 28px; padding: 0 0 7px; border: 0; border-bottom: 1px solid rgba(117,227,195,.35); color: white; background: transparent; font-size: 12px; font-weight: 700; }
.inline-button span { margin-left: 8px; color: var(--mint); transition: margin .25s var(--ease); }
.inline-button:hover span { margin-left: 13px; }
.app-window { position: relative; margin: 36px 0 36px 36px; display: grid; grid-template-columns: 58px 1fr; overflow: hidden; border: 1px solid rgba(255,255,255,.10); border-radius: 23px 0 0 23px; background: rgba(255,255,255,.055); box-shadow: 0 25px 70px rgba(0,0,0,.25); }
.app-sidebar { padding: 16px 0; display: flex; flex-direction: column; align-items: center; gap: 18px; border-right: 1px solid rgba(255,255,255,.08); }
.app-sidebar img { width: 30px; border-radius: 8px; margin-bottom: 10px; }
.app-sidebar span { width: 20px; height: 20px; border-radius: 6px; background: rgba(255,255,255,.07); }
.app-sidebar span.selected { background: rgba(79,99,255,.65); box-shadow: 0 0 0 4px rgba(79,99,255,.1); }
.app-main { padding: 25px; }
.app-heading { display: flex; align-items: center; justify-content: space-between; font-size: 11px; font-weight: 700; }
.app-heading div { display: flex; gap: 8px; }
.app-heading i { width: 24px; height: 24px; border-radius: 7px; background: rgba(255,255,255,.07); }
.app-grid { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.app-stat, .app-list { border: 1px solid rgba(255,255,255,.08); border-radius: 14px; background: rgba(255,255,255,.04); }
.app-stat { padding: 16px; }
.app-stat small, .app-stat strong, .app-stat span { display: block; }
.app-stat small { color: #8e9aac; font-size: 7px; }
.app-stat strong { margin-top: 10px; font-size: 29px; }
.app-stat span { color: var(--mint); font-size: 7px; }
.app-list { grid-column: span 2; min-height: 145px; padding: 16px; display: grid; gap: 9px; }
.app-list span { border-radius: 7px; background: linear-gradient(90deg, rgba(255,255,255,.08) 30%, rgba(255,255,255,.03) 30%); }

/* Problem explorer */
.problem-section { overflow: hidden; color: white; background: var(--ink); }
.problem-section::before { content: ""; position: absolute; width: 720px; height: 720px; right: -320px; top: -300px; border-radius: 50%; background: radial-gradient(circle, rgba(79,99,255,.26), transparent 67%); }
.problem-layout { position: relative; display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: start; }
.problem-intro { position: sticky; top: 120px; }
.problem-intro h2 { margin: 0; max-width: 430px; font-size: clamp(44px, 5vw, 68px); font-weight: 650; letter-spacing: -.055em; line-height: 1.04; }
.problem-intro > p { margin: 24px 0 34px; max-width: 420px; color: #abb5c5; font-size: 17px; line-height: 1.75; }
.problem-explorer { min-width: 0; }
.problem-tabs { display: grid; }
.problem-tab {
  position: relative;
  width: 100%;
  padding: 24px 18px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.11);
  color: #919cad;
  background: transparent;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  transition: color .25s ease, padding .3s var(--ease);
}
.problem-tab::before { content: ""; position: absolute; left: 0; top: 50%; width: 3px; height: 0; border-radius: 999px; background: var(--mint); transform: translateY(-50%); transition: height .3s var(--ease); }
.problem-tab span { color: #667286; font-size: 9px; font-weight: 800; letter-spacing: .08em; }
.problem-tab:hover { color: white; padding-left: 23px; }
.problem-tab.active { padding-left: 25px; color: white; }
.problem-tab.active::before { height: 32px; }
.problem-tab.active span { color: var(--mint); }
.solution-panel { margin-top: 28px; padding: 34px; border: 1px solid rgba(255,255,255,.12); border-radius: 26px; background: rgba(255,255,255,.055); box-shadow: inset 0 1px 0 rgba(255,255,255,.05); backdrop-filter: blur(14px); }
.solution-panel.is-changing { animation: solutionChange .4s var(--ease); }
@keyframes solutionChange { 0% { opacity: .3; transform: translateY(8px); } 100% { opacity: 1; transform: translateY(0); } }
.solution-top { display: flex; align-items: start; justify-content: space-between; gap: 18px; }
.solution-top small { color: var(--mint); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.solution-top h3 { margin: 8px 0 0; max-width: 500px; font-size: 27px; letter-spacing: -.035em; line-height: 1.25; }
.solution-badge { padding: 7px 9px; border: 1px solid rgba(117,227,195,.2); border-radius: 999px; color: var(--mint); background: rgba(117,227,195,.08); font-size: 7px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.solution-panel > p { margin: 20px 0 0; max-width: 650px; color: #aeb8c8; font-size: 14px; line-height: 1.75; }
.solution-flow { margin-top: 26px; padding: 17px; display: flex; align-items: center; justify-content: space-between; gap: 10px; border: 1px solid rgba(255,255,255,.08); border-radius: 14px; background: rgba(0,0,0,.13); }
.solution-flow span { padding: 7px 9px; border-radius: 8px; color: #dbe1ea; background: rgba(255,255,255,.05); font-size: 8px; font-weight: 700; text-align: center; }
.solution-flow i { color: var(--mint); font-size: 11px; font-style: normal; }
.solution-outcomes { margin-top: 25px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; }
.solution-outcomes div { min-height: 62px; padding: 12px; display: flex; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,.08); border-radius: 12px; color: #cbd3df; font-size: 9px; font-weight: 600; }
.solution-outcomes svg { width: 16px; height: 16px; flex: 0 0 auto; fill: none; stroke: var(--mint); stroke-width: 2; }

/* Process */
.process-track { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-line { position: absolute; left: 5%; right: 5%; top: 30px; height: 1px; overflow: hidden; background: var(--line); }
.process-line span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--blue), var(--mint)); transition: width 1.2s var(--ease); }
.process-track.in-view .process-line span { width: 100%; }
.process-step { position: relative; padding-top: 2px; }
.step-number { position: relative; z-index: 2; width: 59px; height: 59px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--blue); background: var(--warm-white); font-size: 10px; font-weight: 800; box-shadow: 0 0 0 10px var(--warm-white); }
.step-content { margin-top: 30px; padding-right: 20px; }
.step-label { color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.step-content h3 { margin: 12px 0 10px; font-size: 22px; letter-spacing: -.035em; line-height: 1.25; }
.step-content p { margin: 0; color: var(--slate); font-size: 13px; line-height: 1.75; }

/* Outcomes */
.outcomes-section { padding-top: 40px; }
.outcomes-shell { padding: 66px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 75px; align-items: center; overflow: hidden; border-radius: 34px; color: white; background: linear-gradient(140deg, #101a2d, #07101c); box-shadow: var(--shadow-lg); }
.outcomes-shell::before { content: ""; position: absolute; width: 530px; height: 530px; left: -230px; bottom: -300px; border-radius: 50%; background: radial-gradient(circle, rgba(79,99,255,.26), transparent 66%); }
.outcomes-copy, .outcome-grid { position: relative; z-index: 2; }
.outcomes-copy h2 { font-size: clamp(38px, 4vw, 55px); }
.outcomes-copy > p { color: #aeb8c8; font-size: 15px; }
.outcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.outcome-card { min-height: 180px; padding: 23px; display: flex; flex-direction: column; border: 1px solid rgba(255,255,255,.1); border-radius: 20px; background: rgba(255,255,255,.05); backdrop-filter: blur(12px); transition: transform .35s var(--ease), background .35s ease; }
.outcome-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.075); }
.outcome-card > span { color: var(--mint); font-size: 9px; font-weight: 800; }
.outcome-card strong { margin-top: auto; font-size: 18px; }
.outcome-card p { margin: 6px 0 0; color: #aab4c4; font-size: 11px; line-height: 1.6; }

/* Engagements */
.engagements-section { background: var(--cloud); }
.engagement-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.engagement-card { position: relative; min-height: 520px; padding: 34px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 26px; background: white; transition: transform .4s var(--ease), box-shadow .4s ease; }
.engagement-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.engagement-card.featured { color: white; border-color: var(--ink); background: var(--ink); box-shadow: 0 28px 70px rgba(11,18,32,.16); }
.featured-label { position: absolute; top: 22px; right: 22px; padding: 6px 9px; border-radius: 999px; color: var(--ink); background: var(--mint); font-size: 7px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.engagement-number { color: #a5adba; font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.featured .engagement-number { color: #697589; }
.engagement-type { margin-top: 46px; color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.featured .engagement-type { color: var(--mint); }
.engagement-card h3 { margin: 16px 0 13px; font-size: 28px; letter-spacing: -.045em; line-height: 1.2; }
.engagement-card > p { margin: 0; color: var(--slate); font-size: 13px; line-height: 1.75; }
.featured > p { color: #aeb8c8; }
.check-list { margin: 26px 0 0; padding: 0; display: grid; gap: 12px; list-style: none; }
.check-list li { position: relative; padding-left: 22px; color: var(--slate-dark); font-size: 11px; font-weight: 600; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 800; }
.featured .check-list li { color: #d3d9e3; }
.featured .check-list li::before { color: var(--mint); }
.card-link { width: 100%; margin-top: auto; padding: 20px 0 0; display: flex; justify-content: space-between; border: 0; border-top: 1px solid var(--line); color: var(--ink); background: transparent; font-size: 12px; font-weight: 800; text-align: left; }
.card-link span { color: var(--blue); transition: transform .25s var(--ease); }
.card-link:hover span { transform: translateX(5px); }
.featured .card-link { color: white; border-color: rgba(255,255,255,.11); }
.featured .card-link span { color: var(--mint); }

/* Fit */
.fit-layout { display: grid; grid-template-columns: .83fr 1.17fr; gap: 92px; align-items: start; }
.fit-copy { position: sticky; top: 120px; }
.fit-copy h2 { font-size: clamp(40px, 4.7vw, 62px); }
.region-row { margin-top: 32px; display: flex; gap: 8px; flex-wrap: wrap; }
.region-row span { padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--slate-dark); background: white; font-size: 9px; font-weight: 700; }
.fit-list { border-top: 1px solid var(--line); }
.fit-list > div { min-height: 165px; padding: 30px 0; display: grid; grid-template-columns: 55px 190px 1fr; gap: 20px; align-items: start; border-bottom: 1px solid var(--line); transition: padding .3s var(--ease); }
.fit-list > div:hover { padding-left: 10px; padding-right: 10px; }
.fit-list span { color: var(--blue); font-size: 9px; font-weight: 800; }
.fit-list strong { font-size: 18px; letter-spacing: -.02em; }
.fit-list p { margin: 0; color: var(--slate); font-size: 13px; line-height: 1.7; }

/* Manifesto */
.manifesto-section { padding-top: 30px; }
.manifesto-shell { padding: 88px 80px; text-align: center; border: 1px solid var(--line); border-radius: 34px; background: linear-gradient(145deg, white, #f4f6ff); }
.manifesto-mark { width: 64px; margin: 0 auto 34px; padding: 6px; border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: var(--shadow-sm); }
.manifesto-mark img { border-radius: 13px; }
.manifesto-shell blockquote { margin: 0 auto; max-width: 990px; font-size: clamp(32px, 5vw, 64px); font-weight: 600; letter-spacing: -.055em; line-height: 1.14; }
.manifesto-shell blockquote span { color: var(--blue); }
.manifesto-shell > p { margin: 30px 0 0; color: var(--slate); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

/* Final CTA */
.section.final-cta-section { padding-bottom: 0; }
.final-cta-shell { position: relative; padding: 74px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 74px; overflow: hidden; border-radius: 36px 36px 0 0; color: white; background: linear-gradient(145deg, #111c31, #08101c); }
.final-cta-shell::before { content: ""; position: absolute; width: 640px; height: 640px; right: -190px; top: -310px; border-radius: 50%; background: radial-gradient(circle, rgba(79,99,255,.28), transparent 65%); }
.final-cta-copy, .quick-form { position: relative; z-index: 2; }
.final-cta-copy h2 { font-size: clamp(42px, 5vw, 66px); }
.final-cta-copy > p { color: #aeb8c8; font-size: 16px; }
.cta-details { margin-top: 40px; display: grid; gap: 14px; }
.cta-details div { padding: 15px 0; display: grid; grid-template-columns: 36px 1fr; align-items: center; border-bottom: 1px solid rgba(255,255,255,.1); }
.cta-details span { color: var(--mint); font-size: 9px; font-weight: 800; }
.cta-details p { margin: 0; color: #d7dee8; font-size: 12px; font-weight: 600; }
.quick-form { align-self: center; padding: 34px; border: 1px solid rgba(255,255,255,.13); border-radius: 25px; background: rgba(255,255,255,.06); box-shadow: inset 0 1px 0 rgba(255,255,255,.05); backdrop-filter: blur(16px); }
.form-heading { margin-bottom: 26px; display: flex; align-items: end; justify-content: space-between; gap: 18px; }
.form-heading span { font-size: 18px; font-weight: 700; }
.form-heading small { color: #8190a4; font-size: 8px; font-weight: 700; text-transform: uppercase; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { margin-bottom: 14px; display: grid; gap: 7px; }
.field > span { color: #cdd5e1; font-size: 9px; font-weight: 700; }
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  outline: 0;
  color: white;
  background: rgba(5,11,21,.35);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field input, .field select { height: 49px; padding: 0 13px; }
.field textarea { min-height: 132px; padding: 13px; resize: vertical; line-height: 1.55; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #8d98a9 50%), linear-gradient(135deg, #8d98a9 50%, transparent 50%); background-position: calc(100% - 17px) 21px, calc(100% - 12px) 21px; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.field select option { color: var(--ink); background: white; }
.field input::placeholder, .field textarea::placeholder { color: #718096; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: rgba(117,227,195,.7); background: rgba(5,11,21,.48); box-shadow: 0 0 0 4px rgba(117,227,195,.08); }
.form-note { margin: 13px 0 0; color: #768398; font-size: 8px; line-height: 1.5; text-align: center; }
.form-status { min-height: 0; margin-top: 12px; color: var(--mint); font-size: 10px; font-weight: 700; text-align: center; }

/* Footer */
.site-footer { padding: 74px 0 24px; color: white; background: #050b15; }
.footer-main { display: grid; grid-template-columns: .95fr 1.05fr; gap: 90px; padding-bottom: 65px; }
.footer-brand img { width: 260px; }
.footer-brand p { max-width: 370px; margin: 22px 0 0; color: #8f9aab; font-size: 13px; line-height: 1.7; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-links > div { display: grid; align-content: start; gap: 11px; }
.footer-links span { margin-bottom: 8px; color: #68758a; font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-links a, .footer-links button, .footer-links p { margin: 0; padding: 0; border: 0; color: #d6dde7; background: transparent; font-size: 11px; line-height: 1.7; text-align: left; text-decoration: none; transition: color .2s ease; }
.footer-links a:hover, .footer-links button:hover { color: var(--mint); }
.footer-bottom { padding-top: 22px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-top: 1px solid rgba(255,255,255,.09); color: #68758a; font-size: 8px; letter-spacing: .04em; }
.footer-bottom > span:nth-child(2) { color: #929dae; }
.footer-bottom div { justify-self: end; display: flex; gap: 18px; }
.footer-bottom a { text-decoration: none; }

/* Dialog */
.intake-dialog { width: min(1050px, calc(100% - 34px)); max-height: min(800px, calc(100vh - 32px)); padding: 0; overflow: auto; border: 0; border-radius: 30px; background: white; box-shadow: 0 50px 150px rgba(0,0,0,.45); }
.intake-dialog::backdrop { background: rgba(4, 9, 18, .72); backdrop-filter: blur(9px); }
.intake-dialog[open] { animation: dialogIn .45s var(--ease); }
.intake-dialog[open]::backdrop { animation: backdropIn .3s ease; }
@keyframes dialogIn { from { opacity: 0; transform: translateY(22px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes backdropIn { from { opacity: 0; } to { opacity: 1; } }
.dialog-shell { min-height: 690px; display: grid; grid-template-columns: .82fr 1.18fr; }
.dialog-close { position: fixed; z-index: 5; top: 19px; right: 20px; width: 40px; height: 40px; border: 1px solid rgba(11,18,32,.1); border-radius: 50%; color: var(--ink); background: rgba(255,255,255,.9); font-size: 23px; line-height: 1; }
.dialog-aside { position: relative; padding: 42px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; color: white; background: linear-gradient(145deg, #14203a, #07101d); }
.dialog-aside::after { content: ""; position: absolute; width: 480px; height: 480px; left: -210px; bottom: -240px; border-radius: 50%; background: radial-gradient(circle, rgba(79,99,255,.34), transparent 67%); }
.dialog-aside > * { position: relative; z-index: 2; }
.dialog-aside > img { width: 230px; }
.dialog-kicker { color: var(--mint); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.dialog-aside h2 { margin: 18px 0 0; font-size: 43px; font-weight: 650; letter-spacing: -.055em; line-height: 1.05; }
.dialog-aside p { margin: 20px 0 0; color: #aab4c4; font-size: 13px; line-height: 1.75; }
.dialog-promise { display: grid; gap: 12px; }
.dialog-promise span { display: flex; align-items: center; gap: 11px; color: #d4dae4; font-size: 10px; font-weight: 600; }
.dialog-promise i { width: 25px; height: 25px; display: grid; place-items: center; border: 1px solid rgba(117,227,195,.22); border-radius: 50%; color: var(--mint); background: rgba(117,227,195,.08); font-size: 8px; font-style: normal; }
.dialog-form { padding: 48px; }
.dialog-form-head { margin-bottom: 28px; display: flex; align-items: end; justify-content: space-between; }
.dialog-form-head span { font-size: 18px; font-weight: 800; }
.dialog-form-head small { color: var(--slate); font-size: 8px; }
.dialog-form .field > span { color: var(--slate-dark); }
.dialog-form .field input, .dialog-form .field textarea, .dialog-form .field select { color: var(--ink); border-color: var(--line); background: var(--cloud); }
.dialog-form .field input::placeholder, .dialog-form .field textarea::placeholder { color: #8f98a6; }
.dialog-form .field input:focus, .dialog-form .field textarea:focus, .dialog-form .field select:focus { border-color: var(--blue); background: white; box-shadow: 0 0 0 4px rgba(79,99,255,.08); }
.dark-note { color: #8f98a6; }
.dark-status { color: var(--blue); }

/* Reveal */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1120px) {
  .nav-shell { grid-template-columns: minmax(210px,1fr) auto; }
  .desktop-nav { display: none; }
  .nav-cta { margin-left: auto; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 850px; padding-bottom: 22px; }
  .hero h1 { max-width: 850px; }
  .hero-visual { max-width: 760px; width: 100%; margin: 20px auto 0; }
  .visual-card { min-height: 610px; }
  .audience-strip { grid-template-columns: auto 1fr; }
  .market-pill { grid-column: 1 / -1; justify-self: start; }
  .friction-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-layout { grid-template-columns: 1fr; gap: 55px; }
  .problem-intro { position: static; max-width: 760px; }
  .process-track { grid-template-columns: repeat(2, 1fr); gap: 50px 22px; }
  .process-line { display: none; }
  .outcomes-shell { grid-template-columns: 1fr; }
  .fit-layout { grid-template-columns: 1fr; gap: 55px; }
  .fit-copy { position: static; }
  .final-cta-shell { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 55px; }
}

@media (max-width: 860px) {
  :root { --header-height: 66px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 92px 0; }
  .site-header { padding-top: 9px; }
  .nav-shell { padding: 8px 9px 8px 13px; grid-template-columns: 1fr auto; border-radius: 18px; }
  .brand { width: 190px; }
  .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu { width: min(calc(100% - 32px), var(--container)); }
  .hero { min-height: auto; padding-top: 128px; }
  .hero h1 { font-size: clamp(49px, 11vw, 72px); }
  .hero-assurance { display: grid; grid-template-columns: 1fr 1fr; }
  .audience-strip { margin-top: 64px; grid-template-columns: 1fr; gap: 13px; }
  .audience-items { justify-content: flex-start; flex-wrap: wrap; }
  .heading-split { grid-template-columns: 1fr; gap: 25px; }
  .section-heading { margin-bottom: 46px; }
  .operations-card { padding: 34px; grid-template-columns: 1fr; }
  .bento-card, .bento-wide, .content-card { grid-column: span 12; }
  .content-pipeline { grid-template-columns: 1fr 1fr; }
  .content-pipeline > i { display: none; }
  .apps-card { grid-template-columns: 1fr; }
  .app-window { min-height: 330px; margin: 28px 28px 0; border-radius: 20px; }
  .apps-card .bento-copy { padding: 36px; }
  .engagement-grid { grid-template-columns: 1fr; }
  .engagement-card { min-height: 480px; }
  .manifesto-shell { padding: 70px 35px; }
  .final-cta-shell { padding: 50px 34px; border-radius: 28px 28px 0 0; }
  .dialog-shell { grid-template-columns: 1fr; }
  .dialog-aside { min-height: 430px; }
  .dialog-promise { display: none; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .section { padding: 78px 0; }
  .brand { width: 171px; }
  .hero { padding-top: 115px; }
  .hero-copy { padding-top: 20px; }
  .eyebrow { margin-bottom: 18px; font-size: 9px; letter-spacing: .11em; }
  .hero h1 { font-size: clamp(44px, 13vw, 62px); line-height: 1.01; }
  .hero-lead { margin-top: 25px; font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { justify-content: center; }
  .hero-assurance { grid-template-columns: 1fr; gap: 11px; }
  .hero-visual { margin-top: 12px; }
  .visual-card { min-height: 520px; border-radius: 25px; }
  .clarity-canvas { height: 400px; }
  .issue-chip { width: 120px; min-height: 63px; padding: 11px 10px 10px 37px; }
  .issue-chip strong { font-size: 10px; }
  .issue-chip small { font-size: 7px; }
  .chip-icon { left: 10px; top: 12px; width: 20px; height: 20px; }
  .issue-one { left: 10px; top: 25px; }
  .issue-two { left: 8px; top: 151px; }
  .issue-three { left: 12px; bottom: 20px; }
  .issue-four { right: 8px; top: 57px; }
  .issue-five { right: 8px; bottom: 38px; }
  .clarity-core { width: 139px; height: 139px; }
  .clarity-core img { width: 40px; }
  .clarity-core strong { font-size: 10px; }
  .visual-footer { height: 50px; padding: 0 12px; font-size: 6px; }
  .visual-footer span { gap: 4px; }
  .floating-note { display: none; }
  .audience-items { gap: 8px 12px; }
  .audience-items i { display: none; }
  .section-heading h2, .fit-copy h2, .outcomes-copy h2, .final-cta-copy h2 { font-size: 39px; }
  .section-heading p, .fit-copy > p, .outcomes-copy > p, .final-cta-copy > p { font-size: 15px; }
  .friction-grid { grid-template-columns: 1fr; }
  .friction-card { min-height: 330px; }
  .bento-card { min-height: 430px; padding: 27px; border-radius: 22px; }
  .bento-card h3 { font-size: 29px; }
  .operations-card { padding: 28px; }
  .mini-workflow { margin-top: 10px; padding: 17px; transform: none; }
  .sales-card, .dashboard-card { min-height: 490px; }
  .lead-stack, .dashboard-mini { left: 24px; right: 24px; }
  .content-card { min-height: auto; }
  .content-pipeline { margin-top: 35px; grid-template-columns: 1fr; }
  .content-pipeline > div { min-height: 88px; }
  .content-pipeline strong { margin-top: 11px; }
  .app-window { margin: 22px 20px 0; grid-template-columns: 45px 1fr; }
  .app-main { padding: 18px 14px; }
  .apps-card .bento-copy { padding: 30px 26px 36px; }
  .problem-intro h2 { font-size: 42px; }
  .problem-tab { padding: 20px 7px; grid-template-columns: 32px 1fr; font-size: 13px; }
  .solution-panel { padding: 24px; }
  .solution-top { display: block; }
  .solution-badge { margin-top: 14px; display: inline-block; }
  .solution-flow { align-items: stretch; flex-direction: column; }
  .solution-flow i { transform: rotate(90deg); align-self: center; }
  .solution-outcomes { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: 1fr; gap: 36px; }
  .process-step { display: grid; grid-template-columns: 58px 1fr; gap: 20px; }
  .step-content { margin-top: 0; padding-right: 0; }
  .outcomes-section { padding-top: 10px; }
  .outcomes-shell { padding: 42px 25px; gap: 44px; border-radius: 26px; }
  .outcome-grid { grid-template-columns: 1fr; }
  .outcome-card { min-height: 145px; }
  .engagement-card { min-height: 500px; padding: 28px; }
  .fit-list > div { grid-template-columns: 35px 1fr; min-height: 0; }
  .fit-list p { grid-column: 2; }
  .manifesto-section { padding-top: 0; }
  .manifesto-shell { padding: 55px 24px; border-radius: 25px; }
  .manifesto-shell blockquote { font-size: 34px; }
  .final-cta-section { padding-top: 45px; }
  .final-cta-shell { width: 100%; padding: 44px 20px; border-radius: 0; }
  .quick-form { padding: 24px 18px; }
  .form-heading { align-items: start; flex-direction: column; gap: 4px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-main { gap: 44px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 35px 20px; }
  .footer-bottom { grid-template-columns: 1fr; gap: 12px; text-align: left; }
  .footer-bottom > span:nth-child(2) { display: none; }
  .footer-bottom div { justify-self: start; }
  .intake-dialog { width: calc(100% - 16px); max-height: calc(100vh - 16px); border-radius: 22px; }
  .dialog-aside { min-height: 350px; padding: 30px 24px; }
  .dialog-aside > img { width: 200px; }
  .dialog-aside h2 { font-size: 38px; }
  .dialog-form { padding: 30px 20px; }
  .dialog-form-head { align-items: start; flex-direction: column; gap: 4px; }
  .dialog-close { top: 15px; right: 15px; }
}

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