:root {
  color-scheme: dark;
  --ink: #f3f4ed;
  --muted: #9fa9a1;
  --green: #73e6a1;
  --green-deep: #163d2c;
  --line: rgba(222, 238, 227, 0.13);
  --panel: #0d1712;
  --panel-soft: #111d17;
  --page: #07100b;
  --serif: "Iowan Old Style", "Baskerville", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 88% 7%, rgba(72, 168, 110, 0.12), transparent 25rem),
    var(--page);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

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

button {
  color: inherit;
  font: inherit;
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand img {
  border-radius: 11px;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.38);
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: #b9c1bb;
  font-size: 0.82rem;
  font-weight: 600;
}

nav a, footer a {
  transition: color .2s ease;
}

nav a:hover, footer a:hover {
  color: var(--green);
}

.nav-cta {
  justify-self: end;
  padding: 10px 17px;
  border: 1px solid rgba(115, 230, 161, 0.3);
  border-radius: 999px;
  background: rgba(115, 230, 161, 0.08);
  color: #baf6d0;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  align-items: center;
  gap: clamp(42px, 7vw, 100px);
  width: min(1180px, calc(100% - 48px));
  min-height: 740px;
  margin: 0 auto;
  padding: 84px 0 106px;
}

.eyebrow, .section-kicker {
  margin: 0 0 22px;
  color: #9fc6ad;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
}

.eyebrow span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}

.hero h1 {
  margin: 0;
  font-size: clamp(4.2rem, 7.7vw, 7rem);
  font-weight: 500;
  letter-spacing: -.075em;
  line-height: .82;
}

em {
  color: var(--green);
  font-family: var(--serif);
  font-weight: 500;
}

.hero-lede {
  max-width: 520px;
  margin: 34px 0 0;
  color: #afb8b1;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 50px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: .82rem;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

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

.button-primary {
  background: var(--green);
  color: #06140c;
  box-shadow: 0 10px 30px rgba(56, 214, 117, .16);
}

.button-primary:hover {
  background: #8aefb1;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255,255,255,.025);
  color: #d5d9d6;
}

.button-secondary:hover {
  border-color: rgba(115,230,161,.35);
}

.requirement {
  margin: 18px 0 0;
  color: #657068;
  font-size: .7rem;
}

.hero-stage {
  position: relative;
  min-width: 0;
}

.ambient-orb {
  position: absolute;
  top: 10%;
  right: 4%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(74, 207, 126, .1);
  filter: blur(80px);
}

.desktop {
  position: relative;
  aspect-ratio: 1.14;
  overflow: hidden;
  border: 1px solid rgba(228, 242, 231, .14);
  border-radius: 20px;
  background:
    radial-gradient(circle at 36% 40%, #324d3e 0, transparent 45%),
    linear-gradient(135deg, #15251c, #07110b 70%);
  box-shadow: 0 38px 100px rgba(0,0,0,.43), inset 0 1px rgba(255,255,255,.08);
}

.desktop::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.06), transparent 24%);
  content: "";
  pointer-events: none;
}

.desktop-bar {
  position: absolute;
  inset: 0 0 auto;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 30px;
  padding: 0 11px;
  background: rgba(5, 10, 7, .68);
  color: rgba(255,255,255,.68);
  font-size: .47rem;
  backdrop-filter: blur(16px);
}

