/* Urizen homepage — restraint pass
   Calm parchment canvas, single gold signature accent, editorial serif
   headlines, hairline surfaces, purposeful motion. Teal/rust are reserved
   for the semantic FHE/ZK/MPC triad, not ambient decoration. */

* {
  box-sizing: border-box;
}

:root {
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", "SFMono-Regular", Menlo, Consolas, monospace;

  /* warm neutrals */
  --ink: #241d15;
  --ink-soft: #6b5d49;
  --ink-faint: #93856d;
  --cream: #faf6ec;
  --cream-2: #f5efe0;
  --raise: #fffdf7;
  --hairline: #e6dcc4;
  --hairline-strong: #d8cbab;

  /* signature accent + semantic triad */
  --gold: #bd8b28;
  --gold-bright: #d8a53c;
  --teal: #3e8079;
  --teal-ink: #2f6a63;
  --rust: #b14a2c;
  --rust-ink: #8f3a20;

  --shadow-sm: 0 1px 2px rgba(36, 29, 21, 0.04);
  --shadow-md: 0 12px 32px -18px rgba(36, 29, 21, 0.28);
  --shadow-lg: 0 30px 70px -34px rgba(36, 29, 21, 0.4);

  --radius: 14px;
  --radius-sm: 10px;

  --container: 1120px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-y: clamp(72px, 9vw, 128px);

  /* remap the shared urizen-theme.css tokens to this system so its
     higher-specificity .urizen-theme rules inherit the new fonts/palette */
  --urizen-font-serif: var(--font-sans);
  --urizen-font-sans: var(--font-sans);
  --urizen-font-display: var(--font-display);
  --urizen-ink: var(--ink);
  --urizen-ink-soft: var(--ink-soft);
  --urizen-cream: var(--cream);
  --urizen-gold: var(--gold);
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  font-feature-settings: "kern" 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background: var(--cream);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-optical-sizing: auto;
  letter-spacing: -0.01em;
  color: var(--ink);
}

p {
  margin: 0;
}

::selection {
  background: rgba(189, 139, 40, 0.22);
}

/* ---------- shared layout ---------- */

.section-inner,
.hero-inner,
.footer-inner,
.footer-baseline,
.closing-inner {
  width: min(var(--container), 100% - var(--gutter) * 2);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-y);
}

.section + .section {
  border-top: 1px solid var(--hairline);
}

/* eyebrow / kicker */
.urizen-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.urizen-kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ---------- header ---------- */

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 68px;
  padding-inline: var(--gutter);
  border-bottom: 1px solid transparent;
  background: rgba(250, 246, 236, 0.72);
  backdrop-filter: blur(14px) saturate(1.1);
  transition: border-color 200ms ease, background 200ms ease;
}

.site-header.is-stuck {
  border-bottom-color: var(--hairline);
  background: rgba(250, 246, 236, 0.86);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 22px;
  height: 28px;
}

.brand-wordmark {
  width: 118px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  font-family: var(--font-sans);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 150ms ease, background 150ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: rgba(36, 29, 21, 0.05);
}

/* ---------- buttons ---------- */

.request-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 550;
  line-height: 1;
  text-decoration: none;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease, box-shadow 150ms ease, color 150ms ease;
}

.request-link {
  min-height: 38px;
  border-color: var(--hairline-strong);
  background: var(--raise);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.request-link:hover,
.request-link:focus-visible {
  border-color: var(--ink);
}

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

.button.primary:hover,
.button.primary:focus-visible {
  background: #37291a;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.button.secondary {
  border-color: var(--hairline-strong);
  background: transparent;
  color: var(--ink);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--ink);
  transform: translateY(-1px);
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(56px, 8vw, 108px);
  background:
    radial-gradient(120% 120% at 82% 8%, rgba(189, 139, 40, 0.08), transparent 46%),
    radial-gradient(90% 90% at 0% 100%, rgba(62, 128, 121, 0.06), transparent 52%),
    var(--cream);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;
  gap: clamp(40px, 6vw, 88px);
}

