/* Byrneout Technologies — design system */

:root {
  --bg: #0a0a0a;
  --surface: #111111;
  --surface-2: #161616;
  --border: #262626;
  --border-light: #333333;
  --text: #ececec;
  --text-secondary: #a3a3a3;
  --text-muted: #737373;
  --accent: #0071e3;
  --accent-hover: #0077ed;
  --accent-subtle: rgba(0, 113, 227, 0.1);
  --serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --sans: "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SF Mono", monospace;
  --max-width: 72rem;
  --nav-height: 4rem;
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Navigation ── */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}

.site-nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
}

.logo-mark {
  width: 1.75rem;
  height: 1.75rem;
  background: var(--text);
  border-radius: 0.375rem;
  display: grid;
  place-items: center;
}

.logo-mark svg { width: 0.875rem; height: 0.875rem; color: var(--bg); }

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.nav-links a { transition: color 0.15s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

.menu-toggle {
  display: flex;
  padding: 0.5rem;
  color: var(--text-secondary);
  border-radius: var(--radius);
}

.menu-toggle:hover { color: var(--text); background: var(--surface); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  z-index: 99;
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--text); }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .menu-toggle { display: none; }
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

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

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  border-color: var(--text-muted);
  background: var(--surface);
}

.btn-ghost {
  color: var(--text-secondary);
  padding: 0.625rem 0.75rem;
}

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

/* ── Typography ── */

.section-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.section-label span { color: var(--accent); }

h1, h2, h3, .heading-serif {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(1.875rem, 4vw, 2.75rem); }
h3 { font-size: 1.25rem; font-family: var(--sans); font-weight: 600; letter-spacing: -0.01em; }

.lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 36rem;
}

.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }

/* ── Hero ── */

.hero {
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.hero-eyebrow strong { color: var(--text-secondary); font-weight: 500; }

.hero h1 { margin: 0 0 1.25rem; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.hero-meta dt { font-weight: 500; color: var(--text-secondary); margin-bottom: 0.125rem; }

/* Code panel */

.code-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-family: var(--mono);
  font-size: 0.8125rem;
  line-height: 1.7;
}

.code-panel-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}

.code-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: var(--border-light);
}

