/* =========================================================================
   SOPHKOS — Financial Intelligence Infrastructure
   Design system: "intelligence laboratory"
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght,SOFT@9..144,300..900,0..100&family=Geist:wght@300;400;500;600;700&family=JetBrains+Mono:wght@300;400;500;600&display=swap');

/* ---------- Tokens ---------- */
/* Palette: Bauhinia & Brass (HK finance) */
:root {
  /* Surface — warm near-black through ivory */
  --ink:        #1A1410;
  --graphite:   #221814;
  --carbon:     #2B1F18;
  --slate:      #3B2A20;
  --ash:        #7A6B5A;
  --steam:      #B5A892;
  --bone:       #F8F4E6;
  --paper:      #FAF5E6;
  --vellum:     #EDE2C9;

  /* Signals — Bauhinia red as primary accent, gold as premium secondary */
  --sodium:     #C8102E;  /* primary accent — Bauhinia / flag red (var name preserved for backward compat) */
  --sodium-dim: #7A1018;  /* deep red for hover / dim states */
  --gold:       #D4AF37;  /* premium secondary accent */
  --phosphor:   #6FE3B7;  /* stable / cleared */
  --crimson:    #E5523A;  /* critical / breach */
  --azure:      #4A8FE8;  /* informational */

  /* Type */
  --display: 'Fraunces', 'Times New Roman', serif;
  --sans:    'Geist', system-ui, sans-serif;
  --mono:    'JetBrains Mono', 'Courier New', monospace;

  /* Geometry */
  --rule: 1px solid rgba(237,232,221,0.10);
  --rule-strong: 1px solid rgba(237,232,221,0.22);
  --rule-bone: 1px solid rgba(10,11,13,0.12);

  --pad-page: clamp(20px, 4vw, 56px);
  --max-w: 1440px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.55;
  font-size: 16px;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ---------- Blueprint grid overlay ---------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(237,232,221,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237,232,221,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

body > * { position: relative; z-index: 1; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 350;
  letter-spacing: -0.025em;
  line-height: 0.98;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}

h1 {
  font-size: clamp(2.6rem, 6.4vw, 5.6rem);
  font-weight: 320;
}

h2 {
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  font-weight: 340;
}

h3 {
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  font-weight: 380;
  letter-spacing: -0.018em;
}

h4 {
  font-size: 1.15rem;
  font-weight: 420;
  letter-spacing: -0.01em;
}

p { color: var(--steam); max-width: 64ch; }
p strong { color: var(--bone); font-weight: 500; }

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

::selection { background: var(--sodium); color: var(--ink); }

/* ---------- Mono labels ---------- */
.mono, .label, .tag, .coord {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.label {
  color: var(--sodium);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.label::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--sodium);
  display: inline-block;
}

.coord {
  display: block;
  color: var(--ash);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
}

/* ---------- Layout ---------- */
.shell {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-page);
}

section { padding: clamp(60px, 9vw, 140px) 0; position: relative; }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sodium);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--sodium);
}

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,11,13,0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: var(--rule);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad-page);
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 32px;
}

.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo svg { height: 22px; width: auto; }

.nav-links {
  display: flex;
  gap: 2px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steam);
  padding: 10px 14px;
  border-radius: 2px;
  transition: color 180ms ease, background 180ms ease;
  position: relative;
}

.nav-links a:hover { color: var(--bone); }
.nav-links a.active { color: var(--sodium); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 1px;
  background: var(--sodium);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--sodium);
  color: var(--sodium);
  background: transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all 180ms ease;
}

.nav-cta:hover {
  background: var(--sodium);
  color: var(--ink);
}

.nav-cta::after { content: '→'; font-family: var(--sans); }

.nav-toggle {
  display: none;
  background: transparent;
  border: var(--rule-strong);
  color: var(--bone);
  padding: 8px 12px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  cursor: pointer;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 26px;
  border: 1px solid var(--sodium);
  background: var(--sodium);
  color: var(--ink);
  border-radius: 2px;
  cursor: pointer;
  transition: all 200ms cubic-bezier(.2,.6,.2,1);
  text-decoration: none;
}

