@font-face {
  font-family: Inter;
  src: url("fonts/InterVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0b0b0b;
  --surface: #141414;
  --text: #f3f1ec;
  --muted: #8a8680;
  --rule: #2a2a2a;
  --frame: #1c1c1c;
  --accent: #ff5a1f;
  --ink: #0b0b0b;
  --max: 1120px;
  --header: 56px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 3px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 8px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Neue Haas Grotesk Text", "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  font-size: 17px;
  font-optical-sizing: auto;
  line-height: 1.55;
  letter-spacing: -0.011em;
  font-feature-settings: "ss01" on, "cv11" on;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

a {
  color: inherit;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
p,
ul,
dl,
figure,
figcaption {
  margin: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
  letter-spacing: -0.03em;
  line-height: 1.08;
  font-weight: 550;
}

h1 {
  font-size: clamp(4.25rem, 11vw, 6rem);
  letter-spacing: -0.04em;
  font-weight: 560;
}

.headline {
  animation: unwrist-in 1.2s var(--ease);
}

@keyframes unwrist-in {
  from {
    opacity: 0.35;
    transform: translateY(0.08em);
    letter-spacing: -0.02em;
  }

  to {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: -0.04em;
  }
}

h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.65rem);
  max-width: 18ch;
}

h3 {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 1rem;
}

.skip {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 40;
  padding: 0.5rem 0.75rem;
  background: var(--accent);
  color: var(--ink);
  text-decoration: none;
  border-radius: var(--radius);
  transform: translateY(-200%);
}

.skip:focus {
  transform: none;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

@media (min-width: 800px) {
  .wrap {
    width: min(var(--max), calc(100% - 96px));
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header);
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wordmark {
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.22em;
  text-decoration: none;
  color: var(--text);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  line-height: 1;
}

.wordmark-static {
  display: inline-block;
  margin-bottom: 1rem;
}

nav {
  display: flex;
  gap: 1.35rem;
}

nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 0.2rem;
  font-size: 0.84rem;
  color: var(--muted);
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  color: var(--text);
}

.hero {
  padding-top: 3.5rem;
  padding-bottom: 5rem;
}

.hero-grid {
  display: grid;
  gap: 1.5rem 4rem;
  margin-bottom: 2.75rem;
}

@media (min-width: 860px) {
  .hero {
    padding-top: 5.5rem;
    padding-bottom: 7rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    grid-template-areas:
      "title eye"
      "title copy";
    align-items: end;
    margin-bottom: 3.25rem;
  }

  .hero-grid .eyebrow {
    grid-area: eye;
    margin-bottom: 0;
    align-self: start;
  }

  .hero-grid h1 {
    grid-area: title;
    align-self: end;
  }

  .hero-copy {
    grid-area: copy;
    padding-bottom: 0.35rem;
  }
}

.eyebrow {
  margin: 0 0 1.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.subhead {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 520;
  letter-spacing: -0.03em;
  margin: 0.85rem 0 1rem;
  max-width: 12em;
  line-height: 1.2;
}

.lede,
.prose p {
  color: var(--muted);
}

.lede {
  max-width: 36ch;
  margin-bottom: 1.6rem;
}

.prose {
  display: grid;
  gap: 0.95rem;
}

.prose p,
.lede,
.hero-note,
figcaption,
.questions,
.plate-note,
.hardware-link,
.footer-tag,
.legal,
.plain-list,
.feature-list span,
.buy-card dd,
.buy-card dt,
.site-footer p {
  font-size: 1.02rem;
}

.measure {
  max-width: 62ch;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1.15rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background-color 160ms var(--ease), color 160ms var(--ease), border-color 160ms var(--ease);
}

.btn-primary {
  background: var(--accent);
  color: var(--ink);
  border: 1px solid var(--accent);
}

.btn-primary:hover {
  background: #ff6d3a;
  border-color: #ff6d3a;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--rule);
}

.btn-secondary:hover {
  border-color: var(--text);
}

.frame {
  margin: 0;
  width: 100%;
}

.frame-wide {
  margin-top: 2.75rem;
}

.frame-box {
  aspect-ratio: var(--ratio, 16/9);
  background: var(--frame);
  border: 1px solid var(--rule);
  display: grid;
  place-items: center;
  padding: 1rem;
}

.frame-photo {
  padding: 0;
  overflow: hidden;
}

.frame-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero .frame-photo img {
  object-position: center 58%;
}

.frame-photo-palm img {
  object-position: center 38%;
}

.frame-photo-pocket img {
  object-position: center 42%;
}

.frame-photo-go img {
  object-position: center 52%;
}

.frame-label {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 550;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  max-width: 28ch;
}

.hero-note {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  padding-block: 4.25rem;
  border-top: 1px solid var(--rule);
}

#build[hidden] {
  display: none;
}

.section-label {
  margin: 0 0 1.35rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.section h2 {
  margin-bottom: 1.6rem;
}

.split {
  display: grid;
  gap: 2.75rem;
}

@media (min-width: 860px) {
  .section {
    padding-block: 7.5rem;
  }

  .split-manifesto,
  .split-build {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }

  .split-features {
    grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.7fr);
    gap: 5rem;
    align-items: start;
  }

  .split-buy {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 28rem);
    gap: 4.5rem;
    align-items: start;
  }

  .split-buy .buy-card {
    margin-top: 0;
    max-width: none;
  }
}

.trio {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 760px) {
  .trio {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.25rem;
    align-items: stretch;
  }

  .trio figure {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .trio .frame {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
  }

  .trio .frame-box {
    width: 100%;
  }

  .trio figcaption {
    margin-top: auto;
    padding-top: 0.75rem;
    min-height: 2.8em;
  }
}

.trio figcaption,
.feature-list span {
  color: var(--muted);
}

.trio figcaption {
  margin-top: 0.75rem;
  font-size: 0.92rem;
  max-width: 22ch;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 620px) {
  .feature-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 2.5rem;
  }
}

.feature-list li {
  padding: 1.15rem 0;
  border-top: 1px solid var(--rule);
  display: grid;
  gap: 0.3rem;
}

.feature-list strong {
  font-weight: 600;
  letter-spacing: -0.02em;
}

.feature-frames {
  display: grid;
  gap: 1.25rem;
}

.plate {
  background: var(--surface);
  border: 1px solid var(--rule);
  padding: 1.75rem 1.35rem 1.85rem;
}

@media (min-width: 800px) {
  .plate {
    padding: 3rem 3.25rem 3.1rem;
  }
}

.path {
  margin: 1.5rem 0 1rem;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  font-weight: 580;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.plate-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.plain-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.35rem;
  color: var(--text);
}

.plain-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--rule);
}