.hero-copy-block {
  max-width: 640px;
}

.neo-body-mark {
  display: block;
  width: 132px;
  height: auto;
  opacity: 0.55;
}

.hero-neo-mark {
  width: 116px;
  margin: 0 0 20px;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 5.6vw, 68px);
  line-height: 1.03;
  letter-spacing: -0.02em;
}

.hero-copy {
  margin-top: 24px;
  max-width: 560px;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.55;
}

.proof-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.proof-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  background: var(--raise);
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--hairline);
}

.hero-signal-grid span {
  padding: 18px 16px 0 0;
}

.hero-signal-grid span + span {
  padding-left: 20px;
  border-left: 1px solid var(--hairline);
}

.hero-signal-grid small,
.hero-signal-grid strong {
  display: block;
}

.hero-signal-grid small {
  color: var(--ink-faint);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-signal-grid strong {
  margin-top: 8px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* hero receipt object */
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 340px;
}

.receipt-glow {
  position: absolute;
  inset: 6% 4%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, rgba(189, 139, 40, 0.16), transparent 62%);
  filter: blur(8px);
  pointer-events: none;
}

.receipt-panel {
  position: relative;
  width: min(360px, 100%);
  padding: 22px 22px 20px;
  border: 1px solid var(--hairline-strong);
  border-radius: 16px;
  background: linear-gradient(180deg, var(--raise), #fbf6ea);
  box-shadow: var(--shadow-lg);
  animation: floatCard 8s ease-in-out infinite;
}

.receipt-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hairline);
}

.receipt-eyebrow {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.receipt-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(62, 128, 121, 0.12);
  color: #2f6a63;
  font-size: 12px;
  font-weight: 600;
}

.receipt-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(62, 128, 121, 0.5);
  animation: pulseDot 2.6s ease-out infinite;
}

.receipt-root {
  padding: 16px 0;
  border-bottom: 1px solid var(--hairline);
}

.receipt-root small {
  display: block;
  color: var(--ink-faint);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.receipt-root code {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 18px;
  letter-spacing: 0.02em;
}

.receipt-lines {
  margin: 0;
  padding: 14px 0 4px;
  list-style: none;
}

.receipt-lines li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
}

.receipt-lines li span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

.receipt-lines li span::before {
  content: "";
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
}

.receipt-lines li.teal span::before {
  background: var(--teal);
}

.receipt-lines li.gold span::before {
  background: var(--gold);
}

.receipt-lines li.rust span::before {
  background: var(--rust);
}

.receipt-lines li b {
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.receipt-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--hairline);
  color: var(--ink-faint);
  font-size: 12px;
  font-weight: 500;
}

/* ---------- hero verify badge (Lean 4 / reproducible trust marker) ---------- */

.verify-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 7px 16px 7px 7px;
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  background: var(--raise);
  box-shadow: var(--shadow-sm);
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.3;
}

.verify-mark {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ---------- lifecycle pipeline ---------- */

.lifecycle-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}

.lifecycle-step {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 22px;
  border: 1px solid var(--hairline);
  border-top: 2px solid var(--edge, var(--gold));
  border-radius: var(--radius);
  background: var(--raise);
  box-shadow: var(--shadow-sm);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.lifecycle-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* connector between steps (wide layout only) */
.lifecycle-step::after {
  content: "";
  position: absolute;
  top: 40px;
  right: -16px;
  width: 16px;
  height: 1px;
  background: var(--hairline-strong);
  z-index: 1;
}

.lifecycle-step::before {
  content: "";
  position: absolute;
  top: 37px;
  right: -11px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  z-index: 2;
}

.lifecycle-step:last-child::after,
.lifecycle-step:last-child::before {
  display: none;
}

.lifecycle-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-width: 34px;
  height: 24px;
  margin-bottom: 16px;
  padding: 0 8px;
  border: 1px solid var(--edge, var(--hairline-strong));
  border-radius: 6px;
  color: var(--edge, var(--ink-soft));
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
}

