:root {
  --brand-blue: #247bff;
  --brand-navy: #21334f;
  --brand-cloud: #f2f4f7;
  --gray-cloud: #edeff7;
  --gray-smoke: #d3d6e0;
  --gray-steel: #bcbfcc;
  --gray-space: #9da2b3;
  --gray-graphite: #6e7180;
  --gray-arsenic: #40424d;
  --gray-phantom: #1e1e24;
  --white: #ffffff;
  --green: #27c785;
  --orange: #ff9f2e;
  --purple: #8157ff;
  --shadow-sm: 0 10px 24px rgba(33, 51, 79, 0.08);
  --shadow-md: 0 22px 60px rgba(33, 51, 79, 0.12);
  --radius: 8px;
  --container: 1280px;
  --font-size-10: 10px;
  --font-size-9: 9px;
  --font-size-11: 11px;
  --font-size-12: 12px;
  --font-size-13: 13px;
  --font-size-14: 14px;
  --font-size-15: 15px;
  --font-size-16: 16px;
  --font-size-17: 17px;
  --font-size-18: 18px;
  --font-size-19: 19px;
  --font-size-20: 20px;
  --font-size-22: 22px;
  --font-size-24: 24px;
  --font-size-25: 25px;
  --font-size-27: 27px;
  --font-size-28: 28px;
  --font-size-29: 29px;
  --font-size-30: 30px;
  --font-size-32: 32px;
  --font-size-34: 34px;
  --font-size-40: 40px;
  --font-size-41: 41px;
  --font-size-43: 43px;
  --font-size-56: 56px;
  --font-size-76: 76px;
  --text-body: var(--font-size-18);
  --text-body-sm: var(--font-size-16);
  --text-body-md: var(--font-size-17);
  --text-label: var(--font-size-14);
  --text-meta: var(--font-size-12);
  --text-meta-sm: var(--font-size-11);
  --text-eyebrow: var(--font-size-14);
  --text-h1: var(--font-size-56);
  --text-h2: var(--font-size-34);
  --text-h3: var(--font-size-20);
  --text-quote: var(--font-size-24);
  --text-attribution: var(--font-size-15);
  --text-cta-title: var(--font-size-41);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  background: #ffffff;
}

section[id] {
  scroll-margin-top: 104px;
}

body {
  margin: 0;
  font-family: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--brand-navy);
  background:
    radial-gradient(circle at 20% 6%, rgba(36, 123, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 44%, #ffffff 100%),
    #ffffff;
  font-size: var(--text-body);
  line-height: 1.65;
  letter-spacing: 0;
}

main {
  overflow: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.section-pad {
  padding: 72px 0;
}

.problem.section-pad,
.platform.section-pad {
  padding-top: 56px;
  padding-bottom: 56px;
}

.roles.section-pad,
.steps.section-pad,
.impact.section-pad,
.case-study.section-pad,
.confidence.section-pad {
  padding-top: 72px;
  padding-bottom: 72px;
}

.confidence.section-pad {
  padding-bottom: 60px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(211, 214, 224, 0.55);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 82px;
  display: grid;
  grid-template-columns: 176px 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand img {
  width: 170px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 46px;
  font-weight: 800;
  font-size: var(--font-size-15);
  color: #071f41;
}

.nav-toggle {
  display: none;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  font-size: var(--font-size-15);
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.button-primary {
  color: var(--white);
  background: var(--brand-blue);
  box-shadow: 0 14px 28px rgba(36, 123, 255, 0.24);
}

.button-secondary {
  color: var(--brand-blue);
  background: var(--white);
  border-color: rgba(36, 123, 255, 0.66);
}

.button-light {
  color: var(--brand-blue);
  background: var(--white);
  min-width: 206px;
  box-shadow: 0 14px 34px rgba(0, 36, 110, 0.2);
}

.hero {
  padding-top: 42px;
  padding-bottom: 88px;
}

.hero-carousel {
  display: grid;
  gap: 32px;
}

.hero-slides {
  display: grid;
}

.hero-slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(540px, 0.92fr) minmax(600px, 1.08fr);
  gap: 42px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 17px;
  color: var(--brand-blue);
  font-size: var(--text-eyebrow);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(36, 123, 255, 0.09);
  letter-spacing: 0;
}

.hero-copy .eyebrow span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--brand-blue);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 650px;
  color: #092650;
  font-size: var(--text-h1);
  line-height: 1.06;
  font-weight: 800;
}

h2 {
  margin-bottom: 16px;
  color: #102a50;
  font-size: var(--text-h2);
  line-height: 1.17;
  font-weight: 800;
}

h3 {
  color: #173152;
  font-size: var(--text-h3);
  line-height: 1.32;
  font-weight: 800;
}

.hero-text {
  max-width: 550px;
  margin-bottom: 12px;
  color: #42536b;
  font-size: var(--font-size-19);
  line-height: 1.65;
}

.supporting-line {
  max-width: 560px;
  margin-bottom: 30px;
  color: #243d5e;
  font-size: var(--text-body-md);
  line-height: 1.55;
  font-weight: 800;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 0;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.proof-row div {
  min-width: 0;
}

.proof-row p {
  margin: 10px 0 0;
  color: #495a72;
  font-size: var(--text-body-sm);
  line-height: 1.65;
  font-weight: 700;
}

.mini-icon,
.feature-icon,
.step-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  color: var(--brand-blue);
}

.mini-icon {
  width: 31px;
  height: 31px;
  color: #5f7087;
}

.mini-icon::before,
.feature-icon::before,
.step-icon::before,
.dash-icon::before,
.name-icon::before,
.change-icon::before,
.device-icon::before,
.team-icon::before,
.report-icon::before,
.setting-icon::before {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  background: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.icon-flash::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 2 4 14h7l-1 8 9-13h-7l1-7Z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.icon-shield::before,
.icon-secure::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3 19 6v5c0 5-3 8-7 10-4-2-7-5-7-10V6l7-3Z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='m9 12 2 2 4-5' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.icon-no-paper::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6Z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M14 2v6h6' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='m9 11 6 6M15 11l-6 6' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.icon-monitor::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='4' width='18' height='12' rx='2' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M8 20h8M12 16v4' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.icon-announce::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 4H6a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M14 4v5h5' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M8 11h4M8 15h3' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='m14.5 15.5 1.8 1.8 3.7-4.3' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.icon-live::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='9' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M10 8.5v7l5-3.5-5-3.5Z' fill='black'/%3E%3C/svg%3E");
}

.icon-visibility::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='4' width='18' height='16' rx='2' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M7 9h10M7 13h4M15 13h2M7 17h6' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3Ccircle cx='17' cy='13' r='1.5' fill='black'/%3E%3C/svg%3E");
}

