:root {
  --blue: #0647d9;
  --blue-dark: #032d91;
  --blue-ink: #021e63;
  --yellow: #ffe24a;
  --green: #41ed72;
  --red: #ff6c68;
  --ink: #06101c;
  --ink-soft: #0c1a2b;
  --paper: #f4f0e5;
  --paper-deep: #e5dfcf;
  --white: #fffdf4;
  --muted: #667080;
  --line: #17263a;
  --mono: "Courier New", Courier, monospace;
  --sans: "Arial Narrow", "Aptos Narrow", Arial, sans-serif;
  color: var(--ink);
  background: var(--ink);
  font-family: var(--mono);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--ink);
}

body,
button,
input {
  font-family: var(--mono);
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  border: 0;
  color: inherit;
  cursor: pointer;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

img,
canvas {
  max-width: 100%;
}

.page-grid {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.028;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.shell {
  width: min(100% - 48px, 1320px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: var(--ink);
  border-bottom: 1px solid #203047;
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 42px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.brand b {
  color: var(--yellow);
}

.brand-mark {
  width: 27px;
  height: 27px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 2px;
  padding: 3px;
  background: var(--blue);
  box-shadow: 4px 4px 0 #001e66;
}

.brand-mark i {
  display: block;
  background: var(--ink);
}

.brand-mark i:nth-child(2),
.brand-mark i:nth-child(4),
.brand-mark i:nth-child(5),
.brand-mark i:nth-child(8) {
  background: var(--yellow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-right: auto;
}

.nav-links a,
.nav-store {
  position: relative;
  color: #aeb9c8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--yellow);
  transition: transform 160ms ease;
}

.nav-links a:hover,
.nav-store:hover {
  color: var(--white);
}

.nav-store {
  padding: 9px 11px;
  border: 1px solid var(--yellow);
  color: var(--yellow);
  background: #0b1727;
}

.nav-store:hover {
  color: var(--ink);
  background: var(--yellow);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.network-status {
  min-height: 31px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border: 1px solid #2a3a50;
  color: #8d9bad;
  background: #0b1727;
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.network-status i,
.pulse-dot,
.saved-pixels-chip i,
.go-live-row i,
.panel-chat i {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(65, 237, 114, 0.13);
}

.network-status.is-idle i {
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 226, 74, 0.13);
}

.network-status.is-error i {
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(255, 108, 104, 0.13);
}

.nav-toggle {
  display: none;
  padding: 9px 10px;
  border: 1px solid #314159;
  color: var(--white);
  background: transparent;
  font-size: 10px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
  border-bottom: 8px solid var(--yellow);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background: var(--blue-dark);
}

.hero::before {
  width: 340px;
  height: 52px;
  top: 76px;
  right: -105px;
  transform: rotate(-11deg);
}

.hero::after {
  width: 210px;
  height: 22px;
  bottom: 42px;
  left: -65px;
  transform: rotate(12deg);
}

.hero-grid {
  min-height: 740px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  align-items: center;
  gap: 64px;
  padding-top: 72px;
  padding-bottom: 76px;
}

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

.eyebrow,
.section-index,
.feature-kicker {
  margin: 0 0 22px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d9e4ff;
}

.hero h1,
.section-heading h2,
.story-copy > h2,
.live-heading h2,
.install-copy h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--sans);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(54px, 6.25vw, 96px);
  text-transform: uppercase;
}

.hero h1 em,
.section-heading h2 em {
  color: var(--yellow);
  font-style: normal;
}

.hero-lede {
  max-width: 620px;
  margin: 30px 0 0;
  color: #d4def2;
  font-size: 15px;
  line-height: 1.75;
}

.hero-lede strong {
  color: var(--white);
}

.hero-actions,
.install-actions,
.final-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 19px;
  border: 2px solid transparent;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.24);
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.button:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.24);
}

.button-primary {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.button-yellow {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow);
}

.button-outline {
  color: var(--white);
  border-color: #506078;
  background: transparent;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 58px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-proof li {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 10px 0 0;
  color: #ced9ee;
  font-size: 9px;
  line-height: 1.4;
}

.hero-proof span {
  color: var(--yellow);
  font-weight: 900;
}

.hero-product {
  position: relative;
  z-index: 3;
  min-width: 0;
}

.product-shadow {
  position: absolute;
  inset: 24px -24px -24px 24px;
  border: 2px solid var(--ink);
  background: var(--yellow);
}

.browser-window {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 3px solid var(--ink);
  color: var(--white);
  background: var(--ink);
  box-shadow: 12px 12px 0 rgba(2, 17, 55, 0.55);
}

.browser-bar {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 11px;
  background: #d8d8d0;
  border-bottom: 3px solid var(--ink);
  color: #3a4350;
  font-size: 8px;
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

.browser-dots i:nth-child(2) {
  background: var(--yellow);
}

.browser-dots i:nth-child(3) {
  background: var(--green);
}

.browser-address {
  flex: 1;
  padding: 5px 9px;
  background: var(--white);
  border: 1px solid #a3a8af;
}

.secure-dot {
  color: var(--green);
}

.basepaint-nav {
  height: 52px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px;
  color: #08286d;
  background: #0c4cd8;
  border-bottom: 3px solid #09245e;
  font-size: 8px;
}

.basepaint-nav > span:not(.bp-logo),
.basepaint-nav > b {
  min-height: 31px;
  display: grid;
  place-items: center;
  padding: 0 10px;
  border: 1px solid #6aa0ff;
  background: #0b58ef;
}

.basepaint-nav b {
  color: var(--white);
}

.basepaint-nav strong {
  margin-left: auto;
  padding: 7px;
  color: var(--yellow);
  background: var(--ink);
  font-size: 8px;
}

.bp-logo {
  width: 45px;
  height: 31px;
  display: grid;
  place-items: center;
  margin-right: 4px;
  color: var(--blue);
  background: var(--yellow);
  font-weight: 900;
}

.product-body {
  height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  background: #07111e;
}

.canvas-demo {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #04101a;
  border-right: 2px solid #26364a;
}

.canvas-title {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  color: #77889f;
  border-bottom: 1px solid #26364a;
  font-size: 8px;
}

.canvas-title b,
.canvas-title strong {
  color: #d9a719;
}

#demo-canvas {
  width: 100%;
  height: calc(100% - 40px);
  display: block;
  object-fit: cover;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

.saved-pixels-chip {
  position: absolute;
  top: 52px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  color: var(--yellow);
  background: rgba(6, 16, 28, 0.88);
  border: 1px solid #283b51;
  font-size: 7px;
}

.saved-pixels-chip i {
  width: 5px;
  height: 5px;
}

.stream-window {
  position: absolute;
  right: 18px;
  bottom: 20px;
  width: 72%;
  min-width: 250px;
  border: 2px solid var(--yellow);
  background: #07101c;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.45);
}

.stream-window-bar {
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  color: var(--green);
  background: var(--ink);
  border-bottom: 1px solid #2a3d51;
  font-size: 7px;
}

.stream-window-bar i {
  width: 6px;
  height: 6px;
  display: inline-block;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--red);
}

.stream-art {
  min-height: 174px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #0b2756;
  border: 8px solid #072044;
}

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

.stream-art::before {
  width: 126px;
  height: 18px;
  left: 18px;
  top: 42px;
  box-shadow: 42px 18px 0 var(--green), 84px 36px 0 var(--yellow), 28px 72px 0 var(--blue);
}

.stream-art::after {
  width: 34px;
  height: 34px;
  right: 34px;
  bottom: 28px;
  background: var(--yellow);
  box-shadow: -48px 0 0 var(--green), -24px -28px 0 #16a9ff;
}

.stream-art strong,
.stream-art small {
  position: relative;
  z-index: 2;
  padding: 5px 7px;
  color: var(--white);
  background: rgba(6, 16, 28, 0.85);
  font-size: 8px;
}

.stream-art small {
  color: var(--yellow);
  font-size: 7px;
}

.cursor-pixel {
  position: absolute;
  z-index: 3;
  right: 25%;
  top: 30%;
  width: 9px;
  height: 9px;
  background: var(--white);
  box-shadow: 9px 9px 0 var(--white), 18px 18px 0 var(--ink);
  animation: cursor-paint 3.6s steps(4, end) infinite;
}

.creator-preview {
  position: absolute;
  right: 18px;
  bottom: 20px;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid #32465c;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.32);
}

.creator-preview > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.creator-preview b {
  color: var(--green);
  font-size: 8px;
}

.creator-preview small {
  color: #8996a7;
  font-size: 7px;
}

.creator-avatar {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  font-size: 8px;
  font-weight: 900;
}

[data-mode="creator"] .stream-window {
  display: none;
}

[data-mode="creator"] .creator-preview {
  display: flex;
}

.streaming-panel {
  min-width: 0;
  background: #0b1623;
}

.panel-tabs {
  height: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  border-bottom: 1px solid #33445a;
  color: #8c99aa;
  font-family: var(--sans);
  font-size: 8px;
  text-align: center;
}

.panel-tabs span,
.panel-tabs b {
  height: 40px;
  display: grid;
  place-items: center;
}

.panel-tabs b {
  color: var(--white);
  border-bottom: 2px solid #3e91ff;
}

.go-live-row {
  min-height: 43px;
  margin: 9px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 9px;
  border: 1px solid var(--yellow);
  color: var(--yellow);
  background: #15293d;
  font-size: 8px;
}

.go-live-row i {
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(255, 108, 104, 0.13);
}

.go-live-row span {
  margin-left: auto;
  font-size: 14px;
}

.artist-row {
  min-height: 57px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 7px 9px;
  border-top: 1px solid #243449;
  color: var(--white);
}

.artist-row-live {
  background: #162a3c;
  box-shadow: inset 3px 0 0 var(--green);
}

.artist-avatar {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--green);
  font-size: 8px;
  font-weight: 900;
}

.artist-avatar-yellow {
  background: var(--yellow);
}

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

.artist-row b,
.artist-row small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.artist-row b {
  font-size: 8px;
}

.artist-row small {
  color: #6f7d90;
  font-size: 7px;
}

.artist-row strong {
  color: var(--green);
  font-size: 7px;
}

.panel-camera {
  min-height: 124px;
  margin: 9px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid #33465d;
  color: #8794a5;
  background: #07111d;
}

.panel-camera span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  font-size: 7px;
  font-weight: 900;
}

