:root {
  color-scheme: light;
  --ink: #172033;
  --muted: #64748b;
  --line: #d8e0e8;
  --paper: #f7fafc;
  --surface: #ffffff;
  --navy: #0f172a;
  --navy-soft: #122033;
  --teal: #2dd4bf;
  --teal-dark: #0f766e;
  --amber: #fbbf24;
  --coral: #ff6b4a;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  align-items: center;
  background: rgba(247, 250, 252, 0.88);
  border-bottom: 1px solid rgba(216, 224, 232, 0.86);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 64px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand,
.site-nav,
.hero-actions,
.quick-links {
  align-items: center;
  display: flex;
}

.brand {
  color: var(--navy);
  flex: 0 0 auto;
  font-size: 18px;
  font-weight: 800;
  gap: 10px;
}

.brand img {
  border-radius: 8px;
}

.site-nav {
  color: #304158;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 700;
  gap: clamp(14px, 3vw, 30px);
  justify-content: flex-end;
}

.site-nav a:hover,
.quick-links a:hover,
.site-footer a:hover {
  color: var(--teal-dark);
}

.hero {
  isolation: isolate;
  min-height: 78svh;
  overflow: hidden;
  position: relative;
}

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

.hero-media {
  background-image: url("https://github.com/user-attachments/assets/a5f42cf2-e44c-4a66-b0e7-274d768a0ee3");
  background-position: center top;
  background-size: cover;
  transform: scale(1.02);
  z-index: -3;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.78) 46%, rgba(15, 23, 42, 0.34)),
    linear-gradient(180deg, rgba(15, 23, 42, 0.42), rgba(15, 23, 42, 0.78));
  z-index: -2;
}

.hero-content {
  color: #f8fafc;
  display: grid;
  gap: 22px;
  max-width: 760px;
  padding: clamp(128px, 16vw, 178px) clamp(22px, 7vw, 84px) clamp(56px, 9vw, 98px);
}

.hero-logo {
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.3);
}

.eyebrow {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0;
  text-transform: uppercase;
}

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

h1 {
  font-size: 104px;
  letter-spacing: 0;
  line-height: 0.88;
}

h2 {
  font-size: 52px;
  letter-spacing: 0;
  line-height: 1.02;
}

h3 {
  font-size: 18px;
  line-height: 1.2;
}

.hero-copy {
  color: #d9e4ee;
  font-size: 27px;
  line-height: 1.28;
  max-width: 700px;
}

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

.button {
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  min-width: 150px;
  padding: 12px 18px;
}

.button.primary {
  background: var(--teal);
  color: #06201d;
}

.button.secondary {
  background: rgba(248, 250, 252, 0.08);
  border-color: rgba(248, 250, 252, 0.34);
  color: #f8fafc;
}

.summary-band {
  background: var(--navy);
  color: #e5edf6;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.summary-band div {
  background: rgba(18, 32, 51, 0.96);
  display: grid;
  gap: 6px;
  min-height: 130px;
  padding: 26px clamp(20px, 4vw, 42px);
}

.summary-band strong {
  color: #ffffff;
  font-size: 17px;
}

.summary-band span {
  color: #b9c8d8;
}

.section {
  display: grid;
  gap: clamp(28px, 5vw, 60px);
  padding: clamp(58px, 9vw, 108px) clamp(20px, 6vw, 76px);
}

.section-copy {
  display: grid;
  gap: 18px;
  max-width: 800px;
}

.section-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 20px;
  max-width: 760px;
}

.product-section,
.details-section {
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 1.14fr);
}

.product-shot {
  align-self: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin: 0;
  overflow: hidden;
}

.product-shot img {
  aspect-ratio: 1511 / 825;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.workflow-section {
  background: #ffffff;
  border-block: 1px solid var(--line);
}

.steps,
.feature-list {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.steps article,
.feature-list div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  min-height: 214px;
  padding: 24px;
}

.steps article {
  border-top: 5px solid var(--teal);
}

.steps article:nth-child(2) {
  border-top-color: var(--amber);
}

.steps article:nth-child(3) {
  border-top-color: var(--coral);
}

.steps article:nth-child(4) {
  border-top-color: var(--teal-dark);
}

.steps span {
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  font-weight: 800;
}

.steps p,
.feature-list p {
  color: var(--muted);
  font-size: 15px;
}

.details-section {
  align-items: start;
}

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

.feature-list div {
  min-height: 178px;
}

.quickstart-section {
  background: var(--navy);
  color: #f8fafc;
}

.quickstart-section .section-copy p:not(.eyebrow) {
  color: #cbd5e1;
}

.terminal {
  background: #08111f;
  border: 1px solid rgba(45, 212, 191, 0.24);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
  max-width: 860px;
  overflow-x: auto;
}

pre {
  margin: 0;
  padding: 24px;
}

code {
  color: #d5fff8;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 18px;
  line-height: 1.7;
}

.quick-links {
  flex-wrap: wrap;
  gap: 16px;
}

.quick-links a {
  border-bottom: 2px solid var(--amber);
  color: #f8fafc;
  font-weight: 800;
  padding-bottom: 4px;
}

.site-footer {
  align-items: center;
  background: #ffffff;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  padding: 26px clamp(20px, 6vw, 76px);
}

.site-footer a {
  color: var(--ink);
  font-weight: 800;
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: 74svh;
  }

  .hero-media {
    background-position: center top;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.76)),
      linear-gradient(90deg, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.42));
  }

  .hero-content {
    padding-top: 118px;
  }

  h1 {
    font-size: 76px;
  }

  h2 {
    font-size: 40px;
  }

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

  .section-copy p:not(.eyebrow) {
    font-size: 18px;
  }

  .summary-band,
  .product-section,
  .details-section,
  .steps,
  .feature-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 78svh;
  }

  .hero-logo {
    height: 70px;
    width: 70px;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 32px;
  }

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

  code {
    font-size: 14px;
  }

  .button {
    width: 100%;
  }

  .summary-band div {
    min-height: 116px;
  }

  .section {
    padding-block: 52px;
  }

  .steps article,
  .feature-list div {
    min-height: auto;
  }
}
