@font-face {
  font-family: "Instrument Sans";
  src: url("Brand/fonts/InstrumentSans%5Bwdth%2Cwght%5D.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --graphite: #24231f;
  --paper: #f3f0e7;
  --paper-bright: #fbfaf6;
  --carbon: #35332d;
  --ash: #6d6a62;
  --smoke: #8a867d;
  --fiber: #d8d3c7;
  --citron: #c7f15a;
  --app-canvas: #e9e8e3;
  --app-card: #faf9f5;
  --app-secondary: #60635d;
  --app-live: #5c7210;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --site-width: 1280px;
  --site-gutter: clamp(20px, 5vw, 72px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--graphite);
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  font-family: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--citron);
  color: var(--graphite);
}

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

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

a {
  color: inherit;
}

button {
  font: inherit;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.site-shell {
  width: min(var(--site-width), calc(100% - (var(--site-gutter) * 2)));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--citron);
  color: var(--graphite);
  font-weight: 650;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms var(--ease-out);
}

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

:focus-visible {
  outline: 3px solid var(--graphite);
  outline-offset: 3px;
}

.privacy-section :focus-visible {
  outline-color: var(--citron);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--ash);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--app-live);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(36, 35, 31, 0.12);
  background: var(--paper);
}

.nav-shell {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.brand-link,
.footer-brand {
  width: 121px;
  display: inline-flex;
  align-items: center;
}

.brand-link img,
.footer-brand img {
  width: 121px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a,
.site-footer nav a {
  color: var(--ash);
  font-size: 13px;
  font-weight: 550;
  text-decoration: none;
  transition: color 140ms ease;
}

.nav-shell > .button {
  justify-self: end;
}

.button {
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
  transition: transform 140ms var(--ease-out), background-color 140ms ease, border-color 140ms ease;
}

.button svg,
.text-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.button-small {
  min-height: 38px;
  padding-inline: 15px;
  border-radius: 6px;
  font-size: 13px;
}

.button-dark {
  background: var(--graphite);
  color: var(--paper);
}

.button-primary {
  background: var(--citron);
  color: var(--graphite);
}

.button:active,
.text-link:active,
.clip-row:active {
  transform: scale(0.97);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--graphite);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: color 140ms ease, transform 140ms var(--ease-out);
}

.hero {
  position: relative;
  padding: clamp(72px, 8vw, 118px) 0 clamp(88px, 10vw, 148px);
  overflow: hidden;
  border-bottom: 1px solid var(--fiber);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  gap: clamp(56px, 7vw, 112px);
  align-items: center;
}

.hero-copy {
  padding-bottom: 20px;
}

.hero h1 {
  max-width: 710px;
  margin-bottom: 30px;
  font-size: clamp(68px, 7.4vw, 116px);
  font-weight: 620;
  letter-spacing: -0.062em;
  line-height: 0.9;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--ash);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.hero-facts {
  margin: 40px 0 0;
  padding: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  border-top: 1px solid var(--fiber);
  list-style: none;
  color: var(--ash);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-facts li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-facts li:not(:last-child)::after {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: var(--smoke);
}

.product-visual {
  min-width: 0;
}

.desktop-surface {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid var(--fiber);
  border-radius: 16px;
  background: #e8e6df;
}

.desktop-surface::before,
.desktop-surface::after {
  content: "";
  position: absolute;
  background: var(--fiber);
}

.desktop-surface::before {
  right: 42px;
  bottom: -35px;
  width: 290px;
  height: 170px;
  border: 1px solid rgba(36, 35, 31, 0.1);
  border-radius: 14px 14px 0 0;
  background: #f6f4ed;
}

.desktop-surface::after {
  left: -25px;
  bottom: 72px;
  width: 180px;
  height: 1px;
}

.menu-bar {
  height: 32px;
  padding-inline: 12px 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(36, 35, 31, 0.14);
  background: var(--paper-bright);
  color: #44423c;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 10px;
  font-weight: 600;
}

.menu-bar-left,
.menu-bar-right {
  display: flex;
  align-items: center;
  gap: 13px;
}

.apple-mark {
  font-size: 8px;
}

.menu-now {
  width: 28px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #deddd8;
}

.menu-now img {
  width: 17px;
  height: 17px;
}

.app-popover {
  position: absolute;
  z-index: 2;
  top: 64px;
  right: 24px;
  width: min(440px, calc(100% - 48px));
  overflow: visible;
  border: 1px solid rgba(36, 35, 31, 0.2);
  border-radius: 18px;
  background: var(--app-canvas);
  box-shadow: 0 28px 60px rgba(36, 35, 31, 0.16), 0 4px 16px rgba(36, 35, 31, 0.08);
  color: #242520;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.popover-arrow {
  position: absolute;
  top: -9px;
  right: 35px;
  width: 18px;
  height: 18px;
  border-top: 1px solid rgba(36, 35, 31, 0.18);
  border-left: 1px solid rgba(36, 35, 31, 0.18);
  background: var(--app-canvas);
  transform: rotate(45deg);
}

.app-toolbar {
  position: relative;
  z-index: 1;
  height: 56px;
  padding: 0 12px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid rgba(36, 35, 31, 0.12);
  border-radius: 18px 18px 0 0;
  background: var(--app-canvas);
}

.app-title {
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.app-search {
  min-width: 0;
  height: 30px;
  padding: 0 9px;
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(36, 35, 31, 0.1);
  border-radius: 8px;
  background: rgba(36, 35, 31, 0.05);
  color: var(--app-secondary);
  font-size: 11px;
}

.app-search svg {
  width: 13px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.app-search span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.live-state {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--app-secondary);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.live-state span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--app-live);
}

.settings-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(36, 35, 31, 0.1);
  border-radius: 8px;
  background: rgba(36, 35, 31, 0.05);
  color: var(--app-secondary);
}

.settings-icon svg {
  width: 14px;
  height: 14px;
  fill: var(--app-canvas);
  stroke: currentColor;
  stroke-width: 1.2;
  stroke-linecap: round;
}

.clip-list {
  padding: 10px;
  display: grid;
  gap: 7px;
}

.clip-row {
  width: 100%;
  min-width: 0;
  height: 61px;
  padding: 0 11px 0 0;
  display: grid;
  grid-template-columns: 30px 43px minmax(0, 1fr) 14px;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(36, 35, 31, 0.12);
  border-radius: 11px;
  background: var(--app-card);
  color: #242520;
  cursor: pointer;
  text-align: left;
  transition: transform 140ms var(--ease-out), border-color 140ms ease, background-color 140ms ease;
}

.clip-row.is-selected {
  border-color: #242520;
  border-width: 1.5px;
}

.clip-index {
  height: 59px;
  display: grid;
  place-items: center;
  border-radius: 10px 0 0 10px;
  background: rgba(36, 35, 31, 0.025);
  color: var(--app-secondary);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 9px;
  font-weight: 800;
}

.clip-row.is-current .clip-index {
  position: relative;
  color: var(--app-live);
}

.clip-row.is-current .clip-index::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  border-radius: 10px 0 0 10px;
  background: var(--app-live);
}

