:root {
  --bg: #ffffff;
  --text: #171717;
  --muted: #4d4d4d;
  --soft: #666666;
  --line: #ebebeb;
  --surface: #fafafa;
  --blue: #0a72ef;
  --pink: #de1d8d;
  --red: #ff5b4f;
  --focus: hsla(212, 100%, 48%, 1);
  --shadow-border: rgba(0, 0, 0, 0.08) 0 0 0 1px;
  --shadow-card: rgba(0, 0, 0, 0.08) 0 0 0 1px, rgba(0, 0, 0, 0.04) 0 2px 2px,
    rgba(0, 0, 0, 0.04) 0 8px 8px -8px, #fafafa 0 0 0 1px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Geist", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-feature-settings: "liga";
  color: var(--text);
  background: var(--bg);
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

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

.section-pad {
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: rgba(0, 0, 0, 0.08) 0 1px 0;
}

.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: -0.32px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--text);
  box-shadow: var(--shadow-border);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 13px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a:not(.nav-cta) {
  color: var(--muted);
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  color: #ffffff;
  background: var(--text);
  border-radius: 6px;
  padding: 9px 14px;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: var(--shadow-border);
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 1px;
  margin: 5px auto;
  background: var(--text);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 68px);
}

.hero-bg {
  position: absolute;
  inset: 40px -80px auto auto;
  width: 640px;
  height: 420px;
  z-index: -1;
  background: radial-gradient(circle at 22% 20%, rgba(10, 114, 239, 0.16), transparent 34%),
    radial-gradient(circle at 70% 35%, rgba(222, 29, 141, 0.13), transparent 30%),
    radial-gradient(circle at 50% 80%, rgba(255, 91, 79, 0.12), transparent 32%);
  filter: blur(8px);
}

.eyebrow {
  margin: 0 0 14px;
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
}

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

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(48px, 8vw, 84px);
  line-height: 0.95;
  letter-spacing: clamp(-4.8px, -0.06em, -2.4px);
  font-weight: 600;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: -2.4px;
  font-weight: 600;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.72px;
  font-weight: 600;
}

.hero-lede,
.section-heading p,
.section-copy,
.showcase-card p,
.cta-card p {
  max-width: 680px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 17px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--text);
  color: #ffffff;
  box-shadow: var(--shadow-border);
}

.button.secondary {
  background: #ffffff;
  color: var(--text);
  box-shadow: rgb(235, 235, 235) 0 0 0 1px;
}

.hero-panel {
  padding: 14px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.panel-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  color: var(--soft);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 12px;
}

.panel-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
}

.panel-topbar p {
  margin: 0 0 0 8px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.metrics-grid article,
.terminal-card,
.feature-card,
.process-list article {
  border-radius: 12px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.metrics-grid article {
  padding: 18px;
}

.metrics-grid small,
.metrics-grid span {
  display: block;
  color: var(--soft);
}

.metrics-grid small {
  margin-bottom: 6px;
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 12px;
}

.metrics-grid strong {
  display: block;
  margin-bottom: 5px;
  font-size: 28px;
  letter-spacing: -1.2px;
}

.terminal-card {
  margin-top: 12px;
  padding: 18px;
  background: #171717;
  color: #ffffff;
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 13px;
  line-height: 1.8;
}

.prompt {
  color: #8ab4ff;
}

.muted {
  color: #a1a1a1;
}

.success {
  color: #86efac;
}

.trust-strip {
  box-shadow: rgba(0, 0, 0, 0.08) 0 -1px 0, rgba(0, 0, 0, 0.08) 0 1px 0;
}

.trust-content {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--soft);
  font-size: 14px;
}

.trust-content span {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.trust-content p {
  margin: 0;
  font-weight: 500;
  color: var(--text);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.card-grid {
  display: grid;
  gap: 16px;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  padding: 28px;
  min-height: 260px;
}

.feature-card p,
.process-list p {
  color: var(--muted);
  line-height: 1.6;
}

.icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 30px;
  margin-bottom: 58px;
  border-radius: 999px;
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 500;
}

.icon.blue {
  color: #0068d6;
  background: #ebf5ff;
}

.icon.pink {
  color: #b31470;
  background: #fff0f8;
}

.icon.red {
  color: #b42318;
  background: #fff1f0;
}

.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list article {
  padding: 24px;
}

.process-list span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.showcase-card,
.cta-card {
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  background: #ffffff;
}

.showcase-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: clamp(28px, 6vw, 56px);
  overflow: hidden;
}

.showcase-stack {
  min-height: 340px;
  position: relative;
}

.mini-card {
  position: absolute;
  width: 64%;
  height: 170px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.mini-card.wide {
  top: 0;
  right: 0;
  width: 82%;
  background: linear-gradient(135deg, #ffffff, #f4f8ff);
}

.mini-card:not(.wide):not(.dark) {
  left: 0;
  top: 94px;
  background: linear-gradient(135deg, #ffffff, #fff5fb);
}

.mini-card.dark {
  right: 30px;
  bottom: 0;
  background: #171717;
}

.cta-card {
  text-align: center;
  padding: clamp(34px, 7vw, 76px);
}

.cta-card p {
  margin-left: auto;
  margin-right: auto;
}

.footer {
  padding: 36px 0;
  box-shadow: rgba(0, 0, 0, 0.08) 0 -1px 0;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--soft);
  font-size: 14px;
}

.footer-content p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 20px;
  color: var(--text);
  font-weight: 500;
}

@media (max-width: 900px) {
  .section-pad {
    padding: 72px 0;
  }

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

  .hero {
    min-height: auto;
    padding-top: 80px;
  }

  .card-grid.three {
    grid-template-columns: 1fr;
  }

  .trust-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 24px 0;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 28px, 1120px);
  }

  .nav-links {
    position: fixed;
    inset: 68px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
    border-radius: 8px;
  }

  .nav-cta {
    text-align: center;
  }

  .nav-toggle {
    display: block;
  }

  h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

  h2 {
    letter-spacing: -1.6px;
  }

  .hero-actions,
  .footer-content,
  .footer-links {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-panel {
    padding: 10px;
  }

  .trust-content {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-card {
    min-height: auto;
  }

  .icon {
    margin-bottom: 38px;
  }

  .showcase-stack {
    min-height: 260px;
  }
}
