:root {
  --bg: #f7f7f3;
  --text: #202125;
  --muted: #64666d;
  --line: #d8d8d2;
  --card: #f4f4ef;
  --brand: #79ae9a;
  --brand-soft: #d8ebe3;
  --dark: #242426;
  --radius: 22px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.shell {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

.announcement {
  background: #d1f15d;
  color: #182008;
  text-align: center;
  font-size: 0.88rem;
  padding: 0.55rem 0.85rem;
}

.announcement a {
  margin-left: 0.35rem;
  text-decoration: underline;
}

.site-header {
  border-bottom: 1px solid var(--line);
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  text-decoration: none;
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nav-links,
.auth-links {
  display: flex;
  align-items: center;
  gap: 1.45rem;
}

.nav-links a,
.auth-links a {
  text-decoration: none;
  color: #53565f;
  font-weight: 500;
  font-size: 0.92rem;
}

.auth-links a:first-child:hover,
.nav-links a:hover,
.footer-links a:hover {
  color: #121316;
}

.btn {
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 0.25rem 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  font-weight: 700;
}

.btn.dark {
  background: var(--dark);
  color: #fff;
  border-color: #343438;
}

.btn-small {
  padding: 0.45rem 0.92rem;
}

.section {
  padding: 5rem 0;
}

.eyebrow {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  color: #70737d;
  margin-bottom: 0.8rem;
}

.hero {
  text-align: center;
  padding-top: 4.2rem;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.35rem, 7vw, 4.35rem);
  max-width: 15.3ch;
  margin: 0 auto;
  font-weight: 800;
}

h1 span {
  background: linear-gradient(180deg, #9bcab9, #5f8f7e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  max-width: 66ch;
  margin: 1.2rem auto 0;
  color: var(--muted);
}

.hero-actions {
  margin-top: 1.3rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-actions a {
  text-decoration: none;
  color: #414449;
  font-weight: 600;
}

.prompt-card {
  margin: 2.2rem auto 0;
  width: min(760px, 95%);
  border: 1px solid #d7e1dc;
  border-radius: 17px;
  padding: 1rem 1.1rem;
  text-align: left;
  background: rgba(243, 249, 246, 0.74);
  box-shadow: 0 12px 50px rgba(91, 129, 114, 0.16);
}

.prompt-card p {
  color: #5d626a;
}

.chips {
  margin-top: 0.65rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.chips span {
  background: #eef1ef;
  border: 1px solid #d8dfdb;
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  font-size: 0.74rem;
  color: #60636c;
}

.center {
  text-align: center;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.55rem);
}

.stats-grid {
  margin-top: 2.1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stats-grid article {
  padding: 1.75rem 1.2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-grid article:nth-child(3n) {
  border-right: none;
}

.stats-grid article:nth-last-child(-n + 3) {
  border-bottom: none;
}

.stats-grid h3 {
  font-size: clamp(1.7rem, 2.5vw, 2.25rem);
  font-weight: 700;
}

.stats-grid p {
  color: var(--muted);
  margin-top: 0.35rem;
}

.logos {
  text-align: center;
  padding-top: 2rem;
}

.logos > p {
  color: #3f4248;
  font-size: 1.1rem;
}

.logo-row {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.logo-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.9rem;
  color: #353841;
  background: #fbfbf7;
}

.section-head {
  margin-bottom: 1.6rem;
}

.feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fafaf6;
  padding: 1.2rem;
}

.card h3 {
  font-size: 1.62rem;
  font-weight: 700;
}

.card p {
  color: var(--muted);
  margin-top: 0.75rem;
}

code,
pre {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

.benchmark {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.benchmark-tabs {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  background: #efefea;
  border: 1px solid var(--line);
  border-radius: 999px;
  width: fit-content;
  padding: 0.28rem;
}

.benchmark-tabs span {
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.85rem;
  color: #666a73;
}

.benchmark-tabs .active {
  background: #dcebe4;
  color: #24453a;
}

.benchmark-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
}

.chart,
.methodology,
.step,
.code-card,
.press-row article,
.cta {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fafaf7;
}

.chart {
  padding: 1.1rem 1.1rem 0.9rem;
}

.bar-row {
  min-height: 270px;
  padding: 1.2rem;
  background: #f0f1ec;
  border-radius: 16px;
  display: grid;
  align-items: end;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.bar {
  height: var(--h);
  background: #cecec7;
  border-radius: 12px 12px 6px 6px;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0.55rem;
}

.bar.active {
  background: #8fc0ad;
}

.bar-labels {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  text-align: center;
  font-size: 0.76rem;
  color: #61656e;
}

.methodology {
  padding: 1.25rem;
}

.methodology h3 {
  font-size: 1.75rem;
  margin-bottom: 0.7rem;
}

.methodology h4 {
  margin-top: 1rem;
  font-size: 0.94rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #636771;
}

.methodology p,
.methodology li {
  color: var(--muted);
}

.methodology ul {
  margin-top: 0.65rem;
  padding-left: 1.1rem;
}

.steps,
.two-col,
.example-grid,
.press-row {
  display: grid;
  gap: 1rem;
}

.steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step,
.code-card,
.press-row article {
  padding: 1.15rem;
}

.step span {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.78rem;
  color: #5e7f73;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

.step h3,
.code-card h3,
.press-row h3 {
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
}

.step p,
.code-card p,
.press-row p {
  color: var(--muted);
}

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

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

.code-card pre {
  white-space: pre-wrap;
  font-size: 0.84rem;
  color: #32353b;
}

.press-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cta {
  background: linear-gradient(180deg, rgba(214, 237, 228, 0.72), rgba(243, 245, 238, 0.95));
  padding: 3.1rem 1.4rem;
  text-align: center;
}

.cta h2 {
  max-width: 16ch;
  margin: 0 auto;
}

.footer {
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.footer-title {
  font-weight: 700;
  font-size: 1.02rem;
}

.pills {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.pills a {
  border: 1px solid #c8ccc8;
  border-radius: 999px;
  text-decoration: none;
  padding: 0.38rem 0.7rem;
  font-size: 0.84rem;
  color: #4c5057;
}

.subtle {
  margin-top: 0.75rem;
  color: #757983;
  font-size: 0.92rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  column-gap: 2rem;
  row-gap: 0.7rem;
  align-content: start;
}

.footer-links a {
  text-decoration: none;
  color: #5e616a;
}

@media (max-width: 1100px) {
  .logo-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

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

  .stats-grid article:nth-child(2n) {
    border-right: none;
  }

  .stats-grid article:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .benchmark-grid {
    grid-template-columns: 1fr;
  }

  .two-col,
  .example-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(var(--max), calc(100% - 1.2rem));
  }

  .announcement {
    font-size: 0.78rem;
  }

  .stats-grid,
  .logo-row,
  .feature-grid,
  .steps,
  .press-row {
    grid-template-columns: 1fr;
  }

  .stats-grid article {
    border-right: none;
  }
}
