:root {
  --ink: #0e1a24;
  --ink-2: #273848;
  --muted: #657485;
  --navy: #081725;
  --navy-2: #0f2435;
  --paper: #f5f7fa;
  --paper-2: #ffffff;
  --mist: #edf3f7;
  --line: #dce4ea;
  --teal: #2faaa2;
  --teal-dark: #167f78;
  --gold: #c8a75d;
  --coral: #c96a5b;
  --shadow: 0 22px 70px rgba(14, 26, 36, 0.12);
  --shadow-soft: 0 14px 44px rgba(14, 26, 36, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 17px;
  line-height: 1.66;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--teal-dark);
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(63, 159, 149, 0.38);
  outline-offset: 3px;
}

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

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

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 20;
  transform: translateY(-150%);
  border-radius: 4px;
  background: var(--paper-2);
  color: var(--navy);
  font-weight: 800;
  padding: 10px 14px;
}

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

.shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  color: #fff;
}

.header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: auto;
  height: 62px;
  max-width: min(276px, 62vw);
}

.image-cta {
  display: block;
  color: inherit;
  text-decoration: none;
}

.image-cta:focus-visible {
  outline: 3px solid rgba(47, 170, 162, 0.6);
  outline-offset: -5px;
}

.header-topic {
  display: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.sponsor-pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 6px 12px;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy);
}

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

.hero-image {
  z-index: -3;
  background-image: url("/assets/hero-virtual-screens.jpg");
  background-position: 70% center;
  background-size: cover;
  opacity: 0.88;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, var(--navy) 0%, rgba(8, 23, 37, 0.98) 32%, rgba(8, 23, 37, 0.74) 58%, rgba(8, 23, 37, 0.28) 100%),
    linear-gradient(0deg, rgba(8, 23, 37, 0.96) 0%, rgba(8, 23, 37, 0) 42%);
}

.hero-content {
  padding: 128px 0 78px;
  color: #fff;
}

.eyebrow,
.section-label,
.signal-grid span {
  display: inline-flex;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 16px;
}

h1 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: 2.9rem;
  line-height: 1.04;
}

.hero-subhead {
  max-width: 740px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.hero-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
  margin: 0 0 28px;
}

.hero-stack span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  padding: 7px 12px;
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}

.cta-row.compact {
  margin-top: 20px;
}

.section-cta {
  max-width: 360px;
  margin-right: auto;
  margin-left: auto;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--teal);
  color: #fff;
  font-weight: 850;
  line-height: 1.18;
  padding: 14px 18px;
  text-align: center;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.button:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.cta-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.signal-band {
  background: var(--navy-2);
  color: #fff;
}

.signal-grid {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.signal-grid div {
  min-height: 104px;
  background: var(--navy-2);
  padding: 18px 0;
}

.signal-grid strong {
  display: block;
  margin-top: 8px;
  max-width: 260px;
  font-size: 1.04rem;
  line-height: 1.25;
}

.credential-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.credential-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  padding: 14px 0;
  color: var(--ink-2);
  font-size: 0.86rem;
  font-weight: 760;
}

.credential-strip-inner > span:first-child {
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.credential-strip a,
.credential-panel a {
  color: var(--teal-dark);
  font-weight: 850;
}

main {
  background: var(--paper);
}

.article-intro,
.feature-story,
.motion-section,
.product-section,
.thesis-section,
.offering-section,
.image-break,
.faq-section,
.final-section {
  padding: 54px 0;
}

.intro-grid,
.story-grid,
.motion-grid,
.thesis-grid,
.offering-grid,
.faq-grid {
  display: grid;
  gap: 28px;
}

.section-label {
  color: var(--teal-dark);
  margin-bottom: 12px;
}

h2 {
  margin-bottom: 16px;
  font-size: 2rem;
  line-height: 1.08;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.intro-copy p,
.story-copy p,
.motion-copy p,
.offering-copy p,
.thesis-grid p,
.product-card p,
.faq-list p,
.final-inner p {
  color: var(--ink-2);
}

.story-image,
.image-break figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-2);
  box-shadow: var(--shadow);
}

.story-image img,
.image-break img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 180ms ease;
}

.image-cta:hover img {
  transform: scale(1.015);
}

.story-image figcaption,
.image-break figcaption {
  color: var(--muted);
  font-size: 0.86rem;
  padding: 12px 14px;
}

.credential-panel {
  margin: 20px 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfc;
  padding: 18px;
}

.credential-panel h3 {
  margin-bottom: 8px;
}

.credential-panel p {
  margin-bottom: 14px;
  color: var(--ink-2);
}

.credential-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.credential-list div {
  display: grid;
  gap: 3px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.credential-list dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.credential-list dd {
  color: var(--ink-2);
  font-weight: 760;
}

.motion-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--paper) 0%, #eef5f7 100%);
}

.motion-grid {
  align-items: center;
}

.motion-copy {
  max-width: 660px;
}