.clip-preview {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(36, 35, 31, 0.055);
  color: var(--app-secondary);
  font-size: 13px;
  font-weight: 650;
}

.clip-preview-text {
  font-family: Georgia, serif;
}

.clip-preview-link {
  font-size: 18px;
}

.clip-preview-image {
  position: relative;
  grid-template-columns: 7px 1fr;
  gap: 4px;
  background: var(--graphite);
  color: var(--paper);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 8px;
}

.clip-preview-image i {
  width: 3px;
  height: 28px;
  background: var(--citron);
}

.clip-preview-image b {
  font-weight: 700;
}

.clip-preview-file {
  position: relative;
  border: 1px solid rgba(36, 35, 31, 0.08);
  background: #fffefa;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
}

.clip-preview-file::before,
.clip-preview-file::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 25px;
  border: 1px solid rgba(36, 35, 31, 0.18);
  background: var(--paper-bright);
}

.clip-preview-file::before {
  top: 7px;
  left: 8px;
  transform: rotate(-6deg);
}

.clip-preview-file::after {
  top: 9px;
  right: 7px;
  transform: rotate(5deg);
}

.clip-preview-file {
  isolation: isolate;
}

.clip-preview-file:not(:empty) {
  color: var(--graphite);
  z-index: 1;
}

