﻿:root {
  --bg: #0c0b12;
  --bg-elev: #14131c;
  --bg-alt: #12111a;
  --text: #f4f1fb;
  --muted: #b7b0c9;
  --accent: #c084fc;
  --accent-2: #f472b6;
  --line: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --header-h: 4.25rem;
  --font: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 20;
  padding: 0.5rem 0.75rem;
  background: var(--accent);
  color: #1a1024;
  border-radius: 8px;
}

.skip-link:focus {
  top: 0.75rem;
}

.wrap {
  width: 100%;
  max-width: 1080px;
  padding-inline: 1rem;
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  height: var(--header-h);
  background: rgba(12, 11, 18, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  position: relative;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  font-size: 1.15rem;
}

.wordmark-icon {
  width: 28px;
  height: 28px;
}

.wordmark:hover {
  text-decoration: none;
  color: var(--accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav a:not(.btn) {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav a:not(.btn):hover {
  color: var(--text);
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
}

.btn:hover {
  text-decoration: none;
}

.cta-short {
  display: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #16101f;
}

.btn-primary:hover {
  filter: brightness(1.06);
}

.btn-ghost {
  color: var(--text);
  border: 1px solid var(--line);
}

.hero {
  padding: 4.5rem 0 5rem;
  background:
    radial-gradient(900px 420px at 80% 10%, rgba(192, 132, 252, 0.18), transparent 55%),
    radial-gradient(700px 360px at 10% 80%, rgba(244, 114, 182, 0.12), transparent 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 0.75rem;
  letter-spacing: 0.02em;
}

h1,
h2,
h3 {
  line-height: 1.2;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin: 0 0 0.75rem;
}

h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.lede,
.section-lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 40rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 0.85rem;
}

.hero-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
  max-width: 36rem;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.section {
  padding: 4.25rem 0;
}

.section-alt {
  background: var(--bg-alt);
  border-block: 1px solid var(--line);
}

.steps,
.feature-grid,
.pro-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}

.steps li,
.feature-grid li,
.callout {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.steps li {
  counter-increment: step;
}

.steps li h3::before {
  content: counter(step) ". ";
  color: var(--accent);
}

.steps p,
.feature-grid p,
.callout p {
  margin: 0;
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.shots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.shots figure {
  margin: 0;
}

.shots img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-elev);
}

.shots figcaption {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.75rem;
  align-items: start;
}

.split p {
  color: var(--muted);
}

.pro {
  text-align: center;
}

.pro .section-lead {
  margin-inline: auto;
}

.pro-list {
  max-width: 36rem;
  margin: 1.5rem auto 1.75rem;
  text-align: left;
}

.pro-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.pro-list li::before {
  content: "✓ ";
  color: var(--accent);
}

.site-footer {
  padding: 2.25rem 0 2.5rem;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  margin: 0;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
}

.footer-links a {
  color: var(--muted);
}

.copyright {
  margin: 0;
  width: 100%;
  color: var(--muted);
  font-size: 0.85rem;
}

@media (max-width: 860px) {
  .hero-grid,
  .steps,
  .feature-grid,
  .shots,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .nav {
    gap: 0.5rem;
  }

  .nav > a:not(.btn) {
    display: none;
  }

  .nav .btn {
    padding: 0.55rem 0.9rem;
    font-size: 0.85rem;
  }

  .cta-full {
    display: none;
  }

  .cta-short {
    display: inline;
  }

  .lede,
  .hero-note,
  .section-lead {
    max-width: none;
  }

  .hero {
    padding-top: 2.5rem;
  }
}