.hardware-link {
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.hardware-link a {
  color: var(--text);
  text-underline-offset: 3px;
}

.buy-card {
  margin-top: 2.25rem;
  max-width: 28rem;
  background: var(--surface);
  border: 1px solid var(--rule);
  padding: 1.6rem 1.4rem 1.5rem;
}

.buy-card dl {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.4rem;
}

.buy-card dl div {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 0.75rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--rule);
}

.buy-card dt {
  color: var(--muted);
  font-size: 0.88rem;
}

.buy-card dd {
  font-weight: 550;
}

.buy-card .btn {
  width: 100%;
}

.questions {
  margin-top: 1.1rem;
  font-size: 0.92rem;
}

.questions a {
  color: var(--text);
  text-underline-offset: 3px;
}

.site-footer {
  border-top: 1px solid var(--rule);
  padding: 3.5rem 0 6.5rem;
  color: var(--muted);
}

.footer-tag {
  color: var(--text);
  margin-bottom: 1.1rem;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.site-footer p + p {
  margin-top: 0.45rem;
}

.legal {
  max-width: 46ch;
  margin-top: 1rem !important;
}

.site-footer a {
  color: var(--text);
  text-underline-offset: 3px;
}

.buybar {
  display: none;
}

@media (max-width: 759px) {
  body {
    padding-bottom: env(safe-area-inset-bottom);
  }

  .buybar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 25;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 58px;
    padding: 0.55rem 1rem calc(0.55rem + env(safe-area-inset-bottom));
    background: var(--bg);
    border-top: 1px solid var(--rule);
  }

  .buybar.is-on {
    display: flex;
  }

  .buybar[hidden] {
    display: none;
  }

  .buybar .btn {
    min-height: 40px;
    padding-inline: 1rem;
  }

  #buy {
    padding-top: 2.75rem;
    padding-bottom: 8.5rem;
  }

  .buy-card {
    padding: 1.25rem 1.1rem 1.2rem;
  }

  .site-footer {
    padding-bottom: 7.5rem;
  }

  nav {
    gap: 0.9rem;
  }

  nav a {
    font-size: 0.78rem;
    min-width: 44px;
  }
}

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

  .btn {
    transition: none;
  }

  .headline {
    animation: none;
  }
}
