:root {
  --bg: #111113;
  --bg-soft: #17171a;
  --panel: #202024;
  --panel-2: #28282d;
  --line: #393940;
  --line-soft: rgba(255, 255, 255, 0.1);
  --text: #f3f2f5;
  --muted: #b8b5be;
  --subtle: #8b8794;
  --accent: #6f32ff;
  --accent-strong: #8b5cff;
  --accent-soft: rgba(111, 50, 255, 0.18);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 38%),
    var(--bg);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(17, 17, 19, 0.84);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 760;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 7px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2.4vw, 32px);
  color: var(--muted);
  font-size: 14px;
}

.nav-links a,
.site-footer a {
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--text);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 7px;
  font-weight: 720;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.header-cta {
  padding: 0 18px;
  background: var(--accent);
  color: white;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(100svh - 72px);
  overflow: hidden;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(0.82) contrast(1.05);
  transform: scale(1.02);
  animation: slowDrift 18s ease-in-out infinite alternate;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(17, 17, 19, 0.96) 0%, rgba(17, 17, 19, 0.86) 34%, rgba(17, 17, 19, 0.32) 68%, rgba(17, 17, 19, 0.74) 100%),
    linear-gradient(0deg, rgba(17, 17, 19, 0.98) 0%, transparent 34%);
}

.hero-content {
  width: min(690px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding: 56px 0 72px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: 136px;
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 72px;
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.hero-copy,
.section-copy p,
.workflow-copy + .steps p,
.final-cta p {
  color: var(--muted);
  font-size: 22px;
  line-height: 1.55;
}

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

.button {
  min-width: 190px;
  padding: 0 22px;
  border: 1px solid var(--line);
}

.button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: white;
  box-shadow: 0 16px 40px rgba(111, 50, 255, 0.28);
}

.button.secondary {
  background: rgba(32, 32, 36, 0.82);
  color: var(--text);
}

.button.secondary:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

.release-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  max-width: 590px;
  margin-top: 28px;
  color: var(--subtle);
  font-size: 14px;
}

.release-note strong {
  color: var(--text);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--line-soft);
}

.proof-strip div {
  min-height: 170px;
  padding: clamp(24px, 4vw, 46px);
  background: var(--bg-soft);
}

.proof-strip strong {
  display: block;
  margin-bottom: 12px;
  font-size: 20px;
}

.proof-strip span,
.feature-list,
figcaption,
.site-footer {
  color: var(--muted);
  line-height: 1.55;
}

.section {
  padding: clamp(76px, 10vw, 140px) clamp(18px, 5vw, 72px);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(420px, 1.24fr);
  align-items: center;
  gap: clamp(36px, 6vw, 88px);
}

.section-copy {
  max-width: 620px;
}

.feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 26px;
}

.feature-list li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  content: "";
  background: var(--accent);
}

.media-panel,
.workspace-grid figure,
.selected-screen {
  margin: 0;
}

.media-panel img,
.workspace-grid img,
.selected-screen img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

figcaption {
  margin-top: 14px;
  font-size: 14px;
}

.workflow {
  border-block: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    #151517;
}

.workflow-copy {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
  align-items: end;
  margin-bottom: 42px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.steps article {
  min-height: 270px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--panel);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.steps article:hover {
  background: var(--panel-2);
  transform: translateY(-3px);
}

.steps span {
  display: block;
  margin-bottom: 54px;
  color: var(--accent-strong);
  font-weight: 800;
}

.deep-dive {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(520px, 1.45fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}

.workspace-grid {
  display: grid;
  gap: 34px;
}

.workspace-grid figure:nth-child(2) {
  width: 86%;
  margin-left: auto;
}

.screen-selector {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(500px, 1.42fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
  border-block: 1px solid var(--line-soft);
  background: #151517;
}

.screen-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.screen-tabs button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--panel);
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.screen-tabs button:hover,
.screen-tabs button.active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--text);
}

.selected-screen img {
  aspect-ratio: 16 / 8.55;
  object-fit: cover;
  object-position: center top;
}

.audience {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.audience-list span {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--panel);
  color: var(--muted);
  font-weight: 700;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 12vw, 160px) clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line-soft);
  background:
    linear-gradient(120deg, rgba(111, 50, 255, 0.2), transparent 42%),
    #111113;
}

.final-cta > div {
  max-width: 820px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line-soft);
  background: #0e0e10;
  font-size: 14px;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

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

.lift-on-scroll {
  transition:
    transform 420ms ease,
    opacity 650ms ease;
}

@keyframes slowDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.06) translate3d(-1.4%, -0.8%, 0);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    margin: 0;
    padding: 84px 18px 72px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(17, 17, 19, 0.96), rgba(17, 17, 19, 0.64)),
      linear-gradient(0deg, rgba(17, 17, 19, 0.98) 0%, transparent 44%);
  }

  .proof-strip,
  .two-column,
  .workflow-copy,
  .steps,
  .deep-dive,
  .screen-selector,
  .audience {
    grid-template-columns: 1fr;
  }

  .workspace-grid figure:nth-child(2) {
    width: 100%;
    margin-left: 0;
  }

  h1 {
    font-size: 88px;
  }

  h2 {
    font-size: 52px;
  }

  .hero-copy,
  .section-copy p,
  .workflow-copy + .steps p,
  .final-cta p {
    font-size: 20px;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 64px;
    padding: 12px 14px;
  }

  .brand span {
    font-size: 16px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
  }

  h2 {
    font-size: 34px;
  }

  h1 {
    font-size: 62px;
  }

  .hero-copy,
  .section-copy p,
  .workflow-copy + .steps p,
  .final-cta p {
    font-size: 18px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .proof-strip div,
  .steps article {
    min-height: auto;
  }

  .selected-screen img {
    aspect-ratio: 4 / 3;
  }

  .site-footer {
    flex-direction: column;
  }
}