.icon-users::before,
.icon-team::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 20v-2a4 4 0 0 0-4-4H7a4 4 0 0 0-4 4v2' fill='none' stroke='black' stroke-width='2'/%3E%3Ccircle cx='9.5' cy='7' r='4' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M22 20v-2a4 4 0 0 0-3-3.8M15 3.3a4 4 0 0 1 0 7.4' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.hero-visual {
  min-width: 0;
  padding: 36px 0 28px;
}

.hero-photo-card {
  position: relative;
  height: 565px;
  margin: 0;
  padding: 0;
  display: grid;
  align-items: stretch;
  filter: drop-shadow(0 30px 70px rgba(33, 51, 79, 0.16));
}

.hero-photo-card::before {
  content: "";
  position: absolute;
  inset: -46px -34px;
  z-index: -1;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.2)),
    radial-gradient(circle at 55% 35%, rgba(36, 123, 255, 0.12), transparent 28%);
}

.hero-photo-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(6, 31, 61, 0.16);
}

.hero-photo-placeholder {
  height: 100%;
  min-height: 513px;
  display: grid;
  place-content: center;
  gap: 10px;
  border: 2px dashed rgba(36, 123, 255, 0.28);
  border-radius: 22px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.94)),
    repeating-linear-gradient(
      -45deg,
      rgba(36, 123, 255, 0.04),
      rgba(36, 123, 255, 0.04) 18px,
      rgba(255, 255, 255, 0.5) 18px,
      rgba(255, 255, 255, 0.5) 36px
    );
}

.hero-photo-placeholder span {
  color: var(--brand-blue);
  font-size: var(--text-label);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-photo-placeholder strong {
  color: #102a50;
  font-size: var(--font-size-28);
  line-height: 1.15;
}

.hero-photo-placeholder p {
  max-width: 280px;
  margin: 0 auto;
  color: #53657e;
  font-size: var(--text-body-md);
  line-height: 1.6;
}

.hero-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(36, 123, 255, 0.2);
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  background: var(--brand-blue);
  transform: scale(1.15);
}

.hero-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.hero-summary:not(.cta-panel) {
  padding: 28px 32px;
  border: 1px solid rgba(36, 123, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at top right, rgba(39, 199, 133, 0.12), transparent 32%);
  box-shadow: 0 18px 40px rgba(33, 51, 79, 0.08);
}

.hero-summary h2 {
  margin-bottom: 10px;
}

.hero-summary p {
  margin-bottom: 0;
}

.hero-summary:not(.cta-panel) p {
  max-width: 760px;
  color: #42536b;
}

.hero-summary.cta-panel {
  min-height: 200px;
  padding: 38px 43px;
  color: var(--white);
  border-radius: 8px;
  background:
    radial-gradient(circle at 85% 14%, rgba(255, 255, 255, 0.18), transparent 18%),
    radial-gradient(circle at 62% 132%, rgba(16, 42, 80, 0.56), transparent 32%),
    linear-gradient(135deg, #1879ff 0%, #0358d4 52%, #003a9b 100%);
  box-shadow: 0 18px 42px rgba(0, 63, 160, 0.24);
}

.hero-summary.cta-panel h2 {
  max-width: 620px;
  color: var(--white);
  font-size: var(--text-cta-title);
  line-height: 1.08;
}

.hero-summary.cta-panel p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--text-body-md);
  line-height: 1.6;
  font-weight: 600;
}

