:root {
  --c-navy: #545f77;
  --c-navy-deep: #2e3648;
  --c-navy-ink: #1a1f2b;
  --c-signal: #2cef8d;
  --c-signal-deep: #14b56a;
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --bg-frost: #eef1f5;
  --ink: #0e1220;
  --ink-2: #2a3142;
  --ink-3: #545f77;
  --ink-4: #8893a6;
  --line: #e4e8ee;
  --line-soft: #eff2f6;
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-schedule:
    0 24px 60px rgba(20, 30, 50, 0.08), 0 2px 6px rgba(20, 30, 50, 0.04);
  --shadow-phone:
    0 30px 60px rgba(20, 30, 50, 0.18), 0 4px 10px rgba(20, 30, 50, 0.08);
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 4px;
  --radius-card: 8px;
  --radius-cta: 12px;
  --hour-h: 36px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings:
    "ss01" on,
    "cv11" on;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

.container {
  width: min(var(--container), calc(100vw - (var(--gutter) * 2)));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: clamp(64px, 9vw, 128px) 0;
}

.section--tight {
  padding: clamp(48px, 6vw, 88px) 0;
}

.section--band {
  background: var(--bg-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.section--soft {
  background: var(--bg-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.section--frost {
  background: var(--bg-frost);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-signal);
  box-shadow: 0 0 0 3px rgba(44, 239, 141, 0.18);
}

.eyebrow--plain::before {
  display: none;
}

.mono-label {
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.06em;
}

.display,
.section-heading h2,
.thesis__quote,
.capability-row__title h3,
.final-cta h2 {
  text-wrap: balance;
}

.display {
  margin: 0 0 24px;
  font-size: clamp(40px, 6.4vw, 84px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.display em,
.thesis__quote span {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.lede,
.section-heading p,
.thesis__body p,
.duo-card p,
.roster-highlight__copy p,
.capability-row__body p,
.migration-step p,
.security-strip__intro p,
.security-item p,
.rollout__copy p,
.footer__brand p,
.footer__brand small {
  color: var(--ink-3);
}

.lede {
  max-width: 58ch;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--c-signal);
  color: #06160d;
}

.button--primary:hover {
  background: var(--c-signal-deep);
  color: #fff;
}

.button--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.button--ghost:hover {
  border-color: var(--ink);
}

.button--ghost-on-dark {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.button--ghost-on-dark:hover {
  border-color: #fff;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: #545f77;
  backdrop-filter: none;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  color: #fff;
}

.logo__image {
  width: auto;
  height: 40px;
}

.logo__mark {
  position: relative;
  width: 22px;
  height: 22px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--ink);
}

.logo__mark::before,
.logo__mark::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--bg);
}

.logo__mark::before {
  top: 8px;
}

.logo__mark::after {
  bottom: 8px;
}

.logo__mark i {
  position: absolute;
  inset: 0;
  display: block;
  background: radial-gradient(
    circle at 50% 50%,
    var(--c-signal) 0 2px,
    transparent 2.5px
  );
}

.nav__links,
.nav__actions,
.hero__actions,
.final-cta__actions,
.footer__bottom div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__links {
  gap: 28px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.nav__links a:hover,
.nav__signin:hover {
  color: #fff;
}

.footer a:hover {
  color: var(--ink);
}

.nav__signin {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.nav__links a[aria-current="page"] {
  color: #fff;
}

.nav .button--primary {
  background: #2cef8d;
  color: #06160d;
}

.nav .button--primary:hover {
  background: #1fd47c;
  color: #06160d;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 7vw, 88px) 0 clamp(48px, 8vw, 96px);
}

.hero__texture,
.final-cta__texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(
    to bottom,
    transparent 0,
    transparent calc(100% - 1px),
    var(--line-soft) 100%
  );
  background-size: 100% 48px;
  opacity: 0.35;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 20%,
    #000 80%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 20%,
    #000 80%,
    transparent
  );
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero__copy {
  max-width: 620px;
}

.hero__copy .eyebrow {
  margin-bottom: 24px;
}

.hero__actions {
  flex-wrap: wrap;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero__meta-key {
  margin-bottom: 6px;
  color: var(--ink-4);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__meta-value {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.hero__stage {
  position: relative;
  min-height: clamp(480px, 62vw, 680px);
}

.schedule-card,
.roster-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  box-shadow: var(--shadow-schedule);
}

.schedule-card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.schedule-card__toolbar,
.roster-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.schedule-card__left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.live-chip,
.schedule-card__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 3px;
  border: 1px solid var(--line);
  color: var(--ink-3);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
}

.schedule-card__button {
  margin-left: auto;
  background: var(--c-signal);
  color: #06160d;
  border-color: transparent;
  font-weight: 500;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-signal);
  box-shadow: 0 0 0 2px rgba(44, 239, 141, 0.2);
}

.schedule-card__venue {
  color: var(--ink-3);
  font-size: 11px;
}

.schedule-header,
.schedule-grid {
  display: grid;
  grid-template-columns: 48px repeat(4, 1fr);
}

.schedule-header {
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}

.schedule-header div {
  position: relative;
  padding: 10px 12px;
  color: var(--ink-3);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.schedule-header div + div {
  border-left: 1px solid var(--line-soft);
}

.schedule-header .is-today {
  color: var(--ink);
  font-weight: 600;
}

.schedule-header .is-today::after {
  content: "";
  position: absolute;
  left: 10px;
  bottom: -1px;
  width: 28px;
  height: 2px;
  background: var(--c-signal);
}

.schedule-hours {
  border-right: 1px solid var(--line);
}

.schedule-hours span,
.schedule-column::before {
  display: block;
  height: var(--hour-h);
  border-bottom: 1px solid var(--line-soft);
}

.schedule-hours span {
  padding-top: 6px;
  padding-right: 6px;
  color: var(--ink-4);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  text-align: right;
}

.schedule-column {
  position: relative;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent calc(var(--hour-h) - 1px),
    var(--line-soft) calc(var(--hour-h) - 1px),
    var(--line-soft) var(--hour-h)
  );
  border-right: 1px solid var(--line-soft);
}

.schedule-column:last-child {
  border-right: 0;
}

.schedule-column--today {
  background:
    linear-gradient(var(--bg-soft), var(--bg-soft)),
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent calc(var(--hour-h) - 1px),
      var(--line-soft) calc(var(--hour-h) - 1px),
      var(--line-soft) var(--hour-h)
    );
}

.schedule-session {
  position: absolute;
  left: 3px;
  right: 3px;
  top: calc((var(--start) - 8) * var(--hour-h));
  height: calc((var(--duration) * var(--hour-h)) - 2px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 2px;
  border: 1px solid;
  border-left-width: 2px;
  padding: 8px 10px 7px;
  font-size: 11px;
  line-height: 1.3;
}

.schedule-session strong,
.mobile-card__booking h4,
.staff-strip__row strong,
.migration-step h3,
.security-item strong,
.roster-person strong {
  display: block;
}

.schedule-session strong {
  line-height: 1.2;
}

.schedule-session span {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  opacity: 0.76;
  line-height: 1.35;
  white-space: normal;
}

.schedule-session[style*="--duration: 1.5"] {
  padding-top: 7px;
  padding-bottom: 6px;
}

.schedule-session[style*="--duration: 1.5"] span {
  margin-top: 3px;
  line-height: 1.25;
}

.schedule-session--public {
  border-color: #8893a6;
  background: #e9edf4;
  color: #2a3142;
}

.schedule-session--figure {
  border-color: #5f7a9a;
  background: #dde6f1;
  color: #1f3a58;
}

.schedule-session--hockey {
  border-color: #0e1220;
  background: #1a2238;
  color: #f2f5fa;
}

.schedule-session--learn {
  border-color: #14b56a;
  background: #d7f5e5;
  color: #0a4a29;
}

.schedule-session--rental {
  border-color: #c79a55;
  background: #f4e7d3;
  color: #5a3e15;
}

.schedule-now {
  position: absolute;
  left: 0;
  right: 0;
  top: calc((var(--start) - 8) * var(--hour-h));
  border-top: 1.5px solid var(--c-signal);
}

.schedule-now span {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-signal);
  box-shadow: 0 0 0 3px rgba(44, 239, 141, 0.25);
}

.schedule-now b {
  position: absolute;
  top: -16px;
  right: 6px;
  color: var(--c-signal-deep);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
}

.schedule-legend {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 18px;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--ink-3);
  font-size: 11px;
}

.schedule-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.schedule-legend strong {
  margin-left: auto;
  color: var(--ink-4);
  font-family: "JetBrains Mono", monospace;
  font-weight: 400;
}

.legend-swatch {
  width: 10px;
  height: 10px;
  border: 1px solid;
  border-radius: 2px;
}

.legend-swatch--public {
  border-color: #8893a6;
  background: #e9edf4;
}

.legend-swatch--figure {
  border-color: #5f7a9a;
  background: #dde6f1;
}

.legend-swatch--hockey {
  border-color: #0e1220;
  background: #1a2238;
}

.legend-swatch--learn {
  border-color: #14b56a;
  background: #d7f5e5;
}

.mobile-card {
  position: absolute;
  right: -8%;
  bottom: -8%;
  width: 280px;
  height: 560px;
  padding: 10px;
  border: 1px solid #1a2238;
  border-radius: 36px;
  background: #0b0f1a;
  box-shadow: var(--shadow-phone);
}

.mobile-card--compact {
  position: relative;
  right: auto;
  bottom: auto;
  width: 280px;
  transform: scale(0.78);
  transform-origin: top center;
  margin: 0 auto -180px;
}

.mobile-card__notch {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 3;
  width: 90px;
  height: 22px;
  border-radius: 16px;
  background: #000;
  transform: translateX(-50%);
}

.mobile-card__screen {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
}

.mobile-card__status {
  display: flex;
  justify-content: space-between;
  padding: 14px 22px 6px;
  color: #0e1220;
  font-size: 11px;
  font-weight: 600;
}

.mobile-card__intro {
  padding: 18px 20px 10px;
}

.mobile-card__label,
.mobile-card__mini {
  color: #8893a6;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-card__intro h3 {
  margin: 4px 0 0;
  color: #0e1220;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.mobile-card__pills {
  display: flex;
  gap: 6px;
  padding: 0 20px 14px;
}

.mobile-card__pills span {
  padding: 6px 10px;
  border-radius: 20px;
  background: #f2f5fa;
  color: #545f77;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
}

.mobile-card__pills .active {
  background: #0e1220;
  color: #fff;
}

.mobile-card__credits {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 16px 14px;
  padding: 12px 14px;
  border: 1px solid #e4e8ee;
  border-radius: 10px;
  background: #f6f7f9;
}

.mobile-card__credits strong {
  color: #0e1220;
  font-family: "JetBrains Mono", monospace;
  font-size: 20px;
  font-weight: 600;
}

.mobile-card__credits > span {
  padding: 6px 10px;
  border-radius: 4px;
  background: var(--c-signal);
  color: #06160d;
  font-size: 11px;
  font-weight: 600;
}

.mobile-card__mini--spaced {
  padding: 0 20px 4px;
  font-weight: 600;
}

.mobile-card__list {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 10px 16px 16px;
}

.mobile-card__list--compact {
  flex: 0 0 auto;
  padding-top: 6px;
}

.mobile-card__booking {
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border: 1px solid #e4e8ee;
  border-radius: 10px;
  background: #fff;
}

.mobile-card__booking--live {
  border-color: #b6ecd2;
  background: linear-gradient(180deg, #f4fff9 0%, #ebfbf3 100%);
  box-shadow: inset 0 0 0 1px rgba(32, 181, 106, 0.08);
}

.mobile-card__booking-top,
.mobile-card__booking-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.mobile-card__booking-top {
  color: #8893a6;
  font-size: 10px;
}

.mobile-card__booking-top strong {
  color: #14b56a;
}

.mobile-card__booking--live .mobile-card__booking-top strong {
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(32, 181, 106, 0.14);
  color: #0d8d4f;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-card__booking h4 {
  margin: 0;
  color: #0e1220;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.mobile-card__booking-bottom {
  color: #545f77;
  font-size: 11px;
}

.mobile-card__booking-bottom b {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 400;
}

.mobile-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 16px 16px;
  padding: 14px 16px;
  border-radius: 10px;
  background: #0e1220;
  color: #fff;
}

.mobile-card__cta strong {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.mobile-card__cta span {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
}

.mobile-card__cta b {
  color: var(--c-signal);
  font-size: 16px;
}

.mobile-card__home {
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 110px;
  height: 4px;
  border-radius: 2px;
  background: #0e1220;
  transform: translateX(-50%);
}

.mobile-card--calendar .mobile-card__screen {
  background: #fff;
}

.calendar-phone__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px 6px;
}

.calendar-phone__month {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid #d9e0ea;
  border-radius: 14px;
  background: #f8fafc;
  color: #38445c;
  font-size: 11px;
  font-weight: 600;
}

.calendar-phone__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.calendar-phone__actions span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #f4f6fa;
  color: #1a1f2b;
  font-size: 13px;
  font-weight: 600;
}

.calendar-phone__notify {
  color: #49556d;
}

.calendar-phone__notify svg {
  width: 13px;
  height: 13px;
}

.calendar-phone__notify i {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 7px;
  height: 7px;
  border: 1.5px solid #fff;
  border-radius: 999px;
  background: #ff5b4d;
}

.calendar-phone__week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  padding: 4px 14px 10px;
}

.calendar-phone__week div {
  display: grid;
  justify-items: center;
  gap: 5px;
}

.calendar-phone__week span {
  color: #8893a6;
  font-size: 9px;
  font-weight: 500;
}

.calendar-phone__week b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  color: #4f5b73;
  font-size: 11px;
  font-weight: 500;
}