.clip-preview-file b {
  position: relative;
  z-index: 2;
  font-weight: 700;
}

.clip-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.clip-copy strong,
.clip-copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.clip-copy strong {
  font-size: 12px;
  font-weight: 650;
}

.clip-copy small {
  color: var(--app-secondary);
  font-size: 9px;
  font-weight: 550;
}

.paste-mark {
  color: var(--app-secondary);
  font-size: 12px;
  opacity: 0;
  transition: opacity 120ms ease;
}

.clip-row.is-selected .paste-mark {
  opacity: 1;
}

.app-footer {
  height: 42px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-top: 1px solid rgba(36, 35, 31, 0.12);
  color: var(--app-secondary);
  font-size: 9px;
  font-weight: 550;
}

.app-footer span {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.app-footer .footer-spacer {
  flex: 1;
}

kbd {
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(36, 35, 31, 0.15);
  border-radius: 5px;
  background: rgba(36, 35, 31, 0.06);
  color: #45463f;
  box-shadow: none;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 8px;
  font-weight: 700;
}

.demo-caption {
  min-height: 68px;
  padding: 18px 6px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: baseline;
}

.demo-caption p {
  margin: 0;
  color: var(--ash);
  font-size: 13px;
}

.demo-label,
.metric-kicker,
.step-number,
.tile-index {
  color: var(--ash);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.problem-section,
.working-set-section,
.how-section,
.content-section,
.final-section {
  padding: clamp(92px, 11vw, 164px) 0;
}

.problem-section,
.how-section,
.final-section {
  border-bottom: 1px solid var(--fiber);
}

.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(56px, 9vw, 150px);
  align-items: start;
}

.section-heading h2,
.working-set-lede h2,
.content-copy h2,
.privacy-copy h2,
.final-copy h2 {
  margin-bottom: 0;
  font-size: clamp(50px, 6vw, 88px);
  font-weight: 620;
  letter-spacing: -0.052em;
  line-height: 0.98;
}

.problem-copy {
  padding-top: 36px;
}

.problem-copy p {
  max-width: 690px;
  color: var(--ash);
  font-size: 17px;
  line-height: 1.6;
}

.problem-copy .large-copy {
  margin-bottom: 28px;
  color: var(--graphite);
  font-size: clamp(23px, 2.5vw, 34px);
  font-weight: 520;
  letter-spacing: -0.025em;
  line-height: 1.32;
}

.stack-story {
  margin-top: clamp(64px, 8vw, 112px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) 90px minmax(0, 1.1fr);
  align-items: center;
}

.stack-card {
  min-height: 380px;
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--fiber);
  border-radius: 16px;
  background: var(--paper-bright);
}

.now-stack {
  min-height: 470px;
  border-color: var(--graphite);
  background: var(--graphite);
  color: var(--paper);
}

.stack-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  font-weight: 700;
}

.stack-count {
  color: var(--ash);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stack-count-live {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #b8b4aa;
}

.stack-count-live i {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--citron);
}

.single-clip {
  padding: 20px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--fiber);
  border-radius: 10px;
  background: var(--paper);
}

.single-clip p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.stack-index {
  color: var(--ash);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 11px;
}

.stack-note {
  max-width: 390px;
  margin: 0;
  color: var(--ash);
  font-size: 14px;
}

.now-stack .stack-note {
  color: #b8b4aa;
}

.stack-shift {
  display: grid;
  place-items: center;
  color: var(--graphite);
}

.stack-shift span {
  position: absolute;
  width: 52px;
  height: 18px;
  background: var(--citron);
  transform: rotate(-32deg);
}

