:root {
  --bg: #0f0f10;
  --bg2: #151517;
  --surface: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f2f2f2;
  --muted: rgba(242, 242, 242, 0.72);
  --muted2: rgba(242, 242, 242, 0.58);
  --gold: #d4af37;
  --gold2: #c9a44c;
  --cyan: #3fd6ff;
  --ember: #ff7a18;
  --font-head: "Cinzel", serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --radius: 22px;
  --radius2: 28px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
  --max: 1160px;
  --ease: cubic-bezier(.2, .9, .2, 1);
  --navH: 84px;
  --section-gap: clamp(14px, 2.2vw, 26px);
  --box-gap: clamp(14px, 1.8vw, 22px);
}

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

html, body { height: 100%; overflow-x: hidden; }

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  background:
    radial-gradient(900px 600px at 18% -10%, rgba(63, 214, 255, 0.08), transparent 60%),
    radial-gradient(1000px 650px at 110% 0%, rgba(255, 122, 24, 0.06), transparent 55%),
    radial-gradient(900px 600px at 55% 125%, rgba(212, 175, 55, 0.1), transparent 62%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: var(--navH);
  padding-bottom: 60px;
}

img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold); }

sup {
  font-size: 0.52em;
  line-height: 0;
  vertical-align: super;
}

.tagline-tm {
  font-size: 0.42em;
  line-height: 0;
  vertical-align: super;
}

.brand-tm {
  font-size: 0.44em;
  line-height: 0;
  vertical-align: super;
}

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

header.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navH);
  z-index: 9999;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: linear-gradient(to bottom, rgba(15, 15, 16, 0.88), rgba(15, 15, 16, 0.62));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 10px;
  border-radius: 16px;
  flex-shrink: 0;
  transition: transform .18s var(--ease), background .18s var(--ease);
}

.brand:hover { transform: translateY(-1px); background: rgba(255, 255, 255, 0.03); }

.brand img {
  height: 56px;
  width: 56px;
  padding: 0;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 6px;
  filter: drop-shadow(0 0 14px rgba(212, 175, 55, 0.22));
}

.brand .t {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand .t b {
  font-family: var(--font-head);
  letter-spacing: .03em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
}

.brand .t span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .07em;
  color: var(--muted2);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(242, 242, 242, 0.88);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.nav-links::-webkit-scrollbar { display: none; }

.nav-links a {
  white-space: nowrap;
  flex-shrink: 0;
  padding: 8px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color .16s var(--ease), background .16s var(--ease), box-shadow .16s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  border-color: rgba(212, 175, 55, 0.35);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.32);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle svg {
  width: 18px;
  height: 18px;
  stroke: var(--text);
  stroke-width: 2;
  fill: none;
}

.nav-drawer {
  display: none;
  position: fixed;
  top: var(--navH);
  left: 0;
  right: 0;
  z-index: 9998;
  background: rgba(15, 15, 16, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 22px 20px;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-8px);
  opacity: 0;
  transition: opacity .22s var(--ease), transform .22s var(--ease);
  pointer-events: none;
}

.nav-drawer.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-drawer a {
  display: block;
  padding: 13px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

main { padding: 28px 0; }

main > section {
  margin: 0;
}

main > section + section {
  margin-top: var(--section-gap);
}

.page-hero {
  padding: 20px 0 12px;
}

.page-hero h1 {
  margin: 0 0 6px;
  font-family: var(--font-head);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 27px;
  line-height: 1.15;
}

.page-hero h1.avatar-title {
  font-size: 27px;
}

.page-hero p {
  margin: 0;
  color: rgba(242, 242, 242, 0.86);
  max-width: 65ch;
}

.hero-home { padding: 44px 0 20px; }

.hero-main { padding: 34px; }

.seal-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.seal {
  height: 88px;
  width: 88px;
  padding: 0;
  border-radius: 16px;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.3));
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
  color: rgba(242, 242, 242, 0.88);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
}

.hero-home h1 {
  margin: 0 0 12px;
  font-family: var(--font-head);
  letter-spacing: .015em;
  text-transform: uppercase;
  font-size: clamp(8px, 1.8vw, 17px);
  font-weight: 600;
  line-height: 1.18;
  white-space: nowrap;
}

.tagline {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 600;
  margin: 12px 0 16px;
}

.hero-code {
  margin-top: 18px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.28);
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(242, 242, 242, 0.85);
  overflow-x: auto;
  white-space: nowrap;
}

