@font-face {
  font-family: Sora;
  src: url("assets/sora.ttf?v=2.9.1-2") format("truetype");
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
}
:root {
  color-scheme: dark;
  --bg: #0d100d;
  --surface: #151915;
  --text: #f1f2ee;
  --muted: #a0a69e;
  --line: #292e28;
  --accent: #bad69f;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 36px;
  scrollbar-color: #4b5447 var(--bg);
  scrollbar-width: thin;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font:
    14px/1.7 Sora,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
button,
input {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
a,
button {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
  opacity: 0.6;
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}
::selection {
  color: var(--bg);
  background: var(--accent);
}
[hidden] {
  display: none !important;
}
h1,
h2,
h3,
p {
  margin: 0;
}
.shell {
  width: min(1100px, calc(100% - 80px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10;
  padding: 9px 16px;
  border-radius: 5px;
  background: var(--text);
  color: var(--bg);
  transform: translateY(-200%);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.6px;
  white-space: nowrap;
}
.brand img {
  flex-shrink: 0;
}
nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 12px;
}
nav a {
  padding-block: 12px;
  color: var(--muted);
  transition: color 0.16s;
}
nav a:hover {
  color: var(--text);
}
nav a[aria-current="page"] {
  color: var(--text);
}
nav span {
  margin-left: 5px;
  color: var(--accent);
}

.hero {
  position: relative;
  width: min(1360px, 100%);
  margin-inline: auto;
  min-height: 650px;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.hero-art {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: clip;
}
.scene {
  position: absolute;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid #ffffff0c;
  transform: rotate(var(--angle));
}
.scene img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.2) saturate(0.8);
}
.scene-one {
  width: 174px;
  height: 211px;
  left: 4%;
  top: 30px;
  --angle: -7deg;
}
.scene-one img {
  object-position: 32% 45%;
}
.scene-two {
  width: 216px;
  height: 151px;
  right: 3%;
  top: 18px;
  --angle: 4deg;
}
.scene-two img {
  object-position: center 63%;
}
.scene-three {
  width: 185px;
  height: 128px;
  left: 7%;
  bottom: 37px;
  --angle: 4deg;
}
.scene-three img {
  object-position: center 30%;
}
.scene-four {
  width: 158px;
  height: 195px;
  right: 5%;
  bottom: 25px;
  --angle: -5deg;
}
.scene-four img {
  object-position: right center;
}
.hero-copy {
  width: min(800px, calc(100% - 48px));
  padding: 100px 0 83px;
  text-align: center;
  animation: arrive 0.4s ease-out both;
}
.eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--accent);
}
h1 {
  font-size: clamp(40px, 4.15vw, 58px);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -2.8px;
  margin: 22px 0 22px;
  text-wrap: balance;
}
.hero-description {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}
.actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: 22px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 11px 20px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  transition:
    background 0.15s,
    border-color 0.15s,
    transform 0.15s;
}
.button span {
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}
.button-primary {
  background: var(--text);
  color: #131712;
  border-color: var(--text);
}
.button-primary:hover {
  background: #d9e7cb;
  border-color: #d9e7cb;
}
.button-secondary {
  background: var(--bg);
  color: var(--text);
  border-color: #454c40;
}
.button-secondary:hover {
  background: #191e17;
  border-color: #7b8871;
}
.button:active {
  transform: translateY(1px);
}
.explore-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  color: #a2aa9b;
  padding: 10px;
  margin-top: 22px;
}
.explore-link:hover {
  color: var(--text);
}
.compatibility {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 48px;
  padding: 31px 0;
  border-bottom: 1px solid var(--line);
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--muted);
}
.compatibility strong {
  color: #dbdfd7;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  margin-left: 8px;
}

.features {
  padding: 48px 0 96px;
}
.signals-stage {
  position: relative;
  min-height: 374px;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.signal-items {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.signal-item {
  position: absolute;
  image-rendering: pixelated;
  transform: rotate(var(--angle));
  opacity: 0.85;
}
.item-one {
  left: 4%;
  top: 58px;
  --angle: -16deg;
}
.item-two {
  left: 14%;
  bottom: 57px;
  --angle: 20deg;
}
.item-three {
  right: 7%;
  top: 62px;
  --angle: 16deg;
}
.item-four {
  right: 15%;
  bottom: 47px;
  --angle: -14deg;
}
.signals-copy {
  max-width: 640px;
  padding: 40px 25px;
  text-align: center;
}
h2 {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.23;
  letter-spacing: -1.9px;
}
.signals-copy h2 {
  margin: 20px 0;
}
.signals-copy > p:not(.eyebrow) {
  max-width: 470px;
  margin-inline: auto;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
}
.signal-note {
  display: block;
  color: #939e89;
  font-size: 10px;
  margin-top: 16px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
  margin-top: 42px;
}
.feature-grid article {
  min-width: 0;
  border-top: 1px solid #394031;
  padding-top: 26px;
}
.item-icon {
  display: block;
  image-rendering: pixelated;
  margin-bottom: 20px;
}
h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.4px;
}
.feature-grid p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.9;
  margin-top: 13px;
}
.feature-detail {
  display: block;
  font-size: 10px;
  color: #a7b49c;
  margin-top: 19px;
  line-height: 1.8;
}
.install {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 96px;
  padding: 70px 0 90px;
  border-top: 1px solid var(--line);
}
.install-copy h2 {
  margin: 18px 0 20px;
  font-size: 35px;
  letter-spacing: -1.6px;
}
.install-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 11px;
}
.install-copy .button {
  margin-top: 26px;
}
.install-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}
.install-steps li {
  display: flex;
  align-items: flex-start;
  gap: 23px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}
