:root {
  --ink: #0D1B2A;
  --ink-2: #142231;
  --ink-3: #1E3045;
  --paper: #FDF4EC;
  --paper-dim: #D9C8B8;
  --amber: #f76e6e;
  --rust: #7B61C4;
  --grey: #8A9AAD;
  --gold: #F5A623;
  --teal: #0FB8A6;
  --line: rgba(253, 244, 236, 0.12);
  --maxw: 1120px;
  --serif: 'Source Serif 4', Georgia, serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg,
      #060D14 0%,
      #0D1B2A 10%,
      #121F2F 20%,
      #162840 32%,
      #1C3350 45%,
      #1A2E48 58%,
      #14253C 70%,
      #0F1C30 83%,
      #0A1524 100%);
  background-attachment: fixed;
  color: var(--ink-3);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

button {
  font: inherit;
  cursor: pointer;
}

::selection {
  background: var(--amber);
  color: #fff;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

#noise {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  pointer-events: none;
  mix-blend-mode: overlay;
  image-rendering: pixelated;
}

.clarity-badge {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 60;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--grey);
  background: rgba(6, 13, 20, 0.78);
  border: 1px solid var(--line);
  padding: 7px 11px;
  backdrop-filter: blur(6px);
  pointer-events: none;
}

@media (max-width:720px) {
  .clarity-badge {
    display: none;
  }
}

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--amber);
  display: inline-block;
  border-radius: 1px;
  flex-shrink: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 13, 20, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.nav-mark {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 10px;
  weight: 600;
  color: var(--amber);
}

.nav-mark .nav-logo {
  width: 32px;
  /* height: 20px; */
  object-fit: contain;
}

.dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 3px rgba(216, 27, 122, 0.2);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(216, 27, 122, 0.2);
  }

  50% {
    box-shadow: 0 0 0 7px rgba(216, 27, 122, 0.07);
  }
}

.nav-links {
  display: flex;
  gap: 26px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
}

.nav-links a {
  color: var(--grey);
  transition: color .2s;
}

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

.nav-cta {
  font-family: var(--mono);
  font-size: 12.5px;
  border: 1px solid var(--paper-dim);
  padding: 8px 14px;
  color: var(--paper);
  transition: all .2s;
  white-space: nowrap;
  display: inline-block;
}

.nav-cta:hover {
  border-color: var(--amber);
  color: var(--amber);
}

@media (max-width:760px) {
  .nav-links {
    display: none;
  }
}

/* HERO */
.hero {
  position: relative;
  padding: 50px 0 88px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  height: 80vh;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, black, transparent 75%);
  opacity: 0.7;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 20%), rgba(216, 27, 122, 0.14), transparent 70%);
}

.scanline {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0.7;
  animation: sweep 7s ease-in-out infinite;
}

@keyframes sweep {
  0% {
    top: 4%;
    opacity: 0;
  }

  8% {
    opacity: 0.8;
  }

  50% {
    top: 96%;
    opacity: 0.4;
  }

  92% {
    opacity: 0.7;
  }

  100% {
    top: 4%;
    opacity: 0;
  }
}

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

.coords {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--grey);
  letter-spacing: 0.06em;
  margin-top: 10px;
}

h1.hero-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 28px 0 24px;
  max-width: 14ch;
  color: var(--paper);
}

h1.hero-title em {
  font-style: italic;
  color: var(--amber);
}

.hero-sub {
  font-size: 19px;
  color: var(--paper-dim);
  max-width: 56ch;
  margin: 0 0 44px;
}

.cursor {
  display: inline-block;
  width: 9px;
  height: 1.1em;
  background: var(--amber);
  vertical-align: text-bottom;
  margin-left: 2px;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.03em;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s, color .2s, border-color .2s;
}

.btn-primary {
  background: var(--amber);
  color: #fff;
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--amber2);
}

.btn-ghost {
  border-color: var(--paper-dim);
  color: var(--paper);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.ticker {
  margin-top: 60px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--grey);
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  border-top: 1px dashed var(--line);
  padding-top: 18px;
}

