:root,
:root[data-theme="dark"] {
  --ovation-ink: #101214;
  --ovation-ink-2: #171a1d;
  --ovation-paper: #f7f3ea;
  --ovation-paper-soft: #e9f5f1;
  --ovation-text: #f7f3ea;
  --ovation-text-muted: rgba(247, 243, 234, 0.72);
  --ovation-text-dim: rgba(247, 243, 234, 0.56);
  --ovation-green: #9ee493;
  --ovation-gold: #ffcf5a;
  --ovation-coral: #ff7f6e;
  --ovation-border: rgba(247, 243, 234, 0.14);
  --ovation-border-strong: rgba(247, 243, 234, 0.26);
  --ovation-panel-solid: #171a1d;
  --ovation-glass: rgba(16, 18, 20, 0.72);
  --ovation-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --ovation-shadow-soft: 0 18px 60px rgba(16, 18, 20, 0.16);
  --ovation-header-height: 76px;
  --ovation-radius-sm: 6px;
  --ovation-radius-md: 8px;
  --ovation-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ovation-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ovation-motion-fast: 180ms var(--ovation-ease);
  --ovation-motion: 320ms var(--ovation-ease);
  --ovation-motion-pane: 1500ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ovation-ink);
  color: var(--ovation-paper);
  font-family: var(--ovation-font);
}

a {
  color: inherit;
}

.marketing-site {
  min-height: 100vh;
  background: var(--ovation-ink);
  color: var(--ovation-paper);
}

.marketing-hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 48px;
  align-items: center;
  padding: 112px clamp(20px, 5vw, 72px) 56px;
}

.marketing-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.marketing-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 18, 20, 0.96) 0%, rgba(16, 18, 20, 0.82) 45%, rgba(16, 18, 20, 0.68) 100%),
    linear-gradient(180deg, rgba(16, 18, 20, 0.3) 0%, #101214 100%);
}

.marketing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--ovation-header-height);
  padding: 18px clamp(20px, 5vw, 72px);
  background: var(--ovation-glass);
  border-bottom: 1px solid var(--ovation-border);
  backdrop-filter: blur(16px);
}

.marketing-nav__brand {
  display: grid;
  gap: 2px;
  text-decoration: none;
  color: var(--ovation-paper);
  line-height: 1;
}

.marketing-nav__brand span {
  font-size: 22px;
  font-weight: 800;
}