.calendar-phone__week .is-today b {
  background: #111522;
  color: #fff;
}

.calendar-phone__day {
  padding: 10px 18px 10px;
  border-top: 1px solid #eef1f5;
  border-bottom: 1px solid #eef1f5;
  color: #1a1f2b;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.calendar-phone__schedule {
  position: relative;
  flex: 1;
  min-height: 360px;
  padding: 8px 10px 12px 74px;
  background:
    linear-gradient(
      to bottom,
      transparent 0,
      transparent 63px,
      #eef1f5 63px,
      #eef1f5 64px
    ),
    linear-gradient(
      to bottom,
      transparent 0,
      transparent 127px,
      #eef1f5 127px,
      #eef1f5 128px
    ),
    linear-gradient(
      to bottom,
      transparent 0,
      transparent 191px,
      #eef1f5 191px,
      #eef1f5 192px
    ),
    linear-gradient(
      to bottom,
      transparent 0,
      transparent 255px,
      #eef1f5 255px,
      #eef1f5 256px
    ),
    linear-gradient(
      to bottom,
      transparent 0,
      transparent 319px,
      #eef1f5 319px,
      #eef1f5 320px
    ),
    linear-gradient(
      to bottom,
      transparent 0,
      transparent 383px,
      #eef1f5 383px,
      #eef1f5 384px
    ),
    linear-gradient(
      to bottom,
      transparent 0,
      transparent 447px,
      #eef1f5 447px,
      #eef1f5 448px
    ),
    linear-gradient(
      to bottom,
      transparent 0,
      transparent 511px,
      #eef1f5 511px,
      #eef1f5 512px
    );
}

