:root {
  --primary: #024ad8;
  --primary-bright: #296ef9;
  --primary-deep: #0e3191;
  --ink: #1a1a1a;
  --ink-soft: #3d3d3d;
  --canvas: #ffffff;
  --paper: #ffffff;
  --cloud: #f7f7f7;
  --fog: #e8e8e8;
  --steel: #c2c2c2;
  --graphite: #636363;
  --hairline: #e8e8e8;
  --shadow: 0 2px 8px rgba(26, 26, 26, 0.08);
  --font: "Forma DJR Micro", Manrope, Inter, Arial, sans-serif;
  color: var(--ink);
  font-family: var(--font);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--canvas);
  color: var(--ink);
  margin: 0;
  overflow-x: hidden;
}

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

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px 32px;
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand img {
  display: block;
  height: 48px;
  width: auto;
}

nav {
  align-items: center;
  display: flex;
  gap: 24px;
  font-size: 15px;
}

nav a:hover {
  color: var(--primary);
}

.hero {
  min-height: calc(100vh - 72px);
  overflow: hidden;
  padding: 72px 32px 64px;
  position: relative;
}

.product-scene {
  bottom: 0;
  left: 44%;
  opacity: 0.92;
  padding: 72px 32px 48px 0;
  position: absolute;
  right: 32px;
  top: 0;
  z-index: 0;
}

.window {
  background: var(--paper);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(26, 26, 26, 0.14);
  height: 100%;
  margin-left: auto;
  max-width: 980px;
  overflow: hidden;
  width: 100%;
}

.window-bar {
  align-items: center;
  border-bottom: 1px solid var(--hairline);
  display: flex;
  gap: 8px;
  height: 44px;
  padding: 0 18px;
}

.window-bar span {
  background: var(--fog);
  border-radius: 50%;
  height: 10px;
  width: 10px;
}

.reader-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: calc(100% - 44px);
}

.reader-shell aside {
  background: var(--cloud);
  border-right: 1px solid var(--hairline);
  padding: 28px;
}

.reader-shell aside strong {
  display: block;
  font-size: 24px;
  margin-bottom: 48px;
}

.reader-shell aside small,
.reader-shell article small {
  color: var(--graphite);
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.7px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.reader-shell aside p {
  font-weight: 500;
  margin: 0 0 24px;
}

.reader-shell button {
  background: var(--primary);
  border: 0;
  border-radius: 4px;
  color: #ffffff;
  font-weight: 700;
  height: 42px;
  padding: 0 20px;
  text-transform: uppercase;
}

.reader-shell article {
  min-width: 0;
  padding: 48px 56px;
}

.reader-shell h2 {
  font-size: 44px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 20px;
  max-width: 560px;
  overflow-wrap: anywhere;
}

.reader-shell p {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.45;
  max-width: 520px;
  overflow-wrap: anywhere;
}

.reader-shell blockquote {
  background: var(--cloud);
  border-left: 4px solid var(--primary);
  margin: 28px 0;
  max-width: 520px;
  overflow-wrap: anywhere;
  padding: 16px 20px;
}

.fake-table {
  border: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 420px;
}

.fake-table span {
  border-bottom: 1px solid var(--hairline);
  border-right: 1px solid var(--hairline);
  padding: 12px 14px;
}

.hero-copy {
  max-width: 560px;
  min-width: 0;
  padding-top: 68px;
  position: relative;
  width: 100%;
  z-index: 2;
}

.eyebrow {
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.7px;
  margin: 0 0 16px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  font-size: 72px;
  font-weight: 500;
  line-height: 1;
  margin: 0 0 20px;
}

.lead {
  color: var(--ink-soft);
  font-size: 22px;
  line-height: 1.38;
  margin: 0 0 32px;
  max-width: 34rem;
  min-width: 0;
  overflow-wrap: anywhere;
}

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

.button {
  align-items: center;
  border-radius: 4px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  height: 44px;
  justify-content: center;
  letter-spacing: 0.7px;
  padding: 0 24px;
  text-transform: uppercase;
}

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

.button.secondary {
  background: var(--canvas);
  border: 1px solid var(--ink);
  color: var(--ink);
}

.button.primary:hover {
  background: var(--primary-deep);
}

.chevron {
  background: var(--primary);
  height: 340px;
  position: absolute;
  transform: skewX(-28deg);
  width: 82px;
  z-index: 1;
}

.chevron-left {
  left: -160px;
  top: 120px;
}

.chevron-right {
  bottom: 64px;
  right: 56px;
}

.trust-strip {
  background: var(--ink);
  color: #ffffff;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.trust-strip div {
  background: var(--ink);
  padding: 28px 32px;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
}

.trust-strip span {
  color: var(--steel);
  line-height: 1.45;
}

.section,
.workflow,
.download {
  padding: 80px 32px;
}

.section-head,
.workflow,
.download {
  margin: 0 auto;
  max-width: 1180px;
}

.section-head h2,
.workflow h2,
.download h2,
.dark-band h2 {
  font-size: 44px;
  font-weight: 500;
  line-height: 1;
  margin: 0;
  max-width: 720px;
}

.feature-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
  margin: 40px auto 0;
  max-width: 1180px;
}