.panel-camera b {
  color: var(--white);
  font-size: 7px;
}

.panel-camera small {
  font-size: 6px;
}

.panel-chat {
  margin: 9px;
  padding: 10px;
  border: 1px solid #33465d;
  color: var(--green);
  font-size: 7px;
}

.panel-chat i {
  width: 5px;
  height: 5px;
  margin-right: 5px;
}

.mode-switch {
  position: relative;
  width: calc(100% - 38px);
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 18px 0 0 38px;
  padding: 7px;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
}

.mode-button {
  min-height: 32px;
  padding: 0 11px;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(6, 16, 28, 0.35);
  font-size: 8px;
  font-weight: 900;
}

.mode-button-active {
  color: var(--white);
  background: var(--ink);
}

.mode-switch > span {
  margin-left: auto;
  font-size: 8px;
  line-height: 1.4;
  text-align: right;
}

.signal-strip {
  overflow: hidden;
  color: var(--ink);
  background: var(--yellow);
  border-bottom: 2px solid var(--ink);
}

.signal-track {
  width: max-content;
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0 30px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  animation: ticker 26s linear infinite;
}

.signal-track i {
  color: var(--blue);
  font-style: normal;
}

.section-light {
  color: var(--ink);
  background: var(--paper);
}

.section-dark {
  color: var(--white);
  background: var(--ink);
}