.dashboard-shell {
  position: relative;
  min-height: 565px;
  display: grid;
  grid-template-columns: 118px 1fr;
  align-items: stretch;
  filter: drop-shadow(0 30px 70px rgba(33, 51, 79, 0.16));
}

.dashboard-shell::before {
  content: "";
  position: absolute;
  inset: -46px -34px;
  z-index: -1;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.2)),
    radial-gradient(circle at 55% 35%, rgba(36, 123, 255, 0.12), transparent 28%);
}

.dashboard-sidebar {
  position: relative;
  z-index: 2;
  margin: 66px 0 43px;
  padding: 19px 14px;
  color: rgba(255, 255, 255, 0.72);
  background: linear-gradient(180deg, #0a2a53, #061f3d);
  border-radius: 8px 0 0 8px;
  box-shadow: 0 20px 48px rgba(6, 31, 61, 0.3);
}

.dashboard-sidebar > img {
  width: 83px;
  margin: 0 auto 26px;
  filter: brightness(0) invert(1);
}

.dashboard-sidebar ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.dashboard-sidebar li {
  height: 36px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 10px;
  border-radius: 6px;
  font-size: var(--text-meta);
  font-weight: 800;
}

.dashboard-sidebar li.active {
  color: var(--white);
  background: var(--brand-blue);
}

.dashboard-sidebar p {
  position: absolute;
  bottom: 18px;
  left: 16px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #b9c7d8;
  font-size: var(--text-meta-sm);
  font-weight: 700;
}

.dashboard-sidebar p span,
.live-pill::before,
.speaker-card small i,
.metric-grid small i,
.devices-card li i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
}

.dash-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='3' width='7' height='7' rx='1' fill='none' stroke='black' stroke-width='2'/%3E%3Crect x='14' y='3' width='7' height='7' rx='1' fill='none' stroke='black' stroke-width='2'/%3E%3Crect x='3' y='14' width='7' height='7' rx='1' fill='none' stroke='black' stroke-width='2'/%3E%3Crect x='14' y='14' width='7' height='7' rx='1' fill='none' stroke='black' stroke-width='2'/%3E%3C/svg%3E");
}

.name-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='8' r='4' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M5 21a7 7 0 0 1 14 0' fill='none' stroke='black' stroke-width='2'/%3E%3C/svg%3E");
}

.change-icon::before,
.icon-sync::before,
.icon-refresh::before,
.icon-control::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 12a9 9 0 0 1-15 6.7L3 16M3 12a9 9 0 0 1 15-6.7L21 8M3 16v5h5M21 8V3h-5' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.device-icon::before,
.icon-device::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='6' y='3' width='12' height='18' rx='2' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M10 17h4' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.team-icon::before,
.icon-people::before,
.icon-stage::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2' fill='none' stroke='black' stroke-width='2'/%3E%3Ccircle cx='9' cy='7' r='4' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.9M16 3.1a4 4 0 0 1 0 7.8' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.report-icon::before,
.icon-analytics::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 20V10M10 20V4M16 20v-7M22 20H2' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.setting-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='3' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M19.4 15a1.7 1.7 0 0 0 .3 1.9l.1.1a2 2 0 1 1-2.8 2.8l-.1-.1a1.7 1.7 0 0 0-1.9-.3 1.7 1.7 0 0 0-1 1.6V21a2 2 0 1 1-4 0v-.2a1.7 1.7 0 0 0-1-1.6 1.7 1.7 0 0 0-1.9.3l-.1.1a2 2 0 1 1-2.8-2.8l.1-.1a1.7 1.7 0 0 0 .3-1.9 1.7 1.7 0 0 0-1.6-1H3a2 2 0 1 1 0-4h.2a1.7 1.7 0 0 0 1.6-1 1.7 1.7 0 0 0-.3-1.9l-.1-.1A2 2 0 1 1 7.2 4l.1.1a1.7 1.7 0 0 0 1.9.3h.1a1.7 1.7 0 0 0 1-1.6V3a2 2 0 1 1 4 0v.2a1.7 1.7 0 0 0 1 1.6 1.7 1.7 0 0 0 1.9-.3l.1-.1A2 2 0 1 1 20 7.2l-.1.1a1.7 1.7 0 0 0-.3 1.9v.1a1.7 1.7 0 0 0 1.6 1H21a2 2 0 1 1 0 4h-.2a1.7 1.7 0 0 0-1.4.7Z' fill='none' stroke='black' stroke-width='2'/%3E%3C/svg%3E");
}

.dashboard-main {
  min-width: 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(211, 214, 224, 0.62);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.dash-topbar {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr) auto auto 28px;
  align-items: center;
  gap: 12px;
  min-height: 68px;
}

