:root {
  color-scheme: dark;
  --page: #0d0e12;
  --panel: #151720;
  --panel-soft: #1d202b;
  --ink: #faf7ef;
  --muted: #bbb6ca;
  --line: rgba(255, 255, 255, 0.14);
  --purple: #7b5cff;
  --violet: #b8a7ff;
  --gold: #f2a12d;
  --gold-soft: #ffe0a6;
  --gold-ink: #241504;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(160deg, rgba(123, 92, 255, 0.22), transparent 34rem),
    linear-gradient(180deg, #11131a 0%, var(--page) 34rem);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-header,
main,
footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.brand,
nav,
.actions,
.proof,
.final-cta {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
}

nav {
  gap: 8px;
}

nav a {
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 56px;
  align-items: center;
  min-height: 720px;
  padding: 72px 0 92px;
}

.hero > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--violet);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.gold {
  color: var(--gold-soft);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
}

.tagline,
.section-heading p,
.final-cta p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
}

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

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

.button.primary {
  background: var(--ink);
  color: #11131a;
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

.button.gold-button {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--gold-ink);
}

.meta,
.checkout-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
}

.product-shot {
  position: relative;
  max-width: 100%;
  min-height: 520px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    var(--panel);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.window-bar {
  display: flex;
  gap: 7px;
}

.window-bar span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
}

.app-mark {
  display: grid;
  place-items: center;
  min-height: 260px;
}

.app-mark img {
  width: min(58%, 240px);
  filter: drop-shadow(0 30px 46px rgba(0, 0, 0, 0.34));
}

.popover-preview {
  display: grid;
  gap: 10px;
  max-width: 100%;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(10, 11, 16, 0.76);
}

.popover-title,
.app-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.popover-title img {
  width: 22px;
  height: 22px;
}

.popover-title strong {
  margin-right: auto;
  min-width: 0;
}

.popover-title span,
.app-row strong {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 13px;
}

.app-row {
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.app-row span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-row.protected strong {
  color: var(--gold-soft);
}

.proof {
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 88px;
}

.proof span {
  flex: 0 0 auto;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}

.section {
  margin-bottom: 92px;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 28px;
}

.section-heading h2,
.final-cta h2 {
  margin-bottom: 12px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

.feature-grid,
.plans,
.faq-grid {
  display: grid;
  gap: 14px;
}

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

.feature-card,
.plan,
.faq article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.feature-card,
.faq article {
  padding: 26px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
  margin-bottom: 22px;
  padding: 0 10px;
  border-radius: 8px;
  background: rgba(123, 92, 255, 0.2);
  color: var(--violet);
  font-weight: 850;
}

.feature-card h3,
.plan h3,
.faq h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.feature-card p,
.plan p,
.faq p,
.steps span {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

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

.steps li {
  display: grid;
  gap: 4px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.plus {
  padding: 34px;
  border: 1px solid rgba(242, 161, 45, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(242, 161, 45, 0.13), rgba(255, 255, 255, 0.03)),
    var(--panel);
}

.plan {
  position: relative;
  padding: 24px;
}

.plan.recommended {
  border-color: rgba(242, 161, 45, 0.72);
  background: linear-gradient(180deg, rgba(242, 161, 45, 0.18), rgba(255, 255, 255, 0.06));
}

.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  margin: 0;
  padding: 5px 8px;
  border-radius: 6px;
  background: var(--gold);
  color: var(--gold-ink);
  font-size: 12px;
  font-weight: 850;
}

.price {
  margin-bottom: 8px;
  font-size: 34px;
  font-weight: 900;
}

.price span {
  display: block;
  margin-top: 4px;
  color: var(--gold-soft);
  font-size: 14px;
}

.plan .button {
  width: 100%;
  margin-top: 22px;
}

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

.final-cta {
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 64px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
}

.final-cta img {
  width: 76px;
  height: 76px;
}

.final-cta h2 {
  font-size: clamp(26px, 4vw, 42px);
}

.final-cta p {
  margin-bottom: 0;
}

footer {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 28px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

footer a {
  text-decoration: none;
}

footer a:hover {
  color: var(--ink);
}

@media (max-width: 900px) {
  .site-header,
  main,
  footer {
    width: min(calc(100% - 28px), 1120px);
  }

  nav {
    display: none;
  }

  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .product-shot,
  .proof,
  .feature-grid,
  .steps,
  .plans,
  .final-cta {
    width: 100%;
    max-width: 360px;
  }

  .hero {
    min-height: auto;
    padding: 48px 0 70px;
  }

  h1 {
    max-width: 340px;
    font-size: 36px;
    line-height: 1.04;
    text-wrap: balance;
  }

  .tagline {
    max-width: 340px;
  }

  .product-shot {
    width: 100%;
    min-height: 430px;
    padding: 14px;
  }

  .app-mark {
    min-height: 240px;
  }

  .popover-preview {
    padding: 12px;
  }

  .app-row {
    padding: 10px;
  }

  .popover-title span,
  .app-row strong {
    font-size: 12px;
  }

  .app-row strong {
    display: none;
  }

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

  .plus {
    padding: 22px;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}
