:root {
  --ink: #10232e;
  --ink-soft: #29424c;
  --paper: #f6f3eb;
  --paper-deep: #ebe8de;
  --white: #fffdf8;
  --line: #d9d7cc;
  --muted: #6b7779;
  --green: #c9ef68;
  --green-deep: #84b52e;
  --coral: #f4775c;
  --blue: #466cff;
  --shadow: 0 18px 50px rgba(16, 35, 46, 0.09);
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Arial Narrow", "Avenir Next Condensed", Inter, ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 4%, rgba(201, 239, 104, 0.16), transparent 25rem),
    var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::selection {
  color: var(--ink);
  background: var(--green);
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

.narrow-shell {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 12px;
  padding: 8px 14px;
  color: var(--ink);
  background: var(--green);
  border-radius: 4px;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  background: rgba(246, 243, 235, 0.9);
  border-bottom: 1px solid rgba(217, 215, 204, 0.78);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 760;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  color: var(--ink);
  background: var(--green);
  border: 1px solid var(--ink);
  border-radius: 9px 3px 9px 3px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.1em;
  line-height: 1;
}

.brand-name {
  font-size: 18px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link,
.nav-github {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 660;
  text-decoration: none;
}

.nav-link {
  position: relative;
  padding: 25px 0 23px;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 14px;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-github {
  padding: 8px 13px;
  color: var(--white);
  background: var(--ink);
  border-radius: 4px;
}

.nav-github:hover,
.nav-github:focus-visible {
  background: var(--blue);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
}

.menu-toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 160ms ease;
}

.site-main {
  min-height: 60vh;
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--coral);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, 0.94fr);
  align-items: center;
  gap: clamp(48px, 7vw, 104px);
  width: min(1280px, calc(100% - 48px));
  min-height: 690px;
  margin: 0 auto;
  padding: 88px 0 96px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: -25vw;
  width: 48vw;
  height: 100%;
  background: linear-gradient(135deg, rgba(201, 239, 104, 0.15), rgba(201, 239, 104, 0));
  clip-path: polygon(25% 0, 100% 0, 100% 74%, 0 100%);
  content: "";
}

.hero-copy {
  max-width: 720px;
}

.hero h1,
.page-hero h1 {
  max-width: 850px;
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(3.4rem, 7.4vw, 7.3rem);
  font-weight: 850;
  letter-spacing: -0.085em;
  line-height: 0.91;
}

.hero h1 {
  max-width: 760px;
}

.hero h1 span {
  color: var(--blue);
}

.hero-lede,
.lede {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 35px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 17px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--ink);
  background: var(--green);
  border-color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #d9fa83;
}

.button--dark {
  color: var(--white);
  background: var(--ink);
}

.button--dark:hover,
.button--dark:focus-visible {
  background: var(--blue);
}

.button--quiet {
  color: var(--ink-soft);
  border-color: var(--line);
}

.button--quiet:hover,
.button--quiet:focus-visible {
  color: var(--ink);
  background: var(--white);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 34px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.02em;
}

.hero-meta span::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 8px 1px 0;
  background: var(--coral);
  border-radius: 50%;
  content: "";
}

.hero-console {
  position: relative;
  padding: 13px;
  background: var(--ink);
  border: 1px solid rgba(16, 35, 46, 0.7);
  border-radius: 12px;
  box-shadow: 17px 19px 0 rgba(201, 239, 104, 0.5), var(--shadow);
  transform: rotate(1.5deg);
}

.hero-console::after {
  position: absolute;
  right: -33px;
  bottom: -40px;
  width: 92px;
  height: 92px;
  border: 1px solid var(--coral);
  border-radius: 50%;
  content: "";
  opacity: 0.8;
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 7px 13px;
}

.window-dot {
  width: 8px;
  height: 8px;
  background: #6d8184;
  border-radius: 50%;
}

.window-dot:first-child {
  background: var(--coral);
}

.window-dot:nth-child(2) {
  background: var(--green);
}

.window-title {
  margin-left: 8px;
  color: #789096;
  font-family: var(--mono);
  font-size: 10px;
}

.terminal-code {
  min-height: 360px;
  margin: 0;
  padding: 28px 26px;
  color: #dcece7;
  background: #172e39;
  border: 1px solid rgba(220, 236, 231, 0.11);
  border-radius: 6px;
  font-family: var(--mono);
  font-size: clamp(11px, 1.1vw, 13px);
  line-height: 1.85;
  overflow: auto;
}

