:root {
  color-scheme: dark;
  --bg: #050607;
  --surface: #0b0f12;
  --surface-2: #10161a;
  --surface-3: #121b20;
  --line: #243038;
  --line-soft: rgba(255, 255, 255, 0.07);
  --text: #eef6f3;
  --muted: #92a0a4;
  --accent: #7cf7d4;
  --blue: #82aaff;
  --gold: #d7bf78;
  --danger: #ff9f9f;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.5);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(124, 247, 212, 0.06), transparent 360px),
    radial-gradient(circle at 84% 12%, rgba(130, 170, 255, 0.08), transparent 260px),
    var(--bg);
  color: var(--text);
}

body.update-locked {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
  min-width: 0;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 14px clamp(16px, 4vw, 48px);
  border-bottom: 1px solid rgba(36, 48, 56, 0.86);
  background: rgba(5, 6, 7, 0.84);
  backdrop-filter: blur(18px);
}

.menu-button,
.modal-close {
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.menu-button {
  width: 44px;
  height: 44px;
  gap: 4px;
  padding: 12px;
}

.menu-button span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  min-width: 0;
}

.brand > span {
  min-width: 0;
}

.brand-mark,
.project-token {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #25534c;
  border-radius: 8px;
  background: #020303;
  color: var(--accent);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.12;
}

.brand small,
.topnav a,
p,
dt,
.release-panel span {
  color: var(--muted);
}

.topnav {
  display: flex;
  gap: 6px;
}

.topnav a,
.account-pill,
.ghost-button {
  min-height: 38px;
  border-radius: 8px;
  font-weight: 800;
}

.topnav a {
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
}

.topnav a:hover,
.account-pill:hover,
.ghost-button:hover,
.menu-button:hover,
.modal-close:hover {
  background: var(--surface-2);
  color: var(--text);
}

.account-pill,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.account-pill {
  max-width: 230px;
  padding: 0 12px;
}

.account-pill span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 999px;
  background: var(--gold);
}

.account-pill.is-signed .account-dot {
  background: var(--accent);
}

.menu-scrim {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  background: rgba(2, 3, 3, 0.64);
  backdrop-filter: blur(10px);
}

.menu-scrim.is-open {
  display: block;
}

.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 31;
  width: min(360px, calc(100% - 26px));
  height: 100%;
  padding: 16px;
  border-right: 1px solid var(--line);
  background: rgba(7, 10, 12, 0.96);
  box-shadow: var(--shadow);
  transform: translateX(-104%);
  transition: transform 180ms ease;
  overflow-y: auto;
}

.side-menu.is-open {
  transform: translateX(0);
}

.side-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.side-head div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-section {
  display: grid;
  gap: 8px;
  padding: 16px 0;
  border-top: 1px solid var(--line-soft);
}

.menu-section > span {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-section p {
  margin: 0;
}

.menu-status {
  min-height: 20px;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 800;
}

.menu-section a,
.menu-action {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.028);
  color: var(--text);
  font-weight: 850;
}

.menu-action {
  justify-content: center;
}

.menu-action.is-quiet {
  color: var(--muted);
}

.menu-section a:hover,
.menu-action:hover {
  border-color: #4b6a64;
  background: var(--surface-2);
}

.account-switcher {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.86rem;
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 54px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(290px, 0.72fr);
  gap: 16px;
  align-items: stretch;
  padding: clamp(22px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(124, 247, 212, 0.09), rgba(130, 170, 255, 0.035)),
    var(--surface);
  box-shadow: var(--shadow);
}

.hero-copy {
  display: grid;
  align-content: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 16px;
  font-size: clamp(2.3rem, 4.6vw, 4.7rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 2.8vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

p {
  line-height: 1.65;
}

.hero-copy p:not(.eyebrow) {
  max-width: 680px;
  font-size: 1.02rem;
}

.hero-actions,
.card-actions,
.access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
}

.primary-button {
  background: var(--text);
  color: #020303;
}

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

.secondary-button {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.secondary-button:hover {
  border-color: #4b6a64;
}

.release-panel,
.project-card,
.download-card,
.access-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(11, 15, 18, 0.84);
}

.release-panel {
  display: grid;
  align-content: center;
  gap: 0;
  padding: 18px;
}

.release-panel div,
.metric-row,
dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
}

.release-panel div:first-child {
  border-top: 0;
}

.release-panel strong,
.metric-row strong,
dd {
  text-align: right;
}

.project-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 16px;
  margin-top: 18px;
}

.project-card,
.download-card,
.access-section {
  padding: clamp(18px, 3vw, 28px);
}

.is-featured {
  background:
    linear-gradient(135deg, rgba(124, 247, 212, 0.1), rgba(255, 255, 255, 0.02)),
    var(--surface);
}

.radar-card {
  background:
    linear-gradient(135deg, rgba(124, 247, 212, 0.13), rgba(130, 170, 255, 0.07)),
    var(--surface);
}