.stack-shift svg {
  position: relative;
  width: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.mini-stack {
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-stack span {
  width: 76px;
  height: 126px;
  margin-left: -31px;
  display: flex;
  align-items: flex-end;
  padding: 12px;
  border: 1px solid #57544c;
  border-radius: 10px;
  background: var(--carbon);
  color: #b8b4aa;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 10px;
  transform: translateY(calc((var(--index) - 4) * 4px)) rotate(calc((var(--index) - 4) * 1.5deg));
}

.mini-stack span:first-child {
  margin-left: 0;
  border-left: 3px solid var(--citron);
  color: var(--citron);
}

.working-set-section {
  background: var(--paper-bright);
}

.working-set-lede {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr 0.7fr;
  gap: clamp(36px, 6vw, 96px);
  align-items: end;
}

.working-set-lede .eyebrow {
  align-self: start;
}

.working-set-lede p:last-child {
  margin: 0;
  color: var(--ash);
  font-size: 16px;
  line-height: 1.55;
}

.metric-grid {
  margin-top: clamp(64px, 8vw, 108px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.metric-card {
  position: relative;
  min-height: 360px;
  padding: clamp(28px, 4vw, 48px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--fiber);
  border-radius: 16px;
  background: var(--paper);
}

.metric-card-live {
  background: var(--citron);
  border-color: var(--citron);
}

.metric-card strong {
  font-size: clamp(108px, 14vw, 190px);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 0.68;
}

.metric-card p {
  max-width: 360px;
  margin: 0;
  color: var(--ash);
  font-size: 15px;
}

.metric-card-live p,
.metric-card-live .metric-kicker {
  color: #445508;
}

.metric-line {
  position: absolute;
  right: -54px;
  bottom: 92px;
  width: 230px;
  height: 64px;
  background: var(--graphite);
  transform: rotate(-32deg);
}

.metric-unit {
  position: absolute;
  right: 34px;
  bottom: 34px;
  color: var(--ash);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.metric-card-wide {
  min-height: 270px;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.7fr 1fr 0.8fr;
  align-items: center;
  gap: 40px;
  background: var(--graphite);
  color: var(--paper);
  border-color: var(--graphite);
}

.metric-card-wide .metric-kicker,
.metric-card-wide p {
  color: #b8b4aa;
}

.metric-card-wide strong {
  font-size: clamp(70px, 9vw, 126px);
  line-height: 0.8;
}

.keep-control {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b8b4aa;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 11px;
  font-weight: 650;
}

.keep-control span {
  padding: 7px 9px;
  border: 1px solid #5a574f;
  border-radius: 6px;
  color: var(--paper);
}

.keep-control i {
  width: 22px;
  height: 1px;
  background: #5a574f;
}

.keep-control b {
  color: var(--citron);
  font-weight: 650;
}

.section-heading-split {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: clamp(56px, 10vw, 160px);
  align-items: end;
}

.section-heading-split p:last-child {
  margin: 0 0 5px;
  color: var(--ash);
  font-size: 17px;
  line-height: 1.55;
}

.steps-list {
  margin: clamp(64px, 8vw, 104px) 0 0;
  padding: 0;
  border-top: 1px solid var(--fiber);
  list-style: none;
}

.step {
  min-height: 180px;
  padding: 32px 0;
  display: grid;
  grid-template-columns: 70px 180px 1fr;
  gap: 32px;
  align-items: center;
  border-bottom: 1px solid var(--fiber);
}

.step-key {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border: 1px solid var(--fiber);
  border-bottom-width: 4px;
  border-radius: 10px;
  background: var(--paper-bright);
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 27px;
  font-weight: 600;
}

.step-key-wide {
  width: 120px;
}

.step h3 {
  margin-bottom: 8px;
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.step p {
  max-width: 600px;
  margin: 0;
  color: var(--ash);
  font-size: 16px;
}

.content-section {
  background: #e7e3da;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(520px, 1.25fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: center;
}

.content-copy h2 {
  margin-bottom: 28px;
}

.content-copy > p:last-child {
  max-width: 520px;
  margin: 0;
  color: var(--ash);
  font-size: 17px;
  line-height: 1.6;
}

.content-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--fiber);
  border-radius: 16px;
  overflow: hidden;
  background: var(--paper-bright);
}

.content-tile {
  min-height: 270px;
  padding: 26px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  border-right: 1px solid var(--fiber);
  border-bottom: 1px solid var(--fiber);
}

.content-tile:nth-child(2n) {
  border-right: 0;
}

.content-tile:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.tile-symbol {
  place-self: center;
  font-size: 62px;
  font-weight: 500;
  letter-spacing: -0.06em;
}

.tile-link .tile-symbol {
  font-size: 76px;
  font-weight: 400;
}

.content-tile > div:last-child {
  display: grid;
  gap: 2px;
}

.content-tile strong {
  font-size: 16px;
  font-weight: 650;
}

.content-tile small {
  color: var(--ash);
  font-size: 12px;
}

.image-sample {
  width: 128px;
  height: 92px;
  place-self: center;
  padding: 15px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  background: var(--graphite);
  color: var(--paper);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 22px;
  font-weight: 750;
}

.image-sample i {
  width: 6px;
  height: 100%;
  background: var(--citron);
}

.file-sample {
  position: relative;
  width: 98px;
  height: 120px;
  place-self: center;
  border: 1px solid var(--fiber);
  background: var(--paper);
}

.file-sample::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 8px -9px -9px 8px;
  border: 1px solid var(--fiber);
  background: var(--paper-bright);
}

.file-sample i {
  position: absolute;
  top: 0;
  right: 0;
  width: 28px;
  height: 28px;
  border-bottom: 1px solid var(--fiber);
  border-left: 1px solid var(--fiber);
  background: var(--paper-bright);
}

.file-sample b {
  position: absolute;
  bottom: 14px;
  left: 12px;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
}

.privacy-section {
  position: relative;
  padding: clamp(108px, 13vw, 190px) 0;
  overflow: hidden;
  background: var(--graphite);
  color: var(--paper);
}

.privacy-mark {
  position: absolute;
  right: -150px;
  bottom: -280px;
  width: min(740px, 58vw);
  opacity: 0.06;
}

.privacy-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(64px, 11vw, 170px);
  align-items: start;
}

.eyebrow-dark {
  color: #b8b4aa;
}

.privacy-copy h2 {
  max-width: 680px;
  margin-bottom: 30px;
}

.privacy-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin-bottom: 28px;
  color: #b8b4aa;
  font-size: 18px;
  line-height: 1.6;
}

.text-link-light {
  color: var(--paper);
}

.privacy-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid #4b4942;
  list-style: none;
}

