@font-face {
  font-family: "Bricolage";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("./fonts/BricolageGrotesque.ttf") format("truetype");
}

@font-face {
  font-family: "Mona Sans";
  font-style: normal;
  font-weight: 200 900;
  font-stretch: 75% 125%;
  font-display: swap;
  src: url("./fonts/MonaSans.ttf") format("truetype");
}

:root,
html[data-theme="ink"] {
  --bg: #070706;
  --card: #0e0d0b;
  --fg: #ead6b8;
  --muted: #b9a48a;
  --line: rgba(234, 214, 184, 0.14);
  --nick: #e23b2b;
  --oak: #ead6b8;
  --paper: #ead6b8;
  --paper-2: #1a1916;
  --ink: #ead6b8;
  --font: "Mona Sans", sans-serif;
  --display: "Mona Sans", sans-serif;
  --r: 28px;
  --mega: #1a1917;
  --nav-bg: rgba(7, 7, 6, 0.72);
}

html[data-theme="oak"] {
  --bg: #ead6b8;
  --card: #f6e6cc;
  --fg: #1c140c;
  --muted: #6e5c48;
  --line: rgba(28, 20, 12, 0.14);
  --nick: #e23b2b;
  --oak: #1c140c;
  --paper: #f6e6cc;
  --paper-2: #f3e0c4;
  --ink: #1c140c;
  --mega: #d4bc96;
  --nav-bg: rgba(234, 214, 184, 0.78);
}


html[data-theme="oak"] .paper img {
  background: #fff8ee;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--fg) 42%, transparent) transparent;
}

*::-webkit-scrollbar {
  width: 9px;
  height: 9px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--fg) 34%, transparent);
  border-radius: 999px;
  border: 2px solid var(--bg);
}

*::-webkit-scrollbar-thumb:hover {
  background: color-mix(in srgb, var(--fg) 58%, transparent);
}

*::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

html,
body {
  margin: 0;
  position: relative;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  font-weight: 500;
  font-variation-settings: "wght" 500;
  letter-spacing: -0.02em;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 16px 28px;
  background: transparent;
  transition: background 400ms cubic-bezier(0.22, 1, 0.36, 1), backdrop-filter 400ms ease;
}

.nav.is-scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 560;
  font-variation-settings: "wght" 560, "opsz" 72, "wdth" 100;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand-mark-wrap {
  position: relative;
  width: 36px;
  height: 36px;
  flex: none;
  border-radius: 10px;
  overflow: hidden;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: block;
}

.brand-mark-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 35%,
    color-mix(in srgb, var(--nick) 70%, #fff) 50%,
    transparent 65%
  );
  transform: translateX(-120%);
  animation: brand-sheen 3.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  mix-blend-mode: screen;
  pointer-events: none;
}

@keyframes brand-sheen {
  0%,
  18% {
    transform: translateX(-120%);
  }
  48%,
  100% {
    transform: translateX(120%);
  }
}

.brand:hover .brand-mark-wrap {
  animation: brand-nudge 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes brand-nudge {
  0% {
    transform: rotate(0deg);
  }
  40% {
    transform: rotate(-8deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.nav nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
}

.nav nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
  color: var(--muted);
}

.nav nav a:hover,
.nav nav a:focus-visible {
  color: var(--fg);
}

.btn:focus-visible,
.nav nav a:focus-visible {
  outline: 2px solid var(--fg);
  outline-offset: 3px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--fg);
  color: var(--bg);
  font-family: "Mona Sans", sans-serif;
  font-size: 14px;
  font-weight: 650;
  font-stretch: 105%;
  font-variation-settings: "wght" 650, "wdth" 105;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: 0;
  cursor: pointer;
}

.btn.lg {
  height: 52px;
  padding: 0 26px;
  font-size: 16px;
}

.chrome-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 14px 0 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--fg) 6%, transparent);
  color: var(--fg);
  font-size: 14px;
  font-weight: 650;
}

.chrome-chip img {
  width: 18px;
  height: 18px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.btn.ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--line);
}

.btn:hover {
  filter: brightness(1.06);
}

.btn:active {
  transform: scale(0.98);
}

.mode {
  --w: 44px;
  --h: 26px;
  --pad: 3px;
  width: var(--w);
  height: var(--h);
  flex: none;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--fg) 12%, transparent);
  cursor: pointer;
  position: relative;
}

