@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&family=Instrument+Sans:wght@400;500;600;700&display=swap');

:root {
  --navy: #002f5d;
  --navy-2: #073e70;
  --cyan: #18b6d9;
  --cyan-deep: #0b92b1;
  --mesh: #cdd5e0;
  --ink: #0f2437;
  --muted: #5b6b79;
  --line: #dfe5ec;
  --soft: #f5f8fb;
  --soft-cyan: #eefafd;
  --white: #fff;
  --success: #0f9f74;
  --warn: #b87800;
  --danger: #be3e4a;
  --shadow: 0 18px 50px rgba(0, 47, 93, .10);
  --shadow-sm: 0 8px 24px rgba(0, 47, 93, .08);
  --radius: 22px;
  --radius-sm: 14px;
  --content: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  font-size: 15px;
  text-rendering: optimizeLegibility;
}
body.no-scroll { overflow: hidden; }
img, svg { max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: rgba(24,182,217,.22); }

.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 9999;
  transform: translateY(-150%); background: var(--navy); color: white;
  padding: 10px 14px; border-radius: 8px; text-decoration: none;
}
.skip-link:focus { transform: none; }

.container { width: min(calc(100% - 40px), var(--content)); margin-inline: auto; }
.container.narrow { width: min(calc(100% - 40px), 850px); }
.section { padding: 82px 0; position: relative; }
.section.compact { padding: 56px 0; }
.section.soft { background: var(--soft); }
.section.cyan-soft { background: var(--soft-cyan); }
.section.navy { background: var(--navy); color: white; }
.section.border-top { border-top: 1px solid var(--line); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--cyan-deep); font: 600 12px/1.1 "IBM Plex Mono", monospace;
  letter-spacing: .13em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--cyan); }
.eyebrow.white { color: #8be4f7; }
.eyebrow.white::before { background: #8be4f7; }
.kicker { font: 500 13px/1.4 "IBM Plex Mono", monospace; letter-spacing: .02em; color: var(--muted); }

h1, h2, h3, h4 { color: var(--navy); margin: 0; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(42px, 5.2vw, 68px); max-width: 930px; }
h2 { font-size: clamp(32px, 3.8vw, 49px); }
h3 { font-size: 22px; }
h4 { font-size: 18px; }
.section.navy h1, .section.navy h2, .section.navy h3, .section.navy h4 { color: white; }
p { margin: 0; }
.lead { font-size: clamp(18px, 1.8vw, 23px); color: #334b60; line-height: 1.42; max-width: 770px; }
.section.navy .lead { color: rgba(255,255,255,.78); }
.body-lg { font-size: 19px; color: var(--muted); }
.muted { color: var(--muted); }
.mono { font-family: "IBM Plex Mono", monospace; }
.cyan { color: var(--cyan-deep); }

.section-head { max-width: 820px; margin-bottom: 38px; }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head .eyebrow { margin-bottom: 20px; }
.section-head h2 { margin-bottom: 20px; }
.section-head p { font-size: 17px; color: var(--muted); max-width: 760px; }
.section-head.center p { margin-inline: auto; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.92); backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(205,213,224,.75);
}
.nav-shell { height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; flex: 0 0 auto; }
.brand img { width: 148px; height: auto; display: block; }
.site-nav { display: flex; align-items: center; gap: 22px; }
.site-nav > a:not(.button) { text-decoration: none; color: #31485c; font-weight: 600; font-size: 15px; position: relative; }
.site-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 0; bottom: -9px; height: 2px; background: var(--cyan); transform: scaleX(0); transition: transform .2s ease; }
.site-nav > a:hover::after, .site-nav > a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav > a[aria-current="page"] { color: var(--navy); }
.menu-toggle { display: none; border: 1px solid var(--line); background: white; border-radius: 10px; padding: 10px 12px; color: var(--navy); }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 48px; padding: 13px 20px; border-radius: 10px;
  text-decoration: none; border: 1px solid transparent; font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--navy); color: white; box-shadow: 0 8px 18px rgba(0,47,93,.17); }