.ticker b {
  color: var(--paper);
  font-weight: 500;
}

/* HERO STAT ROW */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 30px;
}

.hstat {
  padding: 28px 24px;
  background: rgba(6, 13, 20, 0.4);
}

.hstat-num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -1.5px;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.hstat-num span {
  color: var(--amber);
}

.hstat-lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}

/* SECTIONS */
section {
  padding: 88px 0;
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}


.tx-id {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--grey);
}

h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(26px, 3.4vw, 38px);
  margin: 10px 0 0;
  max-width: 22ch;
}

h2.paper {
  color: var(--paper);
}

.lede {
  font-size: 18px;
  color: var(--ink-3);
  max-width: 62ch;
  margin-top: 18px;
}

.lede-light {
  font-size: 18px;
  color: var(--paper-dim);
  max-width: 62ch;
  margin-top: 18px;
}

/* SPLIT */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

@media (max-width:800px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.fine {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--grey);
  line-height: 1.9;
}

.fine dt {
  color: var(--amber);
}

.fine dd {
  margin: 0 0 14px;
  color: var(--ink-3);
}



/* MARQUEE */
.mq-wrap {
  position: relative;
  overflow: hidden;
  padding: 18px 0;
  background: rgba(6, 13, 20, 0.7);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(4px);
}

.mq-wrap::before,
.mq-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.mq-wrap::before {
  left: 0;
  background: linear-gradient(90deg, rgba(6, 13, 20, 1), transparent);
}

.mq-wrap::after {
  right: 0;
  background: linear-gradient(270deg, rgba(6, 13, 20, 1), transparent);
}

.mq-row {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
}

.mq-row--top {
  margin-bottom: 10px;
}

.mq-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  will-change: transform;
}

.mq-track--fwd {
  animation: mq-fwd 40s linear infinite;
}

.mq-track--rev {
  animation: mq-rev 48s linear infinite;
}

@keyframes mq-fwd {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes mq-rev {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.mq-item {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper);
  white-space: nowrap;
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}

.mq-item:hover {
  color: var(--amber);
}


.mq-row--bot{
  background: linear-gradient(90deg, var(--amber), var(--rust));
}

.mq-row--bot .mq-dot{
  font-size: 8px;
  color: var(--ink-3);
  opacity: 0.6;
}

.mq-item--ghost {
  color: var(--ink-3);
  /* -webkit-text-stroke: 1px rgba(26, 4, 59, 0.48); */
  font-size: 14px;
  letter-spacing: 0.1em;
}

.mq-item--ghost:hover {
  color: transparent;
  -webkit-text-stroke: 1px var(--paper);
}

.mq-dot {
  font-size: 8px;
  color: var(--amber);
  opacity: 0.6;
  -webkit-text-stroke: 0;
}

.mq-item--ghost .mq-dot {
  opacity: 0.4;
}

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

  .scanline,
  .cursor,
  .nav-mark .dot {
    animation: none;
  }

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

  .pillar-inner {
    transition: none;
  }

  .mq-track {
    animation: none;
  }
}

/* PILLARS — flip cards */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

@media (max-width:800px) {
  .pillars {
    grid-template-columns: 1fr;
  }
}

.pillar {
  position: relative;
  min-height: 400px;
  background: var(--ink);
  perspective: 1200px;
  cursor: pointer;
  outline: none;
}

.pillar:focus-visible {
  box-shadow: inset 0 0 0 2px var(--amber);
}

.pillar-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 300px;
  transition: transform .65s cubic-bezier(.4, .2, .2, 1);
  transform-style: preserve-3d;
}

.pillar.flipped .pillar-inner {
  transform: rotateY(180deg);
}

.pillar-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}

.pillar-front {
  background: var(--ink);
}

.pillar-back {
  background: var(--ink-3);
  transform: rotateY(180deg);
  justify-content: top;
}

.pillar-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--rust);
  letter-spacing: 0.08em;
}