.mode::after {
  content: "";
  position: absolute;
  top: var(--pad);
  left: var(--pad);
  width: calc(var(--h) - var(--pad) * 2);
  height: calc(var(--h) - var(--pad) * 2);
  border-radius: 50%;
  background: var(--fg);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mode[aria-checked="true"]::after {
  transform: translateX(calc(var(--w) - var(--h)));
}

.mode:focus-visible {
  outline: 2px solid var(--fg);
  outline-offset: 3px;
}

.nav-sentinel {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 24px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "chip chip"
    "copy visual";
  align-items: start;
  justify-items: center;
  gap: 18px 40px;
  text-align: center;
}

.hero > .chrome-chip {
  grid-area: chip;
  justify-self: center;
  margin: 0 0 6px;
}

.hero-copy {
  grid-area: copy;
  min-width: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-visual {
  grid-area: visual;
  width: min(100%, 340px);
  margin: 0;
  display: grid;
  place-items: center;
  overflow: visible;
  justify-self: center;
}

.coach-peek {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 340px);
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: help;
}

.coach-code {
  position: relative;
  display: block;
  width: min(100%, 320px);
  aspect-ratio: 1;
}

.coach-code img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
}


.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.coach-peek:focus-visible {
  outline: 2px solid var(--nick);
  outline-offset: 8px;
}

.coach-bubble {
  position: absolute;
  right: auto;
  left: 78%;
  top: 50%;
  z-index: 5;
  width: min(320px, 31vw);
  padding: 17px 20px 18px;
  border: 2px solid color-mix(in srgb, var(--fg) 82%, var(--nick));
  border-radius: 22px 24px 24px 8px;
  background: var(--paper-2);
  box-shadow: 8px 12px 24px color-mix(in srgb, var(--fg) 16%, transparent);
  color: var(--fg);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transform: translate(-12px, -50%) rotate(-1deg) scale(0.94);
  transform-origin: left center;
  transition:
    opacity 180ms ease,
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 180ms;
}

.coach-bubble::before {
  content: "";
  position: absolute;
  left: -10px;
  bottom: 18px;
  width: 17px;
  height: 17px;
  border: 2px solid color-mix(in srgb, var(--fg) 82%, var(--nick));
  border-radius: 3px;
  background: var(--paper-2);
  transform: rotate(45deg);
}

.coach-peek:hover .coach-bubble,
.coach-peek:focus-visible .coach-bubble {
  opacity: 1;
  visibility: visible;
  transform: translate(0, -50%) rotate(-1deg) scale(1);
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(56px, 9vw, 96px);
  font-weight: 620;
  font-variation-settings: "wght" 620, "opsz" 96, "wdth" 100;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.lead {
  margin: 18px auto 28px;
  max-width: 42ch;
  font-size: 20px;
  line-height: 1.4;
  color: var(--muted);
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.tiles {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 22px;
  margin: 0 auto 24px;
  padding: 0 24px 48px;
  max-width: 1120px;
}

.tiles li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.tiles span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.glyph {
  width: 48px;
  height: 48px;
  border: 0;
  background: none;
  border-radius: 0;
  display: grid;
  place-items: center;
}

.glyph img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.glyph.js img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.glyph.is-paper {
  background: #f3ede3;
  padding: 0;
}

.glyph.is-paper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  transform: scale(1.45);
}

.glyph.is-paper-stack {
  background: #f3ede3;
  padding: 0;
  position: relative;
}

.glyph.is-paper-stack img {
  position: absolute;
  width: 72%;
  height: 78%;
  object-fit: cover;
  object-position: 50% 28%;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.22);
}

.glyph.is-paper-stack img:first-child {
  left: 6%;
  top: 18%;
  transform: rotate(-8deg);
  z-index: 1;
}

.glyph.is-paper-stack img:last-child {
  right: 6%;
  top: 6%;
  transform: rotate(7deg);
  z-index: 2;
}

.glyph.is-ml {
  background: none;
  padding: 0;
}

.glyph.is-ml img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.glyph.is-doc {
  color: var(--fg);
}

.glyph.is-doc img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

html[data-theme="ink"] .glyph.is-doc img,
html[data-theme="ink"] .glyph.is-anthropic img,
html[data-theme="ink"] .model-ico.is-anthropic img,
html[data-theme="ink"] .meters img {
  filter: invert(0.9) sepia(0.25) saturate(0.6);
}