.code-dot:nth-child(1) { background: #ff5f57; }
.code-dot:nth-child(2) { background: #febc2e; }
.code-dot:nth-child(3) { background: #28c840; }

.code-panel-title {
  margin-left: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.code-panel-body { padding: 1.25rem 1rem; overflow-x: auto; }

.code-panel-body .kw { color: #ff7ab2; }
.code-panel-body .type { color: #79c0ff; }
.code-panel-body .str { color: #a5d6ff; }
.code-panel-body .cm { color: var(--text-muted); }
.code-panel-body .fn { color: #d2a8ff; }

/* ── Sections ── */

section { padding: 5rem 0; }

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

.section-header {
  margin-bottom: 3rem;
  max-width: 40rem;
}

.section-header.center { text-align: center; margin-left: auto; margin-right: auto; }

.section-header p { margin-top: 0.75rem; color: var(--text-secondary); }

/* ── Platform strip ── */

.platform-strip {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.platform-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.platform-list li { display: flex; align-items: center; gap: 0.5rem; }

/* ── Work / Apps ── */

.work-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .work-grid { grid-template-columns: 1fr 1fr; }
}

.work-card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s;
}

.work-card:hover { border-color: var(--border-light); }

.work-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.work-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
}

.work-card-arrow {
  font-size: 0.8125rem;
  color: var(--text-muted);
  transition: color 0.15s;
}

.work-card:hover .work-card-arrow { color: var(--accent); }

.work-card h3 { margin: 0 0 0.5rem; font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }

.work-card p { color: var(--text-secondary); font-size: 0.9375rem; flex: 1; margin: 0 0 1.25rem; }

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.work-tags li {
  font-family: var(--mono);
  font-size: 0.6875rem;
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 0.25rem;
  color: var(--text-muted);
}

/* ── Bento services ── */

.bento {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (min-width: 768px) {
  .bento {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }
  .bento-item.span-2 { grid-column: span 2; }
  .bento-item.tall { grid-row: span 2; }
}

.bento-item {
  background: var(--surface);
  padding: 2rem;
}

.bento-item h3 { margin: 0 0 0.5rem; }

.bento-item p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.bento-num {
  font-family: var(--mono);
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

/* ── Process ── */

.process-list {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}

@media (min-width: 768px) {
  .process-list { grid-template-columns: repeat(4, 1fr); }
}

.process-step {
  padding: 2rem 1.5rem;
  border-bottom: 1px solid var(--border);
  counter-increment: step;
}

@media (min-width: 768px) {
  .process-step {
    border-bottom: none;
    border-right: 1px solid var(--border);
    padding: 2rem;
  }
  .process-step:last-child { border-right: none; }
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.process-step h3 { margin-bottom: 0.5rem; }

.process-step p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── Stack ── */

.stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(9rem, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stack-item {
  background: var(--surface);
  padding: 1.25rem 1rem;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.stack-item span {
  display: block;
  font-family: var(--mono);
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  font-weight: 400;
}

/* ── Principles ── */

.principles-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .principles-grid { grid-template-columns: repeat(3, 1fr); }
}

.principle h3 {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 400;
  margin: 0 0 0.75rem;
}

.principle p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── About ── */

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1.2fr 1fr; }
}

.about-facts {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-fact {
  background: var(--surface);
  padding: 1.25rem 1.5rem;
}

.about-fact dt {
  font-size: 0.75rem;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.about-fact dd {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text);
}

/* ── Contact ── */

.contact-grid {
  display: grid;
  gap: 2rem;
}

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

.contact-card {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.contact-card dt {
  font-size: 0.75rem;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 0.375rem;
}

.contact-card dd { margin: 0; }

.contact-card a { color: var(--accent); }
.contact-card a:hover { text-decoration: underline; }

/* ── CTA band ── */

.cta-band {
  padding: 4rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-band-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .cta-band-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cta-band h2 { margin: 0; font-size: clamp(1.5rem, 3vw, 2rem); }

.cta-band p { margin: 0.375rem 0 0; color: var(--text-secondary); font-size: 0.9375rem; }

/* ── Footer ── */

.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand p {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 18rem;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin: 0 0 1rem;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li { margin-bottom: 0.5rem; }

.footer-col a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color 0.15s;
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-muted);
}

@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ── Page layouts (support, privacy, app pages) ── */

.page-hero {
  padding-top: calc(var(--nav-height) + 3rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 { margin: 0 0 0.75rem; font-size: clamp(2rem, 5vw, 3rem); }

.page-content {
  padding: 3rem 0 5rem;
  max-width: 42rem;
}

.page-content.wide { max-width: var(--max-width); }

.content-card {
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}

.content-card h2 { font-family: var(--sans); font-size: 1.125rem; font-weight: 600; margin: 0 0 0.75rem; }

.content-card p { margin: 0 0 1rem; color: var(--text-secondary); font-size: 0.9375rem; }
.content-card p:last-child { margin-bottom: 0; }

.faq-list { display: grid; gap: 1.5rem; }

.faq-item h3 { margin: 0 0 0.375rem; font-size: 0.9375rem; }
.faq-item p { margin: 0; font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; }
.faq-item a { color: var(--accent); }

.prose section { margin-bottom: 2.5rem; }
.prose h2 { font-family: var(--sans); font-size: 1.125rem; font-weight: 600; margin: 0 0 0.75rem; }
.prose p, .prose li { color: var(--text-secondary); font-size: 0.9375rem; line-height: 1.7; }
.prose ul { padding-left: 1.25rem; margin: 0.75rem 0; }
.prose li { margin-bottom: 0.375rem; }
.prose a { color: var(--accent); }
.prose strong { color: var(--text); font-weight: 600; }

.feature-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-item {
  background: var(--surface);
  padding: 1.75rem;
}

.feature-item h3 { margin: 0 0 0.375rem; font-size: 0.9375rem; }
.feature-item p { margin: 0; font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }

.app-hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }

.link-arrow {
  font-size: 0.8125rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.link-arrow:hover { text-decoration: underline; }

.two-col-cards {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .two-col-cards { grid-template-columns: 1fr 1fr; }
}

/* ── Reveal animation ── */

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

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

/* ── Utilities ── */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hidden { display: none !important; }

@media (min-width: 640px) {
  .sm\:inline-flex { display: inline-flex !important; }
}

/* ── Product media ── */

.media-section { margin-top: 3rem; }

.media-section > h2 {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
}

.media-section > .lead-sm {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin: 0 0 1.5rem;
  max-width: 36rem;
}

.demo-reel {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  aspect-ratio: 9 / 16;
  max-width: 22rem;
  margin: 0 auto 2rem;
}

.demo-reel.wide {
  aspect-ratio: 16 / 9;
  max-width: 52rem;
}

.demo-reel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.demo-reel img.is-active { opacity: 1; }

.demo-reel-chrome {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  font-size: 0.75rem;
  color: #fff;
}

.demo-reel-chrome button {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  background: rgba(0,0,0,0.35);
}

.demo-reel-chrome button:hover { background: rgba(255,255,255,0.12); }

.shot-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .shot-grid.phone { grid-template-columns: repeat(3, 1fr); }
  .shot-grid.desktop { grid-template-columns: 1fr; }
}

.shot-card {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}

.shot-card img {
  width: 100%;
  height: auto;
  display: block;
}

.shot-card figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

.phone-frame {
  max-width: 18rem;
  margin: 0 auto;
  border: 1px solid var(--border-light);
  border-radius: 1.5rem;
  padding: 0.5rem;
  background: #111;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.phone-frame img {
  border-radius: 1.1rem;
  width: 100%;
  display: block;
}

.window-frame {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}

.window-frame-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}

.window-frame-bar span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--border-light);
}

.window-frame-bar span:nth-child(1) { background: #ff5f57; }
.window-frame-bar span:nth-child(2) { background: #febc2e; }
.window-frame-bar span:nth-child(3) { background: #28c840; }

.window-frame img { width: 100%; display: block; }

.product-hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 960px) {
  .product-hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

.org-banner {
  display: grid;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .org-banner {
    grid-template-columns: repeat(4, 1fr);
  }
}

.org-banner dt {
  font-family: var(--mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.org-banner dd {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text);
}

.legal-name {
  font-family: var(--mono);
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.apps-list {
  display: grid;
  gap: 1.5rem;
}

.app-row {
  display: grid;
  gap: 1.25rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

@media (min-width: 768px) {
  .app-row {
    grid-template-columns: 8rem 1fr auto;
    align-items: center;
  }
}

.app-row img {
  width: 100%;
  max-width: 8rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.app-row h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 0.35rem;
}

.app-row p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
}

.btn[aria-disabled="true"] {
  opacity: 0.7;
  cursor: default;
  pointer-events: none;
}
