:root {
  color-scheme: dark;
  --bg: #0b0c10;
  --panel: #151216;
  --panel-2: #1f1a20;
  --text: #f5f0e7;
  --muted: #c0b6a8;
  --line: #3b3437;
  --gold: #d8a943;
  --gold-2: #f0d182;
  --plum: #6e2f73;
  --green: #7ac7a7;
  --ink: #050609;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(115deg, rgba(5, 6, 9, 0.96), rgba(15, 11, 16, 0.84)),
    radial-gradient(circle at 78% 16%, rgba(216, 169, 67, 0.18), transparent 26rem),
    linear-gradient(180deg, #0b0c10 0%, #151216 100%);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 5;
  padding: 0.65rem 0.9rem;
  background: var(--text);
  color: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 1rem clamp(1rem, 4vw, 3.5rem);
  background: rgba(8, 9, 13, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-size: 1.08rem;
  font-weight: 820;
  text-decoration: none;
  transform: scaleX(1.04);
  transform-origin: left center;
}

.brand span {
  display: inline-block;
}

.nav-links {
  display: flex;
  gap: clamp(0.7rem, 2vw, 1.35rem);
  align-items: center;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold-2);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 72svh;
  padding: 5.8rem clamp(1.25rem, 5vw, 5rem) 3.2rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero::after {
  position: absolute;
  right: clamp(-6rem, -7vw, -2rem);
  bottom: -12rem;
  width: min(56rem, 92vw);
  height: min(56rem, 92vw);
  content: "";
  background: radial-gradient(circle, rgba(110, 47, 115, 0.24), transparent 68%);
  pointer-events: none;
}

.hero-mark {
  position: absolute;
  right: clamp(1rem, 8vw, 8rem);
  bottom: clamp(1.5rem, 8vh, 5rem);
  z-index: -1;
  width: min(32rem, 52vw);
  opacity: 0.38;
  filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.62));
}

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

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 13ch;
  margin-bottom: 1.2rem;
  font-size: clamp(2.45rem, 6.25vw, 5.15rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  max-width: 19ch;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4.3rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.65rem;
  color: var(--text);
  font-size: 1.12rem;
}

.lede {
  max-width: 38rem;
  margin-bottom: 1.8rem;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.86rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 760;
  text-decoration: none;
}

.button.primary {
  background: var(--gold);
  color: #18100c;
  box-shadow: 0 12px 30px rgba(216, 169, 67, 0.24);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--gold-2);
}

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

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: rgba(240, 209, 130, 0.58);
}

.button.wide {
  width: 100%;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 5vw, 5rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(18rem, 1.2fr);
  gap: clamp(1rem, 4vw, 4rem);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto 2.8rem;
}

.section-heading .eyebrow {
  padding-top: 0.55rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.feature {
  min-height: 220px;
  padding: 1.25rem;
  background: rgba(21, 18, 22, 0.92);
}

.feature p,
.steps p,
.purchase p,
.faq p,
.site-footer p {
  color: var(--muted);
  line-height: 1.6;
}

.workflow {
  background:
    linear-gradient(180deg, rgba(122, 199, 167, 0.08), rgba(122, 199, 167, 0)),
    #111114;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1180px;
  padding: 0;
  margin: 0 auto;
  list-style: none;
}

.steps li {
  min-height: 210px;
  padding: 1.25rem 1.25rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(9, 10, 13, 0.6);
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(122, 199, 167, 0.5);
  border-radius: 999px;
  color: var(--green);
  font-weight: 800;
}

.steps strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.25rem;
}

.purchase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.72fr);
  gap: clamp(1.25rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 5vw, 5rem);
  background:
    linear-gradient(135deg, rgba(216, 169, 67, 0.13), rgba(110, 47, 115, 0.14)),
    #151216;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.purchase-copy {
  max-width: 720px;
}

.purchase-copy h2 {
  margin-bottom: 1rem;
}

.purchase-panel {
  padding: 1.2rem;
  border: 1px solid rgba(240, 209, 130, 0.28);
  border-radius: 8px;
  background: rgba(5, 6, 9, 0.62);
  box-shadow: var(--shadow);
}

.product-name {
  margin-bottom: 0.35rem;
  color: var(--text);
  font-size: 1.45rem;
  font-weight: 820;
}

.product-line {
  margin-bottom: 1.25rem;
}

.download-link {
  display: block;
  margin-top: 1rem;
  color: var(--gold-2);
  font-size: 0.94rem;
  line-height: 1.45;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  min-height: 68px;
  padding: 1.35rem 0;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 760;
}

details p {
  max-width: 60rem;
  margin-bottom: 1.35rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 2rem clamp(1.25rem, 5vw, 5rem);
  background: #08090d;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--gold-2);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.legal-page {
  padding-top: 72px;
}

.legal-hero {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 5vw, 5rem) clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(216, 169, 67, 0.12), rgba(122, 199, 167, 0.08)),
    #111114;
}

.legal-hero h1 {
  max-width: 12ch;
}

.legal-updated {
  margin: 0;
  color: var(--gold-2);
  font-weight: 760;
}

.legal-content {
  max-width: 900px;
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.25rem, 5vw, 5rem);
  margin: 0 auto;
}

.legal-content section + section {
  margin-top: 2.8rem;
}

.legal-content h2 {
  max-width: none;
  margin-bottom: 1rem;
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  line-height: 1.08;
}

.legal-content h3 {
  margin-top: 1.45rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.legal-content ul {
  padding-left: 1.25rem;
  margin: 0 0 1rem;
}

.legal-content a {
  color: var(--gold-2);
}

@media (max-width: 920px) {
  .section-heading,
  .purchase {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .site-header {
    position: sticky;
    min-height: auto;
    align-items: flex-start;
    gap: 0.7rem;
  }

  .legal-page {
    padding-top: 0;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 72svh;
    padding-top: 2.8rem;
    padding-bottom: 2.35rem;
  }

  .hero-mark {
    right: -4rem;
    bottom: 2rem;
    width: 24rem;
    opacity: 0.22;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.78rem, 9.2vw, 2.45rem);
    line-height: 1.02;
  }

  .lede {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.5;
  }

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

  .feature,
  .steps li {
    min-height: auto;
  }
}

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