.btn:hover {
  background: var(--bone);
  border-color: var(--bone);
  transform: translateY(-1px);
}

.btn::after { content: '→'; font-family: var(--sans); font-size: 1rem; }

.btn-ghost {
  background: transparent;
  color: var(--bone);
  border: 1px solid rgba(237,232,221,0.25);
}

.btn-ghost:hover {
  background: transparent;
  border-color: var(--bone);
  color: var(--bone);
}

/* ---------- Hero ---------- */
.hero {
  padding: clamp(80px, 10vw, 160px) 0 clamp(60px, 8vw, 120px);
  position: relative;
  overflow: hidden;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 56px;
}

.hero-meta-right {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero h1 {
  margin-bottom: 36px;
  max-width: 18ch;
}

.hero h1 em {
  font-style: italic;
  color: var(--sodium);
  font-weight: 320;
}

.hero-sub {
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  max-width: 58ch;
  color: var(--steam);
  margin-bottom: 48px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-trust {
  border-top: var(--rule);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-trust .mono { color: var(--ash); }

/* ---------- Hero visual (cusp catastrophe) ---------- */
.hero-visual {
  position: absolute;
  right: -8%;
  top: 0;
  width: 60%;
  height: 100%;
  opacity: 0.7;
  pointer-events: none;
  z-index: -1;
  mask-image: linear-gradient(to left, black 30%, transparent 90%);
}

@media (max-width: 900px) {
  .hero-visual { opacity: 0.25; width: 110%; right: -20%; }
}

/* ---------- Section header ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(24px, 5vw, 80px);
  margin-bottom: 64px;
  align-items: end;
  padding-top: 32px;
  border-top: var(--rule);
}

.section-head h2 { margin-top: 16px; }
.section-head p { margin-top: 20px; }

@media (max-width: 768px) {
  .section-head { grid-template-columns: 1fr; }
}

/* ---------- Cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: rgba(237,232,221,0.08);
  border: var(--rule);
}

.card {
  background: var(--ink);
  padding: 36px 32px;
  position: relative;
  transition: background 220ms ease;
}

.card:hover { background: var(--graphite); }

.card-num {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--ash);
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-num span:last-child { color: var(--sodium); }

.card h3 {
  margin-bottom: 16px;
  color: var(--bone);
}

.card p {
  font-size: 0.95rem;
  color: var(--steam);
}

.card-icon {
  margin-bottom: 28px;
  display: block;
}

.card-icon svg { width: 44px; height: 44px; }

/* ---------- Bento ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(237,232,221,0.08);
  border: var(--rule);
}

.bento-cell {
  background: var(--ink);
  padding: 32px;
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.bento-cell.span-3 { grid-column: span 3; }
.bento-cell.span-4 { grid-column: span 4; }
.bento-cell.span-2 { grid-column: span 2; }
.bento-cell.tall { min-height: 360px; }

@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr; }
  .bento-cell.span-3, .bento-cell.span-4, .bento-cell.span-2 { grid-column: span 1; }
}

/* ---------- Featured panels ---------- */
.panel {
  border: var(--rule);
  padding: clamp(32px, 5vw, 56px);
  background:
    radial-gradient(circle at 0% 0%, rgba(232,163,61,0.04), transparent 50%),
    var(--graphite);
  margin-bottom: 24px;
  position: relative;
}

.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

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

/* ---------- Form embed frame ---------- */
.form-frame {
  position: relative;
  border: var(--rule);
  background: var(--bone);
  overflow: hidden;
  margin-bottom: 0;
}

.form-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 96px;
  height: 2px;
  background: var(--sodium);
  z-index: 2;
}

.form-frame iframe {
  display: block;
  width: 100%;
  /* Honour the height attribute on the iframe element; fallback below */
  min-height: 920px;
  border: 0;
  background: var(--bone);
}

@media (max-width: 900px) {
  .form-frame iframe { min-height: 1400px; }
}

/* ---------- Tables ---------- */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.compare-table th,
.compare-table td {
  padding: 22px 20px;
  text-align: left;
  border-bottom: var(--rule);
  vertical-align: top;
}

.compare-table thead th {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sodium);
  font-weight: 400;
  border-bottom: 1px solid var(--sodium);
}

.compare-table tbody td:first-child {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--steam);
  letter-spacing: 0.04em;
}