.calendar-phone__hour {
  position: absolute;
  left: 8px;
  width: 52px;
  color: #7a8598;
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
}

.calendar-event {
  position: absolute;
  padding: 8px 10px;
  border-left: 3px solid;
  border-radius: 6px;
  background: #eff8e8;
  box-shadow: inset 0 0 0 1px rgba(117, 194, 86, 0.18);
}

.calendar-event--wide {
  left: 56px;
  right: 10px;
}

.calendar-event strong {
  display: block;
  color: #46733b;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.15;
}

.calendar-event span {
  display: block;
  margin-top: 1px;
  color: #6f9b62;
  font-size: 9px;
  line-height: 1.25;
}

.calendar-event--green {
  border-color: #6adb39;
  background: #e9f8dd;
}

.thesis {
  padding: clamp(80px, 12vw, 160px) 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-soft);
}

.thesis__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
}

.thesis__quote {
  max-width: 22ch;
  margin: 32px 0 0;
  color: var(--ink);
  font-size: clamp(28px, 4.2vw, 56px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.thesis__quote span {
  color: var(--ink-3);
}

.thesis__body {
  font-size: 15px;
  line-height: 1.6;
}

.thesis__body p {
  margin: 0 0 14px;
}

.thesis__body p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 56px;
}

.section-heading--narrow {
  margin-bottom: 72px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1fr 2fr;
  max-width: none;
  gap: 64px;
  align-items: end;
  margin-bottom: 40px;
}

.section-heading h2 {
  margin: 20px 0 16px;
  color: var(--ink);
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.028em;
}

.section-heading h2 span,
.rollout__copy h2 span,
.final-cta h2 span {
  color: var(--ink-3);
}

.duo-grid,
.rollout,
.roster-highlight {
  display: grid;
  gap: 24px;
}

.duo-grid {
  grid-template-columns: 1fr 1fr;
}

.duo-card {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--bg);
  box-shadow: var(--shadow-card);
}