.desktop-brand, .desktop-status {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mini-mark {
  display: grid;
  width: 15px;
  height: 15px;
  place-items: center;
  border: 1px solid rgba(115,230,161,.35);
  border-radius: 5px;
  color: var(--green);
  font-size: .4rem;
}

.app-window {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 11px;
  background: #1d211f;
  box-shadow: 0 24px 50px rgba(0,0,0,.45);
}

.back-window {
  top: 15%;
  left: 7%;
  width: 58%;
  height: 53%;
  transform: rotate(-1.5deg);
  opacity: .88;
}

.front-window {
  --window-radius: 14px;
  right: 7%;
  bottom: 8%;
  z-index: 3;
  width: 61%;
  height: 59%;
  overflow: visible;
  border-radius: var(--window-radius);
  background: #e8e5dd;
  color: #242924;
}

.front-window::before {
  position: absolute;
  inset: -4px;
  z-index: -1;
  border: 2px solid var(--active-color, #73e6a1);
  border-radius: var(--window-radius);
  box-shadow: 0 0 17px color-mix(in srgb, var(--active-color, #73e6a1) 52%, transparent);
  content: "";
  transition: border-color .25s ease, box-shadow .25s ease;
}

.front-window > .window-bar {
  border-radius: calc(var(--window-radius) - 1px) calc(var(--window-radius) - 1px) 0 0;
}

.window-label {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 12px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 144px;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 8px;
  background: var(--active-color, #73e6a1);
  color: #0c2315;
  font-size: .6rem;
  font-weight: 700;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--active-color, #73e6a1) 30%, transparent);
  transition: background .25s ease, box-shadow .25s ease;
}

.window-label span {
  margin-left: 18px;
  letter-spacing: 1px;
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 27px;
  padding: 0 9px;
  border-bottom: 1px solid rgba(0,0,0,.15);
  background: rgba(243,243,241,.85);
}

.back-window .window-bar {
  background: #292e2c;
  border-bottom-color: rgba(255,255,255,.08);
}

.window-bar i {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff655e;
}

.window-bar i:nth-child(2) { background: #ffc04c; }
.window-bar i:nth-child(3) { background: #43c552; }

.window-bar strong {
  margin-left: auto;
  margin-right: auto;
  font-size: .52rem;
}

.code-lines {
  display: grid;
  gap: 11px;
  padding: 28px;
}

.code-lines b {
  width: 76%;
  height: 5px;
  border-radius: 999px;
  background: #58615d;
}

.code-lines b:nth-child(2), .code-lines b:nth-child(5) { width: 47%; background: #775f8a; }
.code-lines b:nth-child(3) { width: 64%; background: #5f8170; }
.code-lines b:nth-child(4) { width: 84%; }

.note-sheet {
  padding: 9% 11%;
}

.note-sheet > span {
  color: #96998f;
  font-size: .48rem;
  text-transform: uppercase;
}

.note-sheet h2 {
  margin: 5px 0 14px;
  font-family: var(--serif);
  font-size: clamp(.8rem, 2vw, 1.3rem);
  font-style: italic;
}

.note-sheet ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: clamp(.45rem, 1vw, .62rem);
}

.note-sheet li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.note-sheet li i {
  display: grid;
  width: 13px;
  height: 13px;
  place-items: center;
  border: 1px solid #a4a79f;
  border-radius: 50%;
  font-size: .45rem;
  font-style: normal;
}

.note-sheet li i.checked {
  border-color: #4c9d6a;
  background: #4c9d6a;
  color: white;
}

.menubar-popover {
  position: absolute;
  top: 9%;
  right: 4%;
  z-index: 6;
  width: 44%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 11px;
  background: rgba(32, 35, 34, .82);
  color: white;
  box-shadow: 0 22px 60px rgba(0,0,0,.48);
  backdrop-filter: blur(28px);
}

.popover-title, .popover-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  font-size: .5rem;
}

.popover-title span {
  color: rgba(255,255,255,.45);
}

.window-item {
  display: grid;
  grid-template-columns: 20px 1fr 8px;
  align-items: center;
  gap: 7px;
  width: calc(100% - 12px);
  margin: 3px 6px;
  padding: 8px 7px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease;
}

.window-item:hover, .window-item.is-active {
  border-color: rgba(255,255,255,.08);
  background: rgba(255,255,255,.09);
}

.focus-icon {
  color: rgba(255,255,255,.6);
  font-size: .8rem;
}

.window-copy {
  display: grid;
  min-width: 0;
}

.window-copy strong {
  overflow: hidden;
  font-size: .5rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.window-copy small {
  overflow: hidden;
  margin-top: 2px;
  color: rgba(255,255,255,.45);
  font-size: .4rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.window-item > i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dot);
}

.popover-footer {
  margin-top: 6px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.53);
  font-size: .42rem;
}

.stage-hint {
  margin: 16px 0 0;
  color: #69756c;
  font-size: .66rem;
  text-align: center;
}

.stage-hint span {
  margin-right: 6px;
  padding: 3px 7px;
  border: 1px solid rgba(115,230,161,.22);
  border-radius: 999px;
  color: #8ecba5;
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 25px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip p {
  margin: 0;
  color: #737e76;
  font-size: .68rem;
  text-align: center;
}

.trust-strip p + p {
  border-left: 1px solid var(--line);
}

.trust-strip strong {
  margin-right: 7px;
  color: #c6cec8;
}

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

.intro-grid {
  display: grid;
  grid-template-columns: 1fr .78fr;
  gap: 12%;
  align-items: end;
}

.intro h2, .feature-copy h2, .cli-copy h2, .privacy-band h2, .download-card h2 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.25rem);
  font-weight: 500;
  letter-spacing: -.065em;
  line-height: .96;
}

.intro-grid > p, .feature-copy > p, .cli-copy > p {
  margin: 0;
  color: #909b93;
  font-size: .96rem;
  line-height: 1.8;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 76px;
}

.flow-card {
  position: relative;
  min-width: 0;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.01));
}

.flow-number {
  position: absolute;
  top: 16px;
  right: 17px;
  color: #4f5a52;
  font-family: var(--mono);
  font-size: .62rem;
}

.mini-demo {
  position: relative;
  display: grid;
  height: 190px;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  background: #0a120e;
}

.label-demo .demo-window {
  width: 64%;
  height: 53%;
  border: 1px solid #3d4841;
  border-radius: 8px;
  background: #1a231e;
  box-shadow: 0 10px 32px rgba(0,0,0,.4);
}

.label-demo .demo-window::before {
  display: block;
  height: 20px;
  border-bottom: 1px solid #39423d;
  background: radial-gradient(circle at 14px 10px, #ee6a62 2px, transparent 3px), radial-gradient(circle at 24px 10px, #f0bd5e 2px, transparent 3px), radial-gradient(circle at 34px 10px, #66c976 2px, transparent 3px);
  content: "";
}

.label-demo > span {
  position: absolute;
  top: 33px;
  left: 22%;
  padding: 7px 12px;
  border-radius: 7px;
  background: var(--green);
  color: #0a1b10;
  font-size: .58rem;
  font-weight: 700;
  box-shadow: 0 7px 18px rgba(75,226,134,.22);
}

.color-demo {
  grid-template-columns: repeat(5, auto);
  align-content: center;
  justify-content: center;
  gap: 11px;
}

.color-demo span {
  width: 28px;
  height: 28px;
  border: 6px solid #151f19;
  border-radius: 50%;
  background: #f2776d;
  outline: 1px solid rgba(255,255,255,.12);
}

.color-demo span:nth-child(2) { background: #f6b968; }
.color-demo span:nth-child(3) { background: #73e6a1; transform: scale(1.22); box-shadow: 0 0 20px rgba(115,230,161,.22); }
.color-demo span:nth-child(4) { background: #6ebbf2; }
.color-demo span:nth-child(5) { background: #a99bf8; }

.focus-demo {
  align-content: center;
  gap: 8px;
  padding: 28px;
}

.focus-demo div {
  display: grid;
  grid-template-columns: 22px 1fr 8px;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.04);
  color: #97a299;
  font-size: .55rem;
}

.focus-demo div:first-child {
  border-color: rgba(115,230,161,.22);
  background: rgba(115,230,161,.08);
  color: #dcebe0;
}

.focus-demo i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #73e6a1;
}

.focus-demo div:last-child i { background: #a99bf8; }

.flow-card h3 {
  margin: 24px 4px 8px;
  font-size: 1.05rem;
  letter-spacing: -.025em;
}

.flow-card > p {
  margin: 0 4px 8px;
  color: #7f8a82;
  font-size: .76rem;
  line-height: 1.65;
}

.features {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 12%;
  align-items: center;
  border-top: 1px solid var(--line);
}

.feature-visual {
  position: relative;
  height: 510px;
}

.stack-window {
  position: absolute;
  width: 82%;
  height: 66%;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: #17211b;
  box-shadow: 0 28px 60px rgba(0,0,0,.35);
}

.stack-one { top: 2%; left: 18%; transform: rotate(6deg); opacity: .34; }
.stack-two { top: 14%; left: 9%; transform: rotate(-3deg); opacity: .62; }
.stack-three { top: 25%; left: 0; border: 2px solid var(--green); background: #101914; box-shadow: 0 0 26px rgba(115,230,161,.13), 0 35px 70px rgba(0,0,0,.4); }

.stack-tag {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 16px;
  padding: 8px 14px;
  border-radius: 8px;
  background: var(--green);
  color: #0a1b10;
  font-size: .7rem;
  font-weight: 700;
}

.stack-toolbar {
  display: flex;
  gap: 7px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.stack-toolbar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f2776d;
}

.stack-toolbar i:nth-child(2) { background: #f6b968; }
.stack-toolbar i:nth-child(3) { background: #73e6a1; }

.stack-content {
  display: grid;
  gap: 18px;
  padding: 17% 16%;
}

.stack-content span {
  width: 78%;
  height: 8px;
  border-radius: 999px;
  background: #35453c;
}

.stack-content span:nth-child(2) { width: 100%; }
.stack-content span:nth-child(3) { width: 57%; }

.feature-copy h2 {
  margin-bottom: 46px;
}

.feature-list {
  display: grid;
}

.feature-list article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.feature-list article > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(115,230,161,.2);
  border-radius: 9px;
  background: rgba(115,230,161,.06);
  color: var(--green);
  font-family: var(--mono);
  font-size: .8rem;
}

.feature-list h3 {
  margin: 0 0 7px;
  font-size: .94rem;
}

.feature-list p {
  margin: 0;
  color: #7f8a82;
  font-size: .75rem;
  line-height: 1.6;
}

.cli-section {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 10%;
  align-items: center;
  border-top: 1px solid var(--line);
}

.cli-copy h2 {
  font-size: clamp(3rem, 5.5vw, 4.8rem);
}

.cli-copy > p {
  margin-top: 28px;
}

.cli-copy > a, .privacy-band > a {
  display: inline-flex;
  gap: 14px;
  margin-top: 30px;
  color: #b8f2cd;
  font-size: .78rem;
  font-weight: 700;
}

.terminal-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 15px;
  background: #0a0f0c;
  box-shadow: 0 36px 90px rgba(0,0,0,.32);
}

.terminal-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: #151b17;
}

.terminal-top > span {
  display: flex;
  gap: 6px;
}

.terminal-top i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e86860;
}

.terminal-top i:nth-child(2) { background: #dbae55; }
.terminal-top i:nth-child(3) { background: #57b969; }

.terminal-top b {
  color: #7d8981;
  font: 500 .58rem var(--mono);
}

pre {
  margin: 0;
  padding: 42px;
  overflow-x: auto;
  color: #d0d8d2;
  font: 400 clamp(.62rem, 1.25vw, .8rem)/1.9 var(--mono);
}

.prompt, .green { color: var(--green); }
.dim { color: #5f6b63; }
.purple { color: #b7abfc; }
.orange { color: #f4bf75; }

.privacy-band {
  padding: 135px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 10%, rgba(115,230,161,.13), transparent 30%),
    linear-gradient(180deg, #0c1811, #09120d);
  text-align: center;
}

.privacy-mark {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 25px;
  place-items: center;
  border: 1px solid rgba(115,230,161,.28);
  border-radius: 50%;
  background: rgba(115,230,161,.07);
  color: var(--green);
  font-size: 1.45rem;
  box-shadow: 0 0 35px rgba(115,230,161,.08);
}

.privacy-band .section-kicker {
  margin-bottom: 18px;
}

.privacy-band h2 {
  font-size: clamp(2.7rem, 5.2vw, 4.8rem);
}

.privacy-band > p:not(.section-kicker) {
  max-width: 590px;
  margin: 30px auto 0;
  color: #879289;
  font-size: .88rem;
  line-height: 1.8;
}

.download {
  padding-top: 110px;
  padding-bottom: 110px;
}

.download-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  padding: 64px;
  overflow: hidden;
  border: 1px solid rgba(115,230,161,.2);
  border-radius: 20px;
  background:
    radial-gradient(circle at 5% 50%, rgba(115,230,161,.09), transparent 31%),
    var(--panel-soft);
}

.download-copy {
  display: flex;
  align-items: center;
  gap: 28px;
}

.download-copy img {
  border-radius: 22px;
  box-shadow: 0 20px 48px rgba(0,0,0,.42);
}

.download-card .section-kicker {
  margin-bottom: 12px;
}

.download-card h2 {
  font-size: clamp(2.3rem, 4vw, 3.7rem);
}

.download-card p:last-child {
  margin: 14px 0 0;
  color: #859088;
  font-size: .8rem;
}

.download-actions {
  display: grid;
  gap: 12px;
  min-width: min(100%, 330px);
}

.brew-command {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 50px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #090e0b;
  cursor: pointer;
}

.brew-command code {
  overflow: hidden;
  color: #7e8a82;
  font: .58rem var(--mono);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brew-command span {
  color: #b8f2cd;
  font-size: .65rem;
  font-weight: 700;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  color: #667169;
  font-size: .65rem;
}

.footer-brand {
  color: #bdc6bf;
  font-size: .85rem;
}

footer p {
  margin: 0;
}

footer > div {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

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

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

  .hero-stage {
    width: min(700px, 100%);
    margin: 10px auto 0;
  }

  .intro-grid, .features, .cli-section {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .intro-grid {
    gap: 32px;
  }

  .intro-grid > p {
    max-width: 650px;
  }

  .feature-visual {
    width: min(650px, 100%);
    margin: 0 auto;
  }

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

  .download-actions {
    min-width: 100%;
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 1fr auto;
    width: min(100% - 32px, 1180px);
  }

  nav {
    display: none;
  }

  .hero, .section, .trust-strip, footer {
    width: min(100% - 32px, 1180px);
  }

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

  .hero h1 {
    font-size: clamp(3.7rem, 19vw, 5.6rem);
  }

  .hero-lede {
    font-size: .95rem;
  }

  .desktop {
    aspect-ratio: .9;
  }

  .back-window {
    width: 68%;
    height: 44%;
  }

  .front-window {
    right: 5%;
    bottom: 7%;
    width: 76%;
    height: 48%;
  }

  .menubar-popover {
    right: 3%;
    width: 58%;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .trust-strip p + p {
    border-left: 0;
  }

  .section {
    padding: 100px 0;
  }

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

  .feature-visual {
    height: 370px;
  }

  .stack-window {
    height: 69%;
  }

  .cli-section {
    gap: 50px;
  }

  pre {
    padding: 26px 22px;
    font-size: .55rem;
  }

  .privacy-band {
    padding: 100px 20px;
  }

  .download-card {
    padding: 38px 24px;
  }

  .download-copy {
    align-items: flex-start;
    flex-direction: column;
  }

  footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  footer > div {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

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

  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