.compare-table tbody td:nth-child(2) { color: var(--ash); }
.compare-table tbody td:nth-child(3) { color: var(--bone); font-weight: 500; }

@media (max-width: 768px) {
  .compare-table th, .compare-table td { padding: 14px 10px; font-size: 0.85rem; }
}

/* ---------- Lists with technical numbering ---------- */
.tech-list {
  list-style: none;
  border-top: var(--rule);
}

.tech-list li {
  padding: 22px 0;
  border-bottom: var(--rule);
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: baseline;
}

.tech-list li .idx {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--sodium);
}

.tech-list li strong {
  display: block;
  color: var(--bone);
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.tech-list li p {
  color: var(--steam);
  font-size: 0.92rem;
  margin: 0;
}

/* ---------- Module list (Capabilities) ---------- */
.modules {
  display: flex;
  flex-direction: column;
  border-top: var(--rule);
}

.module {
  display: grid;
  grid-template-columns: 90px 1fr 2fr;
  gap: clamp(20px, 4vw, 64px);
  padding: clamp(36px, 5vw, 56px) 0;
  border-bottom: var(--rule);
  align-items: start;
}

.module-num {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--sodium);
}

.module h3 {
  margin-bottom: 14px;
  color: var(--bone);
}

.module .module-body p:first-of-type {
  color: var(--bone);
  margin-bottom: 24px;
  max-width: 56ch;
}

.module .module-body ul {
  list-style: none;
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px 24px;
}

.module .module-body ul li {
  font-size: 0.9rem;
  color: var(--steam);
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}

.module .module-body ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 1px;
  background: var(--sodium);
}

@media (max-width: 900px) {
  .module { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------- CTA strip ---------- */
.cta-strip {
  border-top: var(--rule);
  border-bottom: var(--rule);
  padding: clamp(60px, 9vw, 120px) 0;
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(232,163,61,0.06), transparent 60%);
}

.cta-strip h2 {
  margin-bottom: 24px;
  max-width: 22ch;
  margin-inline: auto;
}

.cta-strip p {
  max-width: 52ch;
  margin: 0 auto 40px;
  color: var(--steam);
}

/* ---------- Footer ---------- */
footer {
  border-top: var(--rule);
  padding: 80px 0 40px;
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

.footer-col h5 {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sodium);
  margin-bottom: 20px;
  font-weight: 400;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.88rem;
  color: var(--steam);
  transition: color 160ms;
}
.footer-col ul a:hover { color: var(--bone); }

.footer-brand p {
  font-size: 0.9rem;
  margin: 16px 0;
  max-width: 32ch;
}

.footer-bottom {
  border-top: var(--rule);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom .mono { color: var(--ash); font-size: 0.7rem; }

/* ---------- Industry grid ---------- */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1px;
  background: rgba(237,232,221,0.08);
  border: var(--rule);
}

.industry {
  background: var(--ink);
  padding: 40px 36px;
  transition: background 200ms;
}

.industry:hover { background: var(--graphite); }

.industry-tag {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sodium);
  margin-bottom: 36px;
  display: block;
}

.industry h3 { color: var(--bone); margin-bottom: 16px; font-size: 1.5rem; }
.industry p { font-size: 0.93rem; }

/* ---------- Pull quote ---------- */
.pull {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 320;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--bone);
  font-style: italic;
  max-width: 26ch;
}