.button.primary:hover { background: var(--navy-2); box-shadow: 0 12px 24px rgba(0,47,93,.22); }
.button.cyan-button { background: var(--cyan); color: var(--navy); }
.button.cyan-button:hover { background: #43c5e1; }
.button.secondary { color: var(--navy); border-color: var(--mesh); background: white; }
.button.secondary:hover { border-color: var(--navy); }
.button.light { background: white; color: var(--navy); }
.button.ghost-light { color: white; border-color: rgba(255,255,255,.34); }
.button.small { min-height: 40px; padding: 9px 15px; font-size: 14px; }
.button .arrow { transition: transform .2s ease; }
.button:hover .arrow { transform: translateX(3px); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* Hero */
.hero { padding: 68px 0 62px; overflow: hidden; position: relative; }
.hero::before {
  content: ""; position: absolute; width: 650px; height: 650px; right: -300px; top: -170px;
  border: 1px solid rgba(205,213,224,.8); border-radius: 50%; pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; width: 430px; height: 430px; right: -130px; top: -60px;
  border: 1px solid rgba(24,182,217,.2); border-radius: 50%; pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(430px, .98fr); gap: 50px; align-items: center; position: relative; z-index: 1; }
.hero-copy .eyebrow { margin-bottom: 22px; }
.hero-copy h1 { margin-bottom: 24px; }
.hero-copy .lead { margin-bottom: 30px; }
.hero-copy .button-row { margin-bottom: 28px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 20px; color: var(--muted); font-size: 14px; }
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof i { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 5px rgba(24,182,217,.1); }
.hero-emphasis { color: var(--cyan-deep); position: relative; white-space: normal; }
.hero-emphasis::after { content: ""; position: absolute; height: 8px; left: 0; right: 0; bottom: 4px; background: rgba(24,182,217,.18); z-index: -1; }

.product-stage {
  background: white; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow);
  padding: 18px; position: relative;
}
.product-stage::before { content: ""; position: absolute; inset: -10px 28px auto; height: 12px; background: var(--navy); border-radius: 12px 12px 0 0; opacity: .95; }
.stage-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 4px 4px 16px; border-bottom: 1px solid var(--line); }
.stage-top strong { color: var(--navy); }
.status { font: 600 11px/1 "IBM Plex Mono", monospace; text-transform: uppercase; letter-spacing: .06em; padding: 7px 9px; border-radius: 999px; background: #e9faf4; color: var(--success); }
.status.cyan-status { background: var(--soft-cyan); color: var(--cyan-deep); }
.stage-meta { font: 500 11px/1.3 "IBM Plex Mono", monospace; color: var(--muted); }
.stage-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 12px; padding-top: 14px; }
.ui-card { border: 1px solid var(--line); background: #fbfdff; border-radius: 14px; padding: 14px; }
.ui-card.full { grid-column: 1 / -1; }
.ui-label { color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font: 600 10px/1.2 "IBM Plex Mono", monospace; margin-bottom: 9px; display: block; }
.score-ring { display: flex; align-items: center; gap: 12px; }
.score-ring b { width: 54px; height: 54px; border: 5px solid var(--cyan); border-radius: 50%; display: grid; place-items: center; color: var(--navy); font-size: 20px; }
.score-ring span { font-size: 13px; color: var(--muted); }
.signal-text { font-size: 14px; color: #2d4458; line-height: 1.45; }
.alert-chip { display: inline-flex; align-items: center; gap: 7px; padding: 7px 9px; background: #fff8e6; color: #8c5a00; border: 1px solid #efdba3; border-radius: 8px; font-size: 12px; }
.task-list { display: grid; gap: 8px; }
.task { display: grid; grid-template-columns: 20px 1fr auto; gap: 8px; align-items: start; font-size: 12px; }
.task .check { width: 18px; height: 18px; border: 2px solid var(--cyan); border-radius: 50%; }
.task small { color: var(--muted); font-family: "IBM Plex Mono", monospace; }
.propagation-mini { display: flex; align-items: center; justify-content: space-between; gap: 6px; }
.propagation-mini span { font: 600 9px/1.2 "IBM Plex Mono", monospace; color: var(--muted); text-transform: uppercase; text-align: center; }
.propagation-mini i { width: 22px; height: 1px; background: var(--mesh); position: relative; }
.propagation-mini i::after { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); position: absolute; right: -2px; top: -2px; animation: pulse 2s infinite; }
.illustrative { position: absolute; top: -13px; right: 22px; z-index: 2; background: var(--soft-cyan); border: 1px solid #bbeaf4; color: var(--cyan-deep); border-radius: 999px; padding: 6px 10px; font: 600 10px/1 "IBM Plex Mono", monospace; letter-spacing: .06em; text-transform: uppercase; }

.trust-bar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fbfdff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 23px 28px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: var(--navy); font-size: 15px; margin-bottom: 4px; }
.trust-item span { color: var(--muted); font-size: 13px; }

/* Cards and grids */
.grid { display: grid; gap: 22px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card { border: 1px solid var(--line); background: white; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.card.flat { box-shadow: none; }
.card.cyan-edge { border-top: 4px solid var(--cyan); }
.card.navy-edge { border-top: 4px solid var(--navy); }
.card h3 { margin-bottom: 13px; }
.card p { color: var(--muted); }
.card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 26px; }
.card-number { color: var(--mesh); font: 600 27px/1 "IBM Plex Mono", monospace; }
.tag { display: inline-flex; align-items: center; justify-content: center; min-height: 28px; padding: 6px 10px; border-radius: 999px; font: 600 10px/1 "IBM Plex Mono", monospace; text-transform: uppercase; letter-spacing: .08em; background: #e9faf4; color: var(--success); }
.tag.roadmap { background: var(--soft-cyan); color: var(--cyan-deep); }
.tag.neutral { background: var(--soft); color: var(--muted); }
.icon-box { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; background: var(--soft-cyan); color: var(--navy); margin-bottom: 20px; }
.icon-box svg { width: 23px; height: 23px; }

/* Propagation */
.propagation { position: relative; margin-top: 34px; padding: 28px 0 10px; }
.flow-line { position: absolute; left: 7%; right: 7%; top: 73px; height: 2px; background: var(--mesh); z-index: 0; overflow: hidden; }
.flow-line::after { content: ""; position: absolute; width: 120px; height: 100%; background: linear-gradient(90deg, transparent, var(--cyan), transparent); animation: flow 4s linear infinite; }
.flow-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; position: relative; z-index: 1; }
.flow-step { text-align: center; }
.flow-node { width: 56px; height: 56px; margin: 0 auto 18px; display: grid; place-items: center; border-radius: 50%; background: white; border: 8px solid var(--navy); box-shadow: 0 0 0 8px white; color: var(--navy); font: 700 14px/1 "IBM Plex Mono", monospace; }
.flow-step:nth-child(n+2):nth-child(-n+5) .flow-node { border-width: 5px; border-color: var(--mesh); }
.flow-step:last-child .flow-node { border-color: var(--cyan); background: var(--soft-cyan); }
.flow-step strong { display: block; color: var(--navy); font-size: 15px; line-height: 1.25; margin-bottom: 7px; }
.flow-step span { color: var(--muted); font-size: 13px; line-height: 1.4; display: block; }
.flow-legend { display: flex; justify-content: center; flex-wrap: wrap; gap: 25px; margin-top: 32px; color: var(--muted); font: 500 12px/1.4 "IBM Plex Mono", monospace; }
.legend-dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; margin-right: 7px; }
.legend-dot.input { background: var(--navy); }.legend-dot.processing { background: var(--mesh); }.legend-dot.output { background: var(--cyan); }

/* Split layouts */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; }
.split.wide-left { grid-template-columns: 1.15fr .85fr; }
.split.wide-right { grid-template-columns: .85fr 1.15fr; }
.stack { display: grid; gap: 20px; }
.rule-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.rule { display: grid; grid-template-columns: 50px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.rule b { font: 600 14px/1.3 "IBM Plex Mono", monospace; color: var(--cyan-deep); }
.rule strong { display: block; color: var(--navy); margin-bottom: 5px; }
.rule p { color: var(--muted); }
.quote-card { background: var(--navy); color: white; border-radius: 28px; padding: 42px; position: relative; overflow: hidden; }
.quote-card::after { content: "“"; position: absolute; right: 18px; top: -35px; color: rgba(24,182,217,.18); font-size: 180px; font-family: Georgia, serif; }
.quote-card blockquote { margin: 0 0 24px; font-size: clamp(25px, 3vw, 38px); line-height: 1.24; letter-spacing: -.025em; position: relative; z-index: 1; }
.quote-card cite { color: rgba(255,255,255,.65); font-style: normal; font: 500 12px/1.5 "IBM Plex Mono", monospace; position: relative; z-index: 1; }

/* Dashboard visual */
.dashboard { border: 1px solid var(--line); border-radius: 22px; background: white; box-shadow: var(--shadow); overflow: hidden; }
.dashboard-head { background: var(--navy); color: white; display: flex; justify-content: space-between; align-items: center; padding: 18px 20px; }
.dashboard-head strong { letter-spacing: -.01em; }
.dashboard-body { padding: 18px; display: grid; gap: 14px; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.metric { border: 1px solid var(--line); border-radius: 12px; padding: 14px; background: #fbfdff; }
.metric span { display: block; color: var(--muted); font: 600 9px/1.3 "IBM Plex Mono", monospace; text-transform: uppercase; letter-spacing: .06em; }
.metric b { display: block; color: var(--navy); font-size: 25px; margin: 5px 0; }
.metric small { color: var(--success); }
.chart-area { border: 1px solid var(--line); border-radius: 12px; padding: 15px; min-height: 170px; position: relative; }
.chart-bars { height: 110px; display: flex; align-items: end; gap: 11px; padding-top: 12px; border-bottom: 1px solid var(--line); }
.chart-bars i { flex: 1; background: var(--mesh); border-radius: 5px 5px 0 0; min-height: 12px; position: relative; }
.chart-bars i.output { background: var(--cyan); }
.chart-labels { display: flex; justify-content: space-between; padding-top: 8px; font: 500 9px/1 "IBM Plex Mono", monospace; color: var(--muted); }
.alert-list { display: grid; gap: 9px; }
.alert-row { display: grid; grid-template-columns: 10px 1fr auto; gap: 10px; align-items: center; border: 1px solid var(--line); border-radius: 10px; padding: 11px; font-size: 12px; }
.alert-row .signal { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); }
.alert-row .signal.warn { background: #d69b2b; }
.alert-row .signal.danger { background: var(--danger); }
.alert-row small { color: var(--muted); font-family: "IBM Plex Mono", monospace; }

/* Integration cloud */
.integration-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.integration-group { border: 1px solid var(--line); border-radius: 18px; padding: 23px; background: white; }
.integration-group h3 { font-size: 18px; margin-bottom: 15px; }
.integration-group ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; color: var(--muted); }
.integration-group li { padding-left: 17px; position: relative; }
.integration-group li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); position: absolute; left: 0; top: .6em; }

/* CTA */
.cta { border-radius: 26px; padding: 44px; background: var(--navy); color: white; display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; position: relative; overflow: hidden; }
.cta::after { content: ""; position: absolute; width: 330px; height: 330px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; right: -130px; top: -100px; }
.cta h2 { color: white; margin-bottom: 13px; font-size: clamp(32px,4vw,50px); }
.cta p { color: rgba(255,255,255,.72); font-size: 18px; max-width: 650px; }
.cta > * { position: relative; z-index: 1; }

/* Page hero */
.page-hero { padding: 66px 0 60px; background: linear-gradient(180deg, white 0%, #f8fbfd 100%); border-bottom: 1px solid var(--line); }
.page-hero .eyebrow { margin-bottom: 22px; }
.page-hero h1 { max-width: 970px; margin-bottom: 24px; }
.page-hero .lead { margin-bottom: 30px; }
.page-hero-grid { display: grid; grid-template-columns: 1fr .72fr; gap: 44px; align-items: end; }
.page-summary { padding: 25px; border-left: 4px solid var(--cyan); background: white; border-radius: 0 16px 16px 0; box-shadow: var(--shadow-sm); color: var(--muted); font-size: 17px; }

/* Feature tour */
.feature-row { display: grid; grid-template-columns: .82fr 1.18fr; gap: 52px; align-items: center; padding: 58px 0; border-bottom: 1px solid var(--line); }
.feature-row:nth-child(even) { grid-template-columns: 1.18fr .82fr; }
.feature-row:nth-child(even) .feature-copy { order: 2; }
.feature-copy .eyebrow { margin-bottom: 18px; }
.feature-copy h2 { margin-bottom: 18px; font-size: clamp(30px, 3.2vw, 43px); }
.feature-copy p { color: var(--muted); font-size: 16.5px; margin-bottom: 24px; }
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.check-list li { position: relative; padding-left: 28px; color: #324b60; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .4em; width: 14px; height: 14px; border: 2px solid var(--cyan); border-radius: 50%; }
.check-list li::after { content: ""; position: absolute; left: 5px; top: .57em; width: 4px; height: 7px; border-right: 2px solid var(--navy); border-bottom: 2px solid var(--navy); transform: rotate(45deg); }
.mock-window { border: 1px solid var(--line); background: white; border-radius: 20px; box-shadow: var(--shadow); padding: 16px; }
.mock-toolbar { display: flex; justify-content: space-between; align-items: center; padding: 3px 2px 14px; border-bottom: 1px solid var(--line); }
.mock-toolbar .dots { display: flex; gap: 6px; }.mock-toolbar .dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--mesh); }
.mock-toolbar span { color: var(--muted); font: 500 10px/1 "IBM Plex Mono", monospace; }
.mock-content { padding-top: 14px; }

/* Compare */
.question-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; counter-reset: questions; }
.question { border: 1px solid var(--line); border-radius: 20px; padding: 28px; background: white; position: relative; counter-increment: questions; }
.question::before { content: "0" counter(questions); font: 600 13px/1 "IBM Plex Mono", monospace; color: var(--cyan-deep); display: block; margin-bottom: 18px; }
.question h3 { margin-bottom: 10px; }
.question p { color: var(--muted); }
.test-steps { counter-reset: test; display: grid; gap: 14px; }
.test-step { counter-increment: test; display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: white; }
.test-step::before { content: counter(test); width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--navy); color: white; font: 600 14px/1 "IBM Plex Mono", monospace; }
.test-step h3 { font-size: 19px; margin-bottom: 5px; }
.test-step p { color: var(--muted); }
.eval-table { width: 100%; border-collapse: collapse; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: white; }
.eval-table th { background: var(--navy); color: white; text-align: left; padding: 16px; font: 600 11px/1.3 "IBM Plex Mono", monospace; text-transform: uppercase; letter-spacing: .06em; }
.eval-table td { padding: 17px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.eval-table tr:last-child td { border-bottom: 0; }
.eval-table td:first-child { color: var(--navy); font-weight: 700; width: 27%; }
.eval-table td:not(:first-child) { color: var(--muted); }

/* Pricing */
.pricing-card { border: 1px solid var(--line); border-radius: 24px; background: white; overflow: hidden; box-shadow: var(--shadow-sm); }
.pricing-head { padding: 28px; border-bottom: 1px solid var(--line); }
.pricing-head h3 { margin-bottom: 8px; }
.price { font-size: 46px; color: var(--navy); font-weight: 700; letter-spacing: -.05em; }
.price small { font-size: 15px; color: var(--muted); letter-spacing: 0; font-weight: 500; }
.pricing-body { padding: 28px; }
.pricing-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; color: var(--muted); }
.pricing-list li { position: relative; padding-left: 24px; }
.pricing-list li::before { content: ""; position: absolute; left: 0; top: .45em; width: 11px; height: 6px; border-left: 2px solid var(--cyan); border-bottom: 2px solid var(--cyan); transform: rotate(-45deg); }
.price-table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; }
.price-table th { color: var(--muted); font: 600 11px/1.3 "IBM Plex Mono", monospace; text-transform: uppercase; letter-spacing: .06em; }
.price-table td { color: var(--navy); }
.price-table td:last-child { font-weight: 700; }
.price-table tr:last-child td { border-bottom: 0; }
.price-note { border: 1px solid #bbeaf4; background: var(--soft-cyan); color: #275265; border-radius: 14px; padding: 16px; font-size: 14px; }

/* Accordion */
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-button { width: 100%; border: 0; background: transparent; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; text-align: left; color: var(--navy); font-weight: 700; }
.accordion-button span:last-child { font-size: 22px; color: var(--cyan-deep); transition: transform .2s ease; }
.accordion-button[aria-expanded="true"] span:last-child { transform: rotate(45deg); }
.accordion-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.accordion-panel > div { overflow: hidden; }
.accordion-item.open .accordion-panel { grid-template-rows: 1fr; }
.accordion-panel p { color: var(--muted); padding: 0 0 22px; max-width: 780px; }

/* Forms */
.form-shell { border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); background: white; padding: 30px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--navy); font-weight: 700; font-size: 14px; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid var(--mesh); border-radius: 10px; padding: 13px 14px; background: white; color: var(--ink); outline: none; transition: border .2s ease, box-shadow .2s ease; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(24,182,217,.12); }
.field textarea { resize: vertical; min-height: 116px; }
.form-actions { margin-top: 18px; display: grid; gap: 12px; }
.form-note { font-size: 12px; color: var(--muted); }
.form-status { min-height: 24px; color: var(--cyan-deep); font-weight: 600; }
.form-status.error { color: var(--danger); }
.form-status.success { color: var(--success); }