.install-steps li:first-child {
  padding-top: 0;
}
.step-number {
  font-size: 10px;
  color: #a0b38d;
  line-height: 2;
  font-variant-numeric: tabular-nums;
}
.install-steps h3 {
  font-size: 13px;
  letter-spacing: -0.15px;
}
.install-steps p {
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.85;
  color: var(--muted);
}
code,
kbd {
  font: inherit;
  color: #dce4d6;
}
kbd {
  background: #1c221a;
  border: 1px solid #3c4635;
  border-radius: 3px;
  padding: 2px 5px;
  white-space: nowrap;
}
.site-footer {
  padding: 30px 0 35px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer-brand {
  font-size: 13px;
}
.site-footer p {
  font-size: 10px;
  color: var(--muted);
  margin-top: 11px;
}
.site-footer > a {
  font-size: 11px;
  color: #b5bdb0;
}
.site-footer > a:hover {
  color: var(--text);
}
.site-footer > a span {
  color: var(--accent);
  margin-left: 9px;
}

dialog {
  width: min(454px, calc(100% - 32px));
  max-height: calc(100dvh - 40px);
  padding: 34px;
  border: 1px solid #39432f;
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  overflow: auto;
  box-shadow: 0 18px 60px #0006;
}
dialog::backdrop {
  background: #060905d6;
}
.dialog-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 4px;
  background: none;
  color: var(--muted);
  font-size: 24px;
}
.dialog-close:hover {
  color: var(--text);
  background: #252d20;
}
dialog h2 {
  font-size: 25px;
  letter-spacing: -1px;
  margin: 14px 0;
}
dialog > p {
  font-size: 12px;
  color: var(--muted);
}
dialog form {
  margin-top: 24px;
}
dialog label {
  display: block;
  font-size: 11px;
  margin-bottom: 8px;
}
dialog input {
  display: block;
  width: 100%;
  height: 44px;
  padding: 10px 12px;
  background: #0c110b;
  border: 1px solid #4c5743;
  border-radius: 5px;
  font-size: 13px;
  color: var(--text);
}
dialog input[aria-invalid="true"] {
  border-color: #ce9c8b;
}
dialog .button {
  width: 100%;
  justify-content: space-between;
  margin-top: 16px;
}
.download-status {
  min-height: 20px;
  margin-top: 14px;
  color: #dcb7a9;
}
.download-status[data-success] {
  color: var(--accent);
}
.dialog-help {
  margin-top: 20px;
}
.artifact-note {
  margin-top: 18px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  line-height: 1.75;
  color: var(--muted);
}
.artifact-note code {
  color: var(--text);
}
.dialog-help a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Download help */
.help-main {
  padding: 72px 0 100px;
}
.help-intro {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 90px;
  padding: 56px 0 88px;
  border-bottom: 1px solid var(--line);
  animation: arrive 0.4s ease-out both;
}
.help-intro h1 {
  max-width: 650px;
  margin-bottom: 0;
  font-size: clamp(48px, 6.2vw, 78px);
  line-height: 1.02;
  letter-spacing: -4px;
}
.help-intro-copy {
  padding-bottom: 9px;
}
.help-intro-copy > p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}
.help-intro-copy .button {
  margin-top: 24px;
}
.code-guide,
.help-notes {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 88px;
  padding: 86px 0;
  border-bottom: 1px solid var(--line);
}
.guide-heading h2 {
  max-width: 320px;
  margin-top: 16px;
  font-size: 32px;
  line-height: 1.22;
  letter-spacing: -1.5px;
}
.code-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.code-steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.code-steps li:last-child {
  border-bottom: 0;
}
.code-steps h3,
.note-grid h3 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.25px;
}
.code-steps p,
.note-grid p {
  max-width: 520px;
  margin-top: 9px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.85;
}
.code-steps strong {
  color: #cbd0c7;
  font-weight: 500;
}
.code-example {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: end;
  gap: 70px;
  padding: 35px 38px;
  margin: 22px 0;
  border: 1px solid #323a2d;
  border-radius: 10px;
  background: #131713;
}
.sample-code {
  margin-top: 14px;
  color: var(--text);
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.35;
  letter-spacing: 0.8px;
  overflow-wrap: anywhere;
  font-variant-numeric: tabular-nums;
}
.code-example > p {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.85;
}
.note-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.note-grid article {
  min-height: 190px;
  padding: 26px;
  background: var(--bg);
}
.note-grid article > span {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  padding: 0 7px;
  margin-bottom: 40px;
  border: 1px solid #3d4736;
  border-radius: 5px;
  color: var(--accent);
  font-size: 9px;
  font-variant-numeric: tabular-nums;
}
.help-finish {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding: 78px 0 4px;
}
.help-finish h2 {
  margin-top: 12px;
  font-size: 35px;
  letter-spacing: -1.6px;
}