.muted-card {
  background:
    linear-gradient(135deg, rgba(130, 170, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--surface);
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.status-live,
.status-build {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 8px;
  font-weight: 900;
}

.status-live {
  background: rgba(124, 247, 212, 0.12);
  color: var(--accent);
}

.status-build {
  background: rgba(215, 191, 120, 0.12);
  color: var(--gold);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0 0;
}

.feature-list span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #080c0f;
  color: #dce8e6;
}

.access-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.58fr);
  gap: 18px;
  align-items: center;
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 22, 26, 0.7);
}

.access-card {
  padding: 18px;
}

.access-state {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 900;
}

.access-card.is-ready .access-state {
  color: var(--accent);
}

.access-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.ghost-button {
  padding: 0 14px;
}

.downloads {
  margin-top: 34px;
}

.download-card + .download-card {
  margin-top: 16px;
}

.section-head {
  max-width: 680px;
}

.download-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 18px;
  align-items: center;
}

dl {
  display: grid;
  gap: 0;
  margin: 0;
}

dt {
  min-width: 90px;
}

dd {
  margin: 0;
  color: var(--text);
  font-weight: 850;
  word-break: break-word;
}

.access-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(2, 3, 3, 0.72);
  backdrop-filter: blur(18px);
}

.access-modal.is-open {
  display: flex;
}

.modal-card {
  position: relative;
  width: min(440px, 100%);
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0a0f12;
  box-shadow: var(--shadow);
}

.modal-close {
  width: 36px;
  height: 36px;
  font-size: 1.4rem;
}

.modal-card > .modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin: 16px 0;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.028);
}

.auth-tabs button {
  min-height: 38px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
}

.auth-tabs button.is-active {
  background: var(--text);
  color: #020303;
}

form {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 7px;
  color: #d8e4e1;
  font-weight: 800;
}

[data-register-field].is-hidden {
  display: none;
}

input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050809;
  color: var(--text);
  padding: 0 12px;
  outline: none;
}

select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050809;
  color: var(--text);
  padding: 0 12px;
  outline: none;
}

textarea {
  width: 100%;
  min-height: 82px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050809;
  color: var(--text);
  padding: 12px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #4b6a64;
  box-shadow: 0 0 0 3px rgba(124, 247, 212, 0.08);
}

.admin-only {
  display: none;
}

.is-admin .admin-only {
  display: flex;
}

.site-update {
  margin-bottom: 16px;
  padding: 18px;
  border: 1px solid rgba(124, 247, 212, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(124, 247, 212, 0.12), rgba(130, 170, 255, 0.05)), var(--surface);
}

.site-update span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-update strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.15rem;
}

.site-update p {
  margin-bottom: 0;
}

.personal-update {
  border-color: rgba(215, 191, 120, 0.28);
}

.personal-update span {
  color: var(--gold);
}

.update-modal {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 10%, rgba(124, 247, 212, 0.14), transparent 300px),
    rgba(2, 3, 3, 0.78);
  backdrop-filter: blur(18px);
}

.update-modal.is-open {
  display: flex;
}

.update-card {
  display: grid;
  grid-template-columns: minmax(160px, 0.42fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 34px);
  width: min(860px, 100%);
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(124, 247, 212, 0.26);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(124, 247, 212, 0.12), rgba(130, 170, 255, 0.055)),
    #080d10;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.66);
}

.update-visual {
  display: grid;
  min-height: 260px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(124, 247, 212, 0.12), rgba(255, 255, 255, 0.025)),
    #050809;
}

.update-visual span {
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border: 1px solid rgba(124, 247, 212, 0.34);
  border-radius: 20px;
  background: #020303;
  color: var(--accent);
  font-size: 3.8rem;
  font-weight: 950;
}

.update-copy {
  display: grid;
  align-content: center;
}

.update-copy h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

.update-copy p:not(.eyebrow) {
  font-size: 1.04rem;
}

.update-meta {
  margin: 8px 0 4px;
}

.update-meta div {
  border-color: rgba(255, 255, 255, 0.09);
}

.update-lock-note {
  margin: 8px 0 0;
  padding: 12px;
  border: 1px solid rgba(215, 191, 120, 0.24);
  border-radius: 8px;
  background: rgba(215, 191, 120, 0.08);
  color: #e5d49a;
  font-weight: 850;
}

.update-modal.is-locked [data-close-update],
.update-modal.is-locked [data-close-update-link] {
  opacity: 0.58;
  pointer-events: none;
}

.jarvis-launcher {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 24;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 6px 14px 6px 6px;
  border: 1px solid rgba(124, 247, 212, 0.28);
  border-radius: 999px;
  background: rgba(7, 12, 14, 0.9);
  color: var(--text);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
}

.is-admin .jarvis-launcher,
body.update-locked .jarvis-launcher {
  display: none;
}

.jarvis-launcher span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: #020303;
  font-weight: 950;
}

