:root {
  color-scheme: dark;
  --ink: #f8f7ff;
  --muted: #bdb2d2;
  --soft: #eee8fb;
  --line: rgba(255, 255, 255, 0.13);
  --paper: #0c0714;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.095);
  --purple: #781b9d;
  --purple-bright: #b744d8;
  --orange: #f0643f;
  --blue: #0073ff;
  --cyan: #21b7ff;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #0c0714 0%, #12081d 42%, #0d0b16 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
  padding: 10px clamp(18px, 5vw, 64px);
  background: rgba(12, 7, 20, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 310px;
  min-width: 260px;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 86px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--ink);
}

.nav-action {
  color: var(--ink);
}

.prepack-nav-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 12px;
  color: var(--ink);
  border: 1px solid rgba(183, 68, 216, 0.55);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.anchor-target {
  scroll-margin-top: 116px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-button span {
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 122px clamp(22px, 6vw, 78px) 100px;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183, 68, 216, 0.8), rgba(0, 115, 255, 0.7), transparent);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  opacity: 0.42;
  z-index: -3;
}

.hero-video {
  filter: saturate(0.92) contrast(1.04);
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(12, 7, 20, 0.98) 0%, rgba(12, 7, 20, 0.9) 43%, rgba(12, 7, 20, 0.36) 78%),
    linear-gradient(180deg, rgba(12, 7, 20, 0.44), rgba(12, 7, 20, 1));
}

.hero-content {
  width: min(820px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(58px, 8vw, 110px);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 18px 0 10px;
  font-size: 21px;
  line-height: 1.16;
}

.hero-copy {
  max-width: 780px;
  margin: 28px 0 0;
  color: var(--soft);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.18;
  font-weight: 720;
}

.hero-subcopy {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 21px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 19px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 820;
  line-height: 1.1;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--purple) 58%, var(--blue));
  box-shadow: 0 18px 46px rgba(120, 27, 157, 0.36);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--line);
}

.section {
  position: relative;
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 92px 0;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183, 68, 216, 0.78), rgba(0, 115, 255, 0.68), transparent);
}

.intro-section,
.outcome-section,
.split-section,
.infra-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: start;
}

.section-heading.compact {
  max-width: 780px;
  margin-bottom: 36px;
}

.intro-copy,
.outcome-copy,
.plain-panel,
.infra-section p,
.contact-section p {
  color: var(--muted);
  font-size: 19px;
}

.intro-copy p,
.outcome-copy p,
.plain-panel p,
.contact-section p {
  margin: 0 0 18px;
}

.systems-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
}

.systems-copy h2 {
  max-width: 680px;
  margin-bottom: 14px;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.05;
}

.systems-intro {
  max-width: 720px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
}

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

.systems-card {
  padding: 13px 15px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.systems-card h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.systems-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.42;
}

.systems-visual {
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(240, 100, 63, 0.16), rgba(120, 27, 157, 0.2), rgba(0, 115, 255, 0.14)),
    rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.systems-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.section-video {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  opacity: 0.82;
}

.operations-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
}

.operations-section p,
.audience-section p,
.process-grid p {
  color: var(--muted);
  font-size: 16px;
}

.operations-section h2,
.audience-section h2 {
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.05;
}