.dash-topbar img {
  width: 104px;
}

.event-meta strong {
  display: block;
  font-size: var(--text-label);
  line-height: 1.2;
}

.event-meta span {
  color: var(--gray-graphite);
  font-size: var(--text-meta);
  font-weight: 700;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  color: #14925d;
  background: rgba(39, 199, 133, 0.12);
  border-radius: 999px;
  font-size: var(--text-meta-sm);
  font-weight: 800;
  text-transform: uppercase;
}

.pause-button {
  height: 34px;
  padding: 0 14px;
  color: var(--white);
  background: var(--brand-blue);
  border: 0;
  border-radius: 5px;
  font-size: var(--text-meta-sm);
  font-weight: 800;
}

.pause-button::before {
  content: "||";
  margin-right: 7px;
  font-size: var(--font-size-9);
}

.menu-button {
  width: 28px;
  height: 28px;
  border: 0;
  background:
    linear-gradient(var(--brand-navy), var(--brand-navy)) center 8px / 13px 1.8px no-repeat,
    linear-gradient(var(--brand-navy), var(--brand-navy)) center 14px / 13px 1.8px no-repeat,
    linear-gradient(var(--brand-navy), var(--brand-navy)) center 20px / 13px 1.8px no-repeat;
}

.speaker-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  margin-top: 8px;
}

.speaker-card {
  min-height: 182px;
  padding: 25px 24px;
  background: var(--white);
  border: 1px solid rgba(211, 214, 224, 0.6);
  border-radius: 7px;
  box-shadow: var(--shadow-sm);
}

.speaker-card span,
.metric-grid article > span {
  display: block;
  margin-bottom: 12px;
  color: #95a0b2;
  font-size: var(--text-meta-sm);
  font-weight: 800;
  text-transform: uppercase;
}

.speaker-card.current span {
  color: var(--brand-blue);
}

.speaker-card h2 {
  margin-bottom: 12px;
  font-size: var(--font-size-29);
  line-height: 1.02;
}

.speaker-card p {
  margin-bottom: 18px;
  color: #34455b;
  font-size: var(--text-label);
  line-height: 1.55;
  font-weight: 700;
}

.speaker-card .phonetic {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin: -4px 0 16px;
  padding: 7px 9px;
  color: #0b5fd3;
  background: rgba(36, 123, 255, 0.09);
  border: 1px solid rgba(36, 123, 255, 0.13);
  border-radius: 5px;
  font-size: var(--text-meta);
  line-height: 1.25;
  font-weight: 800;
}

.speaker-card small,
.metric-grid small,
.devices-card li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #1e8e61;
  font-size: var(--text-meta);
  font-weight: 800;
}

.speaker-card small.muted {
  color: #6b7789;
}

.speaker-card small.muted i {
  background: var(--gray-space);
}

.metric-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.metric-grid article {
  min-height: 105px;
  padding: 18px;
  background: var(--white);
  border: 1px solid rgba(211, 214, 224, 0.58);
  border-radius: 7px;
  box-shadow: 0 8px 22px rgba(33, 51, 79, 0.06);
}

.metric-grid strong {
  display: block;
  margin-bottom: 11px;
  color: #102a50;
  font-size: var(--font-size-22);
  line-height: 1;
  font-weight: 800;
}

.metric-grid strong small {
  display: inline;
  color: #8b96a8;
  font-size: var(--text-label);
}

.metric-grid article > small:last-child {
  justify-content: flex-end;
  color: #102a50;
}

.progress {
  position: relative;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8edf5;
}

.progress i {
  display: block;
  width: 22%;
  height: 100%;
  background: var(--brand-blue);
  border-radius: inherit;
}

.metric-grid small.positive,
.metric-grid small.managed {
  justify-content: flex-start;
  color: #14925d;
}

.metric-grid small.managed {
  color: #9b6813;
}

.metric-grid small.managed i {
  background: var(--orange);
}

.devices-card {
  margin-top: 14px;
  padding: 20px 20px 17px;
  background: var(--white);
  border: 1px solid rgba(211, 214, 224, 0.58);
  border-radius: 7px;
  box-shadow: 0 8px 22px rgba(33, 51, 79, 0.06);
}

.devices-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.devices-card strong {
  color: #273954;
  font-size: var(--font-size-13);
  font-weight: 800;
}

.devices-card a,
.devices-link {
  color: var(--brand-blue);
  font-size: var(--text-meta);
  font-weight: 800;
  text-transform: none;
}

.devices-card ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.devices-card li {
  display: block;
  color: #158f60;
  line-height: 1.35;
}

.devices-card li span {
  display: block;
  color: #59677a;
  font-size: var(--text-meta-sm);
}