.duo-card h3,
.roster-highlight__copy h3 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.duo-card__viz {
  overflow: hidden;
  margin-top: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.duo-card__viz--staff {
  background: #fff;
}

.duo-card__viz--mobile {
  display: flex;
  justify-content: center;
  padding-top: 32px;
  background: var(--bg-frost);
}

.sync-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(214, 221, 232, 0.85);
  border-radius: 18px;
  background:
    radial-gradient(
      circle at top right,
      rgba(44, 239, 141, 0.08),
      transparent 28%
    ),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.sync-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.sync-panel__header span,
.sync-panel__destinations span,
.sync-panel__note span {
  color: var(--ink-4);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sync-panel__header strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.sync-panel__header b {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #eef1f5;
  color: var(--ink-3);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sync-panel__change-card,
.sync-panel__destinations article {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
}

.sync-panel__change-card span,
.sync-panel__destinations span,
.sync-panel__note span {
  color: var(--ink-4);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sync-panel__change-card strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.sync-panel__change-card p {
  margin: 0;
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.55;
}

.sync-panel__destinations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.sync-panel__destinations strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
}

.sync-panel__calendar-destinations {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.sync-panel__calendar-destinations img {
  width: 14px;
  height: 14px;
  display: block;
}

.sync-panel__calendar-destinations span {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: none;
}

.sync-panel__note {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid rgba(44, 239, 141, 0.24);
  border-radius: 14px;
  background: rgba(44, 239, 141, 0.08);
}

.sync-panel__note p {
  margin: 0;
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.55;
}

.roster-highlight {
  grid-template-columns: 1fr 2.2fr;
  align-items: start;
  gap: 48px;
}

.roster-highlight__copy h3 {
  margin-top: 20px;
}

.roster-card {
  display: grid;
  gap: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fbfcfe;
  box-shadow: var(--shadow-card);
}

.roster-card__top {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
}

.roster-card__heading {
  display: grid;
  gap: 4px;
}

.roster-card__heading p {
  margin: 0;
  color: var(--ink-4);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.roster-card__heading strong {
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.roster-card__heading span {
  color: var(--ink-3);
  font-size: 13px;
}

.roster-card__top-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.roster-card__top-meta b {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #efe9ff;
  color: #5b34bf;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.roster-card__top-meta em {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #e7f8ef;
  color: #11814e;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.roster-card__summary {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 0 8px;
}

.roster-card__summary > div {
  display: grid;
  gap: 2px;
}

.roster-card__summary span {
  color: var(--ink-3);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.roster-card__summary strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
}

.roster-progress {
  position: relative;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: #e8edf4;
}

.roster-progress__fill,
.roster-progress__checkins {
  position: absolute;
  inset: 0 auto 0 0;
  border-radius: inherit;
}

.roster-progress__fill {
  width: 92%;
  background: #cdebd8;
}

.roster-progress__checkins {
  width: 58%;
  background: #16a34a;
}

.roster-list {
  display: grid;
  gap: 10px;
}

.roster-list--single {
  padding: 6px 0 0;
}

.roster-entry {
  display: grid;
  grid-template-columns: 92px auto minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
}

.roster-entry--ok {
  background: #ffffff;
}

.roster-entry--warn {
  background: #fffdf8;
}

.roster-entry__section {
  color: var(--ink-4);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.roster-entry__avatar {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0e1220;
  color: #fff;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.roster-entry__copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.roster-entry__copy strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.roster-entry__copy span {
  color: var(--ink-3);
  font-size: 12px;
}

.roster-entry__copy small {
  color: #9a620c;
  font-size: 11px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.pill--ok {
  background: #dff6ea;
  color: #0a4a29;
}

.pill--paid {
  background: #e9edf4;
  color: #2a3142;
}

.pill--warn {
  background: #fbe6c7;
  color: #7a4a0a;
}

.pill--err {
  background: #f6d9d6;
  color: #7a1e14;
}

.roster-entry__status,
.roster-entry__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.roster-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid #d8dee8;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
}

.roster-action--muted {
  color: var(--ink-3);
}

.roster-action--disabled {
  color: #98a3b6;
  background: #f4f6fa;
}

.roster-action--primary {
  border-color: #0e1220;
  background: #0e1220;
  color: #fff;
}

.roster-note {
  padding: 2px 4px 0;
}

.roster-note span {
  color: var(--ink-4);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.roster-note p {
  margin: 6px 0 0;
  color: var(--ink-3);
  font-size: 13px;
  line-height: 1.5;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.capability-card {
  display: grid;
  gap: 18px;
  min-height: 280px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    radial-gradient(
      circle at top right,
      rgba(44, 239, 141, 0.08),
      transparent 32%
    ),
    linear-gradient(180deg, #fbfcfe 0%, #f7f9fc 100%);
}

.capability-card__top {
  display: grid;
  gap: 14px;
}

.capability-card__num {
  display: inline-flex;
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(84, 95, 119, 0.08);
  color: var(--ink-4);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.capability-card__top h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.capability-card p {
  margin: 0;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.capability-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(84, 95, 119, 0.12);
  list-style: none;
}

.capability-card__tags li {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink-3);
  font-size: 12px;
  letter-spacing: -0.01em;
}

.outcome-intro {
  max-width: none;
  margin-bottom: 28px;
}

.outcome-intro h2 {
  max-width: 16ch;
  margin-bottom: 14px;
}

.outcome-intro p {
  max-width: 68ch;
  margin: 0;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.55;
}

.impact-board {
  margin-bottom: 28px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(
      circle at top right,
      rgba(44, 239, 141, 0.08),
      transparent 32%
    ),
    linear-gradient(180deg, #fbfcfe 0%, #f7f9fc 100%);
}

.impact-board__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.impact-board__top span,
.impact-card > span {
  color: var(--ink-4);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.impact-board__top strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.impact-board__top b {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(20, 181, 106, 0.12);
  color: #0d8d4f;
  font-size: 12px;
  font-weight: 600;
}

.impact-board__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.1fr;
  gap: 16px;
}

.impact-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 228px;
  padding: 18px 18px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
}

.impact-card strong {
  display: block;
  max-width: 16ch;
  color: var(--ink);
  font-size: clamp(22px, 1.75vw, 28px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.impact-card p {
  margin: 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
}

.impact-card--signal {
  background:
    radial-gradient(
      circle at top right,
      rgba(44, 239, 141, 0.12),
      transparent 36%
    ),
    linear-gradient(180deg, #f1fcf6 0%, #ebf8f1 100%);
  border-color: rgba(20, 181, 106, 0.24);
}

.impact-card--signal strong {
  max-width: 11ch;
  margin-top: 2px;
}

.impact-card__note {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(20, 181, 106, 0.16);
  color: #0d8d4f;
  font-size: 13px;
  font-weight: 600;
}

.revenue-trend {
  display: grid;
  gap: 12px;
  margin-top: auto;
}

.revenue-trend__chart {
  position: relative;
  height: 118px;
  border-radius: 12px;
  background: #f8fafc;
  overflow: hidden;
}

.revenue-trend__y-axis {
  position: absolute;
  top: 10px;
  left: 10px;
  bottom: 24px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #8b97ab;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
}

.revenue-trend__grid {
  position: absolute;
  inset: 0 0 18px 32px;
  background:
    linear-gradient(
      to bottom,
      transparent 0,
      transparent 24%,
      #e8edf4 24%,
      #e8edf4 25%,
      transparent 25%,
      transparent 49%,
      #e8edf4 49%,
      #e8edf4 50%,
      transparent 50%,
      transparent 74%,
      #e8edf4 74%,
      #e8edf4 75%,
      transparent 75%
    ),
    linear-gradient(
      to right,
      transparent 0,
      transparent 24%,
      #eef2f7 24%,
      #eef2f7 25%,
      transparent 25%,
      transparent 49%,
      #eef2f7 49%,
      #eef2f7 50%,
      transparent 50%,
      transparent 74%,
      #eef2f7 74%,
      #eef2f7 75%,
      transparent 75%
    );
}

.revenue-trend__svg {
  position: absolute;
  inset: 0 0 18px 32px;
  width: calc(100% - 32px);
  height: calc(100% - 18px);
}

.revenue-trend__x-axis {
  position: absolute;
  right: 8px;
  bottom: 6px;
  left: 40px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  color: #8b97ab;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  text-align: center;
}

.revenue-trend__path {
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.revenue-trend__path--healthy {
  stroke: #1fa662;
}

.revenue-trend__path--risk {
  stroke: #f06d5b;
}

.revenue-trend__points circle {
  stroke: #fff;
  stroke-width: 2;
}

.revenue-trend__points--healthy circle {
  fill: #1fa662;
}

.revenue-trend__points--risk circle {
  fill: #f06d5b;
}

.revenue-trend__legend {
  display: grid;
  gap: 8px;
}

.revenue-trend__legend div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-2);
  font-size: 13px;
}

.revenue-trend__swatch {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  flex: 0 0 auto;
}

.revenue-trend__swatch--healthy {
  background: #1fa662;
}

.revenue-trend__swatch--risk {
  background: #f06d5b;
}

.revenue-trend__flag {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(240, 109, 91, 0.12);
  color: #b54b3b;
  font-size: 12px;
  font-weight: 600;
}

.outcome-bars {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.outcome-bars__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px auto;
  gap: 12px;
  align-items: center;
}

.outcome-bars__row label {
  color: var(--ink-2);
  font-size: 13px;
}

.outcome-bars__row div {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #dfe6ef;
}

.outcome-bars__row i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1fa662 0%, #69d68f 100%);
}

.outcome-bars__row b {
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.outcome-funnel {
  display: grid;
  gap: 4px;
  margin-top: 2px;
}

.outcome-funnel__step {
  display: grid;
  gap: 3px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8fafc;
}

.outcome-funnel__step span {
  color: var(--ink-4);
  font-size: 11px;
  letter-spacing: -0.01em;
  text-transform: none;
  font-family: inherit;
}

.outcome-funnel__step strong {
  max-width: none;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.outcome-funnel__step--mid {
  margin-inline: 10px;
}

.outcome-funnel__step--strong {
  margin-inline: 18px;
  background: linear-gradient(180deg, #f1fcf6 0%, #ebf8f1 100%);
  border-color: rgba(20, 181, 106, 0.24);
}

.outcome-funnel__arrow {
  color: #91a0b5;
  font-size: 14px;
  line-height: 1;
  text-align: center;
}

.outcome-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 4px;
}

.outcome-point {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.outcome-point span {
  display: block;
  margin-bottom: 10px;
  color: var(--ink-4);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.outcome-point p {
  margin: 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
}

.insights {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: start;
}

.insights__copy {
  display: grid;
  gap: 18px;
}

.insights__copy h2 {
  margin: 0;
  max-width: 18ch;
  color: var(--ink);
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.028em;
}

.insights__copy h2 span {
  color: var(--ink-3);
}

.insights__copy p {
  margin: 0;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.6;
}

.insights__list {
  display: grid;
  gap: 10px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.insights__list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
}

.insights__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--c-signal);
}

.insights-panel {
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(
      circle at top right,
      rgba(44, 239, 141, 0.08),
      transparent 26%
    ),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  box-shadow: var(--shadow-card);
}

.insights-panel__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.insights-panel__top span,
.insights-panel__stats span,
.insight-card span,
.insights-panel__footer span {
  color: var(--ink-4);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insights-panel__top strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.insights-panel__top b {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #e7f8ef;
  color: #11814e;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.insights-panel__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.insights-panel__stats article,
.insight-card,
.insights-panel__footer {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
}

.insights-panel__stats strong,
.insight-card strong,
.insights-panel__footer strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.18;
}

.insights-panel__stats small {
  color: var(--ink-3);
  font-size: 12px;
  line-height: 1.45;
}

.insights-panel__charts,
.insights-panel__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.insight-card ul {
  display: grid;
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.insight-card li,
.insight-card p,
.insights-panel__footer p {
  margin: 0;
  color: var(--ink-3);
  font-size: 13px;
  line-height: 1.5;
}

.insight-card li b {
  color: var(--ink);
  font-weight: 600;
}

.insight-card--signal {
  border-color: rgba(44, 239, 141, 0.28);
  background: rgba(44, 239, 141, 0.08);
}

.insights-panel__footer {
  align-content: start;
}

.insights-panel__footer-head {
  display: grid;
  gap: 8px;
}

.insights-panel__footer strong {
  max-width: 18ch;
  font-size: 16px;
  line-height: 1.22;
}

.insight-card--chart {
  gap: 10px;
}

.insight-card--conversion {
  align-content: start;
}

.chart-line {
  position: relative;
  height: 132px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: linear-gradient(180deg, #fbfcfe 0%, #f3f6fa 100%);
}

.chart-line__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to bottom, rgba(84, 95, 119, 0.08) 1px, transparent 1px),
    linear-gradient(to right, rgba(84, 95, 119, 0.06) 1px, transparent 1px);
  background-size:
    100% 34px,
    52px 100%;
}

.chart-line__path {
  position: absolute;
  inset: 0;
}

.chart-line__path::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 18%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(44, 239, 141, 0.28) 0%,
    rgba(22, 163, 74, 0.88) 100%
  );
  transform: skewY(-9deg);
  transform-origin: left center;
}

.chart-line__path span {
  position: absolute;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  margin-bottom: -5px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
}

.conversion-bars {
  display: grid;
  gap: 14px;
  padding: 8px 0 6px;
  margin-top: 6px;
}

.conversion-bars__row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 42px;
  gap: 10px;
  align-items: center;
}

.conversion-bars__row label {
  color: var(--ink-3);
  font-size: 11px;
  line-height: 1.35;
}

.conversion-bars__row div {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8edf4;
}

.conversion-bars__row i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7dd3a4 0%, #16a34a 100%);
}

.conversion-bars__row--good i {
  background: linear-gradient(90deg, #7dd3a4 0%, #16a34a 100%);
}

.conversion-bars__row--mixed i {
  background: linear-gradient(90deg, #f5d66f 0%, #d4a017 100%);
}

.conversion-bars__row--weak i {
  background: linear-gradient(90deg, #f4a28f 0%, #dc5a44 100%);
}

.conversion-bars__row b {
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  text-align: right;
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--bg);
}

.integration-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 18px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.integration-cell:nth-child(6n) {
  border-right: 0;
}

.integration-cell:nth-last-child(-n + 6) {
  border-bottom: 0;
}

.integration-logo {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(180deg, #fbfcfe 0%, #f2f5f9 100%);
  box-shadow: inset 0 0 0 1px var(--line);
}

.integration-logo img,
.integration-logo svg {
  width: 24px;
  height: 24px;
  display: block;
}

.integration-logo--more {
  color: var(--ink-3);
}

.integration-cell strong {
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.integration-cell em {
  color: var(--ink-4);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.migration-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.migration-step {
  padding: 32px 28px 32px;
  border-left: 1px solid var(--line);
}

.migration-step span {
  display: block;
  margin-bottom: 14px;
  color: var(--c-signal-deep);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.migration-step h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.migration-step p {
  max-width: 26ch;
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.security-strip {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--bg-soft);
}

.security-strip__intro h2 {
  margin: 20px 0 12px;
  color: var(--ink);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.security-strip__intro p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.security-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.security-item {
  display: flex;
  gap: 14px;
}

.security-item i {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  border-radius: 4px;
  background: var(--c-signal);
}

.security-item i::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1.5px solid #06160d;
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg) translate(1px, -1px);
}

.security-item strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.security-item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.rollout {
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.rollout__copy h2 {
  margin: 20px 0 16px;
  color: var(--ink);
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.028em;
}

.timeline-card {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--bg);
  padding: 24px;
}

.timeline-card--activation {
  background:
    radial-gradient(
      circle at top right,
      rgba(44, 239, 141, 0.08),
      transparent 28%
    ),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.timeline-group {
  display: grid;
  gap: 12px;
}

.timeline-group__label {
  color: var(--ink-4);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline-group__items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.timeline-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.timeline-pill--live {
  border-color: rgba(44, 239, 141, 0.35);
  background: rgba(44, 239, 141, 0.1);
  color: #0a4a29;
}

.timeline-note {
  display: grid;
  gap: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}

.timeline-note strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.timeline-note span {
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.55;
}

.status {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.04em;
}

.status--live {
  background: #dff6ea;
  color: #0a4a29;
}

.status--ready {
  background: #eef1f5;
  color: #545f77;
}

.status--later {
  border: 1px dashed var(--line);
  color: var(--ink-4);
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: end;
  overflow: hidden;
  padding: clamp(40px, 5vw, 72px);
  border-radius: var(--radius-cta);
  background: var(--c-navy-ink);
  color: #fff;
}

.final-cta__copy,
.final-cta__actions {
  position: relative;
  z-index: 1;
}

.final-cta__copy .eyebrow {
  color: rgba(255, 255, 255, 0.5);
}

.final-cta__copy .eyebrow::before {
  box-shadow: 0 0 0 3px rgba(44, 239, 141, 0.2);
}

.final-cta h2 {
  max-width: 18ch;
  margin: 22px 0 0;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.032em;
}

.final-cta__actions {
  justify-self: end;
  align-self: end;
  flex-wrap: wrap;
}

.final-cta__texture {
  background-image: linear-gradient(
    to bottom,
    transparent 0,
    transparent calc(100% - 1px),
    rgba(255, 255, 255, 0.05) 100%
  );
  opacity: 0.6;
}

.footer {
  padding: 56px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--ink-3);
  font-size: 13px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-soft);
}

.footer__brand p {
  max-width: 28ch;
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.6;
}

.footer__brand-name {
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.footer__brand small {
  display: block;
  margin-top: 18px;
  font-size: 12px;
}

.footer h3 {
  margin: 0 0 16px;
  color: var(--ink-4);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  color: var(--ink-4);
  font-size: 12px;
}

@media (max-width: 1080px) {
  .hero__grid,
  .duo-grid,
  .rollout,
  .section-heading--split,
  .security-strip,
  .insights,
  .thesis__grid,
  .roster-highlight {
    grid-template-columns: 1fr;
  }

  .hero__stage {
    min-height: 760px;
  }

  .hero__meta {
    grid-template-columns: 1fr;
  }

  .security-strip__grid,
  .migration-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .capability-grid {
    gap: 14px;
  }

  .outcome-points {
    grid-template-columns: 1fr;
  }

  .impact-board__grid {
    grid-template-columns: 1fr;
  }

  .insights-panel__charts,
  .insights-panel__stats,
  .insights-panel__grid {
    grid-template-columns: 1fr;
  }

  .roster-entry {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .roster-entry__status,
  .roster-entry__actions {
    justify-content: flex-start;
  }

  .sync-panel__destinations {
    grid-template-columns: 1fr;
  }

  .final-cta {
    grid-template-columns: 1fr;
  }

  .final-cta__actions {
    justify-self: start;
  }
}

@media (max-width: 820px) {
  .nav__links {
    display: none;
  }

  .hero__stage {
    min-height: 820px;
  }

  .schedule-header,
  .schedule-grid {
    grid-template-columns: 40px repeat(4, 1fr);
  }

  .schedule-card__toolbar,
  .roster-card__top,
  .footer__bottom {
    flex-wrap: wrap;
  }

  .roster-card__summary {
    grid-template-columns: 1fr;
  }

  .schedule-legend {
    flex-wrap: wrap;
    gap: 12px;
  }

  .schedule-legend strong {
    width: 100%;
    margin-left: 0;
  }

  .mobile-card {
    right: 50%;
    bottom: -140px;
    transform: translateX(50%) scale(0.78);
    transform-origin: bottom center;
  }

  .hero__stage .schedule-card {
    inset: 0 0 140px;
  }

  .integration-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .integration-cell:nth-child(5n) {
    border-right: 1px solid var(--line);
  }

  .integration-cell:nth-child(3n) {
    border-right: 0;
  }

  .integration-cell:nth-last-child(-n + 6) {
    border-bottom: 1px solid var(--line);
  }

  .integration-cell:nth-last-child(-n + 3) {
    border-bottom: 0;
  }

  .security-strip__grid,
  .migration-grid,
  .footer__top {
    grid-template-columns: 1fr;
  }

  .migration-step {
    padding: 20px 0 20px 24px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100vw - 28px));
  }

  .nav__inner,
  .nav__actions,
  .hero__actions,
  .footer__bottom,
  .final-cta__actions {
    flex-wrap: wrap;
  }

  .hero__stage {
    min-height: 760px;
  }

  .schedule-card__left {
    flex-wrap: wrap;
  }

  .schedule-card__button {
    margin-left: 0;
  }

  .schedule-session {
    padding: 4px 5px;
    font-size: 9px;
  }

  .schedule-session span,
  .schedule-now b {
    font-size: 8px;
  }
}
