:root {
  color-scheme: dark;
  --bg: #020203;
  --bg-soft: #07080b;
  --surface: #0c0d11;
  --surface-strong: #12141a;
  --text: #f6f5f1;
  --muted: rgba(233, 230, 221, 0.72);
  --faint: rgba(233, 230, 221, 0.42);
  --violet: #8b5cf6;
  --violet-soft: #b79bff;
  --violet-glow: rgba(139, 92, 246, 0.28);
  --line: rgba(233, 230, 221, 0.1);
  --line-strong: rgba(233, 230, 221, 0.22);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 78% -12%, rgba(139, 92, 246, 0.14), transparent 34rem),
    radial-gradient(circle at 12% 22%, rgba(246, 245, 241, 0.05), transparent 28rem),
    linear-gradient(180deg, #020203 0%, #05060a 48%, #010102 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-feature-settings: "ss01", "cv11";
  letter-spacing: -0.01em;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(2, 2, 3, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
}

.nav,
.footer,
.section,
.hero,
.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 72px;
}

.brand,
.nav-links,
.footer div,
.cta-row,
.proof-line,
.tiny-list,
.mode-row {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: 96px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 18px var(--violet-glow));
}

.nav-links {
  flex: 1;
  justify-content: center;
  gap: 28px;
}

.nav-link,
.footer a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.footer a:hover {
  color: var(--text);
}

.nav-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.nav-action:hover,
.button:hover {
  border-color: rgba(183, 155, 255, 0.45);
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.12);
}

.button.primary {
  min-height: 48px;
  padding: 0 24px;
  color: #f6f5f1;
  background: linear-gradient(180deg, #8b5cf6 0%, #6425d0 100%);
  border-color: rgba(183, 155, 255, 0.5);
  box-shadow: 0 0 32px rgba(139, 92, 246, 0.22);
}

.button.secondary {
  min-height: 48px;
  padding: 0 24px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: 64px;
  align-items: center;
  min-height: calc(100svh - 72px);
  padding-top: 72px;
  padding-bottom: 72px;
}

.hero-copy {
  max-width: 560px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--violet-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(4.5rem, 10vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  font-weight: 500;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 500;
}

h3 {
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 600;
}

.lede {
  max-width: 520px;
  color: var(--muted);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.55;
}

.cta-row {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.proof-line {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  color: var(--faint);
  font-size: 13px;
}

.proof-line strong {
  color: var(--muted);
  font-weight: 600;
}

.proof-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--faint);
}

.hero-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 42%, rgba(139, 92, 246, 0.1), transparent 58%),
    linear-gradient(180deg, rgba(12, 13, 17, 0.96), rgba(5, 6, 10, 0.98));
  overflow: hidden;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.08), transparent 42%);
  pointer-events: none;
}

.hero-stage svg,
.hero-stage img {
  position: relative;
  width: min(100%, 320px);
  height: auto;
  filter: drop-shadow(0 0 48px rgba(139, 92, 246, 0.28));
}

.stage-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--faint);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.section-head {
  max-width: 640px;
}

.grid-3,
.shot-grid,
.policy-grid,
.steps,
.mode-row {
  gap: 16px;
}

.grid-3,
.shot-grid,
.policy-grid,
.steps {
  display: grid;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
}

.shot-grid,
.policy-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 36px;
}

.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}

.mode-row {
  flex-wrap: wrap;
  margin-top: 36px;
}

.mode-card {
  flex: 1 1 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(18, 20, 26, 0.92), rgba(10, 11, 14, 0.96));
}

.mode-card .mode-label {
  display: block;
  margin-bottom: 8px;
  color: var(--violet-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mode-card h3 {
  margin-bottom: 8px;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.tile,
.shot,
.policy-item,
.step,
.note {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(12, 13, 17, 0.96), rgba(7, 8, 11, 0.98));
}

.tile,
.policy-item,
.step,
.note {
  padding: 24px;
}

.tile p,
.policy-item p,
.step p,
.note p,
.copy p,
.copy li,
.shot p {
  color: var(--muted);
  line-height: 1.65;
}

.tile-number,
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--violet-soft);
  font-size: 12px;
  font-weight: 600;
}

.shot {
  overflow: hidden;
}

.shot-body {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 36px;
  background:
    radial-gradient(circle at 50% 40%, rgba(139, 92, 246, 0.08), transparent 55%),
    #07080b;
}

.shot-body svg {
  width: 140px;
  filter: drop-shadow(0 0 28px rgba(139, 92, 246, 0.2));
}

.shot figcaption {
  padding: 20px 22px;
  border-top: 1px solid var(--line);
}

.shot h3,
.shot p {
  margin-bottom: 0;
}

.tiny-list {
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.tiny-list li {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
}

.page-hero {
  padding-top: 96px;
  padding-bottom: 56px;
}

.copy {
  max-width: 720px;
}

.copy h2 {
  margin-top: 44px;
}

.copy a {
  color: var(--violet-soft);
  text-decoration-color: rgba(183, 155, 255, 0.4);
  text-underline-offset: 4px;
}

.copy ul {
  padding-left: 22px;
  color: var(--muted);
}

.note {
  margin-top: 28px;
  border-color: rgba(139, 92, 246, 0.22);
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.06), rgba(12, 13, 17, 0.96));
}

.contact-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 14px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  color: var(--text);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.02);
}

.contact-card:hover {
  border-color: rgba(183, 155, 255, 0.45);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 36px;
  padding-bottom: 44px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 14px;
}

.footer p {
  max-width: 360px;
  margin-bottom: 0;
}

.footer div {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

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

  .hero-stage {
    min-height: 320px;
  }

  .grid-3,
  .shot-grid,
  .policy-grid,
  .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    min-height: 0;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .brand {
    min-width: 0;
  }

  .nav-action {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    gap: 18px;
  }

  .nav-link {
    font-size: 13px;
  }

  .hero,
  .section,
  .page-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    padding-top: 48px;
  }

  .button,
  .cta-row .button {
    width: 100%;
  }

  .footer {
    flex-direction: column;
    padding-left: 18px;
    padding-right: 18px;
  }

  .footer div {
    justify-content: flex-start;
  }
}