.pillar h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  margin: 14px 0 12px;
  color: var(--amber);
}

.pillar-front p {
  color: var(--paper-dim);
  font-size: 15.5px;
  margin: 0;
}

.pillar-back p {
  color: var(--paper);
  font-size: 15px;
  margin: 0;
}

.flip-hint {
  margin-top: auto;
  padding-top: 18px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--grey);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* FRAMEWORK STRIP */
.fw-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 2rem;
}

.fw-cell {
  padding: 2rem 1.25rem;
  background: rgba(6, 13, 20, 0.6);
  text-align: center;
  cursor: pointer;
  transition: background .18s;
}

.fw-cell.on {
  background: var(--amber);
}

.fw-cell:hover:not(.on) {
  background: rgba(255, 255, 255, 0.05);
}

.fw-letter {
  font-size: 38px;
  font-weight: 600;
  color: #fff;
  font-family: var(--serif);
  font-style: italic;
  line-height: 1;
  margin-bottom: 4px;
}

.fw-word {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.fw-cell.on .fw-word {
  color: rgba(255, 255, 255, 0.92);
}

.fw-desc {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.5;
}

.fw-cell.on .fw-desc {
  color: rgba(255, 255, 255, 0.65);
}

/* PROGRAMS BENTO */
.bento {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

@media (max-width:800px) {
  .bento {
    grid-template-columns: 1fr;
  }
}

.pc {
  padding: 2rem;
  background: var(--ink);
  transition: background .2s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.pc:hover {
  background: var(--ink-2);
}

.pc.big {
  grid-row: span 2;
  border-right: 1px solid var(--line);
}

.pc.flagship {
  background: white;
}

.pc.flagship h3 {
  color: var(--amber);
}

.pc.flagship p {
  color: var(--ink-3);
}

.pc.pc.flagship:hover {
  background: var(--paper);
}

.pc-stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--amber);
}

.pc-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border: 1px solid var(--amber);
  color: var(--amber);
  margin-bottom: 1rem;
}

.pc-tag.notlive {
  border: 1px solid var(--grey);
  color: var(--grey);
}


.pc h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 .5rem;
  letter-spacing: -0.02em;
}

.pc.big h3 {
  font-size: 28px;
}

.pc p {
  font-size: 14px;
  color: var(--paper-dim);
  line-height: 1.6;
  margin: 0;
}

.pc-arr {
  font-family: var(--mono);
  font-size: 16px;
  color: var(--amber);
  margin-top: 1.25rem;
  display: block;
}

/* STAT BAND */
.stat-band {
  background: var(--amber);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.si {
  text-align: center;
  padding: 36px 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.si:last-child {
  border-right: none;
}

.si-num {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -2px;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.si-lbl {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

/* GENERATOR */
.generator {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 44px;
  align-items: start;
}

@media (max-width:880px) {
  .generator {
    grid-template-columns: 1fr;
  }
}

.gen-row {
  margin-bottom: 26px;
}

.gen-label {
  display: block;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 10px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  font-family: var(--mono);
  font-size: 12px;
  padding: 9px 13px;
  background: transparent;
  color: var(--grey);
  border: 1px solid var(--line);
  transition: all .15s;
}

.chip:hover {
  border-color: var(--paper-dim);
  color: var(--paper);
}

.chip.active {
  background: var(--amber);
  color: #fff;
  border-color: var(--amber);
  font-weight: 600;
}

input[type=range] {
  accent-color: var(--amber);
  width: 100%;
}

.gen-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.gen-output {
  background: var(--paper);
  color: var(--ink);
  padding: 38px 34px;
  position: relative;
  border: 1px solid var(--paper-dim);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.22);
  min-height: 280px;
}

.gen-output::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 22px 22px 0;
  border-color: transparent var(--ink) transparent transparent;
  opacity: 0.85;
}

.artifact-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--rust);
  font-weight: 700;
  margin-bottom: 10px;
}