.devices-card li i {
  display: inline-block;
  margin: 0 5px 0 0;
  vertical-align: 1px;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading .eyebrow {
  margin-bottom: 14px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-copy {
  max-width: 590px;
  margin: 0;
  color: #4a5a71;
  font-size: var(--text-body-sm);
  line-height: 1.65;
  font-weight: 600;
}

.problem-panel {
  padding: 30px;
  border: 1px solid rgba(211, 214, 224, 0.72);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: var(--shadow-sm);
}

.problem-stack {
  display: grid;
  gap: 24px;
}

.problem-panel-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: 30px;
  align-items: start;
}

.problem-panel-media-reverse {
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1fr);
}

.problem-panel-wide {
  margin-bottom: 0;
}

.problem-content {
  min-width: 0;
}

.problem-media {
  margin: 0;
  align-self: center;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(33, 51, 79, 0.12);
}

.problem-media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: center;
}

.problem-panel .eyebrow {
  margin-bottom: 16px;
}

.problem-panel h2,
.problem-panel h3 {
  margin-bottom: 16px;
  font-size: var(--font-size-28);
  line-height: 1.18;
}

.problem-panel .section-copy {
  max-width: none;
}

.problem-panel .section-copy:last-of-type {
  margin-bottom: 0;
}

.problem-copy {
  margin: 0 0 14px;
  color: #4a5a71;
  font-size: var(--text-body-md);
  line-height: 1.65;
  font-weight: 600;
}

.problem-copy:last-of-type {
  margin-bottom: 18px;
}

.problem-lead {
  margin: 0 0 14px;
  color: #173152;
  font-size: var(--text-body-md);
  line-height: 1.4;
  font-weight: 800;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #253b59;
  font-size: var(--text-body-md);
  line-height: 1.45;
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-blue);
  box-shadow: 0 0 0 5px rgba(36, 123, 255, 0.1);
}

.check-list.compact {
  gap: 10px;
  margin: 22px 0 28px;
}

.check-list.compact li {
  font-size: var(--text-body-sm);
}

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

.centered {
  text-align: center;
}

.card-grid {
  display: grid;
  gap: 22px;
}

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

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

.info-card {
  min-height: 258px;
  padding: 32px 28px 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(211, 214, 224, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.info-card p {
  margin: 0;
  color: #4a5a71;
  font-size: var(--text-body-sm);
  line-height: 1.65;
  font-weight: 600;
}

.feature-icon {
  width: 68px;
  height: 68px;
  margin-bottom: 26px;
  border-radius: 50%;
  background: rgba(36, 123, 255, 0.1);
}

.feature-icon::before {
  width: 31px;
  height: 31px;
}

.feature-icon.green {
  color: #23b772;
  background: rgba(39, 199, 133, 0.12);
}

.feature-icon.orange {
  color: #ff8a21;
  background: rgba(255, 159, 46, 0.13);
}

.feature-icon.purple {
  color: var(--purple);
  background: rgba(129, 87, 255, 0.11);
}

.feature-icon.small {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  margin: 0;
  border-radius: 7px;
}

.feature-icon.small::before {
  width: 25px;
  height: 25px;
}

.feature-icon.tiny {
  width: 32px;
  height: 32px;
  margin: 0 0 13px;
  background: transparent;
}

.feature-icon.tiny::before {
  width: 28px;
  height: 28px;
}

.icon-document::before,
.icon-presenter::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6Z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M14 2v6h6M8 13h8M8 17h6' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.icon-nodes::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='5' cy='12' r='3' fill='none' stroke='black' stroke-width='2'/%3E%3Ccircle cx='19' cy='5' r='3' fill='none' stroke='black' stroke-width='2'/%3E%3Ccircle cx='19' cy='19' r='3' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M8 11l8-5M8 13l8 5' fill='none' stroke='black' stroke-width='2'/%3E%3C/svg%3E");
}

.icon-upload::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 16l-4-4-4 4M12 12v9' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M20 16.6A5 5 0 0 0 18 7h-1.3A8 8 0 1 0 4 15.3' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.icon-play::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 5v14l11-7L8 5Z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.icon-adapt::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 20c4-5 8-8 16-8M14 6l6 6-6 6M4 4c4 5 8 8 16 8' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.icon-clock::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='9' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M12 7v5l3 2' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.platform-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(430px, 1.14fr);
  gap: 58px;
  align-items: center;
  min-height: 410px;
  padding: 56px 42px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 26% 86%, rgba(36, 123, 255, 0.18), transparent 23%),
    linear-gradient(105deg, rgba(238, 247, 255, 0.98), rgba(255, 255, 255, 0.88));
}

.platform-copy p:not(.eyebrow) {
  max-width: 420px;
  color: #4a5a71;
  font-size: var(--text-body-sm);
  line-height: 1.65;
  font-weight: 600;
}

.flow-mark {
  position: relative;
  min-height: 150px;
  margin-top: 48px;
}

