@import url("https://fonts.googleapis.com/css2?family=Funnel+Display:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500;600&family=Manrope:wght@400;500;600;700;800&family=Sora:wght@400;500;600;700&display=swap");

:root {
  color-scheme: dark;
  --bg: #06090f;
  --bg-elevated: rgba(10, 15, 23, 0.94);
  --surface: rgba(13, 19, 29, 0.9);
  --surface-soft: rgba(255, 255, 255, 0.05);
  --surface-accent: rgba(84, 164, 255, 0.12);
  --ink: #eef4ff;
  --muted: #a7b8cf;
  --muted-strong: #d8e4f8;
  --line: rgba(128, 157, 194, 0.18);
  --line-strong: rgba(128, 176, 240, 0.28);
  --blue: #54a4ff;
  --violet: #8d59ff;
  --green: #67d79d;
  --shadow-soft: 0 26px 60px rgba(0, 0, 0, 0.34);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1260px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 0%, rgba(84, 164, 255, 0.16), transparent 24rem),
    radial-gradient(circle at 88% 8%, rgba(141, 89, 255, 0.14), transparent 26rem),
    linear-gradient(180deg, #070b12 0%, #090d15 46%, #05080d 100%);
  color: var(--ink);
  font-family: "Manrope", "Inter Tight", Arial, sans-serif;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.03), transparent 22%),
    radial-gradient(circle at 50% 0%, rgba(84, 164, 255, 0.08), transparent 38%);
  opacity: 0.8;
}

.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;
}

a {
  color: inherit;
}

.simple-page {
  position: relative;
  z-index: 1;
}

.site-shell-page {
  background:
    radial-gradient(circle at 12% -4%, rgba(84, 164, 255, 0.18), transparent 26rem),
    radial-gradient(circle at 86% 3%, rgba(141, 89, 255, 0.12), transparent 24rem),
    linear-gradient(180deg, #05080d 0%, #090d15 38%, #05080d 100%);
}

.site-shell-page .shell.simple-page {
  max-width: 1380px;
  padding: 108px 18px 0;
}

.site-shell-page .topbar {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 50;
  width: min(calc(100% - 18px), 1320px);
  transform: translateX(-50%);
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(163, 188, 220, 0.14);
  border-radius: 999px;
  background: rgba(8, 13, 20, 0.84);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(24px);
}

.site-shell-page .logo {
  width: clamp(128px, 12vw, 168px);
  height: auto;
  line-height: 0;
}

.site-shell-page .logo-mark {
  display: none;
}

.site-shell-page .logo img {
  display: block;
  width: 100%;
  height: auto;
}

.site-shell-page .nav {
  gap: 12px;
}

.site-shell-page .nav a {
  min-height: 40px;
  padding: 10px 4px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(238, 244, 255, 0.64);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

.site-shell-page .nav a:hover,
.site-shell-page .nav a:focus-visible,
.site-shell-page .nav a.active,
.site-shell-page .nav a[aria-current="page"] {
  background: transparent;
  border-color: transparent;
  color: var(--ink);
  transform: none;
}

.site-shell-page .header-actions {
  gap: 10px;
}

.site-shell-page .header-actions .button {
  min-height: 40px;
  padding: 10px 16px;
  font-size: 0.84rem;
}

.site-shell-page .header-actions .button.secondary {
  border-color: rgba(84, 164, 255, 0.22);
  background: rgba(255, 255, 255, 0.95);
  color: #07101f;
  box-shadow: 0 0 0 1px rgba(84, 164, 255, 0.18), 0 0 12px rgba(8, 119, 255, 0.16);
}

.site-shell-page .header-actions .button.primary {
  border-color: rgba(84, 164, 255, 0.18);
  background: rgba(84, 164, 255, 0.12);
  color: var(--ink);
  box-shadow: none;
}

.site-shell-page main {
  display: grid;
  gap: 24px;
  margin: 0 auto;
}

.site-shell-page .hero,
.site-shell-page .section,
.site-shell-page .panel {
  border-color: rgba(128, 157, 194, 0.16);
  background:
    radial-gradient(circle at top right, rgba(84, 164, 255, 0.08), transparent 26rem),
    linear-gradient(180deg, rgba(11, 17, 27, 0.94), rgba(7, 11, 18, 0.98));
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.24);
}

.site-shell-page .hero {
  padding: clamp(28px, 4.4vw, 44px);
}

.site-shell-page .section,
.site-shell-page .panel {
  margin-top: 0;
  padding: 28px 24px;
}

.site-shell-page .eyebrow,
.site-shell-page .kicker,
.site-shell-page .card-label,
.site-shell-page .topic-count,
.site-shell-page .status-pill,
.site-shell-page .flag,
.site-shell-page .compare-tag,
.site-shell-page .route-pill {
  background: transparent;
  color: #8fb7ff !important;
}

.site-shell-page .lede,
.site-shell-page .section-note,
.site-shell-page p,
.site-shell-page li,
.site-shell-page ul,
.site-shell-page ol {
  color: rgba(216, 228, 248, 0.78);
}

.site-shell-page .hero-panel,
.site-shell-page .panel-card,
.site-shell-page .workspace-summary-card,
.site-shell-page .workspace-note,
.site-shell-page .quick-links a,
.site-shell-page .topic-card,
.site-shell-page .topic-count-card,
.site-shell-page .article-card,
.site-shell-page .urgent-card,
.site-shell-page .faq-card,
.site-shell-page .contact-card,
.site-shell-page .info-card,
.site-shell-page .route-card,
.site-shell-page .note-card,
.site-shell-page .workflow-card,
.site-shell-page .fit-card,
.site-shell-page .setup-card,
.site-shell-page .compare-card,
.site-shell-page .cta-card,
.site-shell-page .surface-card,
.site-shell-page .setup-grid > article,
.site-shell-page .boundary-card,
.site-shell-page .scenario-card,
.site-shell-page .employee-card,
.site-shell-page .path-card,
.site-shell-page .guide-card,
.site-shell-page .step-card,
.site-shell-page .control-card,
.site-shell-page .search-shell,
.site-shell-page .summary-card,
.site-shell-page .stat-card {
  border-color: rgba(128, 157, 194, 0.18) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)) !important;
  box-shadow: none !important;
}