/* About */
.founder-panel { display: grid; grid-template-columns: 260px 1fr; gap: 42px; align-items: center; border: 1px solid var(--line); border-radius: 28px; padding: 38px; background: white; box-shadow: var(--shadow); }
.founder-mark { aspect-ratio: 1; border-radius: 22px; background: var(--soft); display: grid; place-items: center; position: relative; overflow: hidden; }
.founder-mark img { width: 72%; opacity: .96; }
.founder-mark::after { content: "Founder photo can replace this mark"; position: absolute; bottom: 12px; left: 12px; right: 12px; text-align: center; font: 500 9px/1.4 "IBM Plex Mono", monospace; color: var(--muted); background: rgba(255,255,255,.85); padding: 6px; border-radius: 8px; }
.founder-copy h2 { margin-bottom: 16px; }
.founder-copy p { color: var(--muted); font-size: 18px; margin-bottom: 16px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 24px; }
.stat { border-left: 3px solid var(--cyan); padding-left: 14px; }
.stat b { display: block; color: var(--navy); font-size: 25px; }
.stat span { color: var(--muted); font-size: 12px; }

/* Legal */
.legal { color: #31485c; }
.legal h1 { font-size: clamp(40px,5vw,64px); margin-bottom: 14px; }
.legal h2 { font-size: 28px; margin: 42px 0 13px; }
.legal h3 { font-size: 20px; margin: 26px 0 8px; }
.legal p, .legal li { color: #43596b; }
.legal ul { padding-left: 22px; }
.legal .updated { font: 500 12px/1.4 "IBM Plex Mono", monospace; color: var(--muted); margin-bottom: 35px; }

/* Resource */
.resource-card { display: grid; grid-template-columns: 190px 1fr; gap: 28px; border: 1px solid var(--line); border-radius: 22px; padding: 28px; background: white; box-shadow: var(--shadow-sm); }
.paper-cover { min-height: 240px; background: var(--navy); color: white; padding: 24px; border-radius: 14px; display: flex; flex-direction: column; justify-content: space-between; }
.paper-cover .mini-brand { color: var(--cyan); font-weight: 700; letter-spacing: .1em; }
.paper-cover h3 { color: white; font-size: 28px; }
.resource-copy h2 { margin-bottom: 14px; font-size: 38px; }
.resource-copy p { color: var(--muted); margin-bottom: 22px; }

/* Footer */
.site-footer { background: #001f3d; color: white; padding: 52px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 40px; }
.footer-brand img { width: 180px; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,.62); max-width: 360px; margin-top: 18px; }
.footer-col h4 { color: white; font-size: 14px; letter-spacing: .02em; margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-col li, .footer-col a { color: rgba(255,255,255,.62); text-decoration: none; font-size: 14px; }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 28px; margin-top: 42px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.48); font-size: 12px; }

/* Animation */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
@keyframes flow { from { left: -130px; } to { left: calc(100% + 10px); } }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: .6; } 50% { transform: scale(1.4); opacity: 1; } }