.motion-points {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.motion-points li {
  position: relative;
  min-height: 34px;
  padding-left: 40px;
  color: var(--ink-2);
  font-weight: 750;
}

.motion-points li::before {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  content: "";
  box-shadow: 0 8px 22px rgba(63, 159, 149, 0.25);
}

.motion-points li::after {
  position: absolute;
  left: 9px;
  top: 7px;
  width: 8px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: "";
  transform: rotate(42deg);
}

.motion-figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(8, 23, 37, 0.14);
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.product-video-embed {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.motion-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.product-section,
.faq-section {
  background: var(--paper-2);
  border-block: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.product-grid {
  display: grid;
  gap: 14px;
}

.product-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-2);
  padding: 20px;
}

.product-card {
  position: relative;
  overflow: hidden;
}

.product-card::before {
  display: block;
  width: 42px;
  height: 3px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--teal);
  content: "";
}

.product-card:nth-child(2)::before {
  background: var(--gold);
}

.product-card:nth-child(3)::before {
  background: var(--coral);
}

.product-card span {
  display: inline-flex;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.thesis-section {
  background: var(--mist);
}

.offering-section {
  background: var(--navy);
  color: #fff;
}

.offering-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.offering-section .section-label {
  color: var(--gold);
}

.offering-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: var(--paper-2);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  background: #f2f5f8;
  padding: 16px 18px;
}

.panel-header span {
  font-weight: 850;
}

.panel-header a {
  font-size: 0.9rem;
  font-weight: 750;
}

.fact-list {
  display: grid;
  margin: 0;
}

.fact-list div {
  border-bottom: 1px solid var(--line);
  padding: 16px 18px;
}

.fact-list dt {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.fact-list dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 850;
}

.source-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  padding: 16px 18px 0;
}

.offering-panel .cta-row {
  padding: 0 18px 18px;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-2);
  padding: 15px 16px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}

.faq-list p {
  margin: 10px 0 0;
}

.final-section {
  background: var(--navy);
  color: #fff;
}

.final-inner {
  max-width: 830px;
  margin: 0 auto;
  text-align: left;
}

.final-section .section-label {
  color: var(--gold);
}

.final-inner p {
  color: rgba(255, 255, 255, 0.78);
}

.final-inner .cta-row {
  margin-top: 24px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #eef2f5;
  padding: 34px 0;
}

.footer-grid {
  display: grid;
  gap: 20px;
}

.footer-grid h2 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.footer-grid p,
.copyright {
  color: var(--muted);
  font-size: 0.88rem;
}

.copyright {
  margin: 24px 0 0;
}

.sticky-cta-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30;
  transform: translateY(110%);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(13, 15, 18, 0.96);
  color: #fff;
  box-shadow: 0 -18px 50px rgba(0, 0, 0, 0.24);
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.sticky-cta-bar.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

body.has-sticky-cta {
  padding-bottom: 132px;
}

.sticky-cta-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
  width: min(760px, calc(100% - 24px));
  min-height: 72px;
  align-items: center;
  margin: 0 auto;
  padding: 12px 0;
  text-align: center;
}

.sticky-cta-inner p {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 6px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 780;
  line-height: 1.25;
}

.sticky-cta-inner strong {
  color: #d5a51f;
  font-weight: 900;
}

.sticky-cta-inner span {
  display: inline-block;
}

.sticky-cta-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #c99308;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0;
  padding: 12px 22px;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.sticky-cta-button:hover {
  background: #d8a216;
}

@media (min-width: 640px) {
  .cta-row {
    flex-direction: row;
    align-items: center;
  }

  .button {
    min-width: 230px;
  }

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

  .signal-grid div {
    padding: 18px;
  }

  .fact-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .fact-list div:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .fact-list div:last-child:nth-child(odd) {
    border-right: 0;
  }

  body.has-sticky-cta {
    padding-bottom: 86px;
  }
}

@media (min-width: 900px) {
  .header-topic {
    display: block;
  }

  .hero {
    min-height: 780px;
  }

  .hero-content {
    padding-top: 154px;
  }

  h1 {
    font-size: 4.45rem;
  }

  .hero-subhead {
    font-size: 1.2rem;
  }

  h2 {
    font-size: 2.8rem;
  }

  .article-intro,
  .feature-story,
  .motion-section,
  .product-section,
  .thesis-section,
  .offering-section,
  .image-break,
  .faq-section,
  .final-section {
    padding: 76px 0;
  }

  .intro-grid,
  .thesis-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  .story-grid,
  .motion-grid,
  .offering-grid,
  .faq-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }

  .story-grid {
    grid-template-columns: 1.12fr 0.88fr;
  }

  .story-copy {
    padding-left: 20px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.7fr;
  }
}

@media (max-width: 430px) {
  .brand-logo {
    height: 46px;
    max-width: min(205px, 58vw);
  }

  .hero {
    min-height: 700px;
  }

  .hero-content {
    padding-top: 106px;
    padding-bottom: 48px;
  }

  h1 {
    font-size: 2.32rem;
  }

  .hero-subhead {
    font-size: 1rem;
  }

  .hero-image {
    background-position: 76% center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