.site-shell-page .workspace-note,
.site-shell-page .quick-links a,
.site-shell-page .topic-count,
.site-shell-page .status-pill,
.site-shell-page .flag,
.site-shell-page .compare-tag,
.site-shell-page .route-pill,
.site-shell-page .guide-summary,
.site-shell-page .related-links a {
  border-color: rgba(84, 164, 255, 0.22) !important;
  background: rgba(84, 164, 255, 0.1) !important;
  color: rgba(238, 244, 255, 0.9) !important;
}

.site-shell-page .quick-links a span,
.site-shell-page .workspace-summary-card span,
.site-shell-page .workspace-summary-card p,
.site-shell-page .panel-card p,
.site-shell-page .topic-card p,
.site-shell-page .topic-count-card p,
.site-shell-page .article-card p,
.site-shell-page .urgent-card p,
.site-shell-page .faq-card p,
.site-shell-page .contact-card p,
.site-shell-page .info-card p,
.site-shell-page .route-card p,
.site-shell-page .note-card p,
.site-shell-page .workflow-card p,
.site-shell-page .fit-card p,
.site-shell-page .setup-card p,
.site-shell-page .compare-card p,
.site-shell-page .cta-card p,
.site-shell-page .surface-card p,
.site-shell-page .boundary-card p,
.site-shell-page .scenario-card p,
.site-shell-page .employee-card p,
.site-shell-page .path-card p,
.site-shell-page .guide-card p,
.site-shell-page .step-card p,
.site-shell-page .control-card p,
.site-shell-page .search-note {
  color: rgba(216, 228, 248, 0.72) !important;
}

.site-shell-page .topic-card:hover,
.site-shell-page .topic-card:focus-visible,
.site-shell-page .quick-links a:hover,
.site-shell-page .quick-links a:focus-visible,
.site-shell-page .related-links a:hover,
.site-shell-page .related-links a:focus-visible,
.site-shell-page .route-pill:hover,
.site-shell-page .route-pill:focus-visible {
  border-color: rgba(84, 164, 255, 0.34) !important;
  background: rgba(84, 164, 255, 0.14) !important;
}

.site-shell-page input,
.site-shell-page textarea,
.site-shell-page select {
  border-color: rgba(128, 157, 194, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
}

.site-shell-page input::placeholder,
.site-shell-page textarea::placeholder {
  color: rgba(167, 184, 207, 0.78);
}

.site-shell-page .footer {
  margin-top: 8px;
}

.shell.simple-page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 92px 20px 56px;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding: 16px 18px;
  border: 1px solid rgba(140, 176, 218, 0.18);
  border-radius: 999px;
  background: rgba(8, 13, 20, 0.86);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(24px);
}

.logo,
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.logo {
  font-family: "Sora", "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.topbar .logo:has(.logo-mark) {
  display: block;
  width: clamp(128px, 12vw, 168px);
  height: auto;
  line-height: 0;
  font-size: 0;
  color: transparent;
  position: relative;
}