/* Responsive */
@media (max-width: 1020px) {
  .site-nav { position: fixed; inset: 78px 0 auto; background: white; border-bottom: 1px solid var(--line); padding: 22px 20px 28px; display: none; flex-direction: column; align-items: stretch; gap: 18px; box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .site-nav > a:not(.button) { font-size: 18px; }
  .menu-toggle { display: block; }
  .hero-grid, .page-hero-grid, .split, .split.wide-left, .split.wide-right { grid-template-columns: 1fr; }
  .hero-grid { gap: 56px; }
  .product-stage { max-width: 680px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .flow-grid { grid-template-columns: repeat(3, 1fr); row-gap: 38px; }
  .flow-line { display: none; }
  .grid.four, .integration-grid { grid-template-columns: repeat(2, 1fr); }
  .grid.three { grid-template-columns: repeat(2, 1fr); }
  .feature-row, .feature-row:nth-child(even) { grid-template-columns: 1fr; gap: 38px; }
  .feature-row:nth-child(even) .feature-copy { order: 0; }
  .cta { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid .footer-col:last-child { grid-column: 2 / -1; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--content)); }
  .section { padding: 74px 0; }
  .nav-shell { height: 70px; }
  .site-nav { inset: 70px 0 auto; }
  .brand img { width: 150px; }
  .hero { padding: 64px 0 62px; }
  .hero-grid { grid-template-columns: minmax(0,1fr); gap: 44px; }
  .hero::before, .hero::after { display: none; }
  h1 { font-size: clamp(42px, 12vw, 62px); }
  h2 { font-size: clamp(34px, 9vw, 48px); }
  .lead { font-size: 19px; }
  .stage-grid { grid-template-columns: 1fr; }
  .ui-card.full { grid-column: auto; }
  .trust-grid, .grid.two, .grid.three, .grid.four, .integration-grid, .question-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .flow-grid { grid-template-columns: repeat(2, 1fr); }
  .metric-row { grid-template-columns: 1fr; }
  .cta { padding: 34px 26px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .founder-panel { grid-template-columns: 1fr; padding: 26px; }
  .founder-mark { max-width: 260px; }
  .stats { grid-template-columns: 1fr; }
  .resource-card { grid-template-columns: 1fr; }
  .paper-cover { min-height: 200px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid .footer-col:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .eval-table { display: block; overflow-x: auto; }
  .price-table { font-size: 14px; }
}

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


/* Final launch additions */
.nav-signin { border-left: 1px solid var(--line); padding-left: 20px; }
.real-preview { padding: 15px; }
.score-pill { width: 56px; height: 56px; border: 4px solid var(--cyan); border-radius: 50%; display: grid; place-items: center; line-height: 1; flex: 0 0 auto; }
.score-pill b { color: var(--navy); font-size: 20px; }
.score-pill span { color: var(--muted); font: 600 8px/1 "IBM Plex Mono", monospace; text-transform: uppercase; }
.score-pill.large { width: 70px; height: 70px; }
.output-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 10px; padding-top: 12px; }
.output-main,.output-side { display: grid; gap: 10px; align-content: start; }
.output-panel { border: 1px solid var(--line); background: #fbfdff; border-radius: 12px; padding: 12px; }
.panel-heading { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 8px; }
.panel-heading .ui-label { margin-bottom: 0; }
.micro-tag { border-radius: 999px; padding: 5px 7px; background: #f1f4f7; color: var(--muted); font: 600 8px/1 "IBM Plex Mono", monospace; text-transform: uppercase; white-space: nowrap; }
.cyan-tag { background: var(--soft-cyan); color: var(--cyan-deep); }.success-tag { background: #e9faf4; color: var(--success); }
.opportunity-row { display: flex; justify-content: space-between; gap: 10px; font-size: 11px; padding: 7px 0; border-top: 1px solid var(--line); }
.opportunity-row:first-of-type { border-top: 0; }.opportunity-row small { color: var(--warn); }
.behavior-summary { font-size: 12px; color: var(--muted); margin-bottom: 9px; }
.behavior-bars,.mis-components { display: grid; gap: 8px; }
.behavior-bars > div,.mis-components > div { display: grid; grid-template-columns: 1fr 70px 28px; gap: 8px; align-items: center; font-size: 10px; color: var(--muted); }
.behavior-bars i,.mis-components i,.cd-trend i { height: 5px; background: #e7edf2; border-radius: 999px; overflow: hidden; }
.behavior-bars b,.mis-components b,.cd-trend b { display: block; height: 100%; background: var(--cyan); border-radius: inherit; }
.behavior-bars small,.mis-components small { text-align: right; color: var(--navy); font-family: "IBM Plex Mono", monospace; }
.compliance-state { display: flex; gap: 9px; align-items: flex-start; }
.shield-check { width: 26px; height: 26px; border-radius: 50%; background: #e9faf4; color: var(--success); display: grid; place-items: center; font-weight: 700; flex: 0 0 auto; }
.compliance-state strong { color: var(--navy); font-size: 12px; }.compliance-state p { color: var(--muted); font-size: 10px; line-height: 1.35; }
.compliance-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 9px; }
.compliance-grid span { border: 1px solid #c8eadf; background: #f4fcf8; border-radius: 7px; padding: 6px; color: var(--success); font-size: 9px; }
.compliance-grid b { display: block; color: var(--muted); font-size: 8px; }
.preview-footer { display: flex; align-items: center; justify-content: space-between; gap: 5px; border-top: 1px solid var(--line); margin-top: 10px; padding: 10px 3px 1px; }
.preview-footer span { color: var(--muted); font: 600 8px/1 "IBM Plex Mono", monospace; text-transform: uppercase; text-align: center; }
.preview-footer i { height: 1px; flex: 1; background: var(--mesh); position: relative; }.preview-footer i::after { content:""; position:absolute; right:0; top:-2px; width:5px; height:5px; border-radius:50%; background:var(--cyan); }
.oversight-strip { margin-top: 22px; border: 1px solid #bbeaf4; background: linear-gradient(90deg,var(--soft-cyan),white); border-radius: 18px; padding: 26px; display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; }
.oversight-strip h3 { margin: 12px 0 8px; }.oversight-strip p { color: var(--muted); max-width: 780px; }
.behavior-category-card { border: 1px solid var(--line); border-radius: 22px; padding: 24px; background: white; box-shadow: var(--shadow-sm); display: grid; gap: 12px; }
.behavior-category-card > div { display: grid; grid-template-columns: 58px 1fr; gap: 10px 14px; align-items: center; border-bottom: 1px solid var(--line); padding-bottom: 12px; }
.behavior-category-card > div:last-of-type { border-bottom: 0; }.behavior-category-card span { grid-row: 1 / span 2; width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: var(--soft-cyan); color: var(--navy); font-size: 22px; font-weight: 700; }.behavior-category-card p { color: var(--muted); font-size: 13px; }.privacy-note { border-top: 1px solid var(--line); padding-top: 13px; margin-top: 2px; }
.product-output-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }.product-output-grid .full { grid-column: 1 / -1; }
.mis-card { border: 1px solid var(--line); border-radius: 20px; padding: 20px; background: white; box-shadow: var(--shadow); }
.mis-card-head { display:flex; justify-content:space-between; align-items:center; gap:18px; padding-bottom:15px; border-bottom:1px solid var(--line); margin-bottom:15px; }.mis-card-head strong { display:block; color:var(--navy); }
.mis-components > div { grid-template-columns: 1fr 130px 32px; font-size: 11px; }.mis-components .warn-bar b { background:#e3a020; }.coach-note { margin-top:15px; padding:13px; border:1px solid var(--line); background:#fbfdff; border-radius:10px; }.coach-note strong { color:var(--navy); }.coach-note p { font-size:12px; color:var(--muted); margin-top:5px; }
.kanban-mock { border:1px solid var(--line); border-radius:20px; background:white; box-shadow:var(--shadow); padding:16px; }.kanban-head { display:flex; justify-content:space-between; align-items:center; padding-bottom:12px; border-bottom:1px solid var(--line); }.kanban-columns { display:grid; grid-template-columns:repeat(4,1fr); gap:8px; padding-top:12px; }.kanban-columns > div { border:1px solid var(--line); border-top:3px solid var(--cyan); border-radius:10px; padding:9px; min-height:210px; }.kanban-columns > div:nth-child(2){border-top-color:#ec5c9b}.kanban-columns > div:nth-child(3){border-top-color:#8c5ae8}.kanban-columns > div:nth-child(4){border-top-color:#7a8791}.kanban-columns h4 { font-size:12px; display:flex; justify-content:space-between; margin-bottom:9px; }.kanban-columns h4 span { color:var(--muted); }.kanban-columns article { border:1px solid #acc1d4; border-radius:8px; padding:8px; margin-bottom:7px; background:#fbfdff; }.kanban-columns em { font-style:normal; color:var(--cyan-deep); font:600 7px/1 "IBM Plex Mono",monospace; text-transform:uppercase; }.kanban-columns b { display:block; font-size:10px; color:var(--navy); margin:6px 0; line-height:1.25; }.kanban-columns p,.kanban-columns small { font-size:8px; color:var(--muted); }
.calendar-mock { border:1px solid var(--line); border-radius:20px; background:white; box-shadow:var(--shadow); padding:16px; }.calendar-head { display:flex; justify-content:space-between; padding-bottom:12px; border-bottom:1px solid var(--line); }.calendar-head span { color:var(--muted); font-size:11px; }.calendar-days { display:grid; grid-template-columns:repeat(5,1fr); gap:7px; padding-top:12px; }.calendar-days > div { border-left:1px solid var(--line); min-height:210px; padding:0 6px; }.calendar-days > div:first-child { border-left:0; }.calendar-days > div > b { font:600 8px/1 "IBM Plex Mono",monospace; color:var(--muted); }.calendar-event { display:block; border-radius:8px; padding:8px; margin-top:20px; font-size:9px; color:var(--navy); }.calendar-event small { display:block; margin-top:4px; color:var(--muted); }.cyan-event{background:var(--soft-cyan);border-left:3px solid var(--cyan)}.navy-event{background:#edf2f7;border-left:3px solid var(--navy)}.gray-event{background:#f3f4f6;border-left:3px solid #9aa8b5}
.compliance-dashboard-mock { border:1px solid var(--line); border-radius:20px; background:white; box-shadow:var(--shadow); padding:16px; }.cd-top { display:flex; justify-content:space-between; align-items:center; padding-bottom:12px; border-bottom:1px solid var(--line); }.cd-metrics { display:grid; grid-template-columns:repeat(4,1fr); gap:8px; padding:12px 0; }.cd-metrics div { border:1px solid var(--line); border-radius:9px; padding:9px; text-align:center; }.cd-metrics b { display:block; color:var(--navy); font-size:20px; }.cd-metrics span { color:var(--muted); font-size:8px; }.cd-table { border:1px solid var(--line); border-radius:9px; overflow:hidden; }.cd-row { display:grid; grid-template-columns:1.4fr repeat(4,.7fr); }.cd-row span { padding:8px; border-right:1px solid var(--line); border-top:1px solid var(--line); font-size:9px; }.cd-row span:last-child { border-right:0; }.cd-row.header { background:#f5f8fb; color:var(--muted); font-family:"IBM Plex Mono",monospace; }.cd-row.header span { border-top:0; }.cd-trend { display:grid; grid-template-columns:1fr 2fr; gap:7px 12px; align-items:center; margin-top:12px; }.cd-trend span { grid-row:1 / span 3; font-size:10px; color:var(--muted); }
.resource-stack { display:grid; gap:24px; }.text-link { display:inline-block; margin-top:20px; color:var(--cyan-deep); font-weight:700; text-decoration:none; }.article-quote { margin:38px 0 0; padding:28px; background:var(--navy); color:white; border-radius:18px; font-size:25px; line-height:1.35; }
.legal-notice { border-left:4px solid var(--cyan); background:var(--soft-cyan); border-radius:0 12px 12px 0; padding:18px 20px; margin:24px 0; }.legal-notice strong { color:var(--navy); }.legal-notice p { margin-top:6px; }.legal a { color:var(--cyan-deep); }
.footer-link-button { border:0; padding:0; background:transparent; color:rgba(255,255,255,.62); font-size:14px; cursor:pointer; }.footer-link-button:hover { color:white; }
.cookie-banner { position:fixed; left:20px; right:20px; bottom:20px; z-index:5000; max-width:920px; margin:0 auto; display:grid; grid-template-columns:1fr auto; gap:12px 24px; align-items:center; border:1px solid #b8c8d6; background:white; border-radius:16px; padding:18px 20px; box-shadow:0 18px 60px rgba(0,31,61,.25); }.cookie-banner[hidden] { display:none; }.cookie-banner strong { color:var(--navy); }.cookie-banner p { color:var(--muted); font-size:13px; margin-top:3px; }.cookie-banner > a { color:var(--cyan-deep); font-size:12px; }.cookie-actions { display:flex; gap:8px; grid-row:1 / span 2; grid-column:2; }
@media (min-width: 1500px) and (max-height: 1050px) { .hero { padding:56px 0 50px; }.section { padding:72px 0; }.page-hero { padding:56px 0 52px; } }
@media (max-width: 1020px) { .nav-signin { border-left:0; padding-left:0; }.output-layout { grid-template-columns:1fr; }.oversight-strip { grid-template-columns:1fr; }.kanban-columns { grid-template-columns:repeat(2,1fr); }.calendar-days { grid-template-columns:repeat(3,1fr); }.cookie-banner { grid-template-columns:1fr; }.cookie-actions { grid-row:auto; grid-column:auto; }.cookie-banner > a { grid-column:auto; } }
@media (max-width: 700px) { .output-layout,.product-output-grid { grid-template-columns:1fr; }.product-output-grid .full { grid-column:auto; }.behavior-bars > div,.mis-components > div { grid-template-columns:1fr 80px 30px; }.kanban-columns,.calendar-days,.cd-metrics { grid-template-columns:1fr; }.cd-row { grid-template-columns:1.4fr repeat(4,.6fr); overflow-x:auto; }.preview-footer { flex-wrap:wrap; }.preview-footer i { min-width:12px; }.cookie-actions { flex-direction:column; }.cookie-banner { left:10px; right:10px; bottom:10px; }.core-module-grid { grid-template-columns:1fr !important; } }
.support-contact-card { border:1px solid var(--line); border-radius:22px; background:white; box-shadow:var(--shadow); padding:28px; }
.support-contact-card h3 { margin:18px 0 10px; }.support-contact-card > p { color:var(--muted); margin-bottom:20px; }.support-contact-card .support-note { font-size:12px; margin-top:16px; }.support-contact-card hr { border:0; border-top:1px solid var(--line); margin:24px 0; }.support-contact-card h4 { margin-bottom:8px; }

/* Keep primary navigation and action labels intact on high-density displays. */
.button,
.site-nav > a {
  white-space: nowrap;
}