.glyph.txt {
  font-size: 13px;
  font-weight: 800;
  font-variation-settings: "wght" 800;
}

.tiles .more .glyph {
  color: var(--nick);
}

.band {
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 24px 88px;
}

.band h2,
.alone h2 {
  margin: 0 auto 36px;
  font-family: var(--display);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 620;
  font-variation-settings: "wght" 620, "opsz" 72, "wdth" 100;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-align: center;
  max-width: 24ch;
}

.band-lead {
  margin: -20px auto 36px;
  max-width: 46ch;
  text-align: center;
  font-size: 17px;
  line-height: 1.45;
  color: var(--muted);
}

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.chroma {
  position: relative;
  isolation: isolate;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 26px 24px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 0% 0%, color-mix(in srgb, var(--nick) 28%, transparent), transparent 55%),
    radial-gradient(90% 70% at 100% 100%, color-mix(in srgb, var(--fg) 10%, transparent), transparent 50%),
    var(--card);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.chroma h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 560;
  font-variation-settings: "wght" 560, "opsz" 48, "wdth" 108;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
}

.chroma > p {
  margin: 0 auto 20px;
  max-width: 28ch;
  font-size: 15px;
  line-height: 1.45;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.path-stack {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.path-stack li {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 4px 12px;
  min-height: 76px;
  padding: 12px 14px 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper-2);
}

.path-stack li::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 15%, color-mix(in srgb, var(--nick) 16%, transparent) 50%, transparent 85%);
  background-size: 240% 100%;
  animation: path-glow 5.4s ease-in-out infinite;
  opacity: 0.75;
}

.path-stack li:nth-child(2)::before {
  animation-delay: -1.8s;
}

.path-stack li:nth-child(3)::before {
  animation-delay: -3.6s;
}

.path-stack img {
  position: relative;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.path-stack span {
  position: relative;
  min-width: 0;
}

.path-stack b,
.path-stack small {
  display: block;
}

.path-stack b {
  margin-bottom: 2px;
  font-size: 14px;
  font-weight: 780;
}

.path-stack small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.path-stack i {
  position: absolute;
  right: 14px;
  bottom: 8px;
  left: 68px;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: color-mix(in srgb, var(--fg) 10%, transparent);
}

.path-stack i::after {
  content: "";
  display: block;
  width: var(--path-progress);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--nick), #2a9b8f);
}

@keyframes path-glow {
  0%,
  20% {
    background-position: 130% 0;
  }
  60%,
  100% {
    background-position: -130% 0;
  }
}

.sheet {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 1;
  text-align: left;
}

.sheet li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 10px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 55%, transparent);
  backdrop-filter: blur(16px);
}

.sheet span {
  grid-column: 2;
  grid-row: 1;
  font-size: 11px;
  color: var(--muted);
}

.sheet b {
  grid-column: 1;
  font-size: 14px;
  font-weight: 750;
}

.sheet small {
  grid-column: 1;
  color: var(--muted);
  font-size: 12px;
}

.sheet em {
  grid-column: 2;
  grid-row: 2;
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  color: var(--nick);
  justify-self: end;
}

.chroma.wash {
  display: flex;
  flex-direction: column;
}

.paper-stage-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  width: 100%;
}

.paper-arrow {
  flex: none;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--fg);
  cursor: pointer;
}

.paper-arrow img {
  display: block;
  width: 18px;
  height: 18px;
}

.paper-arrow:focus-visible {
  outline: 2px solid var(--fg);
  outline-offset: 2px;
}

.paper-stage {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px;
  border-radius: 18px;
  overflow: hidden;
  background: color-mix(in srgb, var(--bg) 40%, var(--card));
  border: 1px solid var(--line);
}

.paper-stage figure {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #f3ede3;
  border: 1px solid var(--line);
}

.paper-stage img {
  display: block;
  width: 100%;
  height: 72px;
  object-fit: cover;
  object-position: 50% 18%;
}

.paper-stage figcaption {
  padding: 5px 7px 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1c140c;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chroma-foot {
  margin-top: auto;
  font-size: 12px;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.meters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.meters div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 108px;
  padding: 16px 10px 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--paper-2);
  color: var(--fg);
  text-align: center;
}

.meters img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  opacity: 0.85;
}

.meters b {
  display: block;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 560;
  font-variation-settings: "wght" 560, "opsz" 28;
  letter-spacing: -0.04em;
  line-height: 1;
}