.topbar .logo:has(.logo-mark)::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 168 / 32;
  background: url("./images/logo/core-staff-ai-logo-nav-clean.png") center / contain no-repeat;
}

.topbar .logo:has(.logo-mark) .logo-mark,
.topbar .logo:has(.logo-mark) > span:last-child {
  display: none;
}

.topbar .logo img {
  display: block;
  width: 100%;
  height: auto;
}

.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(84, 164, 255, 0.92), rgba(141, 89, 255, 0.86));
  color: #04111d;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(84, 164, 255, 0.24);
}

.brand {
  display: grid;
  gap: 3px;
}

.brand-mark,
.eyebrow,
.kicker,
.card-label {
  margin: 0;
  color: #8fb7ff !important;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-name {
  color: var(--ink);
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.92rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 4px;
  border-radius: 0;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(238, 244, 255, 0.64);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.active,
.nav a[aria-current="page"] {
  border-color: transparent;
  background: transparent;
  color: var(--ink);
  transform: none;
}

.topbar .nav a[href="/"],
.topbar .nav a[href="./index.html"],
.topbar .nav a[href="index.html"],
.topbar .nav a[href="workspace.html"],
.topbar .nav a[href="help.html"],
.topbar .nav a[href="docs.html"],
.topbar .nav a[href="support.html"] {
  display: none;
}

.header-actions,
.button-row,
.hero-actions,
.workspace-actions,
.account-actions,
.help-cta-row,
.route-row,
.control-row,
.employee-actions,
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.header-actions {
  justify-content: flex-end;
}

.topbar .header-actions .button {
  min-height: 40px;
  padding: 10px 16px;
  font-size: 0.84rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, rgba(84, 164, 255, 0.96), rgba(141, 89, 255, 0.9));
  color: #04111d;
  box-shadow: 0 18px 34px rgba(84, 164, 255, 0.2);
}

.button.secondary {
  border-color: rgba(84, 164, 255, 0.2);
  background: rgba(84, 164, 255, 0.09);
}

.topbar .header-actions .button.primary {
  display: none;
}

.topbar .header-actions .button.secondary {
  border-color: rgba(84, 164, 255, 0.22);
  background: rgba(255, 255, 255, 0.95);
  color: #07101f;
  box-shadow: 0 0 0 1px rgba(84, 164, 255, 0.18), 0 0 12px rgba(8, 119, 255, 0.16);
  font-size: 0;
}

.topbar .header-actions .button.secondary::after {
  content: "Sign In";
  font-size: 0.84rem;
}

.button.ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--muted-strong);
}

.hero,
.section,
.panel,
.footer {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(11, 17, 27, 0.94), rgba(8, 13, 20, 0.98));
  box-shadow: var(--shadow-soft);
}

.hero {
  margin-bottom: 20px;
  padding: clamp(24px, 4vw, 40px);
}

.section,
.panel {
  margin-top: 20px;
  padding: 28px 24px;
}

.section-head.left,
.hero,
.hero-inner {
  text-align: left !important;
  justify-items: start !important;
}

.section-head.left h2,
.hero h1,
.hero h2,
.hero h3,
.section h2,
.section h3,
.panel h2,
.panel h3,
.footer strong,
.simple-page h1,
.simple-page h2,
.simple-page h3 {
  color: var(--ink);
  font-family: "Funnel Display", "Sora", sans-serif;
  letter-spacing: -0.04em;
}

.simple-page h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 0.95;
  margin: 0 0 14px;
}

.simple-page h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.05;
  margin: 0 0 10px;
}

.simple-page h3 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.15;
  margin: 0 0 10px;
}

.simple-page p,
.simple-page li,
.simple-page ul,
.simple-page ol,
.simple-page .lede,
.simple-page .section-note,
.simple-page .microcopy,
.simple-page .disclosure,
.simple-page .brand-tag,
.simple-page .workspace-footer-note {
  color: var(--muted) !important;
}

.simple-page .lede {
  max-width: 72ch;
  font-size: 1.04rem;
}

.simple-page .section-note {
  max-width: 74ch;
}

.simple-page code {
  padding: 0.14rem 0.4rem;
  border: 1px solid rgba(84, 164, 255, 0.18);
  border-radius: 999px;
  background: rgba(84, 164, 255, 0.08);
  color: var(--muted-strong);
  font-family: "IBM Plex Mono", monospace;
}