.lifecycle-step h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.15;
}

.lifecycle-step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.48;
}

@media (max-width: 1080px) {
  .lifecycle-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lifecycle-step::after,
  .lifecycle-step::before {
    display: none;
  }
}

@media (max-width: 560px) {
  .lifecycle-flow {
    grid-template-columns: 1fr;
  }
}

/* ---------- section headings ---------- */

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.neo-section-mark {
  width: 104px;
  height: auto;
  margin: 0 0 18px;
  opacity: 0.5;
}

.section-heading.centered .neo-section-mark {
  margin-inline: auto;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 42px);
  line-height: 1.08;
}

.section-heading p:not(.urizen-kicker) {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.55;
}

.stack-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  align-items: end;
  gap: 48px;
  max-width: none;
}

.stack-heading .urizen-kicker,
.stack-heading h2 {
  grid-column: 1;
}

.stack-heading p:not(.urizen-kicker) {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin-top: 0;
}

/* ---------- cards (shared) ---------- */

.stack-card,
.line-card,
.use-card,
.ledger-card,
.run-step {
  position: relative;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: var(--raise);
  box-shadow: var(--shadow-sm);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.stack-card:hover,
.line-card:hover,
.use-card:hover,
.ledger-card:hover {
  transform: translateY(-3px);
  border-color: var(--hairline-strong);
  box-shadow: var(--shadow-md);
}

/* accent edge as a top rule, not a full loud border */
.teal-edge {
  --edge: var(--teal);
}

.gold-edge {
  --edge: var(--gold);
}

.rust-edge {
  --edge: var(--rust);
}

/* ---------- stack grid ---------- */

.stack-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.stack-card {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 26px 24px;
}

.stack-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 24px;
  margin-bottom: auto;
  border: 1px solid var(--edge, var(--hairline-strong));
  border-radius: 6px;
  color: var(--edge, var(--ink-soft));
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
}

.stack-card h3 {
  margin: 28px 0 10px;
  font-size: 21px;
  line-height: 1.15;
}

.stack-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.5;
}

/* ---------- engine / two-card grid ---------- */

.two-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.line-card.proof-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  padding: 28px 26px;
}

.cap-diamond {
  display: none; /* retired ornament */
}

.line-icon {
  width: 46px;
  height: 46px;
  color: var(--teal);
}

.line-icon path,
.line-icon rect,
.line-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gold-stroke {
  color: var(--gold);
}

.rust-stroke {
  color: var(--rust);
}

.proof-card h3,
.use-card h3,
.run-step h3,
.ledger-card h3,
.footer-nav h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.2;
}

.card-label {
  margin: 6px 0 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.teal-text {
  color: var(--teal);
}

.gold-text {
  color: #a9781f;
}

.rust-text {
  color: var(--rust);
}

.proof-card p:last-child,
.use-card p,
.run-step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.5;
}

/* ---------- protocol / settlement strips ---------- */

.protocol-strip,
.settlement-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  padding: 18px 22px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: var(--cream-2);
  color: var(--ink-soft);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.protocol-strip i {
  width: 26px;
  height: 1px;
  background: var(--hairline-strong);
}

.settlement-strip {
  justify-content: space-between;
  gap: 20px;
}

.settlement-strip span {
  position: relative;
  padding-left: 16px;
}

.settlement-strip span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: translateY(-50%) rotate(45deg);
}

/* ---------- run diagram ---------- */

.run-diagram {
  display: grid;
  grid-template-columns: minmax(150px, 0.85fr) minmax(320px, 2fr) minmax(150px, 0.85fr);
  align-items: center;
  gap: 28px;
  margin-top: 44px;
}

.run-step {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 158px;
  padding: 30px 22px;
  text-align: center;
}

.run-step .line-icon {
  width: 40px;
  height: 40px;
}

.run-step h3 {
  font-size: 17px;
}

