:root {
  color-scheme: light;
  --ink: #101010;
  --muted: #596171;
  --paper: #f8faf7;
  --white: #ffffff;
  --line: #d9e1da;
  --soft: #eef4ef;
  --blue: #1957ff;
  --green: #087a55;
  --lime: #ccff33;
  --orange: #ff7a1a;
  --pink: #ff4d7d;
  --shadow: rgba(16, 24, 40, 0.16) 0 24px 70px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(8, 122, 85, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(8, 122, 85, 0.08) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
  color: var(--ink);
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 250, 247, 0.92);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  min-height: 64px;
  max-width: 1180px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 0 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 850;
  text-decoration: none;
}

.brand::before {
  width: 22px;
  height: 18px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  background:
    linear-gradient(var(--ink), var(--ink)) 5px 5px / 11px 2px no-repeat,
    linear-gradient(var(--ink), var(--ink)) 5px 10px / 8px 2px no-repeat,
    linear-gradient(135deg, var(--lime), var(--orange));
  box-shadow: var(--blue) 4px 4px 0;
  content: "";
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #424b5a;
  font-size: 14px;
  font-weight: 760;
}

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

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 8px;
  padding: 0 16px;
  background: var(--ink);
  box-shadow: rgba(16, 16, 16, 0.2) 0 14px 34px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.button.secondary {
  border-color: var(--line);
  background: var(--white);
  box-shadow: rgba(16, 24, 40, 0.08) 0 8px 24px;
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: min(720px, 72svh);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(112deg, rgba(248, 250, 247, 1) 0 43%, rgba(248, 250, 247, 0.7) 58%, rgba(16, 16, 16, 0.05) 100%),
    repeating-linear-gradient(135deg, rgba(255, 122, 26, 0.15) 0 8px, transparent 8px 18px);
}

.hero::before {
  position: absolute;
  inset: 0 auto 0 55%;
  width: 43vw;
  min-width: 430px;
  background:
    linear-gradient(116deg, rgba(204, 255, 51, 0.92), rgba(25, 87, 255, 0.9) 48%, rgba(255, 77, 125, 0.88));
  clip-path: polygon(17% 0, 100% 0, 100% 100%, 0 100%);
  content: "";
}

.hero::after {
  position: absolute;
  right: max(16px, 7vw);
  bottom: 24px;
  width: min(490px, 39vw);
  height: min(570px, 64vh);
  border: 1px solid rgba(16, 24, 40, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.34)),
    url("assets/sidepanel.png") center top / contain no-repeat,
    #ffffff;
  box-shadow: var(--shadow);
  content: "";
  transform: rotate(1.4deg);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 78px 22px 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--green);
  font-size: 14px;
  font-weight: 850;
}

.eyebrow::before {
  width: 12px;
  height: 12px;
  border: 2px solid var(--green);
  border-radius: 3px;
  content: "";
  transform: rotate(45deg);
}

h1 {
  max-width: 680px;
  font-size: 78px;
  line-height: 0.98;
}

.hero-copy {
  max-width: 545px;
  margin-top: 24px;
  color: #30384a;
  font-size: 21px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
}

.proof {
  min-height: 116px;
  border-right: 1px solid var(--line);
  padding: 22px;
}

.proof:last-child {
  border-right: 0;
}

.proof strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.proof span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 84px 22px;
}

.section h2 {
  max-width: 720px;
  font-size: 52px;
  line-height: 1.02;
}

.section-lede {
  max-width: 650px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.steps article {
  min-height: 220px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: rgba(16, 24, 40, 0.08) 0 12px 34px;
}

.steps span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--lime);
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.steps h3 {
  margin-top: 22px;
  font-size: 24px;
}

.steps p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.split {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 42px;
  align-items: center;
}

.product-shot {
  width: 100%;
  border: 1px solid rgba(16, 24, 40, 0.22);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.status-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #30384a;
}

.check {
  flex: 0 0 auto;
  border-radius: 5px;
  padding: 3px 6px;
  background: var(--green);
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
}

.output {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 440px);
  gap: 34px;
  align-items: start;
}

.code-box {
  margin: 0;
  padding: 24px;
  overflow: auto;
  background: #101010;
  border-radius: 8px;
  color: #f7ffe6;
  font-size: 18px;
  line-height: 1.7;
  box-shadow: var(--shadow);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.footer-inner {
  display: flex;
  max-width: 1180px;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 0 22px;
  color: var(--muted);
  font-weight: 700;
}

.doc {
  max-width: 850px;
  margin: 0 auto;
  padding: 76px 22px 96px;
}

.doc h1 {
  font-size: 54px;
}

.doc h2 {
  margin-top: 34px;
  font-size: 26px;
}

.doc p,
.doc li {
  color: #30384a;
  font-size: 18px;
  line-height: 1.65;
}

.doc p {
  margin-top: 16px;
}

.doc code {
  border-radius: 5px;
  padding: 2px 5px;
  background: var(--soft);
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 18px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    inset: auto 0 0;
    width: 100%;
    height: 260px;
    min-width: 0;
    clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 100%);
  }

  .hero::after {
    position: relative;
    right: auto;
    bottom: auto;
    display: block;
    width: min(330px, calc(100% - 36px));
    height: 380px;
    margin: -20px auto 28px;
  }

  .hero-inner {
    padding: 52px 18px 42px;
  }

  h1 {
    font-size: 52px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .proof-row,
  .steps,
  .split,
  .output {
    grid-template-columns: 1fr;
  }

  .proof {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 60px 18px;
  }

  .section h2,
  .doc h1 {
    font-size: 39px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 20px 18px;
  }
}
