:root {
  --bg: #06111f;
  --bg-soft: #0d1a2e;
  --panel: rgba(10, 21, 38, 0.82);
  --panel-strong: rgba(12, 26, 46, 0.94);
  --line: rgba(173, 199, 235, 0.14);
  --line-strong: rgba(173, 199, 235, 0.24);
  --text: #f3f7ff;
  --muted: #a7b7cf;
  --muted-soft: #c8d4e5;
  --primary: #4f8cff;
  --primary-strong: #2f6de6;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  --container: min(1120px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(79, 140, 255, 0.18), transparent 32%),
    linear-gradient(180deg, #040b15 0%, #091426 45%, #0b1830 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.site-shell::before {
  top: 8rem;
  left: -8rem;
  width: 18rem;
  height: 18rem;
  background: rgba(79, 140, 255, 0.12);
  filter: blur(80px);
}

.site-shell::after {
  top: 22rem;
  right: -7rem;
  width: 16rem;
  height: 16rem;
  background: rgba(125, 180, 255, 0.12);
  filter: blur(90px);
}

.container {
  width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section {
  padding: 5rem 0;
}

main > .section:first-child {
  padding-top: 4.5rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 1rem 0;
  transition: background-color 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.header.scrolled {
  background: rgba(4, 11, 21, 0.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  height: 42px;
  padding: 0 18px;
  border-radius: 14px;
  color: white;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--primary), #7ab6ff);
  box-shadow: 0 18px 42px rgba(79, 140, 255, 0.24);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav a:not(.btn) {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  font-size: 0.96rem;
  transition: color 160ms ease;
}

.nav a:not(.btn):hover,
.footer-links a:hover {
  color: white;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: white;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.92rem 1.28rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

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

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  box-shadow: 0 16px 36px rgba(47, 109, 230, 0.24);
}

.btn-secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.hero {
  padding-top: 4.25rem;
}

.hero-grid,
.split-layout,
.cta-box,
.footer-wrap,
.video-feature {
  display: grid;
  gap: 2rem;
}

.hero-grid,
.split-layout,
.video-feature {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
}

.hero-title,
.section-title,
.cta-title {
  margin: 0 0 1rem;
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  text-align: center;
}

.hero-title {
  font-size: clamp(2.7rem, 5.3vw, 4.55rem);
  max-width: 12ch;
  font-weight: 800;
  margin-inline: auto;
}

.section-title,
.cta-title {
  font-size: clamp(1.85rem, 3.5vw, 2.9rem);
  max-width: 18ch;
  margin-inline: auto;
}

.hero-text,
.section-subtitle,
.section-paragraph,
.cta-text,
.info-card p,
.stat-card span,
.step-card p,
.footer-text {
  color: var(--muted);
  line-height: 1.68;
}

.hero-text {
  max-width: 58ch;
  font-size: 1.02rem;
  margin-inline: auto;
  text-align: center;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #9cc8ff 45%, #4f8cff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  margin-bottom: 1rem;
  padding: 0.7rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #deebff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.04);
}

.section-tag i {
  color: #a9cbff;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.65rem;
  justify-content: center;
}

.stats-grid,
.card-grid,
.metric-grid {
  display: grid;
  gap: 1rem;
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.7rem;
  align-items: stretch;
}

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

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

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

.stat-card,
.info-card,
.step-card,
.number-card,
.content-panel,
.hero-panel,
.cta-box {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.stat-card,
.info-card,
.step-card,
.number-card {
  padding: 1.35rem;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.stat-card strong,
.info-card h3,
.step-card h3 {
  display: block;
  margin: 0 0 0.45rem;
}

.stat-card::before,
.info-card::before,
.step-card::before,
.number-card::before,
.content-panel::before,
.hero-panel::before,
.cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
}

.stat-card strong,
.info-card h3,
.step-card h3,
.number-card strong {
  letter-spacing: -0.02em;
}

.stat-card strong,
.info-card h3,
.step-card h3 {
  font-size: 1.02rem;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
}

.stat-card,
.info-card,
.step-card,
.number-card,
.number-card span,
.stat-card span,
.info-card p,
.step-card p {
  text-align: center;
}

.stat-card,
.info-card,
.step-card,
.number-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.9rem;
  border-radius: 14px;
  color: #eef5ff;
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.24), rgba(122, 182, 255, 0.12));
  border: 1px solid rgba(122, 182, 255, 0.18);
}

.hero-panel,
.content-panel,
.cta-box {
  border-radius: var(--radius-lg);
}

.hero-panel {
  padding: 1.9rem;
  background: linear-gradient(180deg, rgba(14, 28, 48, 0.95), rgba(7, 17, 31, 0.9));
  position: relative;
  overflow: hidden;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto 1.8rem 1.8rem auto;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 140, 255, 0.2), transparent 70%);
  pointer-events: none;
}