.operator-boundary {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: 26px 24px 40px;
  border: 1px dashed var(--hairline-strong);
  border-radius: var(--radius);
  background: var(--cream-2);
}

.operator-note {
  position: absolute;
  right: 24px;
  bottom: 14px;
  left: 24px;
  margin: 0;
  color: var(--ink-faint);
  font-family: var(--font-sans);
  font-size: 12.5px;
  text-align: center;
}

/* ---------- ledger ---------- */

.ledger-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.ledger-card {
  padding: 30px 32px;
}

.ledger-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.ledger-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ledger-card li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.5;
}

.ledger-card li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--edge, var(--gold));
  transform: rotate(45deg);
}

/* small diamond used inline in headings/tags */
.diamond {
  display: inline-block;
  width: 9px;
  height: 9px;
  transform: rotate(45deg);
  flex: 0 0 auto;
}

.diamond.gold {
  background: var(--gold);
}

.diamond.teal {
  background: var(--teal);
}

.diamond.rust {
  background: var(--rust);
}

/* ---------- use grid ---------- */

.use-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.use-card {
  min-height: 200px;
  padding: 30px 24px;
}

.use-card::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  margin-bottom: 18px;
  background: var(--edge, var(--gold));
  transform: rotate(45deg);
}

.use-card h3 {
  margin-bottom: 10px;
}

/* ---------- KYC flagship application ---------- */

.kyc-section {
  background:
    radial-gradient(90% 120% at 6% 0%, rgba(62, 128, 121, 0.05), transparent 48%),
    var(--cream-2);
}

.kyc-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(36px, 5vw, 76px);
}

.kyc-copy {
  max-width: 620px;
}

.kyc-lead {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.55;
}

.kyc-points {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.kyc-points li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.kyc-points li i {
  margin-top: 7px;
}

.kyc-points span {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.5;
}

.kyc-points strong {
  color: var(--ink);
  font-weight: 600;
}

.kyc-note {
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
  color: var(--ink-faint);
  font-size: 13px;
  line-height: 1.5;
}

.kyc-visual {
  display: grid;
  place-items: center;
}

.kyc-card {
  width: min(380px, 100%);
  padding: 24px;
  border: 1px solid var(--hairline-strong);
  border-radius: 16px;
  background: linear-gradient(180deg, var(--raise), #fbf6ea);
  box-shadow: var(--shadow-lg);
}

.kyc-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hairline);
}

.kyc-verdict {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(62, 128, 121, 0.12);
  color: var(--teal-ink);
  font-size: 12px;
  font-weight: 600;
}

.kyc-verdict i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(62, 128, 121, 0.5);
  animation: pulseDot 2.6s ease-out infinite;
}

.kyc-signals {
  margin: 0;
  padding: 14px 0 6px;
  list-style: none;
}

.kyc-signals li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
}

.kyc-signals li span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

.kyc-signals li span::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

.kyc-signals li b {
  flex: 0 0 auto;
  padding: 3px 10px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
}