.meters span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.meters .is-streak {
  border-color: color-mix(in srgb, var(--nick) 35%, var(--line));
  background: color-mix(in srgb, var(--nick) 14%, var(--paper-2));
}

.meters .is-streak b {
  color: var(--nick);
}

.cta-band {
  max-width: 920px;
  margin: 0 auto 24px;
  padding: 56px 28px;
  text-align: center;
  border-radius: 36px;
  border: 1px solid var(--line);
  background:
    radial-gradient(80% 120% at 10% 0%, color-mix(in srgb, var(--nick) 40%, transparent), transparent 55%),
    radial-gradient(70% 100% at 90% 100%, color-mix(in srgb, var(--fg) 18%, transparent), transparent 50%),
    var(--card);
}

.cta-band h2 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 620;
  font-variation-settings: "wght" 620, "opsz" 72, "wdth" 100;
  letter-spacing: -0.02em;
}

.waitlist-copy {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 17px;
}

.waitlist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 16px;
}

.waitlist input {
  width: min(320px, 100%);
  height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: color-mix(in srgb, var(--bg) 40%, var(--card));
  color: var(--fg);
  font: inherit;
  font-size: 16px;
}

.waitlist input::placeholder {
  color: var(--muted);
}

.waitlist input:focus-visible {
  outline: 2px solid var(--nick);
  outline-offset: 2px;
}

.waitlist-done {
  margin: 0 0 16px;
  color: var(--fg);
  font-weight: 600;
}

.kiss {
  position: relative;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background:
    radial-gradient(90% 70% at 8% 0%, rgba(226, 59, 43, 0.16), transparent 55%),
    var(--card);
  padding: 22px 22px 20px;
  overflow: hidden;
}

.kiss > p {
  margin: 0 0 16px;
}

.mini {
  --oak: #ead6b8;
  --paper: #f6e6cc;
  --ink: #1c140c;
  --mute: #6e5c48;
  --hair: #d4bc96;
  background: var(--oak);
  color: var(--ink);
  border-radius: 18px;
  padding: 10px;
}

.mini .thread,
.mini .paper-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  width: 100%;
  margin: 0 0 8px;
  padding: 12px;
  border: 0;
  border-radius: 16px;
  background: var(--paper);
  color: inherit;
  font: inherit;
  text-align: left;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(28, 20, 12, 0.06);
}

.mini img {
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
  object-fit: contain;
  flex: none;
}

.mini .thread:last-child,
.mini .paper-card:last-child {
  margin-bottom: 0;
}

.thread-top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.thread-top b,
.paper-card h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 750;
  font-variation-settings: "wght" 750;
}

.thread-top time {
  font-size: 11px;
  color: var(--mute);
}

