@charset "utf-8";
@import url("fonts.css");

:root {
  --ink: #151a20;
  --muted: #606872;
  --line: rgba(21, 26, 32, 0.12);
  --paper: #fbfaf7;
  --paper-deep: #f2eee7;
  --white: #ffffff;
  --blue: #173a84;
  --cyan: #16a8d4;
  --mint: #dcefe8;
  --peach: #f7dfcf;
  --lavender: #e5e2f5;
  --sand: #ebe5d6;
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shadow-soft: 0 24px 70px rgba(30, 38, 48, 0.12);
  --shadow-card: 0 12px 36px rgba(30, 38, 48, 0.08);
  --font-body: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Space Grotesk", Inter, -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
button, input, select { font: inherit; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, p, ul, ol, blockquote { margin-top: 0; }
h1, h2, h3, strong { font-family: var(--font-display); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 9px;
  color: white;
  background: var(--ink);
  transition: transform 180ms ease;
}

.skip-link:focus { transform: translateY(0); }

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section { padding: 124px 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(251, 250, 247, 0.82);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.scrolled {
  background: rgba(251, 250, 247, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 7px 30px rgba(30, 38, 48, 0.05);
}

.nav-wrap {
  min-height: 78px;
  display: grid;
  grid-template-columns: 230px 1fr 230px;
  align-items: center;
}

.brand { display: inline-flex; width: 180px; align-items: center; }
.brand img { width: 100%; height: auto; }

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
}

.desktop-nav a,
.footer-links a {
  color: #40474f;
  font-size: 14px;
  font-weight: 500;
  transition: color 150ms ease;
}

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

.desktop-cta { justify-self: end; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button:focus-visible,
.text-link:focus-visible,
.desktop-nav a:focus-visible,
.mobile-nav a:focus-visible,
.footer-links a:focus-visible,
.cookie-banner button:focus-visible {
  outline: 3px solid rgba(22, 168, 212, 0.35);
  outline-offset: 3px;
}

.button-small { min-height: 42px; padding-inline: 17px; }
.button-ink { color: white; background: var(--ink); box-shadow: 0 8px 20px rgba(21, 26, 32, 0.16); }
.button-ink:hover { background: #283039; box-shadow: 0 12px 26px rgba(21, 26, 32, 0.2); }
.button-paper { color: var(--ink); background: var(--white); border-color: rgba(255,255,255,.4); }

.menu-button,
.mobile-nav { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 166px 0 92px;
  background:
    radial-gradient(circle at 12% 24%, rgba(255, 213, 189, 0.72), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(205, 224, 255, 0.75), transparent 29%),
    linear-gradient(145deg, #fbf7f0 0%, #f7f6f2 48%, #eef5f7 100%);
}

.paper-grain {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, rgba(56, 46, 32, 0.025) 0, rgba(56, 46, 32, 0.025) 1px, transparent 1px, transparent 4px),
    repeating-linear-gradient(90deg, rgba(56, 46, 32, 0.018) 0, rgba(56, 46, 32, 0.018) 1px, transparent 1px, transparent 7px);
  mix-blend-mode: multiply;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.75;
}

.hero-orb-one { width: 420px; height: 420px; left: -250px; top: 360px; background: rgba(247, 223, 207, .62); }
.hero-orb-two { width: 360px; height: 360px; right: -220px; top: 290px; background: rgba(220, 239, 232, .7); }

.hero-content { position: relative; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: #44515e;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(22, 168, 212, 0.12);
}

.hero h1 {
  max-width: 930px;
  margin: 0 auto 28px;
  font-size: clamp(56px, 7.1vw, 96px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.062em;
}

.hero h1 em {
  position: relative;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 3px;
  height: 6px;
  border-radius: 50%;
  background: rgba(22, 168, 212, 0.52);
  transform: rotate(-1.4deg);
}

.hero-copy {
  max-width: 700px;
  margin: 0 auto 36px;
  color: #4c5660;
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #303943;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
}

.signal-strip {
  display: flex;
  width: min(820px, 100%);
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 72px auto 30px;
  color: #56616b;
  font-size: 12px;
  font-weight: 500;
}

.signal-strip i { width: 44px; height: 1px; background: rgba(21, 26, 32, 0.18); }

.product-stage {
  position: relative;
  width: min(1040px, 100%);
  margin: 0 auto;
  padding: 0 24px;
}

.stage-shadow {
  position: absolute;
  z-index: 0;
  width: 48%;
  height: 82%;
  bottom: -24px;
  border: 1px solid rgba(21,26,32,.07);
  border-radius: 30px;
}

.stage-shadow-left { left: 0; background: #f1d7c6; transform: rotate(-4deg); }
.stage-shadow-right { right: 0; background: #d8e6f5; transform: rotate(4deg); }

.app-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  min-height: 570px;
  text-align: left;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(21,26,32,.1);
  border-radius: 24px;
  box-shadow: 0 36px 90px rgba(33, 42, 51, 0.16), 0 4px 14px rgba(33,42,51,.06);
}

.window-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 62px;
  align-items: center;
  padding: 0 20px;
  border-bottom: 1px solid rgba(21,26,32,.08);
}

.window-brand { display: flex; align-items: center; gap: 9px; color: #29313a; font-size: 13px; }
.window-mark { width: 22px; height: 22px; border: 5px solid var(--blue); border-radius: 50%; box-shadow: 8px -7px 0 -5px var(--cyan); }
.window-period { padding: 8px 12px; color: #59636d; background: #f5f4f1; border-radius: 8px; font-size: 11px; }
.window-period span { margin-left: 8px; }
.window-avatar { justify-self: end; display: grid; width: 31px; height: 31px; place-items: center; color: white; background: var(--blue); border-radius: 50%; font-size: 9px; font-weight: 700; }

.window-layout { display: grid; grid-template-columns: 190px 1fr; min-height: 508px; }
.window-sidebar { padding: 27px 16px; background: #f5f4f1; border-right: 1px solid rgba(21,26,32,.07); }
.side-label { display: block; margin: 0 12px 10px; color: #9298a0; font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.side-label-lower { margin-top: 32px; }
.side-item { display: flex; align-items: center; gap: 9px; padding: 9px 11px; color: #5c6570; border-radius: 8px; font-size: 11px; }
.side-item b { display: inline-grid; width: 19px; height: 19px; place-items: center; color: #69737d; font-size: 12px; }
.side-item.active { color: #18212b; background: white; box-shadow: 0 4px 14px rgba(28,35,43,.06); font-weight: 600; }
.side-item.active b { color: var(--blue); }

.window-main { padding: 30px; background: #fbfbfa; }
.brief-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; margin-bottom: 18px; }
.micro-label { display: block; margin-bottom: 6px; color: #8a929a; font-size: 9px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.brief-heading h2 { margin: 0; font-size: 25px; line-height: 1.1; letter-spacing: -.035em; }
.brief-heading p { margin: 4px 0 0; color: #7c858d; font-size: 9px; }
.illustrative-label { padding: 6px 9px; color: #68727c; background: #f0efec; border-radius: 99px; font-size: 9px; }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.metric-card { position: relative; min-height: 100px; padding: 14px; border: 1px solid rgba(21,26,32,.06); border-radius: 14px; }
.metric-card span { display: block; }
.metric-icon { display: grid !important; width: 24px; height: 24px; place-items: center; margin-bottom: 8px; border-radius: 8px; font-size: 11px; font-weight: 700; }
.icon-blue { color: #3f72cb; background: rgba(255,255,255,.66); }.icon-green { color: #2e8768; background: rgba(255,255,255,.66); }.icon-purple { color: #7154bd; background: rgba(255,255,255,.66); }.icon-peach { color: #b46b3b; background: rgba(255,255,255,.66); }
.metric-kicker { position: absolute; top: 16px; right: 12px; left: 46px; color: #5f6971; font-size: 8px; font-weight: 600; line-height: 1.2; }
.metric-card strong { display: block; margin-bottom: 1px; font-size: 23px; letter-spacing: -.04em; }
.metric-note { color: #68727b; font-size: 8px; }
.blue-card { background: #e7efff; }
.mint-card { background: var(--mint); }
.peach-card { background: var(--peach); }
.lavender-card { background: var(--lavender); }

.dashboard-grid { display: grid; grid-template-columns: 1.7fr .72fr; gap: 10px; margin-top: 10px; }
.activity-card, .dashboard-insight { min-height: 224px; padding: 17px; background: white; border: 1px solid rgba(21,26,32,.08); border-radius: 14px; }
.activity-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.activity-heading h3, .dashboard-insight h3 { margin: 0; font-size: 12px; line-height: 1.2; letter-spacing: -.02em; }
.activity-heading p { margin: 2px 0 0; color: #8a929a; font-size: 8px; }
.activity-heading > span { flex: 0 0 auto; color: #7f8993; font-size: 7px; }.activity-heading > span i { display: inline-block; width: 5px; height: 5px; margin-right: 4px; background: var(--blue); border-radius: 50%; }
.activity-chart { position: relative; height: 128px; margin-top: 10px; overflow: hidden; border-bottom: 1px solid rgba(21,26,32,.08); background: repeating-linear-gradient(to bottom, rgba(21,26,32,.055) 0, rgba(21,26,32,.055) 1px, transparent 1px, transparent 42px); }
.chart-axis { position: absolute; z-index: 2; left: 0; color: #9aa2a9; font-size: 7px; }.axis-top { top: 1px; }.axis-middle { top: 43px; }.axis-bottom { top: 85px; }
.activity-area { position: absolute; right: 0; bottom: 0; left: 29px; height: 92%; background: linear-gradient(to top, rgba(78,121,198,.2), rgba(78,121,198,0)); clip-path: polygon(0 88%, 20% 69%, 37% 75%, 54% 53%, 68% 61%, 82% 34%, 100% 11%, 100% 100%, 0 100%); }
.activity-trend { position: absolute; z-index: 2; inset: 0 0 0 29px; background: #527cc7; clip-path: polygon(0 80%, 20% 63%, 37% 69%, 54% 48%, 68% 56%, 82% 30%, 100% 8%, 100% 10%, 82% 33%, 68% 59%, 54% 51%, 37% 72%, 20% 66%, 0 83%); }
.activity-endpoint { position: absolute; z-index: 3; right: 1px; top: 10%; width: 8px; height: 8px; background: white; border: 2px solid #527cc7; border-radius: 50%; }
.chart-dates { display: flex; justify-content: space-between; padding: 5px 0 0 29px; color: #9aa2a9; font-size: 7px; }
.dashboard-insight { display: flex; flex-direction: column; }
.insight-eyebrow { margin-bottom: 8px; color: #5774a4; font-size: 8px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.dashboard-insight > p { margin: 8px 0 11px; color: #69737d; font-size: 8px; line-height: 1.5; }
.insight-stat { display: flex; align-items: center; gap: 8px; padding: 7px 0; border-top: 1px solid rgba(21,26,32,.07); }
.insight-stat > span { display: grid; width: 23px; height: 23px; place-items: center; color: #527cc7; background: #edf2fb; border-radius: 7px; font-size: 9px; }
.insight-stat div { display: flex; flex-direction: column; }.insight-stat strong { font-size: 10px; }.insight-stat small { color: #8b949c; font-size: 7px; }
.insight-link { margin-top: auto; color: var(--blue); font-size: 8px; font-weight: 700; }

.section-heading h2,
.journey-intro h2,
.contact-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(42px, 5vw, 67px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.section-heading > p,
.split-heading > p,
.journey-intro > p,
.contact-copy > p { color: var(--muted); font-size: 18px; line-height: 1.65; }
.eyebrow-soft { margin-bottom: 20px !important; color: #65717b !important; font-size: 11px !important; }

.people-section { overflow: hidden; background: #ffffff; }
.centered-heading { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.centered-heading > p:last-child { max-width: 610px; margin: 0 auto; }

.persona-rail { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.persona-card { position: relative; min-height: 430px; overflow: hidden; padding: 28px; border: 1px solid rgba(21,26,32,.08); border-radius: 24px; box-shadow: var(--shadow-card); }
.persona-card::after { content: ""; position: absolute; width: 190px; height: 190px; top: -92px; right: -74px; border-radius: 50%; background: rgba(255,255,255,.45); }
.persona-owner { background: #f3e3d3; }.persona-ops { background: #dfe9f5; }.persona-finance { background: #e2efe8; }.persona-it { background: #ebe5f5; }
.persona-portrait { display: grid; width: 62px; height: 62px; place-items: center; margin-bottom: 20px; border: 1px solid rgba(21,26,32,.1); border-radius: 19px; background: rgba(255,255,255,.68); box-shadow: 0 8px 22px rgba(30,36,43,.08); }
.persona-portrait span { display: grid; width: 40px; height: 40px; place-items: center; color: white; background: var(--ink); border-radius: 50%; font-family: Georgia, serif; font-size: 18px; font-style: italic; }
.persona-meta { display: flex; flex-direction: column; margin-bottom: 33px; }
.persona-meta strong { font-size: 15px; }.persona-meta span { color: #687078; font-size: 11px; }
.persona-card h3 { margin-bottom: 16px; font-size: 22px; font-weight: 600; line-height: 1.23; letter-spacing: -.035em; }
.persona-card > p { margin-bottom: 25px; color: #555f68; font-size: 13px; line-height: 1.65; }
.persona-tags { position: absolute; right: 28px; bottom: 26px; left: 28px; display: flex; flex-wrap: wrap; gap: 7px; }
.persona-tags span { padding: 6px 9px; color: #52606a; background: rgba(255,255,255,.58); border: 1px solid rgba(21,26,32,.06); border-radius: 99px; font-size: 9px; font-weight: 600; }
.swipe-note { display: none; }

.companies-section { background: #17212c; color: white; }
.company-heading { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 90px; margin-bottom: 58px; }
.company-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -58px !important; color: rgba(255,255,255,.6) !important; }
.company-heading h2 { margin-bottom: 0; color: white; }
.company-heading > p:last-child { margin: 0 0 6px; color: rgba(255,255,255,.57); }
.company-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.company-card { position: relative; overflow: hidden; min-height: 430px; padding: 34px; color: var(--ink); border: 1px solid rgba(255,255,255,.12); border-radius: 25px; }
.company-card::after { content: ""; position: absolute; right: -75px; bottom: -90px; width: 230px; height: 230px; border: 1px solid rgba(21,26,32,.08); border-radius: 50%; box-shadow: 0 0 0 35px rgba(255,255,255,.12), 0 0 0 70px rgba(255,255,255,.07); }
.company-marketing { background: #f3dfcf; }.company-fintech { background: #dce7f5; }.company-services { background: #dcece4; }.company-manufacturing { background: #e7e1f1; }
.company-topline { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; margin-bottom: 38px; }
.company-monogram { display: grid; width: 46px; height: 46px; place-items: center; color: white; background: var(--ink); border-radius: 14px; font-family: var(--font-display); font-size: 12px; font-weight: 700; }
.company-fit { padding: 6px 9px; color: #56616a; background: rgba(255,255,255,.52); border: 1px solid rgba(21,26,32,.06); border-radius: 99px; font-size: 9px; font-weight: 600; }
.company-card h3 { position: relative; z-index: 1; margin-bottom: 11px; font-size: 29px; letter-spacing: -.04em; }
.company-description { position: relative; z-index: 1; max-width: 460px; margin-bottom: 27px; color: #56616a; font-size: 13px; line-height: 1.65; }
.company-facts { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); max-width: 390px; margin: 0 0 28px; border-top: 1px solid rgba(21,26,32,.1); border-bottom: 1px solid rgba(21,26,32,.1); }
.company-facts div { padding: 14px 12px 14px 0; border-left: 1px solid rgba(21,26,32,.1); }.company-facts div:first-child { border-left: 0; }
.company-facts dt { font-family: var(--font-display); font-size: 18px; font-weight: 700; letter-spacing: -.03em; }.company-facts dd { margin: 0; color: #68727b; font-size: 9px; }
.company-question { position: relative; z-index: 1; max-width: 455px; padding: 16px 18px; background: rgba(255,255,255,.54); border: 1px solid rgba(21,26,32,.06); border-radius: 13px; }
.company-question span { display: block; margin-bottom: 5px; color: #717a82; font-size: 8px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.company-question strong { display: block; font-size: 13px; line-height: 1.45; }

.platform-section { background: var(--paper-deep); }
.split-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 90px; margin-bottom: 64px; }
.split-heading h2 { margin-bottom: 0; }
.split-heading > p { margin: 0 0 6px; }
.feature-stack { display: grid; gap: 24px; }
.feature-panel { display: grid; grid-template-columns: .92fr 1.08fr; min-height: 570px; overflow: hidden; border: 1px solid rgba(21,26,32,.08); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }
.feature-copy { position: relative; display: flex; flex-direction: column; justify-content: center; padding: 64px; background: white; }
.feature-number { position: absolute; top: 35px; right: 40px; color: #a2a6aa; font-family: var(--font-display); font-size: 11px; }
.feature-label { margin-bottom: 18px; color: var(--blue); font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.feature-copy h3 { margin-bottom: 22px; font-size: clamp(31px, 3.2vw, 43px); font-weight: 600; line-height: 1.09; letter-spacing: -.045em; }
.feature-copy > p:not(.feature-label) { margin-bottom: 28px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.clean-list { list-style: none; padding: 0; margin: 0; }
.clean-list li { position: relative; padding: 10px 0 10px 25px; color: #404a53; border-top: 1px solid rgba(21,26,32,.08); font-size: 12px; font-weight: 500; }
.clean-list li::before { content: "✓"; position: absolute; left: 2px; color: var(--blue); font-weight: 800; }

.feature-visual { position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 64px; }
.feature-discover .feature-visual { background: #dce8f4; }
.feature-connect .feature-visual { background: #eadff3; }
.feature-measure .feature-visual { background: #dfeee7; }
.catalog-visual { align-self: stretch; display: block; margin: 74px 64px; padding: 26px; background: rgba(255,255,255,.92) !important; border: 1px solid rgba(21,26,32,.08); border-radius: 21px; box-shadow: 0 24px 60px rgba(37,48,62,.15); transform: rotate(1.2deg); }
.visual-topline { display: flex; align-items: center; justify-content: space-between; padding-bottom: 19px; border-bottom: 1px solid rgba(21,26,32,.09); }
.visual-topline strong { font-size: 14px; }.visual-topline span { color: #79818a; font-size: 9px; }
.catalog-row { display: grid; grid-template-columns: 36px 1fr auto; align-items: center; gap: 11px; padding: 14px 0; border-bottom: 1px solid rgba(21,26,32,.07); }
.catalog-row div { display: flex; flex-direction: column; }.catalog-row strong { font-size: 11px; }.catalog-row small { color: #8a9299; font-size: 8px; }
.app-tile { display: grid; width: 34px; height: 34px; place-items: center; color: white; border-radius: 9px; font-family: var(--font-display); font-size: 12px; font-weight: 700; }
.tile-blue { background: #2966c4; }.tile-black { background: #252c32; }.tile-purple { background: #7258b2; }.tile-orange { background: #db885f; }
.catalog-row > b { padding: 5px 8px; color: #267153; background: #e0f1e8; border-radius: 99px; font-size: 8px; }
.catalog-row > b.review { color: #845532; background: #f6e4d7; }.catalog-row > b.new { color: #3e5591; background: #e0e7f7; }.catalog-row > b.pending { color: #6a5e78; background: #eee7f4; }
.visual-foot { display: flex; gap: 8px; padding-top: 17px; }.visual-foot span { padding: 5px 8px; color: #707a83; background: #f2f2f0; border-radius: 6px; font-size: 8px; }

.graph-visual { min-height: 570px; }
.graph-core { position: relative; z-index: 4; display: flex; width: 180px; height: 180px; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(21,26,32,.09); border-radius: 50%; background: rgba(255,255,255,.95); box-shadow: 0 24px 60px rgba(45,34,58,.15); }
.graph-core::before { content: ""; position: absolute; inset: -28px; z-index: -1; border: 1px solid rgba(21,26,32,.08); border-radius: 50%; }
.graph-core span { color: #8d8298; font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.graph-core strong { font-size: 23px; letter-spacing: -.04em; }.graph-core small { color: #7a7183; font-size: 10px; }
.graph-chip { position: absolute; z-index: 3; padding: 11px 14px; border: 1px solid rgba(21,26,32,.08); border-radius: 11px; background: rgba(255,255,255,.88); box-shadow: 0 10px 25px rgba(45,34,58,.1); font-family: var(--font-display); font-size: 10px; font-weight: 600; }
.chip-person { left: 12%; top: 18%; }.chip-tool { right: 11%; top: 20%; }.chip-cost { left: 11%; bottom: 19%; }.chip-outcome { right: 8%; bottom: 21%; }.chip-evidence { right: 13%; top: 48%; }
.graph-line { position: absolute; z-index: 1; width: 190px; height: 1px; background: rgba(56,47,67,.22); transform-origin: left center; }
.line-a { left: 26%; top: 33%; transform: rotate(27deg); }.line-b { left: 51%; top: 47%; transform: rotate(-30deg); }.line-c { left: 25%; top: 66%; transform: rotate(-27deg); }.line-d { left: 51%; top: 57%; transform: rotate(27deg); }

.measure-visual { align-self: stretch; display: flex; min-height: 470px; flex-direction: column; justify-content: center; margin: 38px 28px; padding: 24px; background: radial-gradient(circle at 72% 46%, rgba(255,255,255,.72), rgba(255,255,255,.15) 58%, transparent 72%) !important; }
.visual-kicker { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; color: #6c7c74; font-size: 8px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }.visual-kicker b { padding: 6px 8px; color: #2f654f; background: rgba(255,255,255,.72); border-radius: 99px; font-size: 7px; letter-spacing: 0; text-transform: none; }
.roi-visual-flow { display: grid; grid-template-columns: 1.25fr 24px .78fr 24px .92fr; align-items: center; gap: 5px; }
.kpi-cluster > small { display: block; margin-bottom: 12px; color: #6d7e76; font-size: 8px; font-weight: 700; letter-spacing: .08em; text-align: center; text-transform: uppercase; }
.kpi-cluster > div { display: grid; grid-template-columns: 1fr 1fr; justify-items: center; gap: 8px; }
.kpi-bubble { display: flex; width: 78px; height: 78px; flex-direction: column; align-items: center; justify-content: center; background: rgba(255,255,255,.78); border: 1px solid rgba(21,26,32,.07); border-radius: 50%; box-shadow: 0 12px 25px rgba(42,69,57,.08); }
.kpi-bubble i { color: #4a846c; font-size: 10px; font-style: normal; }.kpi-bubble strong { color: #294f3f; font-size: 15px; letter-spacing: -.04em; }.kpi-bubble em { color: #7a8a82; font-size: 7px; font-style: normal; }
.kpi-capacity { grid-column: 1 / -1; margin-top: -9px; background: #e9f0ff; }.kpi-capacity i, .kpi-capacity strong { color: #456ba8; }
.kpi-quality { background: #f3edf9; }.kpi-quality i, .kpi-quality strong { color: #785b93; }
.flow-symbol { color: #79978a; font-size: 22px; text-align: center; }
.value-stack { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.productivity-node { display: flex; width: 108px; height: 108px; flex-direction: column; align-items: center; justify-content: center; color: white; background: #416da9; border: 8px solid rgba(255,255,255,.72); border-radius: 50%; box-shadow: 0 18px 35px rgba(54,83,124,.18); }
.productivity-node small, .productivity-node em { color: rgba(255,255,255,.66); font-size: 7px; font-style: normal; }.productivity-node strong { font-size: 22px; letter-spacing: -.05em; }
.cost-node { display: flex; align-items: center; gap: 6px; padding: 8px 11px; color: #7d583f; background: #f8e8dc; border-radius: 99px; }.cost-node > span { font-size: 14px; }.cost-node div { display: flex; flex-direction: column; }.cost-node small { font-size: 6px; }.cost-node strong { font-size: 11px; }
.roi-node { position: relative; display: flex; width: 136px; height: 136px; flex-direction: column; align-items: center; justify-content: center; color: white; background: #315f4c; border-radius: 50%; box-shadow: 0 22px 45px rgba(39,83,64,.2); }
.roi-node::before { content: ""; position: absolute; inset: -10px; border: 1px solid rgba(49,95,76,.26); border-radius: 50%; }.roi-node::after { content: ""; position: absolute; inset: -19px; border: 1px solid rgba(49,95,76,.12); border-radius: 50%; }
.roi-node small { color: rgba(255,255,255,.62); font-size: 8px; text-transform: uppercase; }.roi-node strong { font-size: 30px; line-height: 1; letter-spacing: -.06em; }.roi-node > span { color: #cfeadd; font-size: 10px; font-weight: 700; letter-spacing: .1em; }.roi-node em { position: absolute; right: -8px; bottom: -11px; padding: 7px 9px; color: #24543f; background: #d8ecdf; border: 3px solid #eef6f2; border-radius: 99px; font-size: 7px; font-style: normal; font-weight: 700; white-space: nowrap; }

.journey-section { color: white; background: #18202a; }
.journey-section .shell { display: grid; grid-template-columns: .82fr 1.18fr; gap: 100px; }
.eyebrow-light { color: rgba(255,255,255,.65); }.journey-intro h2 { color: white; }.journey-intro > p { max-width: 390px; color: rgba(255,255,255,.57); }
.journey-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid rgba(255,255,255,.15); }
.journey-list li { display: grid; grid-template-columns: 52px 1fr 34px; gap: 18px; align-items: start; padding: 27px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.journey-number { display: grid; width: 37px; height: 37px; place-items: center; color: #d6e8f8; background: rgba(255,255,255,.09); border-radius: 50%; font-family: var(--font-display); font-size: 10px; }
.journey-list h3 { margin-bottom: 5px; font-size: 22px; }.journey-list p { max-width: 460px; margin: 0; color: rgba(255,255,255,.54); font-size: 13px; line-height: 1.65; }
.journey-arrow, .journey-check { color: rgba(255,255,255,.42); font-size: 22px; }.journey-check { display: grid; width: 30px; height: 30px; place-items: center; color: #18202a; background: #cce8dd; border-radius: 50%; font-size: 13px; }

.principles-section { background: #fff; }
.principle-quote { max-width: 900px; margin: 0 auto 84px; text-align: center; }
.quote-mark { display: block; height: 50px; color: var(--cyan); font-family: Georgia, serif; font-size: 80px; line-height: 1; }
.principle-quote blockquote { margin: 0 auto 24px; font-family: var(--font-display); font-size: clamp(36px, 5vw, 60px); font-weight: 600; line-height: 1.08; letter-spacing: -.052em; }
.principle-quote p { max-width: 660px; margin: 0 auto; color: var(--muted); font-size: 17px; }
.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.principle-grid article { padding: 46px 38px 52px; border-left: 1px solid var(--line); }.principle-grid article:first-child { border-left: 0; }
.principle-icon { display: grid; width: 42px; height: 42px; place-items: center; margin-bottom: 28px; color: var(--blue); background: #e9f1f6; border-radius: 12px; font-size: 18px; }
.principle-grid h3 { margin-bottom: 13px; font-size: 19px; letter-spacing: -.025em; }.principle-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.research-link { display: flex; align-items: center; justify-content: space-between; gap: 40px; margin-top: 64px; padding: 46px 50px; color: white; background: linear-gradient(120deg, #183c84, #135e86); border-radius: 25px; box-shadow: 0 20px 45px rgba(23,58,132,.18); }
.research-kicker { display: block; margin-bottom: 8px; color: rgba(255,255,255,.62); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.research-link h3 { margin-bottom: 7px; font-size: 25px; letter-spacing: -.035em; }.research-link p { margin: 0; color: rgba(255,255,255,.65); font-size: 13px; }

.contact-section { background: #f4e7dd; }
.contact-shell { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 100px; }
.contact-copy > p { max-width: 500px; }
.contact-proof { display: grid; gap: 10px; margin-top: 35px; }
.contact-proof span { color: #4f5962; font-size: 13px; }.contact-proof b { display: inline-block; width: 34px; color: var(--blue); font-size: 10px; }
.form-card { padding: 38px; background: rgba(255,255,255,.84); border: 1px solid rgba(21,26,32,.08); border-radius: 26px; box-shadow: var(--shadow-soft); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 17px; }
.field label { display: block; margin-bottom: 7px; color: #4b555e; font-size: 11px; font-weight: 600; }
.field input, .field select { width: 100%; height: 50px; padding: 0 14px; color: var(--ink); background: white; border: 1px solid rgba(21,26,32,.14); border-radius: 10px; outline: none; font-size: 13px; transition: border-color 150ms ease, box-shadow 150ms ease; }
.field input::placeholder { color: #a3a8ad; }
.field input:focus, .field select:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(22,168,212,.12); }
.submit-button { width: 100%; margin-top: 4px; }
.submit-button:disabled { cursor: wait; opacity: .68; transform: none; }
.honeypot { position: absolute !important; left: -9999px !important; }
.form-alternative { margin: 14px 0 0; color: #7a8289; text-align: center; font-size: 11px; }.form-alternative a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.form-status { min-height: 18px; margin: 10px 0 0; color: #43505a; text-align: center; font-size: 12px; }

.site-footer { padding: 70px 0 24px; background: #f5f3ee; border-top: 1px solid var(--line); }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; padding-bottom: 54px; }
.brand-footer { width: 175px; margin-bottom: 12px; }.footer-brand p { margin: 0; color: #727a81; font-size: 12px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 29px; padding-top: 5px; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; color: #8a9095; border-top: 1px solid var(--line); font-size: 10px; }

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  display: flex;
  width: min(570px, calc(100% - 40px));
  align-items: center;
  gap: 22px;
  padding: 17px 18px 17px 21px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(21,26,32,.12);
  border-radius: 15px;
  box-shadow: 0 18px 45px rgba(23,29,35,.15);
  backdrop-filter: blur(16px);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { flex: 1; margin: 0; color: #616970; font-size: 10px; line-height: 1.5; }.cookie-banner p strong { display: block; color: #29323a; font-size: 11px; }
.cookie-banner > div { display: flex; gap: 7px; }
.cookie-banner button { padding: 7px 10px; border: 0; border-radius: 7px; cursor: pointer; font-size: 10px; font-weight: 600; }
.cookie-secondary { color: #555e66; background: #f0efec; }.cookie-primary { color: white; background: var(--ink); }

@media (max-width: 1050px) {
  .nav-wrap { grid-template-columns: 190px 1fr 190px; }
  .desktop-nav { gap: 20px; }
  .persona-rail { grid-template-columns: repeat(2, 1fr); }
  .company-heading { gap: 55px; }
  .feature-copy { padding: 48px; }
  .feature-visual { padding: 40px; }
  .catalog-visual, .measure-visual { margin: 70px 40px; }
  .measure-visual { margin: 38px 20px; }
  .journey-section .shell { gap: 60px; }
  .contact-shell { gap: 60px; }
}

@media (max-width: 820px) {
  .shell { width: min(100% - 32px, 700px); }
  .section { padding: 88px 0; }
  .site-header { background: rgba(251,250,247,.94); }
  .nav-wrap { min-height: 68px; grid-template-columns: 1fr auto; }
  .brand { width: 157px; }
  .desktop-nav, .desktop-cta { display: none; }
  .menu-button { display: flex; width: 42px; height: 42px; flex-direction: column; align-items: center; justify-content: center; gap: 6px; padding: 0; background: transparent; border: 1px solid rgba(21,26,32,.12); border-radius: 11px; cursor: pointer; }
  .menu-button > span:not(.sr-only) { width: 18px; height: 1.5px; background: var(--ink); transition: transform 180ms ease; }
  .menu-button[aria-expanded="true"] > span:nth-child(2) { transform: translateY(3.75px) rotate(45deg); }
  .menu-button[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-3.75px) rotate(-45deg); }
  .mobile-nav { position: fixed; inset: 68px 0 auto; display: grid; gap: 3px; padding: 18px 16px 24px; background: rgba(251,250,247,.98); border-bottom: 1px solid var(--line); box-shadow: 0 16px 30px rgba(21,26,32,.08); }
  .mobile-nav[hidden] { display: none; }.mobile-nav > a:not(.button) { padding: 13px 4px; color: #414b53; border-bottom: 1px solid rgba(21,26,32,.08); font-size: 14px; font-weight: 500; }
  .mobile-nav .button { margin-top: 10px; }

  .hero { padding: 132px 0 70px; }
  .hero h1 { font-size: clamp(49px, 11.5vw, 72px); }
  .hero-copy { max-width: 600px; font-size: 18px; }
  .signal-strip { gap: 10px; margin-top: 54px; font-size: 10px; }.signal-strip i { width: 18px; }
  .product-stage { padding: 0; }
  .window-layout { grid-template-columns: 1fr; }.window-sidebar { display: none; }.app-window { min-height: 560px; }.window-main { padding: 25px; }
  .section-heading h2, .journey-intro h2, .contact-copy h2 { font-size: 48px; }
  .company-heading { grid-template-columns: 1fr; gap: 22px; }
  .company-heading .eyebrow { grid-column: auto; margin-bottom: -8px !important; }
  .company-heading > p:last-child { max-width: 620px; }
  .split-heading { grid-template-columns: 1fr; gap: 24px; }
  .split-heading > p { max-width: 620px; }
  .feature-panel { grid-template-columns: 1fr; }
  .feature-copy { padding: 54px; }.feature-visual { min-height: 500px; }.feature-number { top: 28px; }
  .feature-discover .feature-visual { grid-row: 2; }.catalog-visual, .measure-visual { margin: 64px; }.measure-visual { margin: 36px 20px; padding: 18px; }
  .journey-section .shell { grid-template-columns: 1fr; gap: 45px; }
  .journey-intro > p { max-width: 600px; }
  .principle-grid { grid-template-columns: 1fr; }.principle-grid article { border-left: 0; border-top: 1px solid var(--line); }.principle-grid article:first-child { border-top: 0; }
  .research-link { align-items: flex-start; flex-direction: column; }
  .contact-shell { grid-template-columns: 1fr; gap: 46px; }
}

@media (max-width: 620px) {
  .shell { width: min(100% - 24px, 560px); }
  .section { padding: 72px 0; }
  .hero { padding-top: 118px; }
  .hero h1 { font-size: clamp(43px, 13vw, 62px); line-height: 1.01; }
  .hero h1 br { display: none; }
  .hero-copy { font-size: 16px; }
  .hero-actions { flex-direction: column; gap: 18px; }.hero-actions .button { width: 100%; }
  .signal-strip { display: grid; grid-template-columns: 1fr 1fr; margin-top: 48px; padding: 14px; background: rgba(255,255,255,.46); border: 1px solid rgba(21,26,32,.07); border-radius: 12px; }.signal-strip i { display: none; }
  .product-stage { margin-top: 18px; }.stage-shadow { display: none; }
  .app-window { min-height: 610px; border-radius: 17px; }.window-bar { grid-template-columns: 1fr auto; min-height: 52px; padding: 0 13px; }.window-period { display: none; }.window-main { padding: 18px; }
  .brief-heading { align-items: flex-start; }.brief-heading h2 { font-size: 20px; }.brief-heading p, .illustrative-label { display: none; }
  .metric-grid { grid-template-columns: 1fr 1fr; gap: 8px; }.metric-card { min-height: 94px; padding: 12px; }.metric-card strong { font-size: 21px; }.metric-kicker { top: 14px; right: 9px; left: 43px; }
  .dashboard-grid { grid-template-columns: 1fr; margin-top: 8px; }.dashboard-insight { display: none; }.activity-card { min-height: 220px; padding: 14px; }.activity-heading p { max-width: 180px; }.chart-dates { padding-left: 26px; }
  .section-heading h2, .journey-intro h2, .contact-copy h2 { font-size: 39px; line-height: 1.08; }.section-heading > p, .split-heading > p, .journey-intro > p, .contact-copy > p { font-size: 15px; }
  .centered-heading { margin-bottom: 42px; }
  .persona-rail { width: calc(100vw - 12px); margin-left: 0; grid-template-columns: repeat(4, minmax(280px, 82vw)); gap: 12px; overflow-x: auto; padding: 0 20px 20px 0; scroll-snap-type: x mandatory; scrollbar-width: none; }.persona-rail::-webkit-scrollbar { display: none; }.persona-card { min-height: 400px; scroll-snap-align: start; }.swipe-note { display: block; margin: 8px 0 0; color: #7a8289; font-size: 10px; }
  .company-heading { margin-bottom: 38px; }.company-grid { grid-template-columns: 1fr; gap: 12px; }.company-card { min-height: 0; padding: 27px 23px; border-radius: 21px; }.company-topline { margin-bottom: 28px; }.company-card h3 { font-size: 25px; }.company-description { margin-bottom: 22px; }.company-facts { max-width: none; }.company-question { max-width: none; }
  .split-heading { margin-bottom: 40px; }
  .feature-panel { min-height: auto; border-radius: 23px; }.feature-copy { padding: 47px 26px 38px; }.feature-copy h3 { font-size: 31px; }.feature-number { top: 22px; right: 25px; }.feature-visual { min-height: 380px; padding: 24px; }.catalog-visual { margin: 40px 22px; padding: 20px; }.measure-visual { min-height: 500px; margin: 22px 8px; padding: 18px 12px; }.graph-visual { min-height: 420px; }.graph-core { width: 145px; height: 145px; }.graph-core::before { inset: -18px; }.graph-core strong { font-size: 19px; }.graph-chip { padding: 8px 10px; font-size: 8px; }.chip-person { left: 5%; }.chip-tool { right: 4%; }.chip-cost { left: 4%; }.chip-outcome { right: 2%; }.chip-evidence { right: 3%; top: 48%; }.graph-line { width: 130px; }
  .visual-kicker { margin-bottom: 17px; }.roi-visual-flow { grid-template-columns: 1fr; gap: 7px; }.kpi-cluster > small { margin-bottom: 8px; }.kpi-cluster > div { grid-template-columns: repeat(3,1fr); gap: 4px; }.kpi-bubble { width: 72px; height: 72px; }.kpi-capacity { grid-column: auto; margin-top: 0; }.flow-arrow { height: 18px; line-height: 18px; transform: rotate(90deg); }.flow-equals { height: 18px; line-height: 18px; }.value-stack { flex-direction: row; justify-content: center; gap: 8px; }.productivity-node { width: 96px; height: 96px; }.roi-node { width: 118px; height: 118px; }.roi-node strong { font-size: 27px; }
  .journey-list li { grid-template-columns: 44px 1fr 25px; gap: 12px; }.journey-list h3 { font-size: 19px; }
  .principle-quote { margin-bottom: 55px; }.principle-grid article { padding: 36px 12px 38px; }.research-link { padding: 34px 27px; border-radius: 20px; }.research-link .button { width: 100%; }
  .contact-proof { margin-top: 27px; }.form-card { padding: 25px 18px; border-radius: 21px; }.field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-top { flex-direction: column; }.footer-links { display: grid; grid-template-columns: 1fr 1fr; width: 100%; gap: 16px 28px; }.footer-bottom { align-items: flex-start; flex-direction: column; gap: 7px; }
  .cookie-banner { right: 12px; bottom: 12px; width: calc(100% - 24px); align-items: stretch; flex-direction: column; gap: 12px; }.cookie-banner > div { justify-content: flex-end; }
}

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