.kyc-decision {
  margin-top: 12px;
  padding: 15px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.kyc-decision small {
  display: block;
  color: var(--ink-faint);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kyc-decision strong {
  display: block;
  margin-top: 7px;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 18px;
  letter-spacing: 0.01em;
}

.kyc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
}

.kyc-foot span:first-child {
  color: var(--ink-faint);
  font-size: 12.5px;
  line-height: 1.3;
  max-width: 14ch;
}

.kyc-zero {
  flex: 0 0 auto;
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
}

@media (max-width: 980px) {
  .kyc-inner {
    grid-template-columns: 1fr;
  }

  .kyc-visual {
    order: -1;
  }
}

/* ---------- agents / certified context manager (reuses kyc card system) ---------- */

.agents-section {
  background:
    radial-gradient(90% 120% at 94% 0%, rgba(189, 139, 40, 0.07), transparent 48%),
    var(--cream);
}

.agents-section .kyc-inner {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.kyc-signals li b.refused {
  border-color: rgba(177, 74, 44, 0.3);
  background: rgba(177, 74, 44, 0.08);
  color: var(--rust-ink);
}

.kyc-copy .hero-actions {
  margin-top: 26px;
}

/* ---------- engine telemetry band (systems-lab touch) ---------- */

.telemetry-band {
  position: relative;
  overflow: hidden;
  color: rgba(250, 246, 236, 0.86);
  background:
    radial-gradient(90% 130% at 85% 0%, rgba(216, 165, 60, 0.14), transparent 55%),
    radial-gradient(70% 120% at 0% 100%, rgba(62, 128, 121, 0.1), transparent 60%),
    #1c160f;
}

.telemetry-band.section + .section,
.section + .telemetry-band.section {
  border-top: 0;
}

.telemetry-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(250, 246, 236, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 246, 236, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(120% 100% at 50% 0%, #000 30%, transparent 78%);
  pointer-events: none;
}

.telemetry-inner {
  position: relative;
}

.telemetry-head {
  max-width: 640px;
  margin-bottom: 44px;
}

.urizen-kicker.on-dark {
  color: var(--gold-bright);
}

.urizen-kicker.on-dark::before {
  background: var(--gold-bright);
}

.telemetry-head h2 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(30px, 3.6vw, 42px);
  line-height: 1.08;
}

.telemetry-head p {
  margin-top: 18px;
  color: rgba(250, 246, 236, 0.62);
  font-size: 18px;
  line-height: 1.55;
}

.telemetry-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
  gap: 28px;
  align-items: stretch;
}

.proof-stream {
  border: 1px solid rgba(250, 246, 236, 0.14);
  border-radius: var(--radius);
  background: rgba(10, 8, 5, 0.4);
  box-shadow: inset 0 1px 0 rgba(250, 246, 236, 0.05);
  overflow: hidden;
}

.stream-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-bottom: 1px solid rgba(250, 246, 236, 0.1);
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: rgba(250, 246, 236, 0.6);
}

.stream-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(62, 128, 121, 0.5);
  animation: pulseDot 2.6s ease-out infinite;
}

.stream-addr {
  color: rgba(250, 246, 236, 0.82);
}

.stream-live {
  margin-left: auto;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(216, 165, 60, 0.16);
  color: var(--gold-bright);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stream-log {
  margin: 0;
  padding: 8px 0;
  list-style: none;
  counter-reset: line;
}

.stream-log li {
  display: grid;
  grid-template-columns: 22px minmax(0, 190px) 1fr;
  align-items: baseline;
  gap: 14px;
  padding: 8px 18px;
  font-family: var(--font-mono);
  font-size: 13.5px;
  opacity: 0;
  animation: streamLine 460ms ease forwards;
  animation-delay: calc(var(--i) * 340ms + 200ms);
}

.stream-log li::before {
  counter-increment: line;
  content: counter(line, decimal-leading-zero);
  color: rgba(250, 246, 236, 0.3);
  font-size: 11px;
}

.stream-log .tok {
  color: rgba(250, 246, 236, 0.9);
}

.stream-log .tok::before {
  content: "\203A\00a0";
  color: rgba(250, 246, 236, 0.4);
}

.stream-log .tok.gold {
  color: var(--gold-bright);
}

.stream-log .tok.teal {
  color: #6fc0b7;
}

.stream-log .tok.rust {
  color: #d98a6d;
}

.stream-log .val {
  color: rgba(250, 246, 236, 0.66);
}

.stream-final .val {
  color: var(--cream);
}

.cursor {
  display: inline-block;
  width: 8px;
  height: 15px;
  margin-left: 6px;
  vertical-align: -2px;
  background: var(--gold-bright);
  animation: cursorBlink 1.1s steps(1) infinite;
  animation-delay: calc(9 * 340ms + 660ms);
  opacity: 0;
}

.telemetry-metrics {
  display: grid;
  grid-auto-rows: 1fr;
  margin: 0;
  border: 1px solid rgba(250, 246, 236, 0.14);
  border-radius: var(--radius);
  background: rgba(250, 246, 236, 0.03);
  overflow: hidden;
}

.telemetry-metrics > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 18px 22px;
}