.simple-page .hero-panel,
.simple-page .mock-card,
.simple-page .panel-card,
.simple-page .status-note,
.simple-page .summary-card,
.simple-page .stat-card,
.simple-page .terms-document,
.simple-page .mini-card,
.simple-page .account-mock,
.simple-page .billing-mock,
.simple-page .support-card,
.simple-page .note-card,
.simple-page .board-column,
.simple-page .ticket,
.simple-page [class*="card"] {
  border: 1px solid rgba(133, 162, 197, 0.18) !important;
  border-radius: var(--radius-lg) !important;
  background: rgba(16, 22, 33, 0.92) !important;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22) !important;
  color: var(--ink) !important;
}

.simple-page .summary-card,
.simple-page .stat-card,
.simple-page .status-note,
.simple-page .mini-card,
.simple-page .account-summary-card,
.simple-page .billing-summary-card,
.simple-page .workspace-summary-card,
.simple-page .account-note,
.simple-page .billing-note,
.simple-page .workspace-note,
.simple-page .guide-summary,
.simple-page .status-pill,
.simple-page .topic-count {
  border-color: rgba(84, 164, 255, 0.18) !important;
  background: rgba(84, 164, 255, 0.12) !important;
  color: #dcecff !important;
}

.simple-page .summary-card strong,
.simple-page .stat-card strong,
.simple-page .status-note strong,
.simple-page .account-summary-card strong,
.simple-page .workspace-summary-card strong {
  color: var(--ink) !important;
}

.simple-page .hero-panel,
.simple-page .panel-stack .panel-card,
.simple-page .preview-card,
.simple-page .service-card,
.simple-page .billing-card,
.simple-page .account-card,
.simple-page .workflow-card,
.simple-page .employee-card,
.simple-page .route-card,
.simple-page .action-card,
.simple-page .support-card,
.simple-page .question-card,
.simple-page .interest-card,
.simple-page .request-card {
  overflow: hidden;
}

.simple-page [class*="card"] p,
.simple-page [class*="card"] li,
.simple-page [class*="card"] ul,
.simple-page [class*="card"] ol,
.simple-page .terms-document p,
.simple-page .terms-document li,
.simple-page .terms-document ul,
.simple-page .terms-document ol,
.simple-page .timeline-item span,
.simple-page .ticket,
.simple-page .panel-card p,
.simple-page .quick-links a span,
.simple-page .topic-card p {
  color: var(--muted) !important;
}

.simple-page .quick-links a,
.simple-page .related-links a,
.simple-page .topic-card,
.simple-page .article-card a,
.simple-page .urgent-card a {
  border: 1px solid rgba(84, 164, 255, 0.18) !important;
  border-radius: var(--radius-md) !important;
  background: rgba(84, 164, 255, 0.08) !important;
  color: var(--ink) !important;
  text-decoration: none;
}

.simple-page .search-shell,
.simple-page .guide-summary,
.simple-page .terms-document {
  border: 1px solid rgba(84, 164, 255, 0.18) !important;
  background: rgba(84, 164, 255, 0.08) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18) !important;
}

.simple-page input,
.simple-page textarea,
.simple-page select {
  border: 1px solid rgba(129, 157, 192, 0.18) !important;
  border-radius: 16px !important;
  background: rgba(7, 11, 18, 0.92) !important;
  color: var(--ink) !important;
}

.simple-page input::placeholder,
.simple-page textarea::placeholder {
  color: rgba(167, 184, 207, 0.78) !important;
}

.simple-page .profile-dot,
.simple-page .employee-avatar,
.simple-page .avatar {
  box-shadow: 0 16px 36px rgba(84, 164, 255, 0.18);
}

.simple-page .profile-dot,
.simple-page .avatar,
.simple-page .logo-mark,
.simple-page .employee-avatar.custom {
  background: linear-gradient(140deg, rgba(84, 164, 255, 0.96), rgba(141, 89, 255, 0.88)) !important;
  color: #04111d !important;
}

.simple-page .employee-avatar.ruby {
  background: linear-gradient(140deg, rgba(84, 164, 255, 0.92), rgba(123, 226, 191, 0.88)) !important;
}

.simple-page .employee-avatar.maya,
.simple-page .employee-avatar.miles,
.simple-page .employee-avatar.nora {
  background: linear-gradient(140deg, rgba(141, 89, 255, 0.88), rgba(84, 164, 255, 0.92)) !important;
}

.simple-page [style*="corestaff-workspace-placeholder.svg"],
.simple-page [style*="corestaff-account-placeholder.svg"],
.simple-page .preview-frame,
.simple-page .product-frame {
  border: 1px solid rgba(133, 162, 197, 0.18) !important;
  background-color: rgba(9, 14, 22, 0.96) !important;
}