.feature-grid article {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 24px;
}

.icon {
  align-items: center;
  background: var(--ink);
  border-radius: 8px;
  color: #ffffff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  height: 34px;
  justify-content: center;
  margin-bottom: 24px;
  width: 44px;
}

.feature-grid h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 12px;
}

.feature-grid p,
.workflow span,
.download p {
  color: var(--ink-soft);
  line-height: 1.55;
}

.workflow {
  background: var(--cloud);
  display: grid;
  gap: 48px;
  grid-template-columns: 0.9fr 1.1fr;
  max-width: none;
}

.workflow > div,
.workflow ol {
  margin-left: auto;
  max-width: 580px;
}

.workflow ol {
  counter-reset: steps;
  display: grid;
  gap: 16px;
  list-style: none;
  margin-right: auto;
  padding: 0;
}

.workflow li {
  background: var(--canvas);
  border-radius: 16px;
  counter-increment: steps;
  padding: 24px;
}

.workflow li::before {
  color: var(--primary);
  content: "0" counter(steps);
  display: block;
  font-weight: 700;
  margin-bottom: 16px;
}

.workflow strong,
.workflow span {
  display: block;
}

.workflow strong {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
}

.dark-band {
  background: var(--ink);
  color: #ffffff;
  padding: 84px 32px;
}

.dark-band div {
  margin: 0 auto;
  max-width: 940px;
}

.dark-band img,
footer img {
  height: 56px;
  margin-bottom: 40px;
  width: auto;
}

.dark-band p {
  color: var(--steel);
  font-size: 20px;
  line-height: 1.45;
  max-width: 720px;
}

.download {
  align-items: end;
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr auto;
}

.download-card {
  background: var(--cloud);
  border-radius: 16px;
  padding: 24px;
}

.download-card small {
  color: var(--graphite);
  flex-basis: 100%;
  margin-top: 4px;
}

footer {
  background: var(--ink);
  color: #ffffff;
  padding: 48px 32px;
}

footer p,
footer a {
  color: var(--steel);
}

@media (max-width: 980px) {
  .site-header,
  nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding-top: 40px;
  }

  .product-scene {
    bottom: auto;
    left: auto;
    margin-top: 42px;
    order: 2;
    padding: 0;
    position: relative;
    right: auto;
    top: auto;
  }

  .hero-copy {
    max-width: calc(100vw - 40px);
    order: 1;
  }

  .window {
    margin: 0;
  }

  .reader-shell {
    grid-template-columns: 1fr;
  }

  .reader-shell aside {
    display: none;
  }

  h1 {
    font-size: 52px;
  }

  .feature-grid,
  .trust-strip,
  .workflow,
  .download {
    grid-template-columns: 1fr;
  }

  .workflow > div,
  .workflow ol {
    margin: 0;
    max-width: none;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .section,
  .workflow,
  .download,
  .dark-band,
  footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  nav {
    gap: 12px;
  }

  h1 {
    font-size: 42px;
  }

  .section-head h2,
  .workflow h2,
  .download h2,
  .dark-band h2 {
    font-size: 32px;
  }

  .reader-shell article {
    max-width: calc(100vw - 40px);
    padding: 28px 20px;
  }

  .lead {
    max-width: calc(100vw - 40px);
  }

  .lead,
  .reader-shell h2,
  .reader-shell p,
  .reader-shell blockquote {
    word-break: break-all;
  }

  .reader-shell h2 {
    font-size: 26px;
  }

  .chevron {
    display: none;
  }
}