.jarvis-panel {
  position: fixed;
  inset: 0;
  z-index: 42;
  display: none;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 18px;
  background: rgba(2, 3, 3, 0.34);
  backdrop-filter: blur(8px);
}

.jarvis-panel.is-open {
  display: flex;
}

.jarvis-card {
  position: relative;
  display: grid;
  gap: 12px;
  width: min(420px, 100%);
  max-height: min(680px, calc(100vh - 36px));
  padding: 22px;
  border: 1px solid rgba(124, 247, 212, 0.28);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(124, 247, 212, 0.1), rgba(130, 170, 255, 0.05)), #080d10;
  box-shadow: var(--shadow);
}

.jarvis-card h2 {
  margin-bottom: 0;
  font-size: 1.8rem;
}

.jarvis-log {
  display: grid;
  gap: 8px;
  max-height: 280px;
  overflow-y: auto;
}

.jarvis-log article {
  padding: 12px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.028);
}

.jarvis-log strong {
  display: block;
  margin-bottom: 4px;
  color: var(--accent);
}

.jarvis-log p {
  margin-bottom: 0;
  white-space: pre-line;
}

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

.jarvis-chips button {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-weight: 850;
}

.jarvis-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.jarvis-form .primary-button {
  min-height: 46px;
}

.report-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 18px;
  align-items: start;
  margin-top: 16px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 22, 26, 0.7);
}

.report-form {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(11, 15, 18, 0.84);
}

.admin-panel {
  position: fixed;
  inset: 0;
  z-index: 60;
  overflow-y: auto;
  padding: clamp(14px, 3vw, 28px);
  background:
    linear-gradient(180deg, rgba(124, 247, 212, 0.08), transparent 320px),
    #050607;
}

.admin-shell {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.admin-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(11, 15, 18, 0.9);
}

.admin-head h2 {
  margin-bottom: 0;
}

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

.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.admin-stats article,
.admin-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(11, 15, 18, 0.9);
}

.admin-stats article {
  padding: 16px;
}

.admin-stats span {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.admin-stats strong {
  display: block;
  margin-top: 8px;
  font-size: 2rem;
}

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

.admin-card {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 18px;
}

.admin-card h3 {
  margin-bottom: 0;
}

.switch-row {
  display: inline-flex;
  grid-auto-flow: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.switch-row input {
  width: 18px;
  min-height: 18px;
}

.admin-list {
  display: grid;
  gap: 10px;
  max-height: 460px;
  overflow-y: auto;
}

.admin-item {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.admin-item-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.admin-item strong,
.admin-item span {
  word-break: break-word;
}

.admin-item small {
  color: var(--muted);
}

.admin-item-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-button {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-weight: 850;
}

.mini-button:hover {
  border-color: #4b6a64;
}

.mini-button.is-danger {
  color: var(--danger);
}

.empty-state {
  margin: 0;
  padding: 12px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
}

.support-reply-box {
  display: grid;
  gap: 8px;
}

.support-reply-box textarea {
  min-height: 76px;
}

.transfer-box {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}

.transfer-box strong {
  font-size: 1rem;
}

.transfer-box p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.form-note,
.form-error {
  margin: 0;
  font-size: 0.86rem;
}

.form-error {
  min-height: 22px;
  color: var(--danger);
  font-weight: 800;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 900px) {
  .topbar {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .topnav {
    display: none;
  }

  .hero,
  .project-grid,
  .access-section,
  .download-card,
  .report-section,
  .admin-grid,
  .update-card {
    grid-template-columns: 1fr;
  }

  .admin-head,
  .admin-stats {
    grid-template-columns: 1fr;
  }

  .admin-head {
    display: grid;
  }

  .update-visual {
    min-height: 170px;
  }
}

@media (max-width: 560px) {
  main {
    width: min(100% - 24px, 1180px);
    padding-top: 22px;
  }

  .topbar {
    gap: 10px;
    padding-inline: 12px;
  }

  .brand small {
    display: none;
  }

  .brand {
    width: auto;
  }

  .brand strong {
    overflow-wrap: anywhere;
  }

  .brand-mark,
  .project-token {
    width: 38px;
    height: 38px;
  }

  .account-pill {
    max-width: 118px;
  }

  h1 {
    font-size: 2.45rem;
  }

  .primary-button,
  .secondary-button,
  .ghost-button {
    width: 100%;
  }

  .hero-actions,
  .card-actions,
  .access-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .project-card,
  .download-card,
  .access-section,
  .report-section {
    padding: 18px;
  }

  .download-card {
    gap: 14px;
  }

  .jarvis-panel {
    align-items: stretch;
  }

  .jarvis-card {
    align-self: end;
  }

  .jarvis-form {
    grid-template-columns: 1fr;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .release-panel div,
  .metric-row,
  dl div {
    display: grid;
    gap: 6px;
  }

  .release-panel strong,
  .metric-row strong,
  dd {
    text-align: left;
  }

  footer {
    flex-direction: column;
  }
}