.flow-mark span {
  position: absolute;
  left: -44px;
  right: 86px;
  top: 42px;
  height: 72px;
  background:
    radial-gradient(circle at 42% 25%, var(--brand-blue) 0 7px, transparent 8px),
    radial-gradient(circle at 53% 74%, var(--brand-blue) 0 7px, transparent 8px),
    repeating-linear-gradient(170deg, transparent 0 13px, rgba(36, 123, 255, 0.3) 13px 15px, transparent 15px 26px);
  clip-path: polygon(0 22%, 100% 0, 100% 100%, 0 76%);
  opacity: 0.8;
}

.flow-mark img {
  position: absolute;
  right: 58px;
  top: 10px;
  width: 120px;
  height: 120px;
  padding: 29px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 18px 38px rgba(36, 123, 255, 0.18);
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list article {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(211, 214, 224, 0.68);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(33, 51, 79, 0.08);
}

.feature-list h3 {
  margin-bottom: 4px;
  font-size: var(--font-size-17);
}

.feature-list p {
  margin: 0;
  color: #55667b;
  font-size: var(--text-body-sm);
  line-height: 1.55;
  font-weight: 700;
}

.feature-list i {
  color: #30445e;
  font-style: normal;
  font-size: var(--text-h3);
}

.platform-photo-wrap {
  margin-top: 28px;
  padding: 0 42px;
}

.platform-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(211, 214, 224, 0.72);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  background: #ffffff;
}

.platform-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.quote-strip {
  margin-top: 28px;
  padding: 0 42px;
}

.quote-strip-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: 24px;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(211, 214, 224, 0.72);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  background: #ffffff;
}

.quote-strip p {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 34px;
  color: #132d52;
  font-size: var(--text-quote);
  line-height: 1.25;
  font-weight: 800;
}

.quote-strip-photo {
  margin: 0;
}

.quote-strip-photo img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.quote-strip span {
  display: block;
  margin-top: 10px;
  color: #65748a;
  font-size: var(--text-attribution);
  line-height: 1.3;
  font-weight: 800;
}

.role-card {
  min-height: 274px;
  padding: 27px 25px;
}

.role-card .feature-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
}

.role-card .feature-icon::before {
  width: 29px;
  height: 29px;
}

.role-card h3 {
  margin-bottom: 14px;
  font-size: var(--font-size-18);
}

.role-card a {
  display: inline-flex;
  margin-top: 20px;
  color: var(--brand-blue);
  font-size: var(--text-attribution);
  font-weight: 800;
}

.timeline {
  position: relative;
  max-width: 880px;
  height: 54px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  margin: 0 auto 18px;
}

.timeline span {
  position: absolute;
  left: 11%;
  right: 11%;
  top: 50%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(36, 123, 255, 0.42), rgba(36, 123, 255, 0.42) 7px, transparent 7px, transparent 14px);
}

.timeline i {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin: auto;
  color: var(--white);
  background: var(--brand-blue);
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(36, 123, 255, 0.25);
  font-style: normal;
  font-size: var(--text-label);
  font-weight: 800;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.step-grid article {
  min-width: 0;
}

.step-icon {
  width: 92px;
  height: 92px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: linear-gradient(180deg, #edf5ff, #f8fbff);
  box-shadow: inset 0 0 0 1px rgba(36, 123, 255, 0.04);
}

.step-icon::before {
  width: 42px;
  height: 42px;
}

.step-grid h3 {
  margin-bottom: 11px;
  font-size: var(--font-size-17);
}

.step-grid p {
  max-width: 190px;
  margin: 0 auto;
  color: #54657a;
  font-size: var(--text-body-sm);
  line-height: 1.65;
  font-weight: 700;
}

.impact-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  gap: 52px;
  padding: 0;
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 20%, rgba(36, 123, 255, 0.12), transparent 28%),
    linear-gradient(110deg, #f5faff, #ffffff);
  border: 1px solid rgba(211, 214, 224, 0.62);
  align-items: stretch;
}

.impact-photo {
  margin: 0;
  min-height: 100%;
  border-radius: 6px 0 0 6px;
  overflow: hidden;
}

.impact-photo img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.impact-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 30px 34px 30px 0;
}

.impact-copy h2 {
  margin-bottom: 0;
  font-size: var(--font-size-30);
  line-height: 1.12;
}

.impact-copy > p:not(.eyebrow),
.case-copy p:not(.eyebrow) {
  margin: 0;
  color: #44556d;
  font-size: var(--text-body-md);
  line-height: 1.75;
  font-weight: 650;
}

.impact-copy .impact-note {
  width: fit-content;
  margin-top: 2px;
  padding: 9px 12px;
  color: #0b5fd3;
  background: rgba(36, 123, 255, 0.08);
  border: 1px solid rgba(36, 123, 255, 0.16);
  border-radius: 6px;
  font-weight: 850;
}

.case-shell {
  border: 1px solid rgba(211, 214, 224, 0.72);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.case-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 0;
  align-items: start;
}

.case-copy {
  padding: 42px;
}

.case-media {
  display: grid;
  padding: 18px 18px 18px 0;
}

