@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@500;600&family=Space+Grotesk:wght@400;500;600&display=swap');

:root {
  --bg: #030a16;
  --surface: rgba(5, 14, 25, 0.85);
  --surface-strong: rgba(9, 17, 31, 0.92);
  --glass-border: rgba(255, 255, 255, 0.1);
  --primary: #f97316;
  --primary-dark: #c2410c;
  --secondary: #0ea5e9;
  --text: #f8fafc;
  --muted: #9ca3af;
  --success: #14b8a6;
  --warning: #facc15;
  --danger: #f87171;
  --citizenid-midnight: #0b1428;
  --citizenid-iris: #1d2f56;
  --citizenid-cyan: #58e0ff;
  font-family: 'Space Grotesk', 'Chakra Petch', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at 20% 20%, rgba(14, 165, 233, 0.22), transparent 38%),
    radial-gradient(circle at 85% 0%, rgba(249, 115, 22, 0.28), transparent 42%),
    #01050d;
  color: var(--text);
}

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

.background-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 30% 20%, rgba(14, 165, 233, 0.18), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(249, 115, 22, 0.25), transparent 45%);
  filter: blur(80px);
  opacity: 0.8;
}

.glass {
  background: var(--surface);
  backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
}

.site-header {
  width: min(90vw, 1200px);
  margin: clamp(1.5rem, 5vw, 3.5rem) auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  border-radius: 24px;
  background: rgba(3, 8, 20, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 40px rgba(1, 5, 13, 0.7);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: url('/images/icon-only.png') center/cover no-repeat;
}

.brand-label {
  margin: 0;
  font-family: 'Chakra Petch', 'Space Grotesk', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.primary-nav {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.primary-nav a {
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.primary-nav a.is-active,
.primary-nav a[data-spa-target]:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.primary-nav .privacy-link {
  border-color: rgba(255, 255, 255, 0.08);
}

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.button {
  background: var(--primary);
  color: white;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.95rem;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.35);
  background: var(--primary-dark);
  text-decoration: none;
}

.button.ghost {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text);
  box-shadow: none;
}

.button.citizenid-button {
  background: linear-gradient(130deg, var(--citizenid-midnight), var(--citizenid-iris) 60%, #264078);
  border: 1px solid rgba(88, 224, 255, 0.45);
  box-shadow: 0 15px 35px rgba(4, 10, 24, 0.65);
  letter-spacing: 0.02em;
  text-transform: none;
  gap: 0.6rem;
  padding-inline: 1.35rem 1.5rem;
}

.button.citizenid-button::before {
  content: '';
  width: 26px;
  height: 26px;
  background: url('https://citizenid.space/assets/prod/citizenid-icon-light.png') center/contain no-repeat;
  filter: drop-shadow(0 2px 6px rgba(88, 224, 255, 0.45));
  flex-shrink: 0;
}

.button.citizenid-button:hover {
  background: linear-gradient(130deg, #132441, #1b3260 70%, #2c4c94);
  box-shadow: 0 18px 40px rgba(5, 12, 32, 0.85);
}

main {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 4rem);
}

.app-shell {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.site-footer {
  width: min(90vw, 1200px);
  margin: 1.25rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-link {
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

.glass-card {
  width: min(90vw, 1200px);
  min-height: 70vh;
  border-radius: 32px;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(4, 10, 24, 0.95), rgba(10, 21, 38, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 40px 70px rgba(1, 5, 18, 0.75);
  backdrop-filter: blur(30px);
}

.intro-grid {
  width: min(90vw, 1200px);
  margin: 0 auto 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 1.5rem;
}

.panel {
  width: 100%;
  border-radius: 32px;
  padding: 2.25rem;
  background: linear-gradient(135deg, rgba(4, 10, 24, 0.9), rgba(9, 17, 31, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 60px rgba(1, 5, 18, 0.65);
  backdrop-filter: blur(24px);
}

.consent-panel {
  width: min(90vw, 780px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.consent-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.client-lockup {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.client-logo {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 23, 42, 0.6);
  object-fit: cover;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.35);
}

.client-logo.placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
}

.consent-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.consent-chip {
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

.consent-chip.accent {
  background: rgba(14, 165, 233, 0.18);
  border-color: rgba(14, 165, 233, 0.45);
}

.consent-chip.success {
  background: rgba(20, 184, 166, 0.18);
  border-color: rgba(20, 184, 166, 0.45);
}

.consent-chip.neutral {
  background: rgba(148, 163, 184, 0.18);
  border-color: rgba(148, 163, 184, 0.35);
}

.scope-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.25rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
}

.scope-list h2 {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.scope-item {
  border-radius: 20px;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(3, 8, 20, 0.65);
  box-shadow: inset 0 0 20px rgba(1, 5, 18, 0.45);
}

.scope-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.scope-label {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.scope-name {
  margin: 0.2rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.scope-required {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  border: 1px solid rgba(250, 204, 21, 0.5);
  color: var(--warning);
}

.scope-description {
  margin: 0.65rem 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.consent-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.remember-toggle {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.remember-toggle label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.remember-toggle input[type='checkbox'] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  border-radius: 4px;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.consent-actions .button {
  flex: 1 1 200px;
  justify-content: center;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.profile-hero-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.profile-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.profile-identity {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex: 1 1 320px;
}

.profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 23, 42, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--muted);
  background: rgba(148, 163, 184, 0.1);
}

.profile-status-flags {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin: 0.5rem 0;
}

.profile-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.profile-stat {
  border-radius: 18px;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.profile-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.profile-sync-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.profile-sync-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.profile-sync-meta li {
  flex: 1 1 140px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.profile-sync-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.profile-sync-actions form {
  margin: 0;
}

.profile-pledge-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.profile-grid .public-profile-card {
  align-self: stretch;
}

.public-profile-preview {
  margin-top: 1.25rem;
}

.public-ship-grid.compact {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 1rem;
}

.public-ship-grid.compact .public-ship-card {
  flex-direction: column;
}

.public-ship-grid.compact .public-ship-content {
  padding: 1rem 1.1rem 1.25rem;
}

@media (min-width: 1100px) {
  .profile-hero-card,
  .profile-pledge-card {
    grid-column: span 2;
  }
}

.hero-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-card h1 {
  margin: 0.25rem 0 0;
  font-size: clamp(2.1rem, 3.3vw, 3rem);
}

.hero-card .stat-stack {
  width: 100%;
  flex-wrap: wrap;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.session-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.session-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.session-user-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1 1 260px;
}

.session-user-avatar {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 23, 42, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--muted);
}

.session-user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.session-user-name {
  margin: 0.1rem 0 0.2rem;
  font-size: 1.25rem;
}

.impersonation-inline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(20, 24, 38, 0.75);
}

.impersonation-inline form {
  margin: 0;
}

.impersonation-inline strong {
  font-size: 1.05rem;
}

@media (max-width: 640px) {
  .impersonation-inline {
    flex-direction: column;
    align-items: flex-start;
  }

  .impersonation-inline form {
    width: 100%;
  }

  .impersonation-inline .button {
    width: 100%;
    justify-content: center;
  }
}

.session-card .card-session-actions {
  justify-content: space-between;
  width: 100%;
}

.overview-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.overview-card {
  border-radius: 24px;
  background: rgba(8, 16, 30, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.overview-card h2,
.overview-card h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
}

.overview-list,
.overview-metrics {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.overview-list li,
.overview-metrics li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.overview-list li:last-child,
.overview-metrics li:last-child {
  border-bottom: none;
}

.overview-list span,
.overview-metrics span {
  color: var(--muted);
  font-size: 0.85rem;
}

.overview-list.compact li {
  padding: 0.4rem 0.2rem;
  font-size: 0.9rem;
}

.overview-card .button {
  align-self: flex-start;
}

.spa-shell {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  min-height: auto;
}

.spa-shell .spa-nav {
  margin: 0;
  width: 100%;
}

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

.card-header {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.card-header h1 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.card-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

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

.muted.tiny {
  font-size: 0.8rem;
}

.card-badges {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.card-session-actions,
.session-card-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.card-session-actions .button,
.session-card-actions .button {
  padding-inline: 1.1rem;
}

.session-share-button.share-success {
  border-color: rgba(20, 184, 166, 0.45);
  color: var(--success);
}

.badge {
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.badge.outline {
  background: transparent;
  color: var(--muted);
}

.badge.warning {
  border-color: rgba(251, 191, 36, 0.5);
  color: var(--warning);
}

.badge.success {
  border-color: rgba(34, 197, 94, 0.5);
  color: var(--success);
}

.spa-nav {
  margin: 2rem 0;
  padding: 0.4rem;
  border-radius: 999px;
  background: rgba(6, 16, 32, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  gap: 0.4rem;
}

.spa-nav button {
  flex: 1;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  padding: 0.7rem 0.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.spa-nav button.is-active {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.25), rgba(249, 115, 22, 0.3));
  color: var(--text);
  box-shadow: 0 8px 20px rgba(6, 16, 32, 0.6);
}

.page-section {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.page-section.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-stack {
  display: flex;
  gap: 1rem;
  min-width: 220px;
  flex-wrap: nowrap;
}

@media (max-width: 768px) {
  .stat-stack {
    flex-wrap: wrap;
  }

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

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .primary-nav {
    justify-content: flex-start;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

.data-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1rem;
  flex: 1;
  min-width: 140px;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.section-grid article {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 1.25rem;
}

.pledge-category-stack {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pledge-category-card {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 11, 22, 0.55);
  backdrop-filter: blur(18px);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 320px;
}

.category-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.category-scroll {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(2, 6, 23, 0.6);
  max-height: 360px;
  overflow: auto;
}

.category-scroll table {
  margin-top: 0;
}

.category-scroll::-webkit-scrollbar {
  width: 6px;
}

.category-scroll::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.4);
  border-radius: 999px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.linking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 1.25rem;
}

.pledge-title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.actions {
  margin-top: 1rem;
}

.status-chip {
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.85rem;
  border: 1px solid transparent;
}

.status-chip.success {
  border-color: rgba(34, 197, 94, 0.5);
  color: var(--success);
}

.status-chip.warning {
  border-color: rgba(251, 191, 36, 0.5);
  color: var(--warning);
}

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  border: 1px dashed var(--glass-border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.table-wrapper {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  background: rgba(2, 6, 23, 0.6);
}

table {
  width: 100%;
  border-collapse: collapse;
}

table th,
table td {
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

table th {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.callout {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.callout.warning {
  border-color: rgba(248, 113, 113, 0.3);
  color: var(--danger);
}

.callout.danger {
  border-color: rgba(248, 113, 113, 0.5);
  color: var(--danger);
  background: rgba(127, 29, 29, 0.25);
}

.callout.success {
  border-color: rgba(45, 212, 191, 0.4);
  color: var(--success);
}

.impersonation-banner {
  margin: 1rem auto 0;
  max-width: 960px;
  padding: 1rem 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(59, 130, 246, 0.4);
  background: rgba(30, 64, 175, 0.45);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #e0e7ff;
}

.impersonation-banner .button {
  margin: 0;
}

.global-flash {
  max-width: 960px;
  margin: 1rem auto 0;
  padding: 0.85rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.global-flash.success {
  border-color: rgba(34, 197, 94, 0.5);
  color: var(--success);
}

.global-flash.warning {
  border-color: rgba(248, 113, 113, 0.4);
  color: var(--danger);
}

.admin-search {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.admin-search-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.admin-search-row input {
  flex: 1;
}

.admin-results {
  margin-top: 1.5rem;
}

.admin-table {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(2, 6, 23, 0.65);
  overflow: hidden;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.admin-table td form {
  margin: 0;
}

.public-profile-card {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.public-profile-card-header h3 {
  margin: 0.25rem 0;
}

.public-profile-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.slug-input-row {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.6);
}

.slug-prefix {
  padding: 0.65rem 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  text-transform: lowercase;
}

.slug-input-row input {
  flex: 1;
  border: none;
  background: transparent;
  color: #f8fafc;
  padding: 0.65rem 0.75rem;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

.public-profile-card .button {
  align-self: flex-start;
}

.extension-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  flex-wrap: wrap;
}

.extension-info-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.extension-info {
  flex: 1 1 320px;
  min-width: 260px;
}

.extension-info h3 {
  margin-bottom: 0.35rem;
}

.extension-info p {
  margin: 0.25rem 0;
}

.extension-status {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.extension-status.is-success {
  color: var(--success);
}

.extension-status.is-error {
  color: var(--danger);
}

.extension-metrics {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.extension-metrics li {
  flex: 1 1 140px;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(15, 23, 42, 0.35);
}

.extension-actions {
  flex: 0 1 360px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.extension-actions form {
  width: 100%;
}

.extension-actions .button,
.extension-actions form .button {
  width: 100%;
  justify-content: center;
}

.button.danger {
  background: rgba(239, 68, 68, 0.15);
  color: var(--danger);
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.button.danger:hover {
  background: rgba(239, 68, 68, 0.25);
}

.mini-list {
  list-style: none;
  padding: 0;
  margin: 0.35rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.mini-list li {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.hangar-preview {
  margin-top: 1.5rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  background: rgba(3, 10, 20, 0.8);
}

.developer-pills {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  align-items: center;
}

.developer-flash {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.developer-flash .button {
  align-self: flex-start;
}

.developer-credentials {
  display: grid;
  gap: 0.35rem;
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px dashed rgba(148, 163, 184, 0.4);
}

.developer-flash-list {
  list-style: none;
  margin: 0.25rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.developer-flash-list li {
  display: flex;
  gap: 0.4rem;
  align-items: baseline;
}

.developer-app-shell {
  margin-top: 1.75rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1100px) {
  .developer-app-shell {
    grid-template-columns: minmax(320px, 1fr) minmax(0, 1.3fr);
  }
}

.developer-create-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.25rem;
}

.developer-create-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
}

.developer-create-form input,
.developer-create-form textarea,
.tester-add-form input,
.tester-add-form textarea {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 6, 23, 0.75);
  color: var(--text);
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  width: 100%;
}

.developer-apps-panel {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.developer-empty {
  margin-top: 1rem;
  padding: 1.25rem;
  border-radius: 20px;
  border: 1px dashed rgba(148, 163, 184, 0.45);
  background: rgba(2, 6, 23, 0.6);
}

.developer-app-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.developer-app-card {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  background: rgba(4, 7, 18, 0.85);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.developer-app-card header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.environment-chip {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.environment-chip.env-development {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.35);
  color: #bfdbfe;
}

.environment-chip.env-production {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.4);
  color: #a7f3d0;
}

.developer-app-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.85rem;
}

.developer-app-meta code {
  display: inline-block;
  margin-top: 0.35rem;
  font-family: 'Space Grotesk', 'Chakra Petch', monospace;
}

.developer-secret-actions {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.developer-redirects ul {
  list-style: none;
  margin: 0.4rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.developer-redirects li code {
  font-size: 0.85rem;
}

.developer-testers {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 0.9rem;
}

.tester-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.5rem 0;
}

.tester-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.6);
  font-size: 0.9rem;
}

.tester-owner {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #a5b4fc;
}

.tester-remove {
  border: none;
  background: transparent;
  color: rgba(248, 113, 113, 0.9);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0.25rem;
}

.tester-add-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: flex-end;
}

.tester-add-form label {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.tester-add-form button {
  flex: 0 0 auto;
}

.developer-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.75rem;
  padding: 2.4rem;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top left, rgba(94, 234, 212, 0.2), transparent 45%),
    radial-gradient(circle at bottom right, rgba(139, 92, 246, 0.18), transparent 40%),
    linear-gradient(145deg, rgba(7, 16, 34, 0.95), rgba(3, 8, 20, 0.85));
  box-shadow: 0 35px 65px rgba(3, 5, 16, 0.6);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.developer-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(250, 204, 21, 0.18), transparent 55%);
  opacity: 0.6;
  pointer-events: none;
}

.developer-hero > * {
  position: relative;
  z-index: 1;
}

.developer-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-width: 560px;
}

.developer-hero-meta {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.developer-hero-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.85rem;
}

.developer-hero-stats li {
  padding: 1rem 1.4rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.developer-hero-stats strong {
  display: block;
  font-size: 1.45rem;
  margin: 0.15rem 0;
  color: #c4d6ff;
}

.developer-hero-button {
  align-self: flex-start;
  border-color: rgba(255, 255, 255, 0.35);
}

@media (min-width: 900px) {
  .developer-hero {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .developer-hero-button {
    margin-top: auto;
  }
}

.developer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.developer-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.95rem;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(165deg, rgba(6, 12, 28, 0.95), rgba(2, 6, 18, 0.85));
  box-shadow: 0 25px 55px rgba(0, 5, 15, 0.65);
  position: relative;
  overflow: hidden;
}

.developer-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(59, 130, 246, 0.2), transparent 45%);
  opacity: 0.45;
  pointer-events: none;
}

.developer-card > * {
  position: relative;
  z-index: 1;
}

.developer-endpoint-list,
.developer-callouts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.developer-endpoint-list li {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.endpoint-label {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.endpoint-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0.95rem;
  border-radius: 18px;
  border: 1px solid rgba(96, 165, 250, 0.35);
  background: rgba(9, 16, 36, 0.85);
  box-shadow: inset 0 0 12px rgba(2, 6, 16, 0.9);
  width: 100%;
  overflow-x: auto;
}

.endpoint-method {
  font-family: 'Space Grotesk', 'Chakra Petch', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.endpoint-method-get {
  background: rgba(59, 130, 246, 0.15);
  color: #93c5fd;
}

.endpoint-method-post {
  background: rgba(244, 114, 182, 0.15);
  color: #f9a8d4;
  border-color: rgba(244, 114, 182, 0.35);
}

.developer-endpoint-list li:last-child {
  border-bottom: none;
}

.developer-callouts li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.75rem 0;
}

.developer-callouts li:last-child {
  border-bottom: none;
}

.developer-endpoint-list code {
  font-family: 'Space Grotesk', 'Chakra Petch', monospace;
  font-size: 0.85rem;
  white-space: nowrap;
}

.developer-callouts strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.code-block {
  background: rgba(4, 10, 24, 0.9);
  border: 1px solid rgba(96, 165, 250, 0.35);
  border-radius: 20px;
  padding: 1.15rem 1.2rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text);
  overflow-x: auto;
  box-shadow: inset 0 0 25px rgba(5, 10, 22, 0.65);
}

.code-block code {
  font-family: 'Space Grotesk', 'Chakra Petch', monospace;
  white-space: pre;
}

.privacy-shell {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.privacy-hero {
  padding: 2rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(6, 16, 32, 0.9), rgba(14, 37, 64, 0.8));
}

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

.privacy-hero .hero-actions {
  margin: 1.25rem 0 1.75rem;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.policy-card {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(5, 12, 23, 0.85);
  padding: 1.5rem;
}

.policy-card h3 {
  margin-top: 0;
}

.policy-chip {
  display: inline-flex;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary);
}

.policy-card ul {
  padding-left: 1.25rem;
  color: var(--muted);
  line-height: 1.6;
}

.policy-card li {
  margin-bottom: 0.3rem;
}

.policy-raw {
  border-radius: 20px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  background: rgba(3, 6, 15, 0.9);
  padding: 1.5rem;
  font-family: 'JetBrains Mono', 'Space Mono', monospace;
  font-size: 0.9rem;
  white-space: pre-wrap;
  line-height: 1.5;
  color: var(--muted);
  overflow-x: auto;
}

.hangar-ship-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hangar-ship-card {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hangar-ship-card:last-child {
  border-bottom: none;
}

.hangar-ship-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hangar-ship-title {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.hangar-ship-flags {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hangar-ship-flags code {
  font-size: 0.75rem;
}

.hangar-ship-meta {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  flex-wrap: wrap;
  min-width: 240px;
}

.hangar-ship-meta > div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 110px;
}

.callout code,
code {
  font-family: 'JetBrains Mono', 'Space Mono', monospace;
  background: rgba(15, 23, 42, 0.8);
  border-radius: 8px;
  padding: 0.25rem 0.4rem;
}

.callout:last-child {
  border-bottom: none;
}

footer {
  width: min(90vw, 1200px);
  color: var(--muted);
  padding: 2rem 1rem 3rem;
  font-size: 0.85rem;
}

@media (max-width: 960px) {
  .glass-card {
    width: 100%;
    padding: 1.75rem;
  }

  .card-meta {
    align-items: flex-start;
    width: 100%;
  }

  .card-session-actions {
    justify-content: flex-start;
  }

  .extension-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .extension-actions {
    flex: 1 1 auto;
  }

  .extension-metrics {
    flex-direction: column;
  }
}

.public-profile-hero {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.public-profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.8);
}

.public-profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.public-profile-meta {
  flex: 1 1 240px;
}

.public-profile-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
  padding: 0;
  list-style: none;
}

.public-profile-stats li {
  background: rgba(255, 255, 255, 0.03);
  padding: 0.85rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.public-profile-ships {
  margin-top: 1.5rem;
}

.public-ship-grid {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.public-ship-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(7, 11, 28, 0.8);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.public-ship-media {
  height: 160px;
  background: rgba(15, 23, 42, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.public-ship-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.public-ship-fallback {
  padding: 1rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.public-ship-content {
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.public-ship-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.public-ship-heading {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.public-ship-heading h3 {
  margin: 0;
}

.public-ship-logo {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 23, 42, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.public-ship-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.45));
}

.public-ship-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.25rem 0 0.75rem;
}

.ship-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.32rem 0.75rem;
  border: 1px solid rgba(248, 250, 252, 0.18);
  background: rgba(248, 250, 252, 0.05);
  color: #e2e8f0;
  align-self: flex-start;
}

.ship-pill.kind {
  border-color: rgba(99, 102, 241, 0.45);
  background: rgba(99, 102, 241, 0.12);
  color: #c7d2fe;
}

.ship-pill.insurance {
  border-color: rgba(56, 189, 248, 0.45);
  background: rgba(14, 165, 233, 0.12);
  color: #7dd3fc;
}

.ship-pill.warbond {
  border-color: rgba(251, 191, 36, 0.45);
  background: rgba(251, 191, 36, 0.12);
  color: #fcd34d;
}

.ship-pill.giftable {
  border-color: rgba(34, 197, 94, 0.45);
  background: rgba(34, 197, 94, 0.12);
  color: #86efac;
}

.ship-pill.meltable {
  border-color: rgba(236, 72, 153, 0.45);
  background: rgba(236, 72, 153, 0.12);
  color: #f9a8d4;
}

.public-ship-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.public-profile-empty {
  text-align: center;
  gap: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 640px) {
  .spa-nav {
    width: min(90vw, 1200px);
  }

  .spa-nav button {
    flex: 0 1 calc(50% - 0.4rem);
  }

  .glass-card {
    border-radius: 20px;
    width: min(90vw, 1200px);
  }

  .card-session-actions {
    width: 100%;
    justify-content: space-between;
  }

  .extension-actions .button,
  .extension-actions form .button {
    width: 100%;
  }
}