.pull em { color: var(--sodium); font-style: italic; }

/* ---------- Decorative dimension lines ---------- */
.dim-line {
  position: absolute;
  border-left: 1px dashed rgba(232,163,61,0.25);
  width: 1px;
}

/* ---------- Animations ---------- */
@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes draw {
  from { stroke-dashoffset: 1000; }
  to { stroke-dashoffset: 0; }
}

.hero h1, .hero .eyebrow, .hero-sub, .hero-actions, .hero-trust, .hero-meta {
  animation: rise 800ms cubic-bezier(.2,.6,.2,1) backwards;
}

.hero .eyebrow { animation-delay: 0ms; }
.hero h1 { animation-delay: 120ms; }
.hero-sub { animation-delay: 260ms; }
.hero-actions { animation-delay: 380ms; }
.hero-trust { animation-delay: 500ms; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.6,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Page header (non-home pages) ---------- */
.page-head {
  padding: clamp(80px, 10vw, 140px) 0 clamp(48px, 6vw, 80px);
  border-bottom: var(--rule);
}

.page-head h1 {
  max-width: 22ch;
  margin-bottom: 28px;
}

.page-head .hero-sub { margin-bottom: 0; }

/* ---------- Mobile nav ---------- */
@media (max-width: 1024px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: inline-block; }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--graphite);
    padding: 16px var(--pad-page);
    gap: 4px;
    border-bottom: var(--rule);
  }
  .nav.open .nav-cta {
    display: inline-flex;
    margin: 12px var(--pad-page);
  }
}

/* ---------- Stat strip ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: rgba(237,232,221,0.08);
  border: var(--rule);
}

.stat {
  background: var(--ink);
  padding: 36px 28px;
}

.stat-num {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 320;
  color: var(--sodium);
  line-height: 0.95;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 0.86rem;
  color: var(--steam);
}

/* ---------- Object inventory (platform page) ---------- */
.objects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(237,232,221,0.08);
  border: var(--rule);
}

.object {
  background: var(--ink);
  padding: 28px 26px;
}

.object-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.object-head .mono { color: var(--sodium); font-size: 0.66rem; }
.object-head .dot {
  width: 6px; height: 6px; background: var(--sodium); display: inline-block;
}

.object h4 {
  font-family: var(--sans);
  font-size: 0.98rem;
  letter-spacing: -0.005em;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--bone);
}

.object p { font-size: 0.86rem; color: var(--steam); line-height: 1.5; }

@media (max-width: 900px) { .objects { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .objects { grid-template-columns: 1fr; } }

/* ---------- Resource cards ---------- */
.resources {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1px;
  background: rgba(237,232,221,0.08);
  border: var(--rule);
}

.resource {
  background: var(--ink);
  padding: 36px;
  transition: background 200ms;
  cursor: pointer;
}

.resource:hover { background: var(--graphite); }

.resource .mono { color: var(--sodium); margin-bottom: 28px; display: block; }
.resource h3 { font-size: 1.5rem; margin-bottom: 14px; color: var(--bone); }
.resource p { font-size: 0.92rem; }
.resource-arrow { margin-top: 32px; font-family: var(--mono); font-size: 0.78rem; color: var(--sodium); }

/* ---------- Logo showcase utilities ---------- */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1px;
  background: rgba(237,232,221,0.08);
  border: var(--rule);
}

.logo-tile {
  background: var(--ink);
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.logo-tile.light { background: var(--paper); color: var(--ink); }
.logo-tile.light p { color: var(--ash); }

.logo-tile-display {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.logo-tile-meta { border-top: var(--rule); padding-top: 20px; }
.logo-tile.light .logo-tile-meta { border-top: var(--rule-bone); }

.logo-tile-meta h4 {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sodium);
  margin-bottom: 8px;
  font-weight: 400;
}

.logo-tile-meta p { font-size: 0.84rem; max-width: 100%; }
