:root {
  color-scheme: light;
  --ink: #17202a;
  --muted: #5d6875;
  --line: #dbe3ea;
  --panel: #ffffff;
  --soft: #f4f7f8;
  --blue: #185cd8;
  --teal: #0c7c83;
  --green: #4c8d52;
  --amber: #b96f12;
  --red: #9b2f30;
  --shadow: 0 18px 48px rgba(22, 37, 51, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fbfcfd;
}

a {
  color: inherit;
}

.topbar {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 68px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 0 clamp(18px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(219, 227, 234, 0.8);
  backdrop-filter: blur(14px);
}

.brand,
.nav-links,
.hero-actions,
.hero-metrics,
.role-tabs {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  text-decoration: none;
  font-weight: 780;
}

.brand-mark {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 42%, #ffffff 42% 58%, transparent 58%),
    linear-gradient(180deg, var(--blue), var(--teal));
  box-shadow: 0 0 0 5px rgba(24, 92, 216, 0.11);
}

.nav-links {
  gap: 6px;
  justify-self: center;
}

.nav-links a,
.nav-cta,
.button,
.case-card a,
.copy-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 720;
  white-space: nowrap;
}

.nav-links a {
  padding: 0 12px;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-links a:hover {
  color: var(--ink);
  background: var(--soft);
}

.nav-cta {
  justify-self: end;
  padding: 0 16px;
  background: var(--ink);
  color: #fff;
  font-size: 0.94rem;
}

.hero {
  min-height: 92vh;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 128px clamp(18px, 5vw, 72px) 52px;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(247, 251, 251, 0.96) 0%, rgba(247, 251, 251, 0.88) 36%, rgba(247, 251, 251, 0.35) 66%, rgba(247, 251, 251, 0.1) 100%),
    linear-gradient(0deg, rgba(14, 23, 33, 0.34), rgba(14, 23, 33, 0.03) 48%);
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.5rem, 6vw, 5.9rem);
  line-height: 0.98;
}

h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.06;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: #354250;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.55;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.button {
  padding: 0 18px;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 28px rgba(24, 92, 216, 0.24);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(23, 32, 42, 0.16);
}

.button.compact {
  min-width: 170px;
}

.hero-metrics {
  gap: 28px;
  flex-wrap: wrap;
  margin: 34px 0 0;
  padding: 0;
}

.hero-metrics div {
  min-width: 104px;
}

.hero-metrics dt {
  font-size: 2rem;
  line-height: 1;
  font-weight: 860;
}

.hero-metrics dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.band {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 820px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background: #fff;
}

.intro-copy {
  display: grid;
  gap: 18px;
  color: #394756;
  font-size: 1.05rem;
  line-height: 1.7;
}

.intro-copy p {
  margin: 0;
}

.use-cases {
  background: var(--soft);
}

.dashboard {
  background: #ffffff;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.dashboard-card,
.panel,
.motion-detail,
.metric-panel,
.handoff-grid article,
.session-grid article,
.cert-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(22, 37, 51, 0.06);
}

.dashboard-card {
  min-height: 185px;
  padding: 22px;
}

.dashboard-card strong {
  display: block;
  margin: 8px 0 12px;
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  line-height: 1;
}

.dashboard-card p,
.panel p,
.rollout-lanes p,
.motion-message,
.motion-detail li,
.motion-cta,
.handoff-grid p,
.metric-panel li,
.session-grid p,
.cert-grid p,
.marketing-steps span {
  color: var(--muted);
  line-height: 1.58;
}

.card-label {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 820;
  text-transform: uppercase;
}

.score-card {
  background: #17202a;
  color: #fff;
}

.score-card p {
  color: #d8e4ea;
}