.mini .thread p {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
  color: var(--ink);
  max-width: none;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.chip {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 8px;
  border: 1px solid var(--hair);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 650;
}

.chip.nick {
  border-color: rgba(226, 59, 43, 0.35);
  background: rgba(226, 59, 43, 0.12);
  color: #9a2418;
}

.lang.js {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: #f0dc4e;
  color: #111;
  font-size: 9px;
  font-weight: 800;
}

.att,
.cpp {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.pro {
  display: inline-flex;
  align-items: center;
  height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  background: #111;
  color: #fff8f0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 3px 0 #e23b2b;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--mute);
}

.tabs .on {
  background: rgba(28, 20, 12, 0.08);
  color: var(--ink);
  border-radius: 999px;
  padding: 4px 10px;
}

.paper-card {
  align-items: center;
  text-align: center;
}

.mini-k {
  margin: 4px 4px 8px;
  font-size: 12px;
  font-weight: 800;
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.stat {
  border-radius: 16px;
  padding: 12px 8px;
  text-align: center;
}

.stat b {
  display: block;
  font-size: 22px;
  font-weight: 800;
}

.stat span {
  font-size: 11px;
  color: var(--mute);
}

.stat.dark {
  background: #1c140c;
  color: #ead6b8;
}

.stat.dark span {
  color: #b9a48a;
}

.stat.light {
  background: var(--paper);
}

.stat.nick-glow {
  box-shadow: 0 6px 16px rgba(226, 59, 43, 0.28);
}

.acct {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 8px;
  font-size: 14px;
  font-weight: 700;
}

.acct i {
  font-style: normal;
  min-width: 22px;
  height: 22px;
  border-radius: 99px;
  background: var(--paper);
  display: grid;
  place-items: center;
  font-size: 11px;
}

.settings {
  margin-top: 4px;
  text-align: center;
  padding: 10px;
  border-radius: 999px;
  background: var(--paper);
  font-size: 14px;
  font-weight: 700;
}

.kiss h3,
.model h3,
.roster h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 560;
  font-variation-settings: "wght" 560, "opsz" 36, "wdth" 105;
  letter-spacing: -0.03em;
}

.model h3 {
  font-family: var(--font);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.model p {
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: none;
}

.kiss p,
.roster p {
  margin: 0;
  max-width: 36ch;
  font-size: 15px;
  line-height: 1.45;
  color: var(--muted);
}

.model p,
.hire p {
  margin: 0;
  max-width: 28ch;
  font-size: 15px;
  line-height: 1.45;
  color: var(--muted);
}

.hire-examples {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hire-examples li {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  font-size: 14px;
  font-weight: 650;
}

.hire-examples .is-more {
  border-color: color-mix(in srgb, var(--nick) 40%, var(--line));
  color: var(--fg);
}

.feed {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feed li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(7, 7, 6, 0.55);
}

.feed b {
  font-size: 14px;
  font-weight: 750;
  font-variation-settings: "wght" 750;
}

.feed small {
  grid-column: 1;
  color: var(--muted);
  font-size: 12px;
}

.feed em {
  grid-row: 1 / span 2;
  align-self: center;
  font-style: normal;
  font-size: 12px;
  font-weight: 800;
  color: var(--nick);
}

.roster {
  display: flex;
  flex-direction: column;
  width: min(100%, 36rem);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.roster > li {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 12px 20px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.roster > li:first-child {
  border-top: 1px solid var(--line);
}

.roster-n {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 560;
  font-variation-settings: "wght" 560;
  font-variant-numeric: tabular-nums;
  color: var(--muted);
  line-height: 1.4;
}

.roster h3 {
  font-size: 28px;
  font-weight: 500;
  font-variation-settings: "wght" 500, "opsz" 72, "wdth" 110;
}

.roster p {
  max-width: 46ch;
}

.models {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.models-tracks {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.models-tracks .model:first-child {
  grid-column: auto;
}

.papers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.paper {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 0;
  padding: 20px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--card);
}

.paper img {
  width: 88px;
  height: 88px;
  border-radius: 16px;
  object-fit: cover;
  background: color-mix(in srgb, var(--fg) 6%, var(--card));
}

.paper h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 540;
  font-variation-settings: "wght" 540, "opsz" 28;
  letter-spacing: -0.03em;
}

.paper p {
  margin: 0;
  max-width: none;
  font-size: 15px;
  line-height: 1.45;
  color: var(--muted);
}

.hire {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.hire article {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.hire h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 520;
}

.model {
  position: relative;
  min-height: 168px;
  padding: 24px 96px 24px 24px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background:
    radial-gradient(80% 60% at 100% 0%, rgba(226, 59, 43, 0.1), transparent 50%),
    var(--card);
}

.pill {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 10px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(234, 214, 184, 0.1);
  color: var(--oak);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.pill.nick {
  background: rgba(226, 59, 43, 0.16);
  color: #f0a098;
}

.model small {
  display: block;
  margin-top: 18px;
  font-size: 12px;
  color: var(--muted);
}

.model-ico {
  position: absolute;
  right: 20px;
  top: 50%;
  translate: 0 -50%;
  width: 48px;
  height: 48px;
  border: 0;
  background: none;
  border-radius: 0;
  display: grid;
  place-items: center;
}

.model-ico img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.model-ico.is-paper {
  width: 112px;
  height: 112px;
  padding: 0;
  background: #f3ede3;
}

.model-ico.is-paper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 8%;
}

.model-ico.is-ml {
  background: none;
  padding: 0;
}

.model-ico.is-ml img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.model-ico.txt {
  font-size: 16px;
  font-weight: 800;
  font-variation-settings: "wght" 800;
}

.alone {
  max-width: 1120px;
  margin: 0 auto 48px;
  padding: 0 24px;
}

.alone-inner {
  text-align: center;
  padding: 56px 32px 48px;
  border-radius: 36px;
  border: 1px solid var(--line);
  background:
    radial-gradient(70% 80% at 100% 0%, rgba(226, 59, 43, 0.18), transparent 45%),
    radial-gradient(80% 60% at 0% 100%, rgba(234, 214, 184, 0.08), transparent 50%),
    var(--card);
}

.alone-mark {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
}

.alone h2 {
  margin-bottom: 12px;
}

.alone p {
  margin: 0 auto 32px;
  max-width: 42ch;
  color: var(--muted);
  font-size: 18px;
}

.chrome-row {
  display: grid;
  grid-template-columns: repeat(8, minmax(64px, auto));
  justify-content: center;
  gap: 18px 20px;
  margin: 0 auto 32px;
  padding: 0;
  max-width: 820px;
  list-style: none;
}

.chrome-row > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.chrome-row span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.nick-tile img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  image-rendering: pixelated;
}

.foot {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  justify-content: center;
  padding: 28px 24px 48px;
  color: var(--muted);
  font-size: 12px;
  border-top: 1px solid var(--line);
}

html.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(8px);
}

html.js .reveal.is-in {
  opacity: 1;
  transform: none;
  filter: none;
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 860px) {
  .nav {
    gap: 12px;
    padding: 12px 16px;
  }

  .nav nav,
  .nav > .btn {
    display: none;
  }

  .nav .mode {
    margin-left: auto;
  }

  .bento,
  .models,
  .models-tracks,
  .papers,
  .chrome-row {
    grid-template-columns: 1fr;
  }

  .roster > li {
    grid-template-columns: 1.5rem minmax(0, 1fr);
    gap: 10px 12px;
  }

  .chrome-row {
    grid-template-columns: repeat(4, minmax(64px, 1fr));
  }

  .model {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 0;
    padding: 28px 20px 24px;
  }

  .model p {
    max-width: 32ch;
  }

  .model-ico {
    position: static;
    translate: none;
    margin: 18px auto 0;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "chip"
      "visual"
      "copy";
    justify-items: center;
    min-height: 0;
    padding: 20px 16px 28px;
    gap: 12px;
    text-align: center;
  }

  .hero > .chrome-chip {
    margin: 0 0 4px;
  }

  .hero-visual {
    width: min(72vw, 260px);
    justify-self: center;
  }

  .hero-copy {
    align-items: center;
  }

  .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-row {
    width: 100%;
    justify-content: center;
  }

  .btn,
  .chrome-chip {
    margin-left: auto;
    margin-right: auto;
  }

  .hire-examples {
    flex-direction: column;
    align-items: center;
  }

  .tiles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    gap: 14px 16px;
    padding: 0 16px 32px;
  }

  .tiles li {
    width: 4.6rem;
  }

  .tiles span {
    text-align: center;
    letter-spacing: 0.04em;
    line-height: 1.25;
  }

  .band {
    padding: 28px 16px 64px;
  }

  .band h2,
  .alone h2 {
    font-size: clamp(28px, 8vw, 44px);
    margin-bottom: 24px;
  }

  .chroma {
    min-height: 0;
    padding: 24px 18px 20px;
  }

  .chroma h3 {
    font-size: 26px;
  }

  .paper {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 20px 16px;
  }

  .waitlist {
    flex-direction: column;
    align-items: center;
  }

  .waitlist input {
    width: 100%;
  }

  .waitlist .btn {
    width: auto;
  }

  .cta-band {
    margin: 0 12px 24px;
    padding: 40px 18px;
    border-radius: 24px;
  }

  .hero-visual img,
  .coach-code {
    width: min(100%, 240px);
  }

  .coach-peek {
    width: min(100%, 260px);
  }

  .coach-bubble {
    top: calc(100% + 10px);
    right: auto;
    left: 50%;
    width: min(320px, calc(100vw - 48px));
    border-radius: 16px 16px 16px 4px;
    transform: translate(-50%, -8px) scale(0.96);
    transform-origin: top center;
  }

  .coach-bubble::before {
    left: 28px;
    top: -10px;
    bottom: auto;
  }

  .coach-peek:hover .coach-bubble,
  .coach-peek:focus-visible .coach-bubble {
    transform: translate(-50%, 0) rotate(-1deg) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-mark-wrap::after,
  .brand:hover .brand-mark-wrap {
    animation: none;
  }

  html.js .reveal,
  html.js .reveal.is-in {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .path-stack li::before {
    animation: none;
    background-position: 50% 0;
  }

  .coach-bubble {
    transition: none;
  }

}