.section-blue {
  color: var(--white);
  background: var(--blue);
}

.why-section,
.story-section,
.live-section,
.install-section {
  padding: 116px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 50px;
  margin-bottom: 58px;
}

.section-heading .section-index {
  grid-column: 1 / -1;
  margin-bottom: -28px;
  color: var(--blue);
}

.section-heading h2,
.story-copy > h2,
.live-heading h2,
.install-copy h2,
.final-cta h2 {
  font-size: clamp(48px, 5.2vw, 76px);
  text-transform: uppercase;
}

.section-heading h2 em {
  color: var(--blue);
}

.section-heading > p:last-child {
  margin: 0 0 5px;
  color: #596170;
  font-size: 13px;
  line-height: 1.8;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}

.feature-card {
  position: relative;
  min-height: 390px;
  padding: 34px;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: 9px 9px 0 var(--paper-deep);
}

.feature-card-wide {
  grid-column: 1 / -1;
  min-height: 410px;
  display: grid;
  grid-template-columns: 64px minmax(280px, 0.82fr) minmax(440px, 1.18fr);
  gap: 28px;
  align-items: center;
}

.feature-number {
  position: absolute;
  top: 20px;
  right: 23px;
  color: #88909a;
  font-size: 10px;
  font-weight: 900;
}