.marketing-nav__brand small {
  color: var(--ovation-green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.marketing-nav nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.marketing-nav nav a,
.marketing-hero__actions a,
.marketing-cta a {
  color: #f7f3ea;
  text-decoration: none;
}

.marketing-nav nav a {
  padding: 9px 12px;
  border-radius: var(--ovation-radius-sm);
  color: rgba(247, 243, 234, 0.82);
  font-size: 14px;
  font-weight: 700;
  transition: background var(--ovation-motion-fast), color var(--ovation-motion-fast), transform var(--ovation-motion-fast);
}

.marketing-nav nav a:hover {
  background: rgba(247, 243, 234, 0.1);
  color: #ffffff;
  transform: translateY(-1px);
}

.marketing-nav nav a:last-child {
  background: var(--ovation-paper);
  color: var(--ovation-ink);
}

.marketing-hero__content,
.marketing-console {
  position: relative;
  z-index: 1;
}

.marketing-kicker,
.marketing-section-heading p {
  margin: 0 0 14px;
  color: var(--ovation-green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.marketing-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(48px, 7.2vw, 92px);
  line-height: 0.93;
  letter-spacing: 0;
  animation: ovation-pane-enter var(--ovation-motion-pane);
}

.marketing-hero__content > p:not(.marketing-kicker) {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(247, 243, 234, 0.78);
  font-size: 20px;
  line-height: 1.55;
}

.marketing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.marketing-hero__actions a,
.marketing-cta a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: var(--ovation-radius-sm);
  font-weight: 800;
  transition: background var(--ovation-motion-fast), border-color var(--ovation-motion-fast), transform var(--ovation-motion-fast);
}

.marketing-hero__actions a:hover,
.marketing-cta a:hover {
  transform: translateY(-2px);
}

.marketing-hero__actions a:first-child,
.marketing-cta a:first-child {
  background: var(--ovation-gold);
  color: #18120a;
}

.marketing-hero__actions a:last-child,
.marketing-cta a:last-child {
  border: 1px solid rgba(247, 243, 234, 0.34);
  background: rgba(247, 243, 234, 0.08);
}

.marketing-console {
  align-self: end;
  margin-bottom: 24px;
  border: 1px solid var(--ovation-border-strong);
  border-radius: var(--ovation-radius-md);
  background: rgba(18, 22, 24, 0.82);
  box-shadow: var(--ovation-shadow);
  overflow: hidden;
  backdrop-filter: blur(18px);
  animation: ovation-pane-enter var(--ovation-motion-pane);
}

.marketing-console__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-bottom: 1px solid rgba(247, 243, 234, 0.12);
  color: rgba(247, 243, 234, 0.72);
  font-size: 13px;
}

.marketing-console__top strong {
  color: #9ee493;
  text-align: right;
}

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

.marketing-console__grid div {
  min-height: 122px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 18px;
  border-right: 1px solid rgba(247, 243, 234, 0.1);
  border-bottom: 1px solid rgba(247, 243, 234, 0.1);
}

.marketing-console__grid small {
  color: rgba(247, 243, 234, 0.56);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.marketing-console__grid strong {
  color: #ffffff;
  font-size: 19px;
  line-height: 1.2;
}

.marketing-band,
.marketing-workflow,
.marketing-live,
.marketing-cta {
  padding: 86px clamp(20px, 5vw, 72px);
  animation: ovation-pane-enter var(--ovation-motion-pane);
}

.marketing-band {
  background: var(--ovation-paper);
  color: var(--ovation-ink);
}

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

.marketing-section-heading h2,
.marketing-live h2,
.marketing-cta h2 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.marketing-capabilities {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(16, 18, 20, 0.14);
  border: 1px solid rgba(16, 18, 20, 0.14);
}

.marketing-capabilities article {
  min-height: 260px;
  padding: 24px;
  background: #f7f3ea;
}

.marketing-capabilities h3 {
  margin: 0 0 18px;
  color: #101214;
  font-size: 22px;
}

.marketing-capabilities p,
.marketing-live p {
  margin: 0;
  color: rgba(16, 18, 20, 0.72);
  font-size: 16px;
  line-height: 1.62;
}

.marketing-workflow {
  background: var(--ovation-ink);
}

.marketing-workflow ol {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: workflow;
}

.marketing-workflow li {
  min-height: 174px;
  position: relative;
  padding: 22px;
  border: 1px solid var(--ovation-border);
  border-radius: var(--ovation-radius-md);
  background: var(--ovation-panel-solid);
  transition: border-color var(--ovation-motion), transform var(--ovation-motion), box-shadow var(--ovation-motion);
  counter-increment: workflow;
}

.marketing-workflow li::before {
  content: "0" counter(workflow);
  display: block;
  margin-bottom: 42px;
  color: var(--ovation-coral);
  font-weight: 900;
}

.marketing-workflow li span {
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.18;
}

.marketing-live {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  gap: 42px;
  align-items: center;
  background: var(--ovation-paper-soft);
  color: var(--ovation-ink);
}

.marketing-live > div:first-child {
  max-width: 620px;
}

.marketing-live p:not(.marketing-kicker) {
  margin-top: 22px;
  font-size: 18px;
}

.marketing-live__surface {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(160px, 1fr);
  gap: 12px;
}

.marketing-panel {
  min-height: 170px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  border-radius: var(--ovation-radius-md);
  color: #ffffff;
  background: #101214;
  box-shadow: var(--ovation-shadow-soft);
  transition: transform var(--ovation-motion), box-shadow var(--ovation-motion);
}

.marketing-panel:hover,
.marketing-workflow li:hover {
  transform: translateY(-3px);
  box-shadow: var(--ovation-shadow);
}

.marketing-panel span {
  max-width: 220px;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.05;
}

.marketing-panel--1 {
  background: linear-gradient(135deg, #101214, #006d77);
}

.marketing-panel--2 {
  background: linear-gradient(135deg, #231942, #ff7f6e);
}

.marketing-panel--3 {
  background: linear-gradient(135deg, #183a37, #9ee493);
  color: #101214;
}

.marketing-panel--4 {
  background: linear-gradient(135deg, #3d2c16, #ffcf5a);
  color: #101214;
}

.marketing-cta {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  background: var(--ovation-ink);
  border-top: 1px solid var(--ovation-border);
}

.marketing-cta h2 {
  max-width: 900px;
  color: #ffffff;
}

.marketing-cta div {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

@keyframes ovation-pane-enter {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1080px) {
  .marketing-hero,
  .marketing-live {
    grid-template-columns: 1fr;
  }

  .marketing-console {
    align-self: auto;
    margin-bottom: 0;
  }

  .marketing-capabilities,
  .marketing-workflow ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .marketing-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .marketing-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .marketing-nav nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .marketing-hero {
    padding-top: 148px;
  }

  .marketing-hero h1 {
    font-size: 44px;
  }

  .marketing-hero__content > p:not(.marketing-kicker) {
    font-size: 17px;
  }

  .marketing-console__grid,
  .marketing-capabilities,
  .marketing-workflow ol,
  .marketing-live__surface {
    grid-template-columns: 1fr;
  }

  .marketing-band,
  .marketing-workflow,
  .marketing-live,
  .marketing-cta {
    padding-block: 64px;
  }
}

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