.terminal-code .prompt {
  color: var(--green);
}

.terminal-code .command {
  color: #fff6cf;
}

.terminal-code .comment {
  color: #789096;
}

.pipeline {
  padding: 0 0 82px;
}

.pipeline-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pipeline-step {
  position: relative;
  min-height: 116px;
  padding: 24px 20px 22px 0;
}

.pipeline-step + .pipeline-step {
  padding-left: 25px;
  border-left: 1px solid var(--line);
}

.pipeline-step::after {
  position: absolute;
  top: 29px;
  right: 18px;
  color: var(--coral);
  content: "->";
  font-family: var(--mono);
  font-size: 12px;
}

.pipeline-step:last-child::after {
  content: "";
}

.pipeline-number {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
}

.pipeline-step strong {
  display: block;
  font-size: 15px;
}

.pipeline-step span:last-child {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.band {
  padding: 104px 0;
}

.band--ink {
  color: var(--white);
  background: var(--ink);
}

.band--soft {
  background: var(--paper-deep);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

.section-heading h2,
.band h2 {
  max-width: 720px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.5vw, 4.7rem);
  font-weight: 850;
  letter-spacing: -0.075em;
  line-height: 0.96;
}

.section-heading p {
  max-width: 370px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.band--ink .section-heading p,
.band--ink .eyebrow {
  color: #9db1b2;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-card {
  min-height: 260px;
  padding: 25px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 5px;
}

.feature-card:nth-child(3) {
  background: var(--green);
  border-color: var(--ink);
}

.feature-card:nth-child(4) {
  background: var(--ink);
  border-color: var(--ink);
}

.feature-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  margin-bottom: 46px;
  color: var(--ink);
  background: var(--coral);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
}

.feature-card:nth-child(3) .feature-index {
  background: var(--ink);
  color: var(--green);
}

.feature-card:nth-child(4) {
  color: var(--white);
}

.feature-card:nth-child(4) .feature-index {
  color: var(--ink);
  background: var(--green);
}

.feature-card h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.feature-card p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.feature-card:nth-child(4) p {
  color: #b4c4c3;
}

.feature-card code,
.pill,
.inline-code {
  font-family: var(--mono);
}

.feature-card code {
  color: var(--blue);
  font-size: 12px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: 70px;
}

.split-section > .section-heading {
  display: block;
  margin: 0;
}

.split-section > .section-heading p {
  margin-top: 25px;
}

.code-card {
  padding: 10px;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: 10px 10px 0 rgba(244, 119, 92, 0.7);
}

.code-card .highlight {
  margin: 0;
  border: 0;
  box-shadow: none;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.pill {
  display: inline-block;
  padding: 5px 9px;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 11px;
}

.code-card .pill {
  color: #d8e7dd;
  background: #1d3a45;
  border-color: #315460;
}

.cta-band {
  padding: 82px 0;
  color: var(--ink);
  background: var(--green);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-inner h2 {
  max-width: 690px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 5.1rem);
  font-weight: 850;
  letter-spacing: -0.08em;
  line-height: 0.94;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

.page-hero {
  padding: 100px 0 88px;
  background:
    linear-gradient(120deg, rgba(201, 239, 104, 0.35), transparent 48%),
    var(--paper-deep);
  border-bottom: 1px solid var(--line);
}

.page-hero--compact {
  padding: 120px 0;
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(3.2rem, 7vw, 6.6rem);
}

.page-hero .lede {
  max-width: 680px;
}

.page-content {
  padding: 80px 0 110px;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 245px;
  gap: 80px;
  align-items: start;
}

.prose {
  min-width: 0;
}

.prose > :first-child {
  margin-top: 0;
}

.prose h2 {
  margin: 62px 0 17px;
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  font-weight: 850;
  letter-spacing: -0.065em;
  line-height: 1;
}

.prose h3 {
  margin: 38px 0 12px;
  font-size: 1.35rem;
  letter-spacing: -0.035em;
}

.prose h4 {
  margin: 27px 0 9px;
  font-size: 1rem;
}

.prose p,
.prose ul,
.prose ol {
  max-width: 760px;
}

.prose ul,
.prose ol {
  padding-left: 23px;
}

.prose li + li {
  margin-top: 8px;
}

.prose strong {
  font-weight: 760;
}

.prose a {
  color: var(--blue);
  font-weight: 650;
}

.prose blockquote {
  margin: 28px 0;
  padding: 18px 22px;
  color: var(--ink-soft);
  background: rgba(201, 239, 104, 0.23);
  border-left: 4px solid var(--green-deep);
}

.prose blockquote p:last-child {
  margin-bottom: 0;
}

.prose hr {
  margin: 55px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.prose code:not(pre code),
.inline-code {
  padding: 2px 5px;
  color: var(--ink);
  background: var(--paper-deep);
  border-radius: 3px;
  font-size: 0.9em;
}

.highlight {
  position: relative;
  margin: 23px 0 30px;
  color: #d8e7dd;
  background: var(--ink);
  border: 1px solid #23404a;
  border-radius: 6px;
  box-shadow: 7px 7px 0 rgba(201, 239, 104, 0.33);
}

.highlight pre {
  margin: 0;
  padding: 23px 24px;
  overflow-x: auto;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.75;
  tab-size: 2;
}

.highlight code {
  font-family: inherit;
}

.copy-button {
  position: absolute;
  top: 9px;
  right: 9px;
  padding: 4px 7px;
  color: #9db1b2;
  background: #1d3a45;
  border: 1px solid #315460;
  border-radius: 3px;
  font-family: var(--mono);
  font-size: 10px;
  cursor: pointer;
}

.copy-button:hover,
.copy-button:focus-visible {
  color: var(--ink);
  background: var(--green);
}

.highlight .c,
.highlight .c1,
.highlight .cm,
.highlight .cs {
  color: #789096;
}

.highlight .k,
.highlight .kd,
.highlight .kn,
.highlight .kr {
  color: #f6a49a;
}

.highlight .s,
.highlight .s1,
.highlight .s2,
.highlight .se {
  color: #e6d58c;
}

.highlight .nf,
.highlight .nc,
.highlight .nd {
  color: #a9c5ff;
}

.highlight .mi,
.highlight .mf,
.highlight .m {
  color: #c9ef68;
}

.side-nav {
  position: sticky;
  top: 105px;
  padding: 19px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.side-nav-label {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.side-nav a {
  display: block;
  padding: 7px 0;
  color: var(--ink-soft);
  font-size: 13px;
  text-decoration: none;
}

.side-nav a:hover,
.side-nav a:focus-visible {
  color: var(--blue);
}

.notice {
  margin: 28px 0;
  padding: 18px 21px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: 4px;
}

.notice p:last-child {
  margin-bottom: 0;
}

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.recipe-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 5px;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.recipe-card:hover,
.recipe-card:focus-visible {
  border-color: var(--ink);
  box-shadow: 8px 8px 0 var(--green);
  transform: translate(-2px, -2px);
}

.recipe-card:nth-child(2) {
  background: var(--ink);
  color: var(--white);
}

.recipe-card:nth-child(4) {
  background: var(--green);
  border-color: var(--ink);
}

.recipe-number {
  color: var(--coral);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
}

.recipe-card h2 {
  margin: 55px 0 9px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.recipe-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.recipe-card:nth-child(2) p {
  color: #b4c4c3;
}

.recipe-card:nth-child(4) p {
  color: var(--ink-soft);
}

.recipe-arrow {
  margin-top: 24px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
}

.recipe-card:nth-child(2) .recipe-arrow {
  color: var(--green);
}

.data-table-wrap {
  margin: 25px 0 32px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.data-table {
  width: 100%;
  min-width: 590px;
  border-collapse: collapse;
  background: var(--white);
  font-size: 14px;
  text-align: left;
}

.data-table th,
.data-table td {
  padding: 13px 15px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.data-table th {
  color: var(--muted);
  background: var(--paper-deep);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.api-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.api-card {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.api-card h3 {
  margin: 0 0 12px;
  font-size: 17px;
}

.api-card ul {
  margin: 0;
  padding-left: 20px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.9;
}

.api-card code {
  color: var(--blue);
}

.step-list {
  counter-reset: steps;
  list-style: none;
  margin: 30px 0;
  padding: 0;
}

.step-list li {
  position: relative;
  min-height: 65px;
  padding: 0 0 26px 52px;
  border-left: 1px solid var(--line);
}

.step-list li:last-child {
  min-height: 0;
  padding-bottom: 0;
  border-left-color: transparent;
}

.step-list li::before {
  position: absolute;
  top: 0;
  left: -16px;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  color: var(--ink);
  background: var(--green);
  border: 1px solid var(--ink);
  border-radius: 50%;
  content: counter(steps);
  counter-increment: steps;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
}

.step-list strong {
  display: block;
  margin-bottom: 3px;
}

.step-list span {
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  padding: 55px 0 20px;
  color: var(--white);
  background: var(--ink);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 42px;
}

.brand--footer {
  color: var(--white);
}

.brand--footer .brand-mark {
  color: var(--ink);
}

.footer-note {
  max-width: 310px;
  margin: 17px 0 0;
  color: #9db1b2;
  font-size: 13px;
}

.footer-links {
  display: flex;
  align-items: start;
  gap: 27px;
}

.footer-links a {
  color: #d8e7dd;
  font-size: 13px;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--green);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  color: #789096;
  border-top: 1px solid #294650;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
    gap: 48px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 7vw, 5.5rem);
  }

  .content-layout {
    gap: 40px;
  }
}

@media (max-width: 760px) {
  .shell,
  .narrow-shell,
  .hero {
    width: min(100% - 34px, 680px);
  }

  .header-inner {
    min-height: 66px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    padding: 8px 17px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 15px 25px rgba(16, 35, 46, 0.08);
  }

  .site-nav.is-open {
    display: block;
  }

  .nav-link,
  .nav-github {
    display: block;
    padding: 13px 0;
  }

  .nav-link::after {
    bottom: 7px;
    left: 0;
    right: auto;
    width: 35px;
  }

  .nav-github {
    margin-top: 8px;
    padding: 10px 13px;
    text-align: center;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-line:first-of-type {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-line:last-of-type {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero {
    display: block;
    min-height: 0;
    padding: 68px 0 75px;
  }

  .hero::before {
    right: -50vw;
    width: 100vw;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(3.3rem, 15vw, 5.5rem);
  }

  .hero-lede,
  .lede {
    margin-top: 24px;
    font-size: 1rem;
  }

  .hero-console {
    max-width: 560px;
    margin: 60px 12px 0 0;
    transform: rotate(0.5deg);
  }

  .terminal-code {
    min-height: 0;
    padding: 21px 17px;
    font-size: 11px;
  }

  .pipeline {
    padding-bottom: 60px;
  }

  .pipeline-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .pipeline-step {
    min-height: 105px;
    padding: 20px 14px 18px 0;
  }

  .pipeline-step + .pipeline-step {
    padding-left: 14px;
  }

  .pipeline-step:nth-child(odd) {
    border-left: 0;
  }

  .pipeline-step::after {
    right: 8px;
  }

  .pipeline-step:nth-child(2)::after,
  .pipeline-step:last-child::after {
    content: "";
  }

  .pipeline-step:nth-child(3),
  .pipeline-step:nth-child(4),
  .pipeline-step:nth-child(5) {
    border-top: 1px solid var(--line);
  }

  .band {
    padding: 70px 0;
  }

  .section-heading {
    display: block;
    margin-bottom: 28px;
  }

  .section-heading h2,
  .band h2 {
    font-size: clamp(2.7rem, 12vw, 4.1rem);
  }

  .section-heading p {
    margin-top: 18px;
  }

  .feature-grid,
  .recipe-grid,
  .api-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card:nth-child(2),
  .feature-card:nth-child(5),
  .feature-card:nth-child(6) {
    min-height: 210px;
    transform: none;
  }

  .feature-index {
    margin-bottom: 34px;
  }

  .split-section {
    display: block;
  }

  .split-section > .section-heading {
    margin-bottom: 34px;
  }

  .cta-band {
    padding: 62px 0;
  }

  .cta-inner {
    display: block;
  }

  .cta-actions {
    margin-top: 27px;
  }

  .page-hero,
  .page-hero--compact {
    padding: 72px 0 64px;
  }

  .page-content {
    padding: 55px 0 75px;
  }

  .content-layout {
    display: block;
  }

  .side-nav {
    position: static;
    margin-top: 54px;
  }

  .footer-inner,
  .footer-bottom {
    display: block;
  }

  .footer-links {
    display: block;
    margin-top: 28px;
  }

  .footer-links a {
    display: block;
    margin-top: 11px;
  }

  .footer-bottom span {
    display: block;
  }

  .footer-bottom span + span {
    margin-top: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
