:root {
  color-scheme: dark;
  --ink: #f7f1df;
  --muted: #b4ad98;
  --dim: #858171;
  --bg: #11130f;
  --bg-raised: #171913;
  --panel: #1c1f18;
  --panel-strong: #22251c;
  --line: #34372b;
  --line-bright: #4a4e3c;
  --gold: #f4c841;
  --gold-soft: #ffecaa;
  --red: #ff5c61;
  --green: #3dd68c;
  --orange: #ff8a3c;
  --pink: #f76fb8;
  --purple: #c58af9;
  --cyan: #2dd4bf;
  --blue: #7c9aff;
  --grey: #a3a097;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shadow: 0 34px 90px rgb(0 0 0 / 42%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 5%, rgb(244 200 65 / 9%), transparent 25rem),
    radial-gradient(circle at 12% 58%, rgb(45 212 191 / 4%), transparent 24rem),
    var(--bg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgb(247 241 223 / 9%) 0.7px, transparent 0.7px);
  background-size: 28px 28px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 74%);
  pointer-events: none;
}

::selection {
  color: #11130f;
  background: var(--gold);
}

a {
  color: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #11130f;
  background: var(--gold);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-150%);
}

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

.site-shell {
  width: min(100%, 1480px);
  margin: 0 auto;
  overflow: hidden;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 10px;
  font-size: 21px;
  font-weight: 750;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand-mark {
  width: 30px;
  height: 30px;
  overflow: visible;
  fill: none;
  stroke: var(--gold);
  stroke-width: 5px;
  filter: drop-shadow(0 0 8px rgb(244 200 65 / 45%));
}

.brand-mark .brand-dot {
  fill: var(--gold-soft);
  stroke: none;
}

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

.site-nav a,
.site-footer nav a {
  position: relative;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a::after,
.site-footer nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-footer nav a:hover {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-footer nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.compatibility {
  display: flex;
  align-items: center;
  justify-self: end;
  margin: 0;
  gap: 9px;
  color: var(--muted);
  font: 650 11px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compatibility span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgb(61 214 140 / 70%);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(540px, 1.12fr);
  align-items: center;
  width: min(calc(100% - 64px), 1320px);
  min-height: 760px;
  margin: 0 auto;
  padding: 78px 0 70px;
  gap: clamp(42px, 6vw, 100px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  gap: 12px;
  color: var(--dim);
  font: 700 10px/1.4 var(--mono);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--gold);
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.hero h1 {
  max-width: 690px;
  margin-bottom: 30px;
  font-size: clamp(55px, 6.1vw, 92px);
  font-weight: 720;
  line-height: 0.96;
  letter-spacing: -0.075em;
}

.hero h1 em {
  color: var(--gold);
  font-style: normal;
  font-weight: inherit;
}

.hero-lede {
  max-width: 590px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
  gap: 24px;
}

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

.button span {
  font-size: 18px;
}

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

.button-primary {
  border-color: var(--gold);
  color: #17150a;
  background: var(--gold);
  box-shadow: 0 12px 38px rgb(244 200 65 / 14%);
}

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

.button-secondary {
  color: var(--gold);
  background: rgb(244 200 65 / 5%);
}

.button-secondary:hover {
  border-color: var(--gold);
  background: rgb(244 200 65 / 9%);
}

.text-link {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  text-underline-offset: 5px;
  transition: color 180ms ease;
}

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

.proof-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  border-top: 1px solid var(--line);
}

.proof-list div {
  padding: 19px 18px 0 0;
}

.proof-list div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.proof-list dt {
  margin-bottom: 4px;
  color: var(--ink);
  font: 700 10px/1.4 var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.proof-list dd {
  color: var(--dim);
  font-size: 11px;
  line-height: 1.45;
}

.hero-stage {
  position: relative;
  min-width: 0;
  height: 590px;
  isolation: isolate;
}

.hero-stage::before,
.hero-stage::after {
  position: absolute;
  z-index: -3;
  background: var(--line);
  content: "";
  opacity: 0.7;
}

.hero-stage::before {
  top: 0;
  bottom: 0;
  left: 47%;
  width: 1px;
}

.hero-stage::after {
  top: 49%;
  right: 0;
  left: 0;
  height: 1px;
}

.orbit {
  position: absolute;
  z-index: -2;
  border: 1px solid rgb(244 200 65 / 13%);
  border-radius: 50%;
}

.orbit-one {
  top: 58px;
  left: 47px;
  width: 470px;
  height: 470px;
}

.orbit-two {
  top: 137px;
  left: 126px;
  width: 312px;
  height: 312px;
  border-color: rgb(45 212 191 / 9%);
}

.browser-window {
  position: absolute;
  top: 82px;
  left: 8px;
  width: 87%;
  height: 380px;
  overflow: hidden;
  border: 1px solid var(--line-bright);
  border-radius: 14px;
  background: #171913;
  box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
}

.browser-chrome {
  display: flex;
  align-items: center;
  height: 46px;
  padding: 0 14px;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  background: #1d2018;
}

.window-controls {
  display: flex;
  gap: 6px;
}

.window-controls i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--line-bright);
}

.window-controls i:first-child { background: var(--red); }
.window-controls i:nth-child(2) { background: var(--gold); }
.window-controls i:last-child { background: var(--green); }

.tabs {
  display: flex;
  min-width: 0;
  gap: 5px;
}

.tab {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  padding: 6px 10px;
  border-radius: 5px 5px 2px 2px;
  gap: 6px;
  color: var(--dim);
  background: #25281e;
  font-size: 9px;
  white-space: nowrap;
}

.tab-hot {
  border: 1px solid var(--gold);
  color: var(--ink);
  background: rgb(244 200 65 / 8%);
}

.tab-small {
  width: 29px;
  min-width: 29px;
}

.dot,
.record-dot {
  display: inline-block;
  flex: none;
  border-radius: 50%;
}

.dot { width: 6px; height: 6px; }
.record-dot { width: 8px; height: 8px; }
.dot-yellow { background: var(--gold); box-shadow: 0 0 8px rgb(244 200 65 / 55%); }
.dot-cyan { background: var(--cyan); box-shadow: 0 0 8px rgb(45 212 191 / 45%); }
.dot-purple { background: var(--purple); }
.dot-pink { background: var(--pink); }

.address-bar {
  height: 34px;
  padding: 8px 14px;
  border-bottom: 1px solid #272a21;
  background: #141611;
}

.address-bar span {
  display: block;
  width: 78%;
  height: 17px;
  border: 1px solid #2d3025;
  border-radius: 9px;
  background: #0e100c;
}

.page-lines {
  display: flex;
  flex-direction: column;
  padding: 43px 36px;
  gap: 15px;
}

.page-lines i {
  width: 72%;
  height: 7px;
  border-radius: 5px;
  background: #2a2d23;
}

.page-lines i:nth-child(2) { width: 61%; }
.page-lines i:nth-child(3) { width: 78%; }
.page-lines i:nth-child(4) { width: 48%; }
.page-lines i:nth-child(5) { width: 66%; margin-top: 17px; }

.palette-preview {
  position: absolute;
  top: 176px;
  right: 0;
  width: min(390px, 62%);
  padding: 16px;
  border: 1px solid #5b5f49;
  border-radius: 10px;
  background:
    radial-gradient(circle at 90% 0, rgb(244 200 65 / 8%), transparent 42%),
    #171913;
  box-shadow: 0 28px 70px rgb(0 0 0 / 58%);
  animation: palette-arrive 700ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.palette-head {
  display: flex;
  align-items: center;
  margin-bottom: 13px;
  gap: 9px;
}

.palette-head strong {
  font-size: 14px;
  letter-spacing: -0.03em;
}

.mini-mark {
  display: grid;
  width: 13px;
  height: 13px;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px rgb(244 200 65 / 35%);
}

.mini-mark i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-soft);
}

.palette-count {
  margin-left: auto;
  padding: 1px 7px;
  border: 1px solid var(--line-bright);
  border-radius: 999px;
  color: var(--gold);
  background: rgb(244 200 65 / 7%);
  font: 700 9px/1.5 var(--mono);
}

.search-preview {
  display: flex;
  align-items: center;
  height: 37px;
  padding: 0 11px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  gap: 9px;
  color: var(--ink);
  background: #20231a;
  font-size: 11px;
  box-shadow: 0 0 0 3px rgb(244 200 65 / 9%);
}

.search-icon {
  position: relative;
  width: 11px;
  height: 11px;
  border: 1.5px solid var(--muted);
  border-radius: 50%;
}

.search-icon::after {
  position: absolute;
  right: -4px;
  bottom: -3px;
  width: 5px;
  height: 1.5px;
  border-radius: 1px;
  background: var(--muted);
  content: "";
  transform: rotate(45deg);
}

.section-label {
  margin: 13px 2px 6px;
  color: var(--dim);
  font: 700 8px/1.4 var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.result {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  min-height: 53px;
  padding: 8px 10px;
  gap: 9px;
  border-bottom: 1px solid #292c22;
}

.result-selected {
  background: rgb(244 200 65 / 9%);
  box-shadow: inset 2px 0 var(--gold);
}

.record-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.record-copy b,
.record-copy small {
  overflow: hidden;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.record-copy b { font-size: 10px; font-weight: 650; }
.record-copy small { color: var(--dim); font-size: 8px; }

.priority {
  padding: 1px 5px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  color: var(--gold);
  font: 700 8px/1.5 var(--mono);
}

.priority-cyan {
  border-color: var(--cyan);
  color: var(--cyan);
}

.due {
  color: var(--muted);
  font: 600 8px/1.4 var(--mono);
}

.palette-hint {
  margin: 13px 0 0;
  color: var(--dim);
  font-size: 8px;
  text-align: center;
}

.focus-signal {
  position: absolute;
  top: 128px;
  right: 40px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 3px solid var(--gold);
  border-radius: 50%;
  background: var(--bg);
  box-shadow: 0 0 0 10px rgb(244 200 65 / 8%), 0 0 28px rgb(244 200 65 / 30%);
  animation: signal-pulse 2.6s ease-in-out infinite;
}

.focus-signal i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-soft);
}

@keyframes palette-arrive {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes signal-pulse {
  0%, 100% { box-shadow: 0 0 0 8px rgb(244 200 65 / 7%), 0 0 24px rgb(244 200 65 / 26%); }
  50% { box-shadow: 0 0 0 13px rgb(244 200 65 / 3%), 0 0 34px rgb(244 200 65 / 42%); }
}

.signal-strip {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  width: min(calc(100% - 64px), 1320px);
  min-height: 78px;
  margin: 0 auto;
  padding: 0 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgb(247 241 223 / 1.5%);
}

.signal-strip span {
  color: var(--muted);
  font: 700 10px/1 var(--mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.signal-strip span b {
  margin-right: 9px;
  color: var(--gold);
  font-weight: 500;
}

.signal-strip i {
  height: 1px;
  margin: 0 22px;
  background: repeating-linear-gradient(90deg, var(--line-bright) 0 4px, transparent 4px 9px);
}

.section {
  width: min(calc(100% - 64px), 1200px);
  margin: 0 auto;
  padding: 144px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: end;
  margin-bottom: 65px;
  column-gap: 80px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section h2,
.final-cta h2,
.policy-page h1,
.not-found h1 {
  margin-bottom: 0;
  font-size: clamp(42px, 5.2vw, 70px);
  line-height: 1.02;
  letter-spacing: -0.065em;
}

.section-heading > p:last-child,
.safety-copy > p,
.demo-copy > p,
.privacy-copy > p {
  color: var(--muted);
  font-size: 16px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.workflow-grid li {
  position: relative;
  min-height: 330px;
  padding: 27px 28px 34px;
}

.workflow-grid li + li {
  border-left: 1px solid var(--line);
}

.workflow-grid li::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

.workflow-grid li:hover {
  background: rgb(244 200 65 / 2.5%);
}

.workflow-grid li:hover::after {
  transform: scaleX(1);
}

.step-number {
  display: block;
  margin-bottom: 40px;
  color: var(--dim);
  font: 700 10px/1 var(--mono);
}

.step-icon {
  position: relative;
  width: 48px;
  height: 48px;
  margin-bottom: 30px;
}

.mark-icon {
  border: 6px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgb(244 200 65 / 7%);
}

.mark-icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-soft);
  transform: translate(-50%, -50%);
}

.find-icon {
  width: 37px;
  height: 37px;
  border: 5px solid var(--cyan);
  border-radius: 50%;
}

.find-icon::after {
  position: absolute;
  right: -13px;
  bottom: -8px;
  width: 20px;
  height: 5px;
  border-radius: 3px;
  background: var(--cyan);
  content: "";
  transform: rotate(45deg);
}

.focus-icon {
  border: 1px solid var(--line-bright);
  border-radius: 7px;
}

.focus-icon::before,
.focus-icon::after {
  position: absolute;
  background: var(--green);
  content: "";
}

.focus-icon::before { top: 8px; right: 8px; width: 17px; height: 3px; }
.focus-icon::after { top: 8px; right: 8px; width: 3px; height: 17px; }
.focus-icon i { position: absolute; right: 8px; bottom: 8px; width: 22px; height: 22px; border-right: 3px solid var(--green); border-bottom: 3px solid var(--green); }

.clear-icon::before,
.clear-icon::after {
  position: absolute;
  top: 21px;
  left: 4px;
  width: 42px;
  height: 5px;
  border-radius: 3px;
  background: var(--red);
  content: "";
}

.clear-icon::before { transform: rotate(45deg); }
.clear-icon::after { transform: rotate(-45deg); }

.workflow-grid h3 {
  margin-bottom: 12px;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.workflow-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.demo {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
}

.demo-frame {
  position: relative;
  padding: 12px;
  border: 1px solid var(--line-bright);
  border-radius: 14px;
  background: #0d0f0b;
  box-shadow: var(--shadow);
}

.demo-frame::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgb(244 200 65 / 24%), transparent 38%, rgb(45 212 191 / 13%));
  content: "";
  filter: blur(18px);
}

.demo-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 7px;
  background: #11130f;
}

.demo-copy h2 {
  margin-bottom: 26px;
}

.check-list {
  display: grid;
  margin: 30px 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-size: 13px;
}

.check-list li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.fine-print {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--dim) !important;
  font-size: 11px !important;
}

.safety {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.2fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

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

.safety-copy > p + p {
  margin-top: 18px;
  color: var(--dim);
  font-size: 13px;
}

.safety-board {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-raised);
  box-shadow: 0 24px 70px rgb(0 0 0 / 28%);
}

.safety-row {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 79px;
  padding: 13px 20px;
  gap: 18px;
}

.safety-row + .safety-row {
  border-top: 1px solid var(--line);
}

.safety-row-active {
  background: rgb(244 200 65 / 5%);
  box-shadow: inset 3px 0 var(--gold);
}

.safety-state {
  padding: 5px 7px;
  border: 1px solid var(--line-bright);
  border-radius: 4px;
  color: var(--muted);
  font: 700 9px/1 var(--mono);
  text-align: center;
  text-transform: uppercase;
}

.state-pinned { border-color: var(--blue); color: var(--blue); }
.state-grouped { border-color: var(--purple); color: var(--purple); }
.state-split { border-color: var(--cyan); color: var(--cyan); }
.state-ready { border-color: var(--gold); color: var(--gold); }

.safety-row > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.safety-row b { font-size: 13px; }
.safety-row small { color: var(--dim); font-size: 10px; }

.preserved,
.marker-added {
  color: var(--green);
  font: 700 9px/1 var(--mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.marker-added { color: var(--gold); }

.keyboard {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: 90px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.keyboard h2 {
  max-width: 620px;
}

.shortcut-board {
  display: grid;
  gap: 14px;
}

.shortcut-board > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 7px;
  gap: 20px;
  background: var(--bg-raised);
}

.shortcut-label {
  color: var(--muted);
  font-size: 12px;
}

.keys {
  display: flex;
  align-items: center;
  gap: 7px;
}

kbd {
  min-width: 35px;
  padding: 7px 10px;
  border: 1px solid var(--line-bright);
  border-bottom-width: 3px;
  border-radius: 5px;
  color: var(--ink);
  background: var(--panel-strong);
  font: 650 10px/1 var(--mono);
  text-align: center;
  box-shadow: inset 0 -1px rgb(255 255 255 / 4%);
}

.keys b {
  color: var(--dim);
  font: 500 10px/1 var(--mono);
}

.shortcut-board > p {
  margin: 7px 0 0;
  color: var(--dim);
  font-size: 11px;
}

.privacy {
  position: relative;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 270px;
  align-items: center;
  padding: 90px 70px;
  border: 1px solid var(--line-bright);
  border-radius: 14px;
  gap: 55px;
  background:
    radial-gradient(circle at 8% 50%, rgb(244 200 65 / 11%), transparent 18rem),
    radial-gradient(circle at 92% 85%, rgb(45 212 191 / 7%), transparent 18rem),
    var(--bg-raised);
  box-shadow: var(--shadow);
}

.privacy-signal {
  position: relative;
  display: grid;
  width: 140px;
  height: 140px;
  place-items: center;
  border: 1px solid rgb(244 200 65 / 16%);
  border-radius: 50%;
}

.privacy-signal span {
  display: block;
  width: 76px;
  height: 76px;
  border: 12px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 13px rgb(244 200 65 / 8%), 0 0 36px rgb(244 200 65 / 20%);
}

.privacy-signal span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--gold-soft);
  content: "";
  transform: translate(-50%, -50%);
}

.privacy-signal i {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.privacy-signal i:nth-child(2) { top: 8px; right: 18px; background: var(--cyan); }
.privacy-signal i:nth-child(3) { right: -4px; bottom: 30px; background: var(--purple); }
.privacy-signal i:nth-child(4) { bottom: 2px; left: 18px; background: var(--red); }

.privacy-copy h2 {
  margin-bottom: 23px;
}

.privacy-copy .button {
  margin-top: 16px;
}

.privacy-facts {
  display: grid;
  margin: 0;
  gap: 19px;
}

.privacy-facts div {
  padding: 0 0 19px;
  border-bottom: 1px solid var(--line);
}

.privacy-facts div:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.privacy-facts dt {
  color: var(--gold);
  font: 700 30px/1 var(--mono);
}

.privacy-facts dd {
  margin-top: 6px;
  color: var(--dim);
  font: 650 10px/1.4 var(--mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

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

.section-heading-small h2 {
  max-width: 580px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 50px 24px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 650;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  color: var(--gold);
  content: "+";
  font: 400 24px/1 var(--mono);
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  max-width: 760px;
  margin: -4px 0 25px;
  color: var(--muted);
  font-size: 14px;
}

code {
  padding: 2px 5px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--cyan);
  background: var(--panel);
  font: 0.9em var(--mono);
}

.final-cta {
  display: flex;
  align-items: center;
  width: min(calc(100% - 64px), 1200px);
  min-height: 610px;
  margin: 0 auto;
  padding: 100px 40px;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid var(--line);
  text-align: center;
}

.cta-mark {
  position: relative;
  display: grid;
  width: 92px;
  height: 92px;
  margin-bottom: 37px;
  place-items: center;
  border: 12px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 15px rgb(244 200 65 / 7%), 0 0 44px rgb(244 200 65 / 21%);
}

.cta-mark i {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold-soft);
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta h2 {
  margin-bottom: 20px;
  font-size: clamp(53px, 7vw, 92px);
}

.final-cta > p:not(.eyebrow) {
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 17px;
}

.store-status {
  padding: 10px 15px;
  border: 1px solid var(--line-bright);
  border-radius: 999px;
  color: var(--gold);
  background: rgb(244 200 65 / 5%);
  font: 700 10px/1 var(--mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 64px), 1320px);
  min-height: 120px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.footer-brand {
  font-size: 16px;
}

.footer-brand .brand-mark {
  width: 24px;
  height: 24px;
}

.site-footer > p {
  margin: 0;
  color: var(--dim);
  font: 600 10px/1 var(--mono);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

/* Privacy and error pages */
.subpage-shell {
  min-height: 100vh;
}

.policy-page {
  width: min(calc(100% - 64px), 900px);
  margin: 0 auto;
  padding: 110px 0 150px;
}

.policy-hero {
  margin-bottom: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}

.policy-page h1 {
  margin-bottom: 26px;
  font-size: clamp(52px, 8vw, 92px);
}

.policy-intro {
  max-width: 700px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 19px;
}

.effective-date {
  color: var(--dim);
  font: 650 10px/1.5 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-section {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  padding: 50px 0;
  border-bottom: 1px solid var(--line);
  gap: 45px;
}

.policy-section h2 {
  margin: 0;
  color: var(--gold);
  font: 700 11px/1.5 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.policy-content h3 {
  margin: 32px 0 10px;
  font-size: 18px;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
  font-size: 14px;
}

.policy-content p:last-child,
.policy-content ul:last-child {
  margin-bottom: 0;
}

.policy-content ul {
  display: grid;
  padding-left: 20px;
  gap: 9px;
}

.policy-content strong {
  color: var(--ink);
}

.permission-table {
  width: 100%;
  margin-top: 22px;
  border-spacing: 0;
  border-collapse: collapse;
  font-size: 13px;
}

.permission-table th,
.permission-table td {
  padding: 13px 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.permission-table th {
  color: var(--gold);
  background: var(--panel);
  font: 700 10px/1.4 var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.permission-table td {
  color: var(--muted);
}

.permission-table td:first-child {
  color: var(--cyan);
  font-family: var(--mono);
}

.policy-callout {
  margin-top: 28px;
  padding: 20px 22px;
  border-left: 3px solid var(--gold);
  color: var(--ink) !important;
  background: rgb(244 200 65 / 5%);
}

.policy-contact a {
  color: var(--gold);
  text-underline-offset: 4px;
}

.not-found {
  display: flex;
  width: min(calc(100% - 64px), 900px);
  min-height: calc(100vh - 212px);
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
}

.not-found-code {
  margin-bottom: 24px;
  color: var(--gold);
  font: 700 12px/1 var(--mono);
  letter-spacing: 0.2em;
}

.not-found h1 {
  max-width: 750px;
  margin-bottom: 25px;
  font-size: clamp(58px, 10vw, 110px);
}

.not-found > p:not(.not-found-code) {
  max-width: 530px;
  margin-bottom: 35px;
  color: var(--muted);
  font-size: 18px;
}

@media (max-width: 1100px) {
  .site-header,
  .hero,
  .signal-strip,
  .site-footer {
    width: min(calc(100% - 40px), 960px);
  }

  .section,
  .final-cta {
    width: min(calc(100% - 40px), 920px);
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 100px;
  }

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

  .hero h1 {
    font-size: clamp(64px, 10vw, 90px);
  }

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

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

  .workflow-grid li:nth-child(3) {
    border-left: none;
    border-top: 1px solid var(--line);
  }

  .workflow-grid li:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .demo,
  .safety {
    grid-template-columns: 1fr;
  }

  .demo-copy,
  .safety-copy {
    max-width: 700px;
  }

  .safety-board {
    width: min(100%, 740px);
  }

  .keyboard {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .privacy {
    grid-template-columns: 135px minmax(0, 1fr);
  }

  .privacy-signal {
    width: 120px;
    height: 120px;
  }

  .privacy-facts {
    grid-column: 2;
    grid-template-columns: repeat(3, 1fr);
  }

  .privacy-facts div {
    padding: 0;
    border-right: 1px solid var(--line);
    border-bottom: none;
  }

  .privacy-facts div:last-child {
    border-right: none;
  }
}

@media (max-width: 760px) {
  body::before {
    background-size: 22px 22px;
  }

  .site-header {
    grid-template-columns: 1fr;
    min-height: 76px;
  }

  .site-nav {
    display: none;
  }

  .compatibility { display: none; }

  .hero {
    min-height: auto;
    padding: 78px 0 38px;
    gap: 35px;
  }

  .hero-copy {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }

  .hero h1 {
    width: 100%;
    font-size: clamp(44px, 12vw, 54px);
    letter-spacing: -0.07em;
  }

  .hero-lede {
    width: 100%;
    max-width: none;
    font-size: 16px;
    overflow-wrap: break-word;
    white-space: normal;
  }

  .proof-list {
    grid-template-columns: 1fr;
  }

  .proof-list div {
    padding: 14px 0;
  }

  .proof-list div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: none;
  }

  .hero-stage {
    height: 460px;
    transform-origin: top left;
  }

  .browser-window {
    top: 54px;
    left: 0;
    width: 94%;
    height: 300px;
  }

  .palette-preview {
    top: 125px;
    right: 0;
    width: 78%;
    padding: 12px;
  }

  .palette-preview .result:nth-of-type(2) {
    display: none;
  }

  .focus-signal {
    top: 77px;
    right: 18px;
    width: 34px;
    height: 34px;
  }

  .orbit-one {
    top: 12px;
    left: -20px;
    width: 390px;
    height: 390px;
  }

  .orbit-two {
    top: 80px;
    left: 48px;
    width: 255px;
    height: 255px;
  }

  .signal-strip {
    grid-template-columns: repeat(4, 1fr);
    padding: 0 12px;
  }

  .signal-strip i {
    display: none;
  }

  .signal-strip span {
    text-align: center;
  }

  .signal-strip span b {
    display: block;
    margin: 0 0 6px;
  }

  .section {
    padding: 96px 0;
  }

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

  .section-heading h2 {
    margin-bottom: 24px;
  }

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

  .workflow-grid li {
    min-height: 280px;
  }

  .workflow-grid li + li,
  .workflow-grid li:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: none;
  }

  .demo,
  .safety,
  .keyboard {
    gap: 45px;
  }

  .safety-row {
    grid-template-columns: 60px minmax(0, 1fr);
    padding: 14px;
    gap: 12px;
  }

  .preserved,
  .marker-added {
    display: none;
  }

  .shortcut-board > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .keys {
    width: 100%;
  }

  kbd {
    flex: 1;
  }

  .privacy {
    grid-template-columns: 1fr;
    padding: 58px 26px;
    gap: 38px;
  }

  .privacy-signal {
    width: 100px;
    height: 100px;
  }

  .privacy-signal span {
    width: 60px;
    height: 60px;
    border-width: 9px;
  }

  .privacy-facts {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .privacy-facts div {
    padding-bottom: 16px;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .final-cta {
    min-height: 560px;
    padding: 85px 0;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    padding: 25px 0;
    gap: 20px;
  }

  .site-footer > p {
    display: none;
  }

  .site-footer nav {
    gap: 15px;
  }

  .site-footer nav a:last-child {
    display: none;
  }

  .policy-page,
  .not-found {
    width: min(calc(100% - 40px), 900px);
  }

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

  .policy-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .permission-table,
  .permission-table tbody,
  .permission-table tr,
  .permission-table th,
  .permission-table td {
    display: block;
  }

  .permission-table thead {
    display: none;
  }

  .permission-table tr + tr {
    margin-top: 12px;
  }

  .permission-table td:first-child {
    border-bottom: none;
    background: var(--panel);
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