.artifact-header {
  font-family: var(--mono);
  font-size: 11.5px;
  color: #8C6070;
  letter-spacing: 0.03em;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px dashed #C9A9B0;
}

.artifact-headline {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 14px;
}

.artifact-body {
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 22px;
}

.copy-btn {
  font-family: var(--mono);
  font-size: 12px;
  background: var(--ink);
  color: var(--paper);
  border: none;
  padding: 11px 16px;
  transition: background .2s;
}

.copy-btn:hover {
  background: var(--ink-2);
}

/* INSIGHTS */
.ins-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

@media (max-width:860px) {
  .ins-grid {
    grid-template-columns: 1fr;
  }
}

.ic {
  background: var(--ink);
  padding: 2rem;
  cursor: pointer;
  transition: background .2s;
}

.ic:hover {
  background: var(--ink-2);
}

.ic.feat {
  background: var(--ink-3);
}

.i-type {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
  display: block;
}

.ic h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.ic.feat h4 {
  font-size: 22px;
}

.ic p {
  font-size: 13px;
  color: var(--paper-dim);
  line-height: 1.6;
  margin: 0;
}

.i-meta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--grey);
  margin-top: 1rem;
}

/* WHO LIST */
.who-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.who-list li {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: baseline;
}

.who-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.who-list span {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--grey);
}

.who-list p {
  margin: 0;
  color: var(--ink-1);
  font-size: 16.5px;
}

/* INVOLVE */
.involve {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

@media (max-width:860px) {
  .involve {
    grid-template-columns: 1fr;
  }
}

.involve-card {
  background: var(--ink);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background .2s;
}

.involve-card:hover {
  background: var(--ink-2);
}

.involve-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  margin: 0;
  color: var(--paper);
}

.involve-card p {
  color: var(--paper-dim);
  font-size: 15px;
  margin: 0;
  flex-grow: 1;
}

.involve-card a {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--amber);
  border-top: 1px dashed var(--line);
  padding-top: 14px;
}

.involve-card a:hover {
  color: var(--amber2);
}

.involve-card a::after {
  content: " →";
}

/* COMMUNITY */
.comm-inner {
  background: var(--ink-2);
  border: 1px solid var(--line);
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  overflow: hidden;
}

.comm-stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--amber);
}

.comm-inner h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 1rem;
  max-width: 20ch;
}

.comm-inner p {
  color: var(--paper-dim);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.blist {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.bi {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.bdot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

.e-row {
  display: flex;
  gap: 8px;
}

.e-in {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-family: var(--mono);
  font-size: 13px;
  outline: none;
}

.e-in::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.e-in:focus {
  border-color: rgba(216, 27, 122, 0.5);
}

.e-note {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--grey);
  margin-top: 0.5rem;
}

.tcard {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  padding: 1.25rem;
  margin-bottom: 10px;
}

.tcard:last-child {
  margin-bottom: 0;
}

.t-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.t-av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.t-name {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.t-role {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--grey);
  margin-top: 1px;
}

.t-q {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.5rem;
  line-height: 1.55;
  font-style: italic;
}

/* QUOTE */
.note-section {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.note-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -40%;
  width: 900px;
  height: 900px;
  margin-left: -450px;
  background: radial-gradient(circle, rgba(216, 27, 122, 0.2), transparent 65%);
  pointer-events: none;
}

.note-section blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 3vw, 30px);
  max-width: 42ch;
  margin: 0 auto 26px;
  color: var(--paper);
}

.note-section cite {
  font-family: var(--mono);
  font-style: normal;
  font-size: 12px;
  color: var(--grey);
}

/* FOOTER */
footer {
  padding: 44px 0;
}

.foot-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--grey);
}

.foot-links {
  display: flex;
  gap: 20px;
}

.foot-links a {
  color: var(--grey);
}

.foot-links a:hover {
  color: var(--amber);
}

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

  .scanline,
  .cursor,
  .nav-mark .dot {
    animation: none;
  }

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

  .pillar-inner {
    transition: none;
  }
}