.telemetry-metrics > div + div {
  border-top: 1px solid rgba(250, 246, 236, 0.1);
}

.telemetry-metrics dt {
  color: rgba(250, 246, 236, 0.5);
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.telemetry-metrics dd {
  margin: 0;
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
}

.telemetry-metrics dd small {
  margin-left: 2px;
  color: var(--gold-bright);
  font-size: 15px;
}

@keyframes streamLine {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

@keyframes cursorBlink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

/* ---------- closing band ---------- */

.closing-band {
  padding-block: clamp(80px, 10vw, 132px);
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(189, 139, 40, 0.16), transparent 55%),
    #201a12;
  color: var(--cream);
  text-align: center;
}

.closing-inner {
  max-width: 760px;
}

.closing-inner .cap-diamond {
  display: block;
  width: 14px;
  height: 14px;
  margin: 0 auto 26px;
  background: var(--gold);
  transform: rotate(45deg);
}

.closing-band h2 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(32px, 4.4vw, 50px);
  line-height: 1.08;
}

.closing-band p {
  margin: 16px 0 0;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 500;
}

.closing-band span {
  display: block;
  max-width: 620px;
  margin: 22px auto 0;
  color: rgba(250, 246, 236, 0.66);
  font-size: 16px;
  line-height: 1.6;
}

/* ---------- footer ---------- */

.site-footer {
  padding-block: 64px 32px;
  background: #1c160f;
  color: rgba(250, 246, 236, 0.7);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(360px, 0.9fr);
  gap: 64px;
}

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

.footer-brand p {
  margin: 18px 0 6px;
  color: rgba(250, 246, 236, 0.82);
  font-size: 15px;
}

.footer-brand span {
  color: rgba(250, 246, 236, 0.5);
  font-size: 13px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.footer-nav div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-nav h3 {
  color: rgba(250, 246, 236, 0.5);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-nav a {
  color: rgba(250, 246, 236, 0.72);
  font-size: 14px;
  text-decoration: none;
  transition: color 150ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--cream);
}

.footer-baseline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid rgba(250, 246, 236, 0.1);
  color: rgba(250, 246, 236, 0.46);
  font-size: 12.5px;
}

.footer-baseline .diamond {
  background: var(--gold);
}

/* ---------- motion ---------- */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 620ms cubic-bezier(0.22, 0.61, 0.36, 1), transform 620ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.is-revealed {
  opacity: 1;
  transform: none;
}