.operations-visual {
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(240, 100, 63, 0.16), rgba(120, 27, 157, 0.2), rgba(0, 115, 255, 0.14)),
    rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.operations-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.workflow-section {
  width: min(1220px, calc(100% - 44px));
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  min-height: 252px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.wide-card {
  grid-column: span 2;
  min-height: 190px;
}

.feature-icon {
  display: inline-flex;
  min-width: 46px;
  height: 32px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, rgba(240, 100, 63, 0.9), rgba(120, 27, 157, 0.9));
  border-radius: 8px;
  font-weight: 860;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.outcome-section,
.infra-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.automation-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.automation-panel {
  min-height: 300px;
  padding: clamp(22px, 3vw, 34px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.automation-panel p {
  color: var(--muted);
  font-size: 16px;
}

.quote-line {
  color: var(--soft) !important;
  font-weight: 820;
}

.automation-panel h2,
.contact-section h2 {
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.08;
}

.dark-panel {
  background:
    linear-gradient(145deg, rgba(120, 27, 157, 0.32), rgba(0, 115, 255, 0.18)),
    rgba(255, 255, 255, 0.04);
}

.plain-panel {
  align-self: stretch;
}

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

.metric-list div {
  display: grid;
  gap: 4px;
  padding: 20px 0 20px 24px;
  border-left: 4px solid var(--orange);
}

.metric-list div:nth-child(2) {
  border-left-color: var(--purple-bright);
}

.metric-list div:nth-child(3) {
  border-left-color: var(--blue);
}

.metric-list strong {
  font-size: 20px;
}

.metric-list span {
  color: var(--muted);
  font-size: 17px;
}

.prepack-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
}

.prepack-copy {
  color: var(--muted);
  font-size: 19px;
}

.prepack-copy p {
  margin: 0 0 18px;
}

.prepack-proof {
  color: var(--soft);
  font-weight: 760;
}

.prepack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.prepack-tags span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 11px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 760;
}

.prepack-slider {
  position: relative;
  overflow: hidden;
  padding: 12px;
  background:
    linear-gradient(145deg, rgba(240, 100, 63, 0.16), rgba(120, 27, 157, 0.2), rgba(0, 115, 255, 0.14)),
    rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.slide-track {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.28);
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  margin: 0;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 420ms ease, transform 420ms ease;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.slide img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: top center;
}

.slide figcaption {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  color: var(--soft);
  background: rgba(12, 7, 20, 0.88);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 9px;
  padding: 14px 0 2px;
}

.slider-dot {
  width: 38px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
}

.slider-dot.active {
  background: linear-gradient(90deg, var(--orange), var(--purple-bright), var(--blue));
}

.audience-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(360px, 1.16fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.audience-copy p {
  margin-bottom: 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.audience-grid span {
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 12px;
  color: var(--soft);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 740;
}

.process-section {
  border-top: 1px solid var(--line);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.process-grid article {
  padding: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--soft);
  font-size: 18px;
}

.process-grid p {
  margin: 0;
  font-size: 15px;
}

.about-section {
  border-top: 1px solid var(--line);
  scroll-margin-top: 116px;
  text-align: center;
}

.about-heading {
  max-width: 860px;
  margin: 0 auto 28px;
}

.about-heading h2 {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.05;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: stretch;
}

.about-copy-stack {
  display: grid;
  gap: 12px;
  align-content: stretch;
}

.about-card {
  padding: clamp(16px, 2vw, 22px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: left;
}

.about-card h3 {
  margin: 0 0 6px;
  font-size: 21px;
  line-height: 1.1;
}

.about-role {
  margin: 0 0 16px;
  color: var(--soft);
  font-size: 14px;
  font-weight: 800;
}

.about-card p:not(.about-role),
.about-closing {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.48;
}

.about-card p:not(.about-role) {
  margin: 0;
}

.about-closing {
  margin: 0;
  padding: 16px 18px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: left;
}

.about-photo {
  margin: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.infra-section p {
  margin: 0;
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: center;
  width: 100%;
  margin: 30px 0 0;
  padding: 64px max(clamp(22px, 5vw, 64px), calc((100vw - 1180px) / 2)) 68px;
  background:
    linear-gradient(90deg, rgba(12, 7, 20, 0.98) 0%, rgba(12, 7, 20, 0.9) 43%, rgba(12, 7, 20, 0.36) 78%),
    linear-gradient(180deg, #0c0714 0%, #12081d 55%, #0d0b16 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.contact-section::before,
.contact-section::after {
  content: "";
  position: absolute;
  left: clamp(18px, 4vw, 48px);
  right: clamp(18px, 4vw, 48px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183, 68, 216, 0.78), rgba(0, 115, 255, 0.68), transparent);
}

.contact-section::before {
  top: 22px;
}

.contact-section::after {
  bottom: 22px;
}

.contact-copy {
  width: min(760px, 100%);
}

.contact-visual {
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(240, 100, 63, 0.16), rgba(120, 27, 157, 0.2), rgba(0, 115, 255, 0.14)),
    rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-section .eyebrow,
.contact-section p {
  color: var(--soft);
}

.contact-section .button.primary {
  color: var(--soft);
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--line);
  box-shadow: none;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 28px clamp(22px, 5vw, 64px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-logo {
  width: 118px;
  max-height: 72px;
  object-fit: contain;
}

@media (max-width: 980px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 82px;
  }

  .menu-button {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 22px 18px;
    background: rgba(12, 7, 20, 0.98);
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav a {
    padding: 14px 0;
  }

  .hero {
    min-height: 90vh;
    padding-top: 104px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(12, 7, 20, 0.98) 0%, rgba(12, 7, 20, 0.9) 62%, rgba(12, 7, 20, 0.54) 100%),
      linear-gradient(180deg, rgba(12, 7, 20, 0.5), rgba(12, 7, 20, 1));
  }

  .intro-section,
  .outcome-section,
  .split-section,
  .infra-section,
  .contact-section,
  .automation-section,
  .prepack-showcase,
  .systems-section,
  .operations-section,
  .audience-section,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-photo {
    order: -1;
  }

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

@media (max-width: 620px) {
  .brand {
    width: 224px;
    min-width: 190px;
  }

  .hero {
    min-height: 88vh;
    padding: 96px 22px 78px;
  }

  h1 {
    font-size: clamp(48px, 16vw, 64px);
  }

  .section {
    width: calc(100% - 32px);
    padding: 66px 0;
  }

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

  .wide-card {
    grid-column: span 1;
  }

  .feature-card {
    min-height: 210px;
  }

  .audience-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .slide-track {
    aspect-ratio: 4 / 3;
  }

  .slide figcaption {
    min-height: 72px;
    font-size: 13px;
  }

  .automation-panel h2,
  .contact-section h2 {
    font-size: 27px;
  }

  .button {
    width: 100%;
  }

  .contact-section {
    width: 100%;
    padding: 54px 20px;
  }

  .contact-section::before,
  .contact-section::after {
    left: 20px;
    right: 20px;
  }

  .site-footer {
    justify-content: center;
    text-align: center;
  }

  .footer-logo {
    order: -1;
    width: 140px;
  }
}