.feature-card-wide > .feature-number {
  position: static;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  align-self: start;
  color: var(--white);
  background: var(--blue);
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--yellow);
}

.feature-kicker {
  color: var(--blue);
  margin-bottom: 15px;
}

.feature-card h3 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.feature-card p:not(.feature-kicker) {
  max-width: 610px;
  margin: 22px 0 0;
  color: #586170;
  font-size: 12px;
  line-height: 1.8;
}

.capture-options {
  min-height: 285px;
  padding: 16px;
  border: 2px solid var(--ink);
  background: #0b1625;
  box-shadow: 8px 8px 0 var(--yellow);
}

.capture-options > span {
  min-height: 30px;
  display: inline-grid;
  place-items: center;
  margin-right: 4px;
  padding: 0 10px;
  border: 1px solid #30435c;
  color: #8796a8;
  font-size: 8px;
}

.capture-options .capture-active {
  color: var(--green);
  border-color: var(--green);
}

.capture-options .capture-active i {
  width: 5px;
  height: 5px;
  display: inline-block;
  margin-right: 5px;
  background: var(--green);
}

.selection-box {
  position: relative;
  height: 205px;
  margin-top: 16px;
  border: 2px dashed var(--yellow);
  background: #0b3264;
}

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

.selection-box::before {
  width: 42%;
  height: 18px;
  left: 14%;
  top: 38%;
  box-shadow: 48px 24px 0 var(--green), 96px 48px 0 var(--yellow);
}

.selection-box::after {
  width: 28px;
  height: 28px;
  right: 20%;
  bottom: 21%;
  background: var(--yellow);
  box-shadow: -46px 0 0 #179bff;
}

.selection-box i {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--yellow);
}

.selection-box i:nth-child(1) { top: -5px; left: -5px; }
.selection-box i:nth-child(2) { top: -5px; right: -5px; }
.selection-box i:nth-child(3) { bottom: -5px; left: -5px; }
.selection-box i:nth-child(4) { right: -5px; bottom: -5px; }

.selection-box b {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 5px;
  color: var(--yellow);
  background: var(--ink);
  font-size: 7px;
}

.feature-card-blue {
  color: var(--white);
  background: var(--blue);
  box-shadow: 9px 9px 0 #c6bd9f;
}

.feature-card-blue .feature-kicker,
.feature-card-blue p:not(.feature-kicker) {
  color: #ceddff;
}

.feature-card-blue .feature-number {
  color: var(--yellow);
}

.layer-stack {
  position: absolute;
  right: 34px;
  bottom: 30px;
  left: 34px;
  height: 92px;
}

.layer-stack span {
  position: absolute;
  width: 74%;
  height: 44px;
  display: flex;
  align-items: center;
  padding-left: 13px;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--yellow);
  font-size: 8px;
  font-weight: 900;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.24);
}

.layer-stack span:first-child { right: 0; bottom: 48px; background: var(--green); }
.layer-stack span:nth-child(2) { right: 13%; bottom: 24px; }
.layer-stack span:last-child { right: 26%; bottom: 0; color: var(--white); background: var(--ink-soft); }

.feature-card-dark {
  color: var(--white);
  background: var(--ink);
  box-shadow: 9px 9px 0 #c6bd9f;
}

.feature-card-dark .feature-kicker {
  color: var(--yellow);
}

.feature-card-dark p:not(.feature-kicker) {
  color: #9ca9b9;
}

.verify-line {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 14px;
  border: 1px solid #3d4e63;
  color: #8f9cac;
  background: #0d1a2a;
  font-size: 9px;
}

.verify-line strong {
  color: var(--green);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: 72px;
}

.story-image {
  position: relative;
  padding: 12px;
  border: 2px solid #304159;
  background: #0d1a2b;
  box-shadow: 15px 15px 0 var(--blue);
}

.story-image img {
  width: 100%;
  display: block;
  image-rendering: auto;
}

.story-image span {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 8px 10px;
  color: var(--green);
  background: rgba(6, 16, 28, 0.91);
  border: 1px solid #33465d;
  font-size: 8px;
}

.story-copy .section-index {
  color: var(--yellow);
}

.story-copy > h2 {
  font-size: clamp(43px, 4.4vw, 67px);
}

.role-list {
  margin-top: 48px;
  border-top: 1px solid #2a3a4f;
}

.role-list article {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 5px 18px;
  padding: 23px 0;
  border-bottom: 1px solid #2a3a4f;
}

