:root {
  color-scheme: light;
  --ink: #14211f;
  --muted: #546460;
  --paper: #f7f6ef;
  --panel: rgba(255, 255, 255, 0.82);
  --line: rgba(20, 33, 31, 0.16);
  --green: #1f7a5b;
  --blue: #2166a5;
  --gold: #b87014;
  --red: #b74336;
  --shadow: 0 18px 70px rgba(20, 33, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

#commons-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(247, 246, 239, 0.74), rgba(247, 246, 239, 0.96)),
    #f7f6ef;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 246, 239, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav a {
  min-height: 38px;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  background: rgba(20, 33, 31, 0.08);
  color: var(--ink);
  outline: none;
}

.nav-action {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
}

.hero {
  display: grid;
  min-height: calc(100svh - 67px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  align-items: end;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(72px, 11vw, 126px) clamp(18px, 6vw, 72px) clamp(56px, 8vw, 88px);
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 18px;
  font-size: clamp(4.2rem, 14vw, 12.5rem);
  line-height: 0.86;
  letter-spacing: 0;
}

.voxon-hero h1 {
  max-width: 13ch;
  font-size: clamp(3.4rem, 9vw, 8.4rem);
  line-height: 0.94;
}

.lede {
  max-width: 820px;
  margin-bottom: 28px;
  color: #263633;
  font-size: clamp(1.12rem, 2.1vw, 1.62rem);
  line-height: 1.45;
}

.hero-actions,
footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 6px;
  padding: 12px 16px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--ink);
  color: #fff;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.7);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(20, 33, 31, 0.12);
  outline: none;
}

.status-panel {
  align-self: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.status-panel > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 10px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.status-panel strong,
.status-panel small {
  grid-column: 2;
}

.status-panel small,
.gate small,
.doc-list small {
  color: var(--muted);
}

.status-dot {
  grid-row: 1 / span 2;
  width: 13px;
  height: 13px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(184, 112, 20, 0.15);
}

dl {
  display: grid;
  gap: 0;
  margin: 0;
}

dl div {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 14px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
}

dl div:last-child {
  border-bottom: 0;
}

dt {
  color: var(--muted);
}

dd {
  margin: 0;
  font-weight: 800;
}

.band {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 6vw, 72px);
  border-top: 1px solid var(--line);
  background: rgba(247, 246, 239, 0.78);
}

.compact {
  padding-top: clamp(44px, 7vw, 76px);
}

.section-heading {
  max-width: 840px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.join-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.principle-grid article,
.doc-list a,
.gate,
.standard-grid article,
.influence-grid article,
.interest-actions {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 34px rgba(20, 33, 31, 0.08);
}

.principle-grid article {
  min-height: 260px;
  padding: 20px;
}

.principle-grid span {
  color: var(--gold);
  font-weight: 900;
}

h3 {
  margin: 42px 0 12px;
  font-size: 1.28rem;
}

.principle-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.product {
  background: rgba(255, 255, 255, 0.56);
}

.standard-grid,
.influence-grid,
.path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.standard-grid article,
.influence-grid article,
.path-grid a {
  min-height: 178px;
  padding: 20px;
}

.standard-grid strong,
.influence-grid span,
.path-grid span {
  display: block;
  margin-bottom: 18px;
  font-size: 1.1rem;
  font-weight: 850;
}

.standard-grid p,
.influence-grid p,
.path-grid small {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

.path-grid a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 34px rgba(20, 33, 31, 0.08);
  text-decoration: none;
}

.path-grid a:hover,
.path-grid a:focus-visible {
  border-color: rgba(31, 122, 91, 0.55);
  outline: none;
}

.influences {
  background: rgba(255, 255, 255, 0.5);
}

.influence-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(300px, 0.74fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
}

.pilot-board {
  display: grid;
  gap: 12px;
}

.gate {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0 14px;
  padding: 18px;
}

.gate span {
  grid-row: 1 / span 2;
  width: 14px;
  height: 14px;
  margin-top: 4px;
  border: 2px solid var(--muted);
  border-radius: 50%;
}

.gate.is-ready span {
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(31, 122, 91, 0.14);
}

.gate strong,
.gate small {
  grid-column: 2;
}

.doc-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.doc-list a {
  display: flex;
  min-height: 132px;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  text-decoration: none;
}

.doc-list a:hover,
.doc-list a:focus-visible {
  border-color: rgba(31, 122, 91, 0.55);
  outline: none;
}

.doc-list span {
  font-size: 1.08rem;
  font-weight: 850;
}

.join {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(300px, 0.66fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
  background: rgba(20, 33, 31, 0.94);
  color: #fff;
}

.join .eyebrow {
  color: #8ee0bd;
}

.join-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.interest-actions {
  display: grid;
  gap: 12px;
  padding: 20px;
  background: #fff;
  color: var(--ink);
}

.interest-actions a {
  display: grid;
  gap: 6px;
  border-radius: 6px;
  padding: 16px;
  background: rgba(20, 33, 31, 0.05);
  text-decoration: none;
}

.interest-actions a:hover,
.interest-actions a:focus-visible {
  background: rgba(31, 122, 91, 0.12);
  outline: 2px solid rgba(31, 122, 91, 0.24);
}

.interest-actions span {
  font-size: 1.02rem;
  font-weight: 850;
}

.interest-actions small {
  color: var(--muted);
  line-height: 1.45;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

footer {
  justify-content: space-between;
  padding: 24px clamp(18px, 6vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #fff;
}

footer a {
  font-weight: 750;
  text-decoration: none;
}

@media (max-width: 900px) {
  .site-header {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    overflow-x: auto;
  }

  .hero,
  .split,
  .join {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .status-panel {
    align-self: stretch;
  }

  .principle-grid,
  .standard-grid,
  .influence-grid,
  .path-grid,
  .doc-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  nav a {
    padding-inline: 10px;
    font-size: 0.9rem;
  }

  h1 {
    font-size: clamp(3.7rem, 20vw, 6.4rem);
  }

  .button {
    width: 100%;
  }

  .principle-grid,
  .standard-grid,
  .influence-grid,
  .path-grid,
  .doc-list {
    grid-template-columns: 1fr;
  }

  .principle-grid article {
    min-height: 210px;
  }

  dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

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

  .button:hover,
  .button:focus-visible {
    transform: none;
  }
}
