:root {
  --bg: #f4f6f8;
  --ink: #111417;
  --muted: #657083;
  --line: rgba(17, 20, 23, 0.12);
  --dark: #0b0f14;
  --dark-panel: #141a21;
  --blue: #1769ff;
  --blue-bright: #54a3ff;
  --green: #0a9f6a;
  --amber: #b66d00;
  --white-muted: rgba(255, 255, 255, 0.74);
  font-family: "SF Pro Text", "SF Pro Icons", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
}

body.checkout-success-page {
  min-height: 100vh;
  background: #000;
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  height: 52px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 24px;
  background: rgba(7, 10, 14, 0.86);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  font-size: 13px;
}

.brand {
  font-weight: 760;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a,
.nav-cta {
  opacity: 0.86;
}

.nav-links a:hover,
.nav-cta:hover {
  opacity: 1;
}

.nav-cta {
  justify-self: end;
  color: var(--blue-bright);
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 118px 28px 72px;
  background: #000;
  color: #fff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.68;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 8, 12, 0.94), rgba(5, 8, 12, 0.58) 48%, rgba(5, 8, 12, 0.26)),
    linear-gradient(0deg, rgba(5, 8, 12, 0.82), rgba(5, 8, 12, 0.1) 44%);
}

.hero-copy {
  position: relative;
  width: min(880px, 100%);
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-bright);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-family: "SF Pro Display", "SF Pro Icons", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 72px;
  line-height: 1.02;
  font-weight: 680;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 780px;
  margin: 0 0 28px;
  color: var(--white-muted);
  font-size: 21px;
  line-height: 1.5;
}

.hero-actions,
.download-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 760;
}

.button.primary {
  background: var(--blue);
  color: #fff;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.text-button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 760;
  cursor: pointer;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.proof-strip article {
  min-height: 126px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 26px max(24px, calc((100vw - 1160px) / 2));
  background: var(--dark);
}

.proof-strip strong {
  font-size: 20px;
}

.proof-strip span {
  color: var(--white-muted);
  line-height: 1.5;
}

.section {
  padding: 104px 28px;
}

.section-heading {
  width: min(840px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.method-copy h2,
.download-copy h2 {
  margin-bottom: 14px;
  font-size: 46px;
  line-height: 1.12;
  font-weight: 680;
  letter-spacing: 0;
}

.section-heading p,
.method-copy p,
.download-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.demos {
  background: var(--bg);
}

.demo-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.demo-card {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.8fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(24, 35, 52, 0.14);
}

.demo-card.featured {
  border-color: rgba(23, 105, 255, 0.34);
}

.demo-card video {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  background: #05070a;
}

.demo-copy {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 30px;
}

.demo-copy span {
  width: 42px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: rgba(23, 105, 255, 0.1);
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.demo-copy h3,
.workflow-grid h3 {
  margin-bottom: 0;
  font-size: 25px;
  line-height: 1.22;
  letter-spacing: 0;
}

.demo-copy p,
.workflow-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.method {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: 46px;
  align-items: center;
  background: #fff;
}

.method-copy,
.method-steps {
  width: min(680px, 100%);
  justify-self: end;
}

.method-steps {
  justify-self: start;
  display: grid;
  gap: 12px;
}

.method-steps article {
  min-height: 72px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.method-steps strong {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--dark);
  color: #fff;
}

.method-steps span {
  color: #26303c;
  line-height: 1.45;
  font-weight: 700;
}

.workflow {
  background: var(--dark);
  color: #fff;
}

.workflow .section-heading p,
.workflow-grid p {
  color: var(--white-muted);
}

.workflow-grid {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.workflow-grid article {
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: var(--dark-panel);
}

.workflow-grid article:nth-child(2) {
  border-color: rgba(10, 159, 106, 0.46);
}

.workflow-grid article:nth-child(3) {
  border-color: rgba(182, 109, 0, 0.5);
}

.pricing {
  background: #eef3f8;
}

.pricing-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.pricing-card {
  min-height: 350px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 56px rgba(24, 35, 52, 0.1);
}

.pricing-card.featured {
  border-color: rgba(23, 105, 255, 0.42);
  box-shadow: 0 24px 70px rgba(23, 105, 255, 0.16);
}

.pricing-kicker {
  margin: 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin: 0;
  font-size: 42px;
  line-height: 1;
  letter-spacing: 0;
}

.pricing-card h3 span {
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
}

.pricing-card p:not(.pricing-kicker) {
  min-height: 82px;
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.pricing-card .button {
  width: 100%;
  margin-top: auto;
}

.pricing .button.secondary {
  border-color: var(--line);
  color: var(--ink);
  background: #fff;
}

.pricing-link {
  justify-self: center;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.download {
  min-height: 58svh;
  display: grid;
  place-items: center;
  background: #fff;
}

.download-copy {
  width: min(760px, 100%);
  text-align: center;
}

.download-actions {
  justify-content: center;
  margin-top: 26px;
}

.download .button.secondary {
  border-color: var(--line);
  color: var(--ink);
  background: #fff;
}

.policy-page {
  padding-top: 52px;
}

.policy-page h1 {
  color: var(--ink);
  font-size: 54px;
}

.policy-copy {
  width: min(900px, 100%);
  margin: 0 auto;
  border-radius: 8px;
  padding: 34px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(24, 35, 52, 0.14);
}

.policy-copy h2 {
  margin: 34px 0 10px;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0;
}

.policy-copy h2:first-child {
  margin-top: 0;
}

.policy-copy p,
.policy-copy dd {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.policy-copy p:last-child {
  margin-bottom: 0;
}

.legal-table dl {
  margin: 0;
}

.legal-table dt {
  margin-top: 24px;
  font-weight: 700;
}

.legal-table dt:first-child {
  margin-top: 0;
}

.legal-table dd {
  margin: 8px 0 0;
}

.inline-link {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.checkout-success {
  min-height: 100vh;
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 96px 28px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.checkout-success h1 {
  margin-bottom: 0;
  font-size: 54px;
}

.checkout-success .button {
  margin-top: 8px;
}

.checkout-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.restore-note {
  max-width: 600px;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.restore-note p {
  margin: 0 0 8px;
}

.purchase-note {
  max-width: 560px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 1000px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  h1 {
    font-size: 54px;
  }

  .proof-strip,
  .demo-card,
  .method,
  .workflow-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .method-copy,
  .method-steps {
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .nav {
    padding: 0 16px;
  }

  .hero {
    min-height: 88svh;
    padding: 96px 20px 56px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .section {
    padding: 76px 20px;
  }

  .section-heading h2,
  .method-copy h2,
  .download-copy h2 {
    font-size: 34px;
  }

  .proof-strip article {
    padding: 22px 20px;
  }

  .demo-copy {
    padding: 24px;
  }

  .method {
    gap: 28px;
  }
}