.role-list article > span {
  grid-row: 1 / 3;
  color: var(--green);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.role-list h3 {
  margin: 0;
  font-family: var(--sans);
  font-size: 22px;
  line-height: 1.1;
  text-transform: uppercase;
}

.role-list p {
  margin: 8px 0 0;
  color: #8f9dad;
  font-size: 11px;
  line-height: 1.7;
}

.live-section {
  border-top: 8px solid var(--yellow);
  border-bottom: 8px solid var(--yellow);
}

.live-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.live-heading .section-index {
  color: var(--yellow);
}

.refresh-button {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid #8cafff;
  color: var(--white);
  background: var(--blue-dark);
  font-size: 9px;
  font-weight: 900;
}

.refresh-button:hover {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow);
}

.refresh-button.is-loading {
  opacity: 0.65;
  pointer-events: none;
}

.live-summary {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 58px 0 28px;
}

.live-count {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
  font-family: var(--sans);
  font-size: 44px;
  font-weight: 900;
}

.live-summary > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.live-summary b {
  font-family: var(--sans);
  font-size: 24px;
  text-transform: uppercase;
}

.live-summary small {
  color: #cad9ff;
  font-size: 9px;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.room-card {
  min-height: 168px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  padding: 22px;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--white);
  box-shadow: 7px 7px 0 var(--ink);
}

.room-avatar {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--green);
  border: 2px solid var(--ink);
  font-weight: 900;
}

.room-card small {
  color: var(--blue);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.room-card h3 {
  margin: 8px 0 7px;
  overflow: hidden;
  font-family: var(--sans);
  font-size: 20px;
  line-height: 1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.room-card p {
  margin: 0;
  color: #626c79;
  font-size: 9px;
  line-height: 1.6;
}

.room-signals {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 4px;
}

.room-signals span {
  padding: 5px 6px;
  border: 1px solid #cad0d8;
  color: #667080;
  font-size: 7px;
}

.room-signals .signal-on {
  color: #08752b;
  border-color: #51c873;
  background: #dff7e5;
}

.room-card-empty {
  grid-column: 1 / -1;
  min-height: 190px;
  align-items: center;
}

.room-card-empty .room-avatar {
  background: var(--yellow);
}

.room-card-loading {
  opacity: 0.72;
}

.live-note {
  margin: 26px 0 0;
  color: #cbd9ff;
  font-size: 9px;
}

.install-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  align-items: start;
  gap: 90px;
}

.install-copy .section-index {
  color: var(--blue);
}

.install-copy > p:not(.section-index) {
  max-width: 510px;
  margin: 28px 0 0;
  color: #596170;
  font-size: 13px;
  line-height: 1.8;
}

.store-approval {
  width: fit-content;
  margin-top: 25px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 11px;
  border: 1px solid #69b77d;
  color: #08752b;
  background: #e2f4e6;
  font-size: 8px;
  letter-spacing: 0.08em;
}

.store-approval span {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #15933d;
  font-size: 11px;
  font-weight: 900;
}

.text-link {
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.manual-install {
  scroll-margin-top: 96px;
  padding: 28px 30px 30px;
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: 9px 9px 0 var(--yellow);
}

.manual-install-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.manual-install-heading p {
  margin: 0 0 7px;
  color: var(--blue);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.manual-install-heading h3 {
  margin: 0;
  font-family: var(--sans);
  font-size: 28px;
  text-transform: uppercase;
}

.install-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--ink);
}

.install-steps li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  padding: 28px 0;
  border-bottom: 2px solid var(--ink);
}

.install-steps li > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--yellow);
  font-weight: 900;
}

.install-steps h3 {
  margin: 0;
  font-family: var(--sans);
  font-size: 27px;
  text-transform: uppercase;
}

.install-steps p {
  margin: 9px 0 0;
  color: #606977;
  font-size: 11px;
  line-height: 1.7;
}

.install-steps code {
  padding: 3px 5px;
  color: var(--white);
  background: var(--ink);
  font-size: 10px;
}

.final-cta {
  padding: 88px 0;
  color: var(--white);
  background: var(--ink-soft);
  border-top: 1px solid #2e3f54;
}

.final-cta-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
}