.hero-side {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.side-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.hero-side-title {
  font-weight: 750;
  margin-top: 6px;
}

.hero-side-copy {
  margin-top: 6px;
  font-size: 14px;
  color: rgba(242, 242, 242, 0.72);
}

.pillgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.pill {
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pill b {
  display: block;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 12px;
}

.pill span {
  color: rgba(242, 242, 242, 0.86);
  font-size: 13px;
}

.founder-card {
  margin-top: 6px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.founder-shot {
  aspect-ratio: 16 / 9;
  min-height: 0;
  background: #050607;
  display: block;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.founder-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.founder-shot .label {
  position: relative;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(242, 242, 242, 0.85);
}

.founder-text {
  padding: 14px 14px 16px;
  color: rgba(242, 242, 242, 0.85);
  font-size: 14px;
}

.card {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(820px 360px at 12% 12%, rgba(212, 175, 55, 0.18), transparent 62%),
    radial-gradient(740px 320px at 80% 0%, rgba(63, 214, 255, 0.1), transparent 60%),
    radial-gradient(680px 280px at 52% 0%, rgba(212, 175, 55, 0.12), transparent 65%);
  opacity: .85;
  pointer-events: none;
}

.card > * { position: relative; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--box-gap);
}

.panel { padding: clamp(20px, 2vw, 26px); }

.kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted2);
}

.lede {
  margin: 0;
  max-width: 58ch;
  color: rgba(242, 242, 242, 0.82);
  font-size: 16px;
  line-height: 1.7;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 15px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.22);
  font-weight: 650;
}

.btn.primary {
  border-color: rgba(212, 175, 55, 0.35);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(201, 164, 76, 0.08));
}

.btn .mono {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(242, 242, 242, 0.72);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--box-gap);
}

.tile {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: clamp(18px, 1.7vw, 22px);
}

.tile h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.tile p {
  margin: 0;
  color: rgba(242, 242, 242, 0.84);
  font-size: 14px;
}

.service-card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.22);
  padding: clamp(18px, 1.7vw, 22px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.34);
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.22), rgba(63, 214, 255, 0.08));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f5d781;
}

.service-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.service-card h3 {
  margin: 0;
  font-size: 21px;
}

.service-card p {
  margin: 0;
  color: rgba(242, 242, 242, 0.86);
}

.service-cta {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.22), rgba(201, 164, 76, 0.1));
  font-weight: 700;
}

.stack { display: grid; gap: 14px; }

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

.list li {
  padding: 13px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.list li span { font-size: 14px; color: rgba(242, 242, 242, 0.85); }
.list li em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted2);
  white-space: nowrap;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--box-gap);
}

label {
  display: block;
  font-size: 13px;
  margin: 0 0 6px;
  color: rgba(242, 242, 242, 0.85);
}

input, textarea {
  width: 100%;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  color: var(--text);
  outline: none;
  font-family: var(--font-body);
}

textarea { min-height: 120px; resize: vertical; }

.footer {
  margin-top: 26px;
  padding: 28px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(242, 242, 242, 0.72);
  font-size: 13px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social a {
  padding: 9px 11px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.contact-note {
  color: var(--muted2);
  font-size: 14px;
}

.ai-home-panel h2,
.ai-content-block h2 {
  margin: 0;
  font-family: var(--font-head);
  letter-spacing: .03em;
  text-transform: uppercase;
  font-size: clamp(23px, 2.6vw, 31px);
  line-height: 1.16;
}

.ai-subnav {
  margin-bottom: 0;
}

.ai-subnav .panel {
  display: grid;
  gap: 14px;
}

.ai-subnav-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ai-subnav-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 13px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.22);
  font-weight: 600;
  font-size: 13px;
}

.ai-subnav-row a:hover,
.ai-subnav-row a.active {
  border-color: rgba(212, 175, 55, 0.38);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.32);
}

.ai-content-block {
  max-width: 94ch;
}

.ai-philosophy {
  font-family: var(--font-mono);
  font-size: clamp(14px, 1.8vw, 17px);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(242, 242, 242, 0.96);
}

.ai-bullet-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.ai-bullet-list li {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  color: rgba(242, 242, 242, 0.88);
}

.diagram-title {
  margin: 0;
}

.architecture-diagram {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.diagram-node,
.diagram-result {
  padding: 14px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.diagram-result {
  border-color: rgba(212, 175, 55, 0.34);
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.18), rgba(63, 214, 255, 0.08));
}

.diagram-operator {
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--gold);
  line-height: 1;
}

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

.module-list li {
  padding: 13px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.module-list li span {
  font-size: 14px;
  color: rgba(242, 242, 242, 0.9);
}

.module-list li em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted2);
  white-space: nowrap;
}