.case-video {
  aspect-ratio: 16 / 9;
  height: 100%;
  min-height: 100%;
  border-radius: 6px;
  overflow: hidden;
  background: #04111f;
}

.case-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (min-width: 1121px) {
  .case-copy {
    padding: 30px 32px;
  }

  .impact-copy {
    padding: 30px 32px 30px 0;
  }

  .case-copy h2 {
    font-size: var(--font-size-30);
    line-height: 1.12;
    margin-bottom: 18px;
  }

  .impact-copy h2 {
    margin-bottom: 18px;
  }

  .case-copy > p:not(.eyebrow) {
    margin-bottom: 16px;
    font-size: var(--text-body-md);
    line-height: 1.55;
  }

  .impact-copy > p:not(.eyebrow) {
    margin-bottom: 16px;
    font-size: var(--text-body-md);
    line-height: 1.55;
  }

  .case-copy .check-list.compact {
    gap: 10px;
    margin: 18px 0 0;
  }
}

.confidence-panel {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 310px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 255, 0.94)),
    radial-gradient(circle at 80% 30%, rgba(36, 123, 255, 0.13), transparent 32%);
  border: 1px solid rgba(211, 214, 224, 0.56);
}

blockquote {
  margin: 0;
  padding: 38px 42px;
  background: rgba(255, 255, 255, 0.72);
}

blockquote > span {
  display: block;
  height: 42px;
  color: var(--brand-blue);
  font-size: var(--font-size-76);
  line-height: 0.7;
  font-weight: 800;
}

blockquote p {
  max-width: 455px;
  margin-bottom: 32px;
  color: #142d52;
  font-size: var(--font-size-27);
  line-height: 1.25;
  font-weight: 800;
}

blockquote footer {
  position: relative;
  padding-left: 52px;
  color: var(--brand-navy);
}

blockquote footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 32px;
  height: 2px;
  background: var(--brand-blue);
}

blockquote strong,
blockquote small {
  display: block;
}

blockquote strong {
  color: var(--brand-blue);
  font-size: var(--text-attribution);
}

blockquote small {
  color: #55667b;
  font-size: var(--text-label);
  font-weight: 700;
}

.truth {
  padding: 48px 44px;
}

.truth h2 {
  max-width: 510px;
  margin-bottom: 44px;
  font-size: var(--font-size-32);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.stat-grid strong {
  display: block;
  margin-bottom: 3px;
  color: #102a50;
  font-size: var(--font-size-30);
  line-height: 1.12;
  font-weight: 800;
}

.stat-grid p {
  margin: 0;
  color: #58687e;
  font-size: var(--text-attribution);
  line-height: 1.45;
  font-weight: 700;
}

.cta-panel {
  min-height: 200px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  padding: 38px 43px;
  color: var(--white);
  border-radius: 8px;
  background:
    radial-gradient(circle at 85% 14%, rgba(255, 255, 255, 0.18), transparent 18%),
    radial-gradient(circle at 62% 132%, rgba(16, 42, 80, 0.56), transparent 32%),
    linear-gradient(135deg, #1879ff 0%, #0358d4 52%, #003a9b 100%);
  box-shadow: 0 18px 42px rgba(0, 63, 160, 0.24);
}

.cta-panel h2 {
  max-width: 620px;
  margin-bottom: 11px;
  color: var(--white);
  font-size: var(--text-cta-title);
  line-height: 1.08;
}

.cta-panel p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--text-body-md);
  line-height: 1.6;
  font-weight: 600;
}