.privacy-list li {
  min-height: 118px;
  padding: 25px 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  align-items: start;
  border-bottom: 1px solid #4b4942;
}

.privacy-list li > span {
  color: #b8b4aa;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 10px;
  font-weight: 700;
}

.privacy-list p {
  margin: 0;
  color: #b8b4aa;
  font-size: 15px;
  line-height: 1.55;
}

.privacy-list strong {
  color: var(--paper);
  font-weight: 650;
}

.final-card {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}

.final-icon img {
  width: 164px;
  height: 164px;
}

.final-copy h2 {
  margin-bottom: 20px;
}

.final-copy > p:last-child {
  max-width: 600px;
  margin: 0;
  color: var(--ash);
  font-size: 16px;
}

.final-actions {
  display: grid;
  justify-items: start;
  gap: 14px;
}

.final-actions > span {
  color: var(--ash);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.install-link {
  color: var(--ash);
  font-size: 12px;
  font-weight: 600;
  text-underline-offset: 3px;
}

.site-footer {
  padding: 48px 0 72px;
  background: var(--paper-bright);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 24px 48px;
  align-items: center;
}

.footer-grid > p {
  margin: 0;
  color: var(--ash);
  font-size: 13px;
}

.site-footer nav {
  display: flex;
  gap: 24px;
}

.footer-note {
  grid-column: 2 / -1;
  padding-top: 24px;
  border-top: 1px solid var(--fiber);
}

@media (hover: hover) and (pointer: fine) {
  .nav-links a:hover,
  .site-footer nav a:hover {
    color: var(--graphite);
  }

  .button-dark:hover {
    background: var(--carbon);
  }

  .button-primary:hover {
    background: #d0f66d;
  }

  .text-link:hover {
    color: var(--ash);
  }

  .text-link-light:hover {
    color: var(--citron);
  }

  .clip-row:hover {
    border-color: rgba(36, 35, 31, 0.32);
    transform: translateY(-1px);
  }
}

@media (max-width: 1120px) {
  .hero-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

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

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

  .product-visual {
    width: min(760px, 100%);
    margin-inline: auto;
  }

  .content-copy {
    max-width: 760px;
  }

  .content-board {
    width: min(760px, 100%);
  }

  .final-card {
    grid-template-columns: 150px 1fr;
  }

  .final-icon img {
    width: 140px;
    height: 140px;
  }

  .final-actions {
    grid-column: 2;
  }
}

@media (max-width: 900px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .problem-grid,
  .working-set-lede,
  .section-heading-split,
  .privacy-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .problem-copy {
    padding-top: 0;
  }

  .working-set-lede {
    max-width: 760px;
  }

  .working-set-lede .eyebrow {
    margin-bottom: -14px;
  }

  .working-set-lede p:last-child {
    max-width: 520px;
  }

  .stack-story {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stack-shift {
    height: 70px;
    transform: rotate(90deg);
  }

  .stack-card,
  .now-stack {
    min-height: 360px;
  }

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

  .metric-card-wide .metric-kicker {
    grid-column: 1 / -1;
  }

  .keep-control {
    justify-self: start;
  }

  .step {
    grid-template-columns: 54px 140px 1fr;
    gap: 22px;
  }

  .privacy-copy {
    max-width: 760px;
  }

  .privacy-list {
    max-width: 760px;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
  }

  .footer-grid > p:not(.footer-note) {
    display: none;
  }

  .footer-note {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  :root {
    --site-gutter: 18px;
  }

  .site-header {
    position: relative;
  }

  .nav-shell {
    min-height: 64px;
  }

  .brand-link,
  .brand-link img {
    width: 100px;
  }

  .hero {
    padding-top: 62px;
  }

  .hero h1 {
    font-size: clamp(58px, 18vw, 82px);
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-facts {
    display: grid;
  }

  .hero-facts li:not(:last-child)::after {
    display: none;
  }

  .desktop-surface {
    min-height: 590px;
  }

  .menu-bar-left span:not(:first-child),
  .menu-bar-right > span:not(:last-child) {
    display: none;
  }

  .menu-bar-left,
  .menu-bar-right {
    gap: 7px;
  }

  .app-popover {
    top: 58px;
    right: 12px;
    width: calc(100% - 24px);
  }

  .app-toolbar {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .settings-icon {
    display: none;
  }

  .live-state {
    font-size: 0;
  }

  .clip-row {
    grid-template-columns: 27px 40px minmax(0, 1fr) 12px;
    gap: 8px;
  }

  .clip-index {
    height: 59px;
  }

  .clip-preview {
    width: 40px;
    height: 40px;
  }

  .app-footer {
    justify-content: space-between;
  }

  .app-footer span:nth-child(2),
  .app-footer span:nth-child(4),
  .app-footer .footer-spacer {
    display: none;
  }

  .demo-caption {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .section-heading h2,
  .working-set-lede h2,
  .content-copy h2,
  .privacy-copy h2,
  .final-copy h2 {
    font-size: clamp(46px, 14vw, 66px);
  }

  .stack-card,
  .now-stack {
    min-height: 330px;
    padding: 25px;
  }

  .mini-stack span {
    width: 62px;
    margin-left: -28px;
  }

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

  .metric-card {
    min-height: 320px;
  }

  .metric-card-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .metric-card-wide .metric-kicker {
    grid-column: auto;
  }

  .step {
    min-height: 0;
    grid-template-columns: 42px 1fr;
    gap: 22px 14px;
  }

  .step-key {
    width: 84px;
    height: 70px;
    grid-column: 2;
    grid-row: 1;
  }

  .step-key-wide {
    width: 112px;
  }

  .step > div:last-child {
    grid-column: 2;
  }

  .content-board {
    grid-template-columns: 1fr;
  }

  .content-tile,
  .content-tile:nth-child(2n),
  .content-tile:nth-last-child(-n + 2) {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--fiber);
  }

  .content-tile:last-child {
    border-bottom: 0;
  }

  .privacy-list li {
    grid-template-columns: 34px 1fr;
    gap: 14px;
  }

  .privacy-mark {
    right: -90px;
    bottom: -150px;
    width: 430px;
  }

  .final-card {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .final-icon img {
    width: 112px;
    height: 112px;
  }

  .final-actions {
    grid-column: auto;
  }

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

  .site-footer nav {
    flex-wrap: wrap;
  }
}

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

  .skip-link,
  .button,
  .text-link,
  .clip-row,
  .paste-mark {
    transition-duration: 0.01ms;
  }
}