.panel-top,
.panel-note,
.metric-grid {
  display: flex;
  align-items: center;
}

.panel-top {
  justify-content: space-between;
  gap: 1rem;
}

.panel-chip,
.panel-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 36px;
  padding: 0 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.panel-chip {
  color: #ecf4ff;
  background: rgba(125, 180, 255, 0.12);
  border: 1px solid rgba(125, 180, 255, 0.18);
}

.panel-status {
  color: #b8cff7;
  background: rgba(255, 255, 255, 0.04);
}

.panel-metric small,
.metric-grid small,
.panel-note span,
.step-card span {
  color: var(--muted);
}

.metric-bars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 0.65rem;
  height: 104px;
}

.metric-bars span {
  border-radius: 999px;
  background: linear-gradient(180deg, #93c4ff, #3876ec);
}

.metric-bars span:nth-child(1) {
  height: 38%;
}

.metric-bars span:nth-child(2) {
  height: 52%;
}

.metric-bars span:nth-child(3) {
  height: 86%;
}

.metric-bars span:nth-child(4) {
  height: 62%;
}

.metric-bars span:nth-child(5) {
  height: 92%;
}

.metric-grid {
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.metric-grid-live {
  margin-top: 1.2rem;
}

.metric-grid article {
  flex: 1;
  padding: 1rem;
  min-width: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.metric-grid article > i {
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: #9fc6ff;
  font-size: 1rem;
}

.metric-grid strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 1.42rem;
  font-variant-numeric: tabular-nums;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
}

.panel-note {
  gap: 0.9rem;
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.panel-note strong,
.panel-note span {
  display: block;
}

.panel-note strong {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.laptop-mockup {
  margin-top: 1.4rem;
}

.laptop-screen {
  position: relative;
  padding: 0.8rem;
  border-radius: 22px 22px 12px 12px;
  background: linear-gradient(180deg, #21344e, #111f33);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

.laptop-screen::before {
  content: "";
  position: absolute;
  top: 0.45rem;
  left: 50%;
  width: 5rem;
  height: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-50%);
}

.laptop-screen img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
}

.laptop-base {
  position: relative;
  width: 92%;
  height: 18px;
  margin: 0 auto;
  border-radius: 0 0 24px 24px;
  background: linear-gradient(180deg, #97aac5, #60748f);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.laptop-base::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 50%;
  width: 18%;
  height: 5px;
  border-radius: 999px;
  background: rgba(18, 29, 46, 0.28);
  transform: translateX(-50%);
}

.section-header {
  margin-bottom: 1.7rem;
}

.section-header.center {
  text-align: center;
}

.section-header.compact {
  margin-bottom: 1.4rem;
}

.section-header.center .section-tag {
  margin-inline: auto;
}

.section-subtitle {
  max-width: 46rem;
  margin: 0 auto;
  font-size: 0.98rem;
  text-align: center;
}

.brands-section {
  padding-top: 1rem;
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 760px;
  margin: 0 auto;
}

.brand-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  color: #d9e6fb;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand-strip a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  color: #d9e6fb;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: border-color 160ms ease, transform 160ms ease, color 160ms ease;
}

.brand-strip a:hover {
  color: white;
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

.showcase-video-section {
  padding-top: 2rem;
}

.video-feature {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(79, 140, 255, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.video-copy,
.video-card {
  min-width: 0;
  grid-column: 1 / -1;
}

.video-copy {
  display: flex;
  justify-content: center;
}

.video-copy .section-tag {
  margin-inline: auto;
  text-align: center;
}

.video-card {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.video-caption {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  margin-top: 1rem;
}

.video-title {
  max-width: 18ch;
  margin-inline: auto;
  margin-bottom: 1.2rem;
  text-align: center;
}

.video-caption strong {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.45rem;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  letter-spacing: -0.02em;
}

.video-caption span {
  color: var(--muted);
  line-height: 1.65;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(10, 21, 38, 0.08), rgba(10, 21, 38, 0.38)),
    #050b14;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
}

.showcase-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #050b14;
  max-height: 560px;
}

.video-shell::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(180deg, transparent, rgba(4, 11, 21, 0.46));
  pointer-events: none;
}

.video-play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: white;
  background: rgba(4, 11, 21, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.32);
  transform: translate(-50%, -50%);
  transition: transform 160ms ease, background-color 160ms ease, opacity 160ms ease;
  cursor: pointer;
}

.video-play-button:hover {
  transform: translate(-50%, -50%) scale(1.02);
  background: rgba(8, 17, 31, 0.88);
}

.video-shell.is-loaded .video-play-button {
  opacity: 0;
  pointer-events: none;
}

.video-play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #7ab6ff);
  box-shadow: 0 14px 28px rgba(79, 140, 255, 0.28);
}

.video-play-icon i {
  font-size: 1.1rem;
}

.video-play-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.video-play-copy strong {
  font-size: 0.95rem;
}

.video-play-copy small {
  color: #b7cae6;
  font-size: 0.78rem;
}

.content-panel {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-copy,
.content-panel,
.section-header,
.cta-box > div:first-child {
  text-wrap: balance;
}

.content-panel .section-title {
  max-width: 14ch;
}

.section-paragraph {
  max-width: 58ch;
  font-size: 0.98rem;
  margin-inline: auto;
}

.icon-badge,
.step-card span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 0.9rem;
  padding: 0 0.8rem;
  border-radius: 16px;
  color: #eff6ff;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.25), rgba(122, 182, 255, 0.12));
  border: 1px solid rgba(122, 182, 255, 0.18);
}

.icon-badge i,
.step-card span:first-child i,
.stat-icon i {
  font-size: 1rem;
}

.info-card h3 a {
  color: inherit;
}

.info-card h3 a:hover {
  color: white;
}

.steps-grid .step-card {
  position: relative;
}

.numbers-section {
  padding-top: 1rem;
}

.number-card {
  text-align: center;
  background: linear-gradient(180deg, rgba(18, 35, 60, 0.9), rgba(10, 21, 38, 0.9));
}

.number-card i {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: #9fc6ff;
  font-size: 1.2rem;
}

.number-card strong {
  display: block;
  margin-bottom: 0.55rem;
  font-size: clamp(2.15rem, 3.6vw, 3.05rem);
  line-height: 1;
  color: white;
  font-variant-numeric: tabular-nums;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
}

.number-card span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.portfolio-grid {
  max-width: 760px;
  margin: 0 auto;
}

.cta-box {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 2rem;
  background:
    radial-gradient(circle at right top, rgba(79, 140, 255, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
}

.footer {
  padding: 0 0 2.5rem;
}

.footer-wrap {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  padding-top: 1rem;
}

.footer-text {
  max-width: 34rem;
  margin: 1rem 0 0;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.1rem;
}

.footer-links a,
.footer-bottom {
  color: var(--muted);
}

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .btn,
  .header {
    transition: none;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .split-layout,
  .cta-box,
  .footer-wrap,
  .video-feature,
  .card-grid-3,
  .card-grid-4,
  .stats-grid,
  .brand-strip {
    grid-template-columns: 1fr;
  }

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

  .metric-grid {
    flex-direction: column;
  }

  .cta-box,
  .footer-wrap,
  .video-copy {
    justify-items: center;
    text-align: center;
  }

  .video-copy .section-tag,
  .video-title,
  .video-play-copy {
    margin-inline: auto;
    text-align: center;
    align-items: center;
  }

  .hero-title,
  .section-title,
  .cta-title {
    max-width: 15ch;
  }

  .hero-text,
  .section-subtitle,
  .section-paragraph,
  .cta-text,
  .footer-text {
    max-width: 60ch;
    margin-inline: auto;
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    background: rgba(4, 11, 21, 0.96);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: inline-block;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 3.9rem 0;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero-title {
    font-size: 2.55rem;
    max-width: 10ch;
  }

  .section-title,
  .cta-title {
    max-width: none;
  }

  .hero-text,
  .section-subtitle,
  .section-paragraph,
  .cta-text,
  .footer-text {
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .brand-strip span {
    min-height: 70px;
  }

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

  .btn,
  .cta-actions .btn,
  .hero-actions .btn {
    width: 100%;
  }

  .container {
    width: min(1120px, calc(100% - 24px));
  }

  .video-feature,
  .hero-panel,
  .content-panel,
  .cta-box {
    padding: 1.35rem;
  }

  .video-play-button {
    width: calc(100% - 28px);
    justify-content: center;
  }

  .showcase-video {
    aspect-ratio: 4 / 5;
    max-height: 480px;
  }

  .video-caption {
    text-align: center;
  }

  .video-caption strong {
    justify-content: center;
  }
}