.dashboard-split {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.panel {
  padding: 26px;
}

.panel-heading {
  margin-bottom: 18px;
}

.asset-list,
.metric-panel ul,
.motion-detail ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.asset-list li,
.check-grid span {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.asset-list li:last-child {
  border-bottom: 0;
}

.asset-list strong {
  color: var(--muted);
  font-size: 0.86rem;
  text-align: right;
}

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

.check-grid span {
  justify-content: flex-start;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
  color: #314151;
  line-height: 1.35;
}

.check-grid span::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
}

.rollout,
.motions,
.crm,
.enablement,
.marketing {
  background: #f4f7f8;
}

.rollout-lanes {
  display: grid;
  grid-template-columns: repeat(4, minmax(190px, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.rollout-lanes article {
  min-height: 210px;
  padding: 22px;
  border-left: 4px solid var(--teal);
  background: #fff;
  border-radius: 8px;
}

.rollout-lanes span {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-weight: 860;
}

.launch-table,
.crm-table {
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.launch-table div,
.crm-table div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.launch-table div:last-child,
.crm-table div:last-child {
  border-bottom: 0;
}

.launch-table strong,
.crm-table strong {
  color: var(--blue);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.case-card {
  min-height: 305px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 14px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(22, 37, 51, 0.06);
}

.case-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(160deg, var(--blue), var(--teal));
  font-size: 0.76rem;
  font-weight: 820;
}

.case-card p,
.talk-card p,
.proof p,
.role-content p,
.timeline span {
  color: var(--muted);
  line-height: 1.58;
}

.case-card p,
.talk-card p,
.proof p,
.role-content p {
  margin: 0;
}

.case-card a {
  min-height: 38px;
  justify-content: flex-start;
  color: var(--blue);
  font-size: 0.92rem;
}

.motion-shell {
  margin-top: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.motion-tabs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-bottom: 1px solid var(--line);
  background: #f7fafb;
}

.motion-tab {
  min-height: 52px;
  padding: 0 10px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 780;
  cursor: pointer;
}

.motion-tab:last-child {
  border-right: 0;
}

.motion-tab.active {
  background: #fff;
  color: var(--blue);
  box-shadow: inset 0 -3px 0 var(--blue);
}

.motion-detail {
  display: grid;
  gap: 24px;
  border: 0;
  border-radius: 0;
  padding: 28px;
  box-shadow: none;
}

.motion-detail h3 {
  font-size: clamp(1.35rem, 2vw, 2.05rem);
}

.motion-message {
  max-width: 900px;
  margin: 12px 0 0;
  font-size: 1.04rem;
}

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

.motion-columns > div {
  min-height: 160px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.motion-columns strong {
  display: block;
  margin-bottom: 12px;
}

.motion-cta {
  margin: 0;
  font-weight: 720;
}

.workflow {
  background: #ffffff;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(190px, 1fr));
  gap: 1px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  background: var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.timeline li {
  min-height: 190px;
  padding: 24px;
  background: #fff;
}

.timeline strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.field-kit {
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
  background: #eef5f4;
}

.handoff {
  background: #fff;
}

.handoff-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.handoff-grid article {
  min-height: 220px;
  padding: 24px;
}

.handoff-grid h3 {
  margin-bottom: 14px;
}

.crm-table {
  max-width: 1180px;
}

.metrics {
  background: #fff;
}

.metric-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(250px, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.metric-panel {
  min-height: 310px;
  padding: 24px;
}

.metric-panel h3 {
  margin-bottom: 16px;
}

.metric-panel li {
  padding-left: 18px;
  position: relative;
}

.metric-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.dashboard-views {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.dashboard-views span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #304153;
  font-weight: 720;
}

.session-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.session-grid article {
  min-height: 235px;
  padding: 22px;
}

.session-grid strong {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  margin-bottom: 18px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--teal);
  font-size: 0.86rem;
}

.session-grid h3,
.cert-grid h3 {
  margin-bottom: 12px;
}

.certification {
  background: #fff;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.cert-grid article {
  min-height: 210px;
  padding: 24px;
  border-top: 5px solid var(--blue);
}

.marketing-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 1px;
  margin: 32px 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  list-style: none;
}

.marketing-steps li {
  min-height: 190px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
  background: #fff;
}

.marketing-steps strong {
  color: var(--blue);
}

.role-panel {
  overflow: hidden;
  border: 1px solid #cbdcda;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.role-tabs {
  gap: 0;
  border-bottom: 1px solid var(--line);
  background: #f7fafb;
}

.role-tab {
  width: 33.33%;
  min-height: 48px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 820;
  cursor: pointer;
}

.role-tab:last-child {
  border-right: 0;
}

.role-tab.active {
  background: #fff;
  color: var(--blue);
  box-shadow: inset 0 -3px 0 var(--blue);
}

.role-content {
  min-height: 300px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 28px;
}

.role-label {
  color: var(--teal) !important;
  font-size: 0.8rem;
  font-weight: 820;
  text-transform: uppercase;
}

.copy-button {
  width: fit-content;
  margin-top: 8px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: var(--ink);
  color: #fff;
  font: inherit;
  font-size: 0.94rem;
  cursor: pointer;
}

.talk-tracks {
  background: #fff;
}

.talk-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(190px, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.talk-card {
  min-height: 190px;
  padding: 22px;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.talk-card.good {
  border-top: 5px solid var(--green);
}

.talk-card.avoid {
  border-top: 5px solid var(--red);
}

.talk-card h3 {
  margin-bottom: 12px;
}

.proof {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  background: #17202a;
  color: #fff;
}

.proof-copy {
  max-width: 850px;
}

.proof p {
  max-width: 760px;
  color: #d9e4ea;
  line-height: 1.7;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  background: #0f171f;
  color: #dce6ed;
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1100px) {
  .dashboard-grid,
  .rollout-lanes,
  .session-grid,
  .marketing-steps {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .dashboard-split,
  .motion-columns,
  .handoff-grid,
  .metric-board,
  .cert-grid {
    grid-template-columns: 1fr;
  }

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

  .case-grid,
  .talk-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 760px) {
  .topbar {
    height: auto;
    min-height: 64px;
    grid-template-columns: 1fr auto;
    padding: 12px 16px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 12px;
  }

  .hero {
    min-height: 88vh;
    padding: 104px 18px 36px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(247, 251, 251, 0.96), rgba(247, 251, 251, 0.82) 58%, rgba(247, 251, 251, 0.35)),
      linear-gradient(0deg, rgba(14, 23, 33, 0.26), rgba(14, 23, 33, 0.02));
  }

  .intro,
  .field-kit,
  .dashboard-grid,
  .rollout-lanes,
  .session-grid,
  .marketing-steps {
    grid-template-columns: 1fr;
  }

  .case-grid,
  .talk-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .motion-tabs {
    grid-template-columns: 1fr;
  }

  .motion-tab {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .launch-table div,
  .crm-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

  .case-card,
  .timeline li,
  .talk-card {
    min-height: auto;
  }

  .proof,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