@keyframes arrive {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
/* Small scroll-linked accents; no wheel handling, animation loops, or sticky scroll sections. */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) and (min-width: 701px) {
    .scene,
    .signal-item {
      animation: drift linear both;
      animation-timeline: view(block);
      animation-range: entry 0% exit 100%;
    }
  }
}
@keyframes drift {
  from {
    translate: 0 18px;
  }
  to {
    translate: 0 -24px;
  }
}
@media (max-width: 1100px) {
  .hero {
    min-height: 620px;
  }
  .scene-one {
    width: 134px;
    height: 166px;
    left: 3%;
    top: 25px;
  }
  .scene-two {
    width: 166px;
    height: 115px;
    right: 3%;
    top: 20px;
  }
  .scene-three {
    width: 148px;
    height: 102px;
    left: 5%;
    bottom: 25px;
  }
  .scene-four {
    width: 125px;
    height: 151px;
    right: 4%;
    bottom: 22px;
  }
  .hero-copy {
    padding-top: 110px;
  }
  h1 {
    font-size: 46px;
    letter-spacing: -2px;
  }
  .install {
    gap: 55px;
  }
  .item-one {
    left: 1%;
  }
  .item-two {
    left: 9%;
  }
  .item-three {
    right: 1%;
  }
  .item-four {
    right: 9%;
  }
  .signals-copy {
    max-width: 590px;
  }
}
@media (max-width: 800px) {
  .shell {
    width: calc(100% - 48px);
  }
  .hero {
    min-height: 610px;
  }
  .scene-one {
    width: 96px;
    height: 123px;
    left: 4%;
    top: 22px;
  }
  .scene-two {
    width: 133px;
    height: 98px;
    right: 4%;
    top: 21px;
  }
  .scene-three {
    width: 105px;
    height: 75px;
    left: 4%;
    bottom: 24px;
  }
  .scene-four {
    width: 86px;
    height: 105px;
    right: 4%;
    bottom: 13px;
  }
  .hero-copy {
    padding: 125px 0 90px;
  }
  h1 {
    font-size: 42px;
  }
  .hero-description {
    font-size: 13px;
  }
  .compatibility {
    gap: 18px 25px;
  }
  h2 {
    font-size: 34px;
  }
  .signals-copy {
    max-width: 530px;
  }
  .signal-item {
    width: 37px;
    height: 37px;
    opacity: 0.65;
  }
  .item-one,
  .item-three {
    top: 29px;
  }
  .item-two,
  .item-four {
    bottom: 20px;
  }
  .feature-grid {
    gap: 25px;
  }
  .feature-grid h3 {
    font-size: 14px;
  }
  .feature-grid p {
    font-size: 11px;
  }
  .install {
    gap: 35px;
    grid-template-columns: 1fr 1.1fr;
  }
  .install-copy h2 {
    font-size: 29px;
  }
  .help-main {
    padding-top: 35px;
  }
  .help-intro {
    gap: 45px;
  }
  .code-guide,
  .help-notes {
    grid-template-columns: 0.55fr 1.45fr;
    gap: 42px;
  }
  .note-grid {
    grid-template-columns: 1fr;
  }
  .note-grid article {
    min-height: 0;
  }
  .note-grid article > span {
    margin-bottom: 25px;
  }
}
@media (max-width: 600px) {
  .shell {
    width: calc(100% - 40px);
  }
  .site-header {
    min-height: 76px;
    gap: 18px;
  }
  .brand {
    font-size: 13px;
    gap: 7px;
  }
  .brand img {
    width: 19px;
    height: 19px;
  }
  nav {
    gap: 17px;
    font-size: 10px;
  }
  nav a:first-child {
    display: none;
  }
  nav span {
    margin-left: 1px;
  }
  .hero {
    min-height: 585px;
  }
  .scene {
    border-radius: 12px;
  }
  .scene-one {
    top: 8px;
    left: 7%;
    width: 81px;
    height: 100px;
  }
  .scene-two {
    top: 12px;
    right: 7%;
    width: 112px;
    height: 79px;
  }
  .scene-three,
  .scene-four {
    display: none;
  }
  .hero-copy {
    width: calc(100% - 40px);
    padding: 151px 0 40px;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 1.6px;
  }
  h1 {
    font-size: clamp(30px, 7.8vw, 43px);
    line-height: 1.2;
    letter-spacing: -1.6px;
    margin: 19px 0;
  }
  .hero-description {
    font-size: 12px;
    line-height: 1.9;
    max-width: 360px;
    margin-inline: auto;
  }
  .desktop-break {
    display: none;
  }
  .actions {
    margin-top: 24px;
    gap: 10px;
  }
  .button {
    min-height: 44px;
    padding: 10px 15px;
    font-size: 11px;
    gap: 13px;
  }
  .explore-link {
    margin-top: 16px;
  }
  .compatibility {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
    padding: 22px 5px;
    font-size: 8px;
  }
  .compatibility strong {
    font-size: 11px;
    margin-left: 5px;
  }
  .compatibility > span:nth-child(even) {
    text-align: right;
  }
  .features {
    padding: 25px 0 56px;
  }
  .signals-stage {
    min-height: 333px;
  }
  .signals-copy {
    padding: 47px 5px 24px;
  }
  h2 {
    font-size: clamp(26px, 6.8vw, 34px);
    letter-spacing: -1.2px;
  }
  .signals-copy h2 {
    margin: 17px 0;
  }
  .signals-copy > p:not(.eyebrow) {
    font-size: 12px;
    max-width: 340px;
  }
  .signal-note {
    font-size: 9px;
  }
  .signal-item {
    width: 30px;
    height: 30px;
  }
  .item-one {
    left: 7%;
    top: 17px;
  }
  .item-three {
    right: 7%;
    top: 17px;
  }
  .item-two,
  .item-four {
    display: none;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 27px;
    margin-top: 26px;
  }
  .feature-grid article {
    display: grid;
    grid-template-columns: 28px 1fr;
    column-gap: 18px;
    padding: 25px 0 0;
  }
  .item-icon {
    grid-row: 1 / 4;
    margin: 0;
  }
  .feature-grid h3,
  .feature-grid p,
  .feature-detail {
    grid-column: 2;
  }
  .feature-grid h3 {
    font-size: 15px;
  }
  .feature-grid p {
    font-size: 12px;
    margin-top: 10px;
  }
  .feature-detail {
    font-size: 10px;
    margin-top: 12px;
  }
  .install {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 46px 0 50px;
  }
  .install-copy h2 {
    font-size: 31px;
    margin: 15px 0;
  }
  .install-copy .button {
    margin-top: 23px;
  }
  .install-steps li {
    gap: 22px;
    padding: 22px 0;
  }
  .site-footer {
    display: block;
    padding-block: 27px;
  }
  .site-footer > a {
    display: inline-block;
    margin-top: 22px;
  }
  dialog {
    padding: 30px 24px;
  }
  .help-main {
    padding: 22px 0 65px;
  }
  .help-intro,
  .code-guide,
  .help-notes,
  .code-example {
    grid-template-columns: 1fr;
  }
  .help-intro {
    gap: 35px;
    padding: 45px 0 58px;
  }
  .help-intro h1 {
    font-size: clamp(42px, 13vw, 61px);
    letter-spacing: -2.8px;
  }
  .help-intro-copy {
    padding-bottom: 0;
  }
  .code-guide,
  .help-notes {
    gap: 40px;
    padding: 58px 0;
  }
  .guide-heading h2 {
    font-size: 28px;
  }
  .code-example {
    gap: 25px;
    padding: 28px 24px;
  }
  .sample-code {
    font-size: 15px;
  }
  .help-finish {
    display: grid;
    padding-top: 58px;
  }
  .help-finish .button {
    width: 100%;
    justify-content: space-between;
  }
}
@media (max-width: 360px) {
  .shell {
    width: calc(100% - 32px);
  }
  nav {
    gap: 12px;
  }
  .brand {
    font-size: 12px;
  }
  .brand img {
    width: 17px;
    height: 17px;
  }
  .hero-copy {
    width: calc(100% - 32px);
  }
  .actions .button {
    padding-inline: 12px;
    font-size: 10px;
    gap: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .button:active {
    transform: none;
  }
}