.final-cta p {
  margin: 0 0 20px;
  color: var(--green);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.final-cta h2 {
  font-size: clamp(50px, 5vw, 74px);
}

.final-actions {
  flex: 0 0 auto;
  margin: 0 0 7px;
}

.site-footer {
  padding: 36px 0;
  color: #8e9cad;
  background: #030913;
  border-top: 1px solid #24344a;
}

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

.brand-footer {
  color: var(--white);
}

.site-footer p,
.site-footer small {
  margin: 0;
  font-size: 8px;
}

.site-footer > .shell > div {
  display: flex;
  gap: 17px;
}

.site-footer a:not(.brand) {
  font-size: 8px;
}

.site-footer a:not(.brand):hover {
  color: var(--yellow);
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal-delay {
  transition-delay: 130ms;
}

@keyframes ticker {
  to { transform: translateX(-37%); }
}

@keyframes cursor-paint {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-28px, 16px); }
  50% { transform: translate(-48px, 44px); }
  75% { transform: translate(-14px, 70px); }
}

@media (max-width: 1140px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

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

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

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

  .feature-card-wide {
    grid-template-columns: 54px minmax(0, 0.8fr) minmax(360px, 1.2fr);
  }

  .story-grid {
    gap: 46px;
  }

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

  .install-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 52px;
  }

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

  .site-footer small {
    grid-column: 1 / -1;
  }
}