.cta-actions {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.cta-actions > a:not(.button) {
  color: var(--white);
  font-size: var(--text-attribution);
  font-weight: 800;
}

.site-footer {
  margin-top: 72px;
  background: #fbfdff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 0.8fr 1.05fr;
  gap: 42px;
  padding: 18px 0 34px;
}

.footer-brand img {
  width: 176px;
  margin-bottom: 18px;
}

.footer-brand p,
.footer-card p {
  max-width: 230px;
  margin-bottom: 20px;
  color: #5d6d82;
  font-size: var(--text-attribution);
  line-height: 1.7;
  font-weight: 700;
}

.footer-brand p a {
  color: var(--brand-blue);
  font-weight: 800;
}

.footer-grid h3 {
  margin: 0 0 18px;
  color: #253b59;
  font-size: var(--text-label);
}

.footer-grid div:not(.footer-brand):not(.footer-card) a {
  display: block;
  margin-bottom: 10px;
  color: #5b6a7f;
  font-size: var(--text-attribution);
  font-weight: 700;
}

.footer-card {
  padding: 24px;
  border: 1px solid rgba(211, 214, 224, 0.72);
  border-radius: 8px;
  background: #f6f9fd;
}

.footer-card p {
  margin-bottom: 18px;
}

.footer-card a {
  color: var(--brand-blue);
  font-size: var(--text-attribution);
  font-weight: 800;
}

.footer-bottom {
  min-height: 48px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  border-top: 1px solid rgba(211, 214, 224, 0.72);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: #64758b;
  font-size: var(--font-size-13);
  font-weight: 700;
}

.footer-bottom nav {
  display: flex;
  gap: 34px;
}

@media (max-width: 1120px) {
  .hero-grid,
  .platform-panel,
  .problem-panel-media,
  .problem-panel-media-reverse,
  .impact-panel,
  .case-panel {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    padding-top: 0;
  }

  .dashboard-shell {
    max-width: 760px;
    margin-inline: auto;
  }

  .hero-photo-card {
    max-width: 760px;
    margin-inline: auto;
  }

  .hero-summary {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .case-media {
    padding: 0 24px 24px;
  }

  .case-video {
    border-radius: 8px;
  }

  .impact-panel {
    gap: 0;
  }

  .impact-photo {
    border-radius: 8px 8px 0 0;
  }

  .impact-photo img {
    min-height: 320px;
  }

  .impact-copy {
    padding: 24px;
  }

  .problem-panel {
    max-width: 760px;
  }

  .problem-media {
    order: -1;
  }

  .card-grid.four,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .hero-slide-extended,
  .hero-dot-extended {
    display: none;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  .section-pad {
    padding: 54px 0;
  }

  .nav-shell {
    min-height: 74px;
    grid-template-columns: 154px 1fr auto;
  }

  .brand img {
    width: 150px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 5px;
    justify-self: end;
    border: 1px solid rgba(211, 214, 224, 0.8);
    border-radius: 7px;
    background: var(--white);
  }

  .nav-toggle span:not(.sr-only) {
    width: 19px;
    height: 2px;
    background: var(--brand-navy);
    border-radius: 999px;
  }

  .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 84px;
    display: none;
    padding: 20px;
    flex-direction: column;
    gap: 18px;
    background: var(--white);
    border: 1px solid rgba(211, 214, 224, 0.8);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  h1 {
    font-size: var(--font-size-43);
  }

  h2,
  .truth h2 {
    font-size: var(--font-size-29);
  }

  .hero {
    padding-top: 32px;
  }

  .proof-row,
  .card-grid.three,
  .card-grid.four,
  .step-grid,
  .impact-panel,
  .case-panel,
  .confidence-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .action-row {
    margin-bottom: 38px;
  }

  .hero-carousel {
    gap: 24px;
  }

  .hero-carousel-nav {
    order: 2;
  }

  .hero-summary,
  .cta-panel {
    padding: 24px;
  }

  .dashboard-shell {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .dashboard-sidebar {
    display: none;
  }

  .dashboard-main {
    padding: 14px;
  }

  .hero-photo-card,
  .hero-photo-placeholder {
    min-height: 360px;
  }

  .hero-photo-card {
    height: 360px;
  }

  .dash-topbar {
    grid-template-columns: 105px 1fr auto;
  }

  .dash-topbar .live-pill,
  .dash-topbar .pause-button {
    display: none;
  }

  .speaker-grid,
  .metric-grid,
  .devices-card ul,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .speaker-card h2 {
    font-size: var(--font-size-25);
  }

  .platform-panel {
    min-height: auto;
    padding: 36px 22px;
  }

  .problem-panel,
  .case-copy {
    padding: 30px 24px;
  }

  .impact-copy {
    padding: 22px;
  }

  .impact-photo img {
    min-height: 260px;
  }

  .quote-strip {
    padding: 0;
  }

  .quote-strip-card {
    grid-template-columns: 1fr;
  }

  .quote-strip p {
    font-size: var(--text-quote);
  }

  .flow-mark {
    margin-top: 26px;
  }

  .feature-list article {
    grid-template-columns: 1fr;
  }

  .feature-list i {
    display: none;
  }

  .timeline {
    display: none;
  }

  .step-grid {
    gap: 28px;
  }

  .step-icon {
    margin-bottom: 14px;
  }

  blockquote,
  .truth,
  .hero-summary.cta-panel,
  .cta-panel {
    padding: 30px 24px;
  }

  blockquote p {
    font-size: var(--text-quote);
  }

  .hero-summary.cta-panel h2,
  .cta-panel h2 {
    font-size: var(--font-size-32);
  }

  .cta-actions {
    justify-items: start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }
}

@media (max-width: 520px) {
  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  h1 {
    font-size: var(--font-size-40);
  }

  .hero-text {
    font-size: var(--text-body-md);
  }

  .info-card {
    min-height: auto;
  }

  .dashboard-main {
    margin-inline: -4px;
  }

  .dash-topbar {
    grid-template-columns: 92px 1fr 24px;
    gap: 8px;
  }

  .dash-topbar img {
    width: 88px;
  }

  .event-meta strong {
    font-size: var(--text-meta);
  }

  .event-meta span {
    font-size: var(--font-size-10);
  }

  .speaker-card,
  .metric-grid article,
  .devices-card {
    padding: 16px;
  }

  .platform-panel {
    margin-inline: 0;
  }
}