.module-card-title {
  margin: 8px 0 8px;
  font-size: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .grid-3,
  .contact-grid { grid-template-columns: 1fr; }

  .hero-main { padding: 26px; }
}

@media (max-width: 600px) {
  :root { --navH: 68px; }
  .wrap { padding: 0 16px; }
  .nav-toggle { display: flex; }
  .nav-links { display: none; }
  .nav-drawer { display: flex; }
  .brand .t span { display: none; }
  .brand .t b { font-size: 13px; }
  .brand img { height: 46px !important; width: 46px !important; min-width: 46px !important; min-height: 46px !important; padding: 0; object-fit: contain; object-position: center; }
  .hero-home {
    padding: 20px 0 14px;
    text-align: center;
  }
  .hero-main { padding: 20px; }
  .seal-row { justify-content: center; }
  .cta-row { justify-content: center; }
  .hero-home h1 {
    white-space: nowrap;
  }
  .pillgrid { gap: 8px; }
  .pill { padding: 9px 10px; }
  .list li { flex-direction: column; gap: 4px; padding: 12px; }
  .list li em { white-space: normal; }
  .module-list li { flex-direction: column; gap: 4px; padding: 12px; }
  .module-list li em { white-space: normal; }
  .ai-subnav-row { justify-content: center; }
  .ai-subnav-row a { width: 100%; }
  .architecture-diagram {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .diagram-operator {
    justify-self: center;
  }
  .footer-row { flex-direction: column; text-align: center; }
}

.founder-shot .rack-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #050607;
  z-index: 1;
}

.founder-shot .rack-mobile-poster {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
}

.founder-shot .label {
  z-index: 3;
}

@media (max-width: 600px) {
  .founder-shot { aspect-ratio: 16 / 9; }
}

@media (max-width: 1024px), (hover: none) and (pointer: coarse) {
  .founder-shot .rack-video { display: none !important; }
  .founder-shot .rack-mobile-poster { display: block; }
}

.stage-grid {
  margin-top: clamp(18px, 2.2vw, 32px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  align-items: stretch;
}

.stage-box {
  min-height: 100%;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.28));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.stage-box::before {
  opacity: 0.65;
}

.stage-box .panel {
  padding: 22px;
  display: grid;
  gap: 10px;
}

.stage-box h3 {
  margin: 0;
  font-size: 27px;
  line-height: 1.16;
}

.stage-box .stage-sub {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.stage-box p {
  margin: 0;
  color: rgba(242, 242, 242, 0.86);
  font-size: 14px;
  line-height: 1.56;
}

.stage-box .stage-emph {
  color: rgba(242, 242, 242, 0.96);
  font-weight: 650;
}

.stage-box .stage-tagline {
  margin-top: 4px;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  color: rgba(242, 242, 242, 0.92);
}
@media (max-width: 980px) {
  .stage-grid { grid-template-columns: 1fr; }
  .stage-box h3 { font-size: 24px; }
}
@media (max-width: 600px) {
  .stage-box .panel { padding: 18px; }
}


/* === Studio Virtus refinement pass: typography + spacing === */

/* More deliberate vertical rhythm for stacked content blocks */
.panel.stack {
  gap: 18px;
}

/* Tighten heading rhythm inside content panels */
.panel.stack h1,
.panel.stack h2,
.panel.stack h3 {
  margin: 0 0 8px;
  line-height: 1.18;
}

/* Remove oversized paragraph gaps in About / text-heavy sections */
.panel.stack p {
  margin: 0;
  max-width: 72ch;
  color: rgba(242, 242, 242, 0.86);
  line-height: 1.68;
}

/* Keep utility text from introducing extra space */
.panel.stack .tagline,
.panel.stack .lede,
.panel.stack .kicker {
  margin: 0;
}

/* Slightly better rhythm between standalone paragraphs in stacked panels */
.panel.stack p + p {
  margin-top: 2px;
}

/* About page polish: heading should feel strong but not oversized */
.panel.stack > h1:first-child,
.panel.stack > h2:first-child {
  margin-bottom: 14px;
}

/* Improve readability on long-form copy blocks */
.panel.stack strong {
  color: rgba(242, 242, 242, 0.96);
}

/* Slightly reduce wide empty feeling on larger cards */
.panel.stack {
  align-content: start;
}

/* Mobile rhythm for text-heavy panels */
@media (max-width: 600px) {
  .panel.stack {
    gap: 14px;
  }

  .panel.stack h1,
  .panel.stack h2,
  .panel.stack h3 {
    margin: 0 0 6px;
  }

  .panel.stack p {
    max-width: 100%;
    line-height: 1.62;
  }
}
