:root {
  color-scheme: dark;
  --bg: #0d0d0f;
  --panel: #13131a;
  --panel-2: #1a1a26;
  --border: #2a2a3d;
  --accent: #7c3aed;
  --accent-2: #06b6d4;
  --accent-3: #f59e0b;
  --text: #e2e8f0;
  --dim: #64748b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(124, 58, 237, 0.08), transparent 34%),
    radial-gradient(circle at top right, rgba(6, 182, 212, 0.09), transparent 28%),
    linear-gradient(180deg, #0d0d0f 0%, #0a0a12 100%);
}

a {
  text-decoration: none;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.32;
}

.orb-primary {
  top: -120px;
  left: -120px;
  width: 320px;
  height: 320px;
  background: rgba(124, 58, 237, 0.42);
}

.orb-secondary {
  right: -160px;
  top: 18%;
  width: 360px;
  height: 360px;
  background: rgba(6, 182, 212, 0.18);
}

.orb-tertiary {
  bottom: -150px;
  left: 40%;
  width: 260px;
  height: 260px;
  background: rgba(245, 158, 11, 0.16);
}

.noise-layer {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(circle at center, black 24%, transparent 88%);
}

.mobile-link {
  border: 1px solid rgba(42, 42, 61, 0.9);
  border-radius: 1rem;
  padding: 0.9rem 1rem;
  background: rgba(26, 26, 38, 0.92);
}

.hamburger-line {
  position: absolute;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

[data-menu-button] {
  position: relative;
}

.hamburger-line:nth-child(1) {
  transform: translateY(-5px);
}

.hamburger-line:nth-child(3) {
  transform: translateY(5px);
}

[data-menu-button].is-open .hamburger-line:nth-child(1) {
  transform: rotate(45deg);
}

[data-menu-button].is-open .hamburger-line:nth-child(2) {
  opacity: 0;
}

[data-menu-button].is-open .hamburger-line:nth-child(3) {
  transform: rotate(-45deg);
}

.metric-card {
  border: 1px solid rgba(42, 42, 61, 0.95);
  border-radius: 1.75rem;
  padding: 1.1rem 1.15rem;
  background: linear-gradient(180deg, rgba(19, 19, 26, 0.95), rgba(13, 13, 15, 0.88));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 35px rgba(0, 0, 0, 0.26);
}

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

.editor-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.06), transparent 32%, rgba(6, 182, 212, 0.05));
  pointer-events: none;
}

.hero-media {
  align-self: start;
}

.hero-media .editor-card {
  max-width: 700px;
  margin-left: auto;
}

.hero-media .shot-image {
  aspect-ratio: 4 / 3;
  object-position: top center;
}

.hero-summary {
  margin-top: 0.5rem;
}

@media (min-width: 1024px) {
  .hero-media {
    margin-top: 5.5rem;
  }
}

.metric-value {
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: white;
}

.metric-label {
  margin-top: 0.65rem;
  font-size: 11px;
  line-height: 1.75;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.72);
}

.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.feature-card {
  display: grid;
  gap: 1.15rem;
  border: 1px solid rgba(42, 42, 61, 0.95);
  border-radius: 2rem;
  padding: 1.5rem;
  background:
    linear-gradient(180deg, rgba(26, 26, 38, 0.92), rgba(13, 13, 15, 0.95));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 20px 40px rgba(0, 0, 0, 0.22);
}

@media (min-width: 768px) {
  .feature-card {
    grid-template-columns: auto 1fr;
    align-items: start;
  }
}

.feature-icon {
  font-family: "Syne", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
}

.feature-title {
  font-family: "Syne", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: white;
}

.feature-copy {
  margin-top: 0.7rem;
  font-size: 0.95rem;
  line-height: 1.95;
  color: rgba(226, 232, 240, 0.74);
}

.workflow-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem 0 0;
}

.workflow-number {
  display: inline-flex;
  width: 2.4rem;
  height: 2.4rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(124, 58, 237, 0.34);
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.12);
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: white;
}

.workflow-title {
  font-family: "Syne", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
}

.workflow-copy {
  margin-top: 0.45rem;
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(226, 232, 240, 0.72);
}

.overview-card {
  border: 1px solid rgba(42, 42, 61, 0.95);
  border-radius: 1.4rem;
  background: rgba(19, 19, 26, 0.88);
  padding: 1.2rem;
}

.shot-card {
  overflow: hidden;
  border: 1px solid rgba(42, 42, 61, 0.95);
  border-radius: 1.5rem;
  background: rgba(13, 13, 15, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 20px 40px rgba(0, 0, 0, 0.22);
}

.shot-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.shot-caption {
  padding: 0.95rem 1rem 1rem;
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(226, 232, 240, 0.72);
}

.overview-card h4 {
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: white;
}

.overview-card p {
  margin-top: 0.45rem;
  font-size: 0.93rem;
  line-height: 1.8;
  color: rgba(226, 232, 240, 0.72);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