.stack-card.reveal:nth-child(2) { transition-delay: 60ms; }
.stack-card.reveal:nth-child(3) { transition-delay: 120ms; }
.stack-card.reveal:nth-child(4) { transition-delay: 180ms; }
.lifecycle-step.reveal:nth-child(2) { transition-delay: 60ms; }
.lifecycle-step.reveal:nth-child(3) { transition-delay: 120ms; }
.lifecycle-step.reveal:nth-child(4) { transition-delay: 180ms; }
.lifecycle-step.reveal:nth-child(5) { transition-delay: 240ms; }
.use-card.reveal:nth-child(2) { transition-delay: 60ms; }
.use-card.reveal:nth-child(3) { transition-delay: 120ms; }
.use-card.reveal:nth-child(4) { transition-delay: 180ms; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(62, 128, 121, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(62, 128, 121, 0); }
  100% { box-shadow: 0 0 0 0 rgba(62, 128, 121, 0); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

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

/* ---------- responsive ---------- */

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

  .hero-visual {
    order: -1;
    min-height: 0;
  }

  .stack-grid,
  .use-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-card-grid {
    grid-template-columns: 1fr;
  }

  .run-diagram {
    grid-template-columns: 1fr;
  }

  .stack-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stack-heading p:not(.urizen-kicker) {
    grid-column: 1;
    grid-row: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

@media (max-width: 720px) {
  .site-header {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    padding-block: 14px;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .stack-grid,
  .use-grid,
  .footer-nav {
    grid-template-columns: 1fr;
  }

  .operator-boundary {
    grid-template-columns: 1fr;
  }

  .settlement-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

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

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

  .hero-signal-grid span,
  .hero-signal-grid span + span {
    padding: 16px 0 0;
    border-left: 0;
    border-top: 1px solid var(--hairline);
  }

  .hero-signal-grid span:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .footer-baseline {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* ================= lab repositioning (Nous-inspired dark chrome) ================= */

/* ---------- dark header ---------- */

.site-header {
  border-bottom: 1px solid rgba(250, 246, 236, 0.08);
  background: rgba(28, 22, 15, 0.85);
}

.site-header.is-stuck {
  border-bottom-color: rgba(250, 246, 236, 0.14);
  background: rgba(28, 22, 15, 0.94);
}

.brand {
  color: var(--cream);
}

.site-nav a {
  color: rgba(250, 246, 236, 0.66);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--cream);
  background: rgba(250, 246, 236, 0.07);
}

.request-link {
  border-color: rgba(250, 246, 236, 0.28);
  background: transparent;
  color: var(--cream);
  box-shadow: none;
}

.request-link:hover,
.request-link:focus-visible {
  border-color: var(--cream);
}

/* ---------- dark manifesto hero ---------- */

.hero {
  color: var(--cream);
  background:
    radial-gradient(120% 120% at 82% 8%, rgba(216, 165, 60, 0.16), transparent 48%),
    radial-gradient(90% 90% at 0% 100%, rgba(62, 128, 121, 0.12), transparent 55%),
    #1c160f;
}

.hero .urizen-kicker {
  color: var(--gold-bright);
}

.hero h1 {
  color: var(--cream);
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-bright);
}

.hero .neo-body-mark {
  opacity: 0.85;
}

.hero-copy {
  color: rgba(250, 246, 236, 0.68);
}

.hero-copy strong {
  color: var(--cream);
  font-weight: 600;
}

.hero .proof-tags span {
  border-color: rgba(250, 246, 236, 0.22);
  background: rgba(250, 246, 236, 0.05);
  color: rgba(250, 246, 236, 0.88);
}

.hero .verify-badge {
  border-color: rgba(250, 246, 236, 0.18);
  background: rgba(250, 246, 236, 0.04);
  box-shadow: none;
  color: rgba(250, 246, 236, 0.66);
}

.hero .verify-mark {
  background: var(--gold-bright);
  color: #1c160f;
}

.hero .button.primary {
  border-color: transparent;
  background: var(--gold-bright);
  color: #1c160f;
}

.hero .button.primary:hover,
.hero .button.primary:focus-visible {
  background: #e2b34f;
}

.hero .button.secondary {
  border-color: rgba(250, 246, 236, 0.3);
  background: transparent;
  color: var(--cream);
}

.hero .button.secondary:hover,
.hero .button.secondary:focus-visible {
  border-color: var(--cream);
}

/* ---------- research grid ---------- */

.research-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.research-grid .stack-card {
  min-height: 0;
}

/* ---------- systems cards ---------- */

.systems-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 8px;
}

.system-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 36px 34px 30px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: var(--raise);
  box-shadow: var(--shadow-sm);
  color: inherit;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.system-card:hover,
.system-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--hairline-strong);
  box-shadow: var(--shadow-md);
}

.system-role {
  color: var(--ink-faint);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.system-card h3 {
  margin: 0;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -0.015em;
}

.system-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

.system-link {
  margin-top: auto;
  padding-top: 14px;
  color: #a9781f;
  font-size: 14px;
  font-weight: 600;
}

.system-link::after {
  content: " \2192";
}

.system-card:hover .system-link {
  color: var(--ink);
}

@media (max-width: 980px) {
  .research-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

.site-header .brand-mark {
  filter: brightness(0) invert(0.96) sepia(0.12);
  opacity: 0.92;
}

/* ================= tasteful motion pass ================= */

/* ---------- hero entrance choreography ---------- */

@keyframes riseIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.hero-copy-block > * {
  opacity: 0;
  animation: riseIn 640ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.hero-copy-block > *:nth-child(1) { animation-delay: 60ms; }
.hero-copy-block > *:nth-child(2) { animation-delay: 140ms; }
.hero-copy-block > *:nth-child(3) { animation-delay: 220ms; }
.hero-copy-block > *:nth-child(4) { animation-delay: 320ms; }
.hero-copy-block > *:nth-child(5) { animation-delay: 420ms; }
.hero-copy-block > *:nth-child(6) { animation-delay: 500ms; }
.hero-copy-block > *:nth-child(7) { animation-delay: 580ms; }

.hero-visual {
  opacity: 0;
  animation: riseIn 760ms cubic-bezier(0.22, 0.61, 0.36, 1) 520ms forwards;
}

/* ---------- slow gold aurora in the dark hero ---------- */

.hero::before {
  content: "";
  position: absolute;
  inset: -22%;
  background:
    radial-gradient(38% 48% at 72% 18%, rgba(216, 165, 60, 0.13), transparent 62%),
    radial-gradient(32% 42% at 16% 84%, rgba(62, 128, 121, 0.11), transparent 60%);
  animation: auroraDrift 30s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes auroraDrift {
  from { transform: translate3d(-3%, -2%, 0) scale(1); }
  to { transform: translate3d(3%, 3%, 0) scale(1.1); }
}

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

.receipt-glow {
  animation: glowBreath 9s ease-in-out infinite;
}

@keyframes glowBreath {
  0%, 100% { opacity: 0.72; }
  50% { opacity: 1; }
}

/* ---------- drawn gold rule under section headings ---------- */

.section-heading h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  margin-top: 16px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1) 180ms;
}

.section-heading.centered h2::after {
  margin-inline: auto;
  transform-origin: center;
}

.section-heading.is-revealed h2::after,
.section-heading:not(.reveal) h2::after {
  transform: scaleX(1);
}

/* telemetry heading isn't a .section-heading — give it the same rule, always drawn */
.telemetry-head h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  margin-top: 16px;
  background: var(--gold-bright);
}

/* ---------- scroll-triggered telemetry stream ---------- */

.telemetry-band.reveal .stream-log li,
.telemetry-band.reveal .cursor {
  animation-play-state: paused;
}

.telemetry-band.is-revealed .stream-log li,
.telemetry-band.is-revealed .cursor {
  animation-play-state: running;
}

/* ---------- reveal stagger for the research grid ---------- */

.research-grid .stack-card.reveal:nth-child(5) { transition-delay: 240ms; }
.research-grid .stack-card.reveal:nth-child(6) { transition-delay: 300ms; }

/* ---------- micro-interactions ---------- */

.system-link::after {
  display: inline-block;
  transition: transform 200ms ease;
}

.system-card:hover .system-link::after,
.system-card:focus-visible .system-link::after {
  transform: translateX(5px);
}

.closing-inner .cap-diamond {
  animation: diamondBreath 4.5s ease-in-out infinite;
}

@keyframes diamondBreath {
  0%, 100% { box-shadow: 0 0 0 rgba(216, 165, 60, 0); }
  50% { box-shadow: 0 0 26px rgba(216, 165, 60, 0.5); }
}

/* hero lockup: rune wordmark + "Research Labs" kicker read as one unit */
.hero .hero-neo-mark {
  margin-bottom: 12px;
}

/* header lockup: URIZEN wordmark + Research Labs tag */
.brand-tag {
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid rgba(250, 246, 236, 0.24);
  color: rgba(250, 246, 236, 0.6);
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 520px) {
  .brand-tag {
    display: none;
  }
}