@media (max-width: 840px) {
  .shell {
    width: min(100% - 30px, 720px);
  }

  .nav {
    min-height: 64px;
    gap: 16px;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    right: 15px;
    left: 15px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    border: 2px solid var(--yellow);
    background: var(--ink);
    box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.4);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 18px;
    border-bottom: 1px solid #2c3c52;
  }

  .nav-toggle {
    display: block;
  }

  .network-status,
  .nav-store {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hero h1 {
    font-size: clamp(48px, 13vw, 76px);
  }

  .product-body {
    height: 390px;
    grid-template-columns: minmax(0, 1fr) 174px;
  }

  .basepaint-nav span:not(.bp-logo):nth-of-type(n+3),
  .basepaint-nav > b:nth-of-type(n+2) {
    display: none;
  }

  .stream-window {
    min-width: 220px;
  }

  .mode-switch > span {
    display: none;
  }

  .section-heading {
    display: block;
  }

  .section-heading .section-index {
    margin-bottom: 22px;
  }

  .section-heading > p:last-child {
    max-width: 600px;
    margin-top: 24px;
  }

  .feature-grid,
  .story-grid,
  .install-grid {
    grid-template-columns: 1fr;
  }

  .feature-card-wide {
    grid-column: auto;
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .capture-options {
    grid-column: 1 / -1;
  }

  .story-grid {
    gap: 62px;
  }

  .story-image {
    width: min(100% - 14px, 680px);
  }

  .install-grid {
    gap: 64px;
  }

  .final-cta-inner {
    display: block;
  }

  .final-actions {
    margin-top: 34px;
  }

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

  .site-footer p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .site-footer small {
    grid-column: 1 / -1;
  }
}

@media (max-width: 590px) {
  .shell {
    width: min(100% - 22px, 520px);
  }

  .brand {
    font-size: 10px;
  }

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

  .hero-grid {
    padding-top: 54px;
    padding-bottom: 62px;
  }

  .hero h1 {
    font-size: clamp(43px, 15vw, 66px);
  }

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

  .hero-actions .button,
  .install-actions .button,
  .final-actions .button {
    width: 100%;
  }

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

  .hero-proof li {
    min-height: 44px;
    padding-top: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .product-shadow {
    inset: 10px -10px -10px 10px;
  }

  .browser-window {
    box-shadow: 7px 7px 0 rgba(2, 17, 55, 0.55);
  }

  .browser-bar {
    height: 29px;
  }

  .basepaint-nav {
    height: 45px;
  }

  .basepaint-nav > span:not(.bp-logo),
  .basepaint-nav > b {
    display: none;
  }

  .product-body {
    height: 330px;
    grid-template-columns: minmax(0, 1fr) 128px;
  }

  .canvas-title strong,
  .artist-row:nth-of-type(3),
  .panel-camera,
  .panel-chat {
    display: none;
  }

  .panel-tabs span {
    display: none;
  }

  .panel-tabs {
    grid-template-columns: 1fr;
  }

  .stream-window {
    right: 10px;
    bottom: 12px;
    width: 86%;
    min-width: 150px;
  }

  .stream-art {
    min-height: 126px;
  }

  .saved-pixels-chip {
    left: 6px;
    padding: 5px;
    font-size: 6px;
  }

  .mode-switch {
    width: calc(100% - 18px);
    margin-left: 18px;
  }

  .why-section,
  .story-section,
  .live-section,
  .install-section {
    padding: 82px 0;
  }

  .section-heading h2,
  .story-copy > h2,
  .live-heading h2,
  .install-copy h2,
  .final-cta h2 {
    font-size: clamp(40px, 13vw, 60px);
  }

  .feature-card,
  .feature-card-wide {
    min-height: 390px;
    display: block;
    padding: 24px;
  }

  .feature-card-wide > .feature-number {
    margin-bottom: 28px;
  }

  .capture-options {
    min-height: 250px;
    margin-top: 34px;
  }

  .selection-box {
    height: 170px;
  }

  .feature-card-wide {
    min-height: 700px;
  }

  .layer-stack,
  .verify-line {
    right: 24px;
    left: 24px;
  }

  .story-image {
    box-shadow: 9px 9px 0 var(--blue);
  }

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

  .role-list article > span {
    grid-row: auto;
    margin-bottom: 8px;
  }

  .live-heading {
    align-items: start;
    flex-direction: column;
  }

  .live-summary {
    margin-top: 42px;
  }

  .live-count {
    width: 70px;
    height: 70px;
    font-size: 36px;
  }

  .live-summary b {
    font-size: 18px;
  }

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

  .install-steps li {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 13px;
  }

  .install-steps li > span {
    width: 44px;
    height: 44px;
  }

  .install-steps h3 {
    font-size: 22px;
  }

  .manual-install {
    padding: 21px 18px 24px;
  }

  .manual-install-heading {
    align-items: start;
    flex-direction: column;
  }

  .final-cta {
    padding: 72px 0;
  }

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

  .site-footer > .shell > div {
    flex-wrap: wrap;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

.policy-page {
  color: var(--ink);
  background: var(--paper);
}

.policy-nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.policy-nav-links a {
  color: #aeb9c8;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-nav-links a:hover {
  color: var(--yellow);
}

.policy-main {
  min-height: 80vh;
  padding: 92px 0 116px;
  background: var(--paper);
}

.policy-hero {
  padding-bottom: 48px;
  border-bottom: 3px solid var(--ink);
}

.policy-hero > p {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.policy-hero h1 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(58px, 8vw, 112px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.86;
  text-transform: uppercase;
}

.policy-hero > div {
  display: flex;
  gap: 18px;
  margin-top: 35px;
  color: var(--muted);
  font-size: 9px;
}

.policy-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  align-items: start;
  gap: 58px;
  padding-top: 58px;
}

.policy-summary {
  position: sticky;
  top: 108px;
  padding: 24px;
  color: var(--white);
  background: var(--blue);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--yellow);
}

.policy-summary strong {
  color: var(--yellow);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.policy-summary p {
  margin: 19px 0;
  color: #d8e3ff;
  font-size: 11px;
  line-height: 1.75;
}

.policy-summary ul {
  margin: 0;
  padding: 17px 0 0;
  list-style: none;
  border-top: 1px solid #7298ef;
}

.policy-summary li {
  padding: 7px 0;
  color: var(--white);
  font-size: 9px;
}

.policy-summary li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--green);
}

.policy-content {
  border-top: 2px solid var(--ink);
}

.policy-content section {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 22px;
  padding: 36px 0 42px;
  border-bottom: 2px solid var(--ink);
}

.policy-content section > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  font-size: 9px;
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--yellow);
}

.policy-content h2,
.policy-content h3 {
  font-family: var(--sans);
  text-transform: uppercase;
}

.policy-content h2 {
  margin: 2px 0 17px;
  font-size: 31px;
  letter-spacing: -0.025em;
}

.policy-content h3 {
  margin: 27px 0 7px;
  color: var(--blue);
  font-size: 15px;
}

.policy-content p,
.policy-content li {
  color: #505a68;
  font-size: 11px;
  line-height: 1.85;
}

.policy-content p {
  margin: 0 0 13px;
}

.policy-content ul {
  margin: 12px 0 0;
  padding-left: 19px;
}

.policy-content a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 800px) {
  .policy-main {
    padding: 68px 0 88px;
  }

  .policy-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .policy-summary {
    position: static;
  }
}

@media (max-width: 520px) {
  .policy-nav-links a:first-child {
    display: none;
  }

  .policy-hero h1 {
    font-size: 52px;
  }

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