.simple-page .board-title,
.simple-page .status-pill {
  color: var(--muted-strong) !important;
}

.simple-page .topic-card:hover,
.simple-page .topic-card:focus-visible,
.simple-page .quick-links a:hover,
.simple-page .quick-links a:focus-visible,
.simple-page .related-links a:hover,
.simple-page .related-links a:focus-visible {
  border-color: rgba(84, 164, 255, 0.32) !important;
  background: rgba(84, 164, 255, 0.12) !important;
}

.simple-page .footer {
  position: relative;
  overflow: hidden;
  margin: 34px calc(50% - 50vw) 0;
  padding: 58px 24px 24px;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 100%, rgba(84, 164, 255, 0.1), transparent 34rem),
    linear-gradient(180deg, rgba(8, 13, 20, 0.98), rgba(6, 9, 15, 0.995));
  box-shadow: none;
}

.simple-page .footer-wordmark,
.simple-page .footer-rule,
.simple-page .footer-meta {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--max-width));
  margin-left: auto;
  margin-right: auto;
}

.simple-page .footer-wordmark {
  margin-bottom: 18px;
  padding-left: clamp(10px, 2vw, 28px);
  color: rgba(255, 255, 255, 0.08);
  font-family: "Funnel Display", "Sora", sans-serif;
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 700;
  letter-spacing: clamp(0.26em, 1.6vw, 0.6em);
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
}

.simple-page .footer-rule {
  height: 1px;
  margin-bottom: 20px;
  background: rgba(133, 162, 197, 0.18);
}

.simple-page .footer-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px 26px;
}

.simple-page .footer-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.simple-page .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.simple-page .footer-links a {
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.86rem;
  text-decoration: none;
}

.simple-page .footer-links a:hover,
.simple-page .footer-links a:focus-visible {
  color: var(--ink);
}

.simple-page .disclosure {
  display: none;
}

::selection {
  background: rgba(84, 164, 255, 0.28);
  color: var(--ink);
}

@media (max-width: 1100px) {
  .site-shell-page .shell.simple-page {
    padding-inline: 16px;
  }

  .site-shell-page .topbar {
    width: min(calc(100% - 20px), 1320px);
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .site-shell-page .logo,
  .site-shell-page .header-actions {
    justify-content: flex-start;
  }

  .site-shell-page .nav,
  .site-shell-page .header-actions {
    justify-content: flex-start;
  }

  .shell.simple-page {
    padding-inline: 16px;
  }

  .topbar {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .brand,
  .logo,
  .header-actions {
    justify-content: flex-start;
  }

  .nav,
  .header-actions {
    justify-content: flex-start;
  }

  .topbar .header-actions .button.secondary {
    font-size: 0.84rem;
  }

  .topbar .header-actions .button.secondary::after {
    content: "Sign In";
  }

  .simple-page .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .site-shell-page .shell.simple-page {
    padding: 92px 14px 0;
  }

  .site-shell-page .topbar {
    position: static;
    transform: none;
    width: 100%;
    padding: 16px;
  }

  .site-shell-page .nav,
  .site-shell-page .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .site-shell-page .nav a,
  .site-shell-page .button {
    width: 100%;
  }

  .site-shell-page .hero,
  .site-shell-page .section,
  .site-shell-page .panel {
    padding: 22px 18px;
  }

  .shell.simple-page {
    padding: 76px 14px 40px;
  }

  .topbar {
    position: static;
    padding: 16px;
  }

  .nav,
  .header-actions,
  .button-row,
  .hero-actions,
  .workspace-actions,
  .account-actions,
  .help-cta-row,
  .route-row,
  .control-row,
  .employee-actions,
  .related-links {
    flex-direction: column;
    align-items: stretch;
  }

  .nav a,
  .button {
    width: 100%;
  }

  .hero,
  .section,
  .panel,
  .footer {
    padding: 22px 18px;
  }

  .simple-page .footer {
    margin-top: 28px;
    padding: 46px 16px 20px;
  }

  .simple-page .footer-wordmark,
  .simple-page .footer-rule,
  .simple-page .footer-meta {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .simple-page .footer-wordmark {
    margin-bottom: 16px;
    padding-left: 0;
    font-size: clamp(2.75rem, 13vw, 4.6rem);
    letter-spacing: 0.24em;
  }

  .simple-page .footer-meta {
    flex-direction: column;
  }

  .simple-page .footer-links {
    gap: 10px 14px;
  }
}
