:root {
  --bg: #060912;
  --bg-deep: #02040a;
  --surface: rgba(10, 15, 27, 0.88);
  --surface-strong: #0e1524;
  --surface-soft: rgba(14, 21, 36, 0.92);
  --text: #eef4ff;
  --muted: #95a3bd;
  --line: rgba(169, 186, 222, 0.14);
  --brand-blue: #184792;
  --brand-blue-deep: #0a2c64;
  --accent: #69c6ff;
  --accent-soft: rgba(105, 198, 255, 0.14);
  --accent-deep: #3a72d8;
  --ink: #8ed8ff;
  --danger: #ff859a;
  --success: #8fe0be;
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia,
    serif;
  --sans: "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  color-scheme: dark;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--sans);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(72, 157, 227, 0.2), transparent 24%),
    radial-gradient(circle at top right, rgba(37, 84, 169, 0.2), transparent 24%),
    radial-gradient(circle at bottom center, rgba(28, 75, 148, 0.14), transparent 28%),
    linear-gradient(180deg, #0b101c 0%, var(--bg) 46%, var(--bg-deep) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(155, 236, 255, 0.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(155, 236, 255, 0.042) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.56), transparent 82%);
  opacity: 0.68;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  left: -140px;
  bottom: -140px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(102, 227, 255, 0.12), transparent 68%);
  filter: blur(16px);
  pointer-events: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    opacity 160ms ease;
}

button {
  border: 0;
  cursor: pointer;
}

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

button:hover,
a:hover {
  transform: translateY(-1px);
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(102, 227, 255, 0.12);
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(7, 11, 20, 0.82);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(102, 227, 255, 0.42);
}

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

ul {
  margin: 0;
  padding-left: 18px;
}

.page-shell {
  max-width: 1320px;
  margin: 0 auto;
  padding: 24px 24px 48px;
  position: relative;
  isolation: isolate;
}

.card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(14, 21, 34, 0.94), rgba(8, 12, 22, 0.94)),
    var(--surface);
  border: 1px solid rgba(169, 186, 222, 0.12);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(155, 236, 255, 0.36), transparent);
  opacity: 0.72;
  pointer-events: none;
}

.card--inner {
  box-shadow: none;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(11, 17, 29, 0.95), rgba(6, 10, 18, 0.95)),
    var(--surface-soft);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  margin-bottom: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand__mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  overflow: hidden;
  background:
    url("assets/orbal-mark.png") center / 46px auto no-repeat,
    linear-gradient(145deg, #f8fbff, #dbe8fb);
  border: 1px solid rgba(142, 216, 255, 0.34);
  box-shadow:
    0 10px 26px rgba(24, 71, 146, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  color: transparent;
  font-size: 0;
}

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

.brand__copy strong {
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.brand__copy span {
  color: var(--muted);
  font-size: 0.88rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-link {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(9, 14, 24, 0.9);
  border: 1px solid transparent;
}

.nav-link:hover {
  color: var(--text);
  border-color: rgba(102, 227, 255, 0.12);
}

.nav-link.is-active {
  background: linear-gradient(135deg, var(--accent), #82a9ff);
  color: #06111a;
  box-shadow: 0 14px 24px rgba(102, 227, 255, 0.18);
}

.eyebrow,
.section-kicker,
.metric span,
.search-field span,
.signal-card span {
  margin: 0;
  color: var(--ink);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.home-hero h1,
.section-heading h2,
.home-hero__panel h2,
.launch-card h2,
.task-title,
.focus-card h3 {
  font-family: var(--serif);
}

.hero,
.home-hero {
  display: grid;
  gap: 24px;
  padding: 28px;
}

.hero {
  grid-template-columns: 1.1fr 1fr;
  margin-bottom: 24px;
}

.home-hero {
  grid-template-columns: 1.15fr 0.95fr;
  align-items: stretch;
  min-height: 460px;
}

.home-wordmark {
  display: block;
  width: min(230px, 62%);
  height: auto;
  margin: -8px 0 22px;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.24));
}

.hero::after,
.home-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -140px;
  top: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(102, 227, 255, 0.18), transparent 68%);
  pointer-events: none;
}

.hero__copy,
.home-hero__copy {
  position: relative;
  z-index: 1;
}

.hero h1,
.home-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.3rem);
  line-height: 0.94;
  max-width: 11ch;
  text-shadow: 0 18px 32px rgba(0, 0, 0, 0.28);
}

.hero__lede,
.home-hero__lede,
.home-hero__panel p,
.launch-card p,
.info-list,
.focus-card p {
  color: var(--muted);
  line-height: 1.65;
}

.hero__lede,
.home-hero__lede {
  margin: 18px 0 0;
  max-width: 36rem;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.primary-button,
.ghost-button,
.primary-link,
.ghost-link,
.launch-card__link,
.pill {
  border-radius: 999px;
}

.primary-button,
.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  color: #07121d;
  background: linear-gradient(135deg, var(--accent), #8fa8ff);
  box-shadow: 0 16px 28px rgba(102, 227, 255, 0.22);
  font-weight: 600;
}

.primary-button:hover,
.primary-link:hover {
  background: linear-gradient(135deg, #8aeaff, #a4b5ff);
}

.ghost-button,
.ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  color: var(--text);
  background: rgba(10, 16, 27, 0.88);
  border: 1px solid var(--line);
}

.ghost-button--compact {
  padding: 10px 14px;
  font-size: 0.92rem;
}

.home-hero__panel {
  padding: 22px;
  display: grid;
  align-content: start;
  gap: 18px;
}

.home-hero__panel h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.04;
}

.orbie-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  isolation: isolate;
  border-color: rgba(105, 198, 255, 0.22);
  background: #eff2f7;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.42),
    0 0 54px rgba(42, 105, 200, 0.12);
}

.orbie-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 40%, rgba(5, 18, 42, 0.18) 63%, rgba(4, 13, 31, 0.96) 100%),
    radial-gradient(circle at 75% 12%, rgba(105, 198, 255, 0.2), transparent 34%);
  pointer-events: none;
}

.orbie-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
  transform: scale(1.02);
}

.orbie-card__copy {
  position: absolute;
  inset: auto 20px 20px;
  z-index: 2;
  padding: 18px;
  border: 1px solid rgba(142, 216, 255, 0.2);
  border-radius: 22px;
  background: rgba(5, 16, 37, 0.84);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.orbie-card__copy span {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  color: #b8e8ff;
  background: rgba(105, 198, 255, 0.12);
  border: 1px solid rgba(105, 198, 255, 0.18);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.orbie-card__copy h2 {
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1;
}

.orbie-card__copy p {
  margin: 10px 0 0;
  color: #b8c7df;
  line-height: 1.55;
}

.signal-grid {
  display: grid;
  gap: 14px;
}

.signal-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(8, 13, 23, 0.76);
  border: 1px solid rgba(169, 186, 222, 0.1);
}

.signal-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.25rem;
}

.signal-card p {
  margin: 10px 0 0;
}

.home-layout,
.home-grid {
  display: grid;
  gap: 24px;
}

.personal-shell,
.personal-dashboard {
  display: grid;
  gap: 24px;
}

.page-personal.is-personal-locked .page-shell {
  padding-bottom: 28px;
}

.page-personal.is-personal-locked .personal-shell {
  min-height: calc(100vh - 156px);
  align-content: start;
}

.home-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.launch-card,
.info-card {
  padding: 24px;
}

.launch-card h2 {
  margin: 6px 0 0;
  font-size: 2rem;
  line-height: 1.04;
}

.launch-card__link {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(102, 227, 255, 0.1);
  border: 1px solid rgba(102, 227, 255, 0.16);
  color: var(--ink);
}

.launch-card__link:hover {
  background: rgba(102, 227, 255, 0.15);
}

.info-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.team-principles li::marker {
  color: var(--accent);
}

.hero__metrics {
  display: grid;
  grid-template-columns: minmax(0, 344px) minmax(228px, 1fr);
  gap: 14px;
  align-items: stretch;
}

.progress-grid,
.personal-progress-grid {
  display: grid;
  gap: 12px;
}

.progress-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.progress-tile {
  padding: 18px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(7, 12, 20, 0.96), rgba(10, 16, 27, 0.86));
  border: 1px solid rgba(169, 186, 222, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.progress-tile p {
  margin: 16px 0 0;
  text-align: center;
  color: var(--muted);
  font-weight: 600;
}

.progress-detail {
  display: block;
  margin-top: 8px;
  text-align: center;
  color: var(--ink);
  font-size: 0.84rem;
  line-height: 1.5;
}

.progress-ring {
  --progress-angle: 0deg;
  width: 152px;
  height: 152px;
  margin: 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    conic-gradient(var(--accent) var(--progress-angle), rgba(255, 255, 255, 0.08) 0deg);
  box-shadow: 0 0 34px rgba(102, 227, 255, 0.16);
}

.progress-ring--compact {
  width: 128px;
  height: 128px;
}

.progress-ring__center {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: var(--surface-strong);
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px var(--line);
}

.progress-ring__center--compact {
  width: 92px;
  height: 92px;
}

.progress-ring__reading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  line-height: 1;
  transform: translateY(-1px);
}

.progress-ring__center strong {
  font-size: 1.6rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.progress-ring__center--compact strong {
  font-size: 1.32rem;
}

.progress-ring__center span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1;
}

.progress-ring__center--compact span {
  font-size: 0.8rem;
}

.progress-tile--compact {
  padding: 16px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
}

.metric {
  min-height: 100px;
  padding: 15px 14px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(7, 12, 20, 0.9), rgba(10, 16, 27, 0.78));
  border: 1px solid rgba(169, 186, 222, 0.1);
  display: grid;
  align-content: start;
}

.metric span {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}

.metric strong {
  display: block;
  margin-top: 6px;
  font-size: 2rem;
  line-height: 1;
}

.layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.personal-gate,
.personal-section {
  padding: 28px;
}

.personal-gate {
  max-width: 880px;
  margin: 0 auto;
}

.personal-gate h1,
.personal-dashboard__title {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 0.96;
}

.personal-gate__copy {
  margin: 16px 0 0;
  max-width: 42rem;
  color: var(--muted);
  line-height: 1.7;
}

.personal-user-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.user-choice {
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(9, 14, 24, 0.96), rgba(7, 11, 20, 0.92));
  border: 1px solid rgba(169, 186, 222, 0.12);
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.user-choice:hover {
  border-color: rgba(102, 227, 255, 0.18);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.2);
}

.personal-auth-form {
  margin-top: 22px;
}

.personal-section h2 {
  margin: 6px 0 0;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.04;
}

.personal-section-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.personal-progress-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 18px;
}

.personal-task-list {
  display: grid;
  gap: 12px;
}

.personal-task-group {
  display: grid;
  gap: 12px;
}

.personal-task-group + .personal-task-group {
  margin-top: 8px;
}

.personal-task-group-title {
  margin: 0;
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.personal-task-card {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(10, 16, 27, 0.92), rgba(6, 10, 18, 0.96));
  border: 1px solid rgba(169, 186, 222, 0.1);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.16);
}

.personal-task-card.is-complete {
  opacity: 0.84;
}

.personal-task-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.personal-task-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.32rem;
  line-height: 1.08;
}

.personal-task-card.is-complete h3 {
  color: var(--muted);
  text-decoration: line-through;
}

.personal-task-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.personal-task-actions {
  display: flex;
  justify-content: flex-end;
}

.resource-form {
  margin-bottom: 18px;
}

.resource-table-shell {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(169, 186, 222, 0.1);
  background: rgba(6, 10, 18, 0.46);
}

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

.resource-table thead {
  background: rgba(10, 15, 24, 0.92);
}

.resource-table th,
.resource-table td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
}

.resource-table th {
  color: var(--ink);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}

.resource-table tbody tr {
  border-top: 1px solid rgba(169, 186, 222, 0.08);
}

.resource-table tbody tr:hover {
  background: rgba(102, 227, 255, 0.04);
}

.resource-link {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  overflow-wrap: anywhere;
}

.resource-notes {
  color: var(--muted);
  line-height: 1.65;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.personal-notes-memory {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.personal-notes-list {
  display: grid;
  gap: 12px;
}

.personal-note-card {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(10, 16, 27, 0.92), rgba(6, 10, 18, 0.96));
  border: 1px solid rgba(169, 186, 222, 0.1);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.16);
}

.personal-note-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.personal-note-date {
  margin: 0;
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.personal-note-body {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.archive-layout {
  display: grid;
  gap: 24px;
}

.archive-hero {
  grid-template-columns: 1.15fr 0.85fr;
}

.archive-hero__metrics {
  grid-template-columns: minmax(0, 1fr);
}

.archive-search-form {
  margin-bottom: 18px;
}

.archive-list {
  display: grid;
  gap: 10px;
}

.archive-card {
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(10, 16, 27, 0.92), rgba(6, 10, 18, 0.96));
  border: 1px solid rgba(169, 186, 222, 0.1);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.archive-card[open] {
  border-color: rgba(102, 227, 255, 0.18);
}

.archive-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  cursor: pointer;
  list-style: none;
}

.archive-summary::-webkit-details-marker {
  display: none;
}

.archive-summary-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.archive-title {
  font-size: 1rem;
  line-height: 1.25;
  color: var(--text);
  overflow-wrap: anywhere;
}

.archive-caption {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.archive-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.archive-details {
  display: grid;
  gap: 14px;
  padding: 0 16px 16px;
}

.archive-actions {
  display: flex;
  justify-content: flex-start;
}

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

.archive-detail {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(4, 9, 16, 0.68);
  border: 1px solid rgba(169, 186, 222, 0.08);
}

.archive-detail-label {
  color: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.archive-detail-value {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.archive-notes {
  margin-top: 0;
}

.composer,
.board {
  padding: 24px;
}

.composer {
  position: sticky;
  top: 20px;
}

.section-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.section-heading h2 {
  margin: 6px 0 0;
  font-size: 2rem;
  line-height: 1.04;
}

.task-form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

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

.page-tasks .composer .task-form {
  gap: 10px;
}

.page-tasks .composer .field {
  gap: 6px;
}

.page-tasks .composer .field-row {
  grid-template-columns: minmax(0, 1.08fr) minmax(170px, 0.92fr);
  gap: 8px;
  align-items: end;
}

.page-tasks .composer input,
.page-tasks .composer select {
  padding: 12px 14px;
}

.page-tasks .composer .field-row .field {
  min-width: 0;
}

.page-tasks .composer .field-row .field span {
  line-height: 1.2;
}

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

.status-message {
  min-height: 1.4em;
  margin: 12px 0 6px;
  color: var(--ink);
  font-size: 0.95rem;
}

.has-auth-overlay .page-shell {
  filter: blur(14px);
  pointer-events: none;
  user-select: none;
}

.has-modal .page-shell {
  filter: blur(10px);
  pointer-events: none;
  user-select: none;
}

.auth-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(2, 5, 10, 0.62);
  backdrop-filter: blur(18px);
}

.auth-panel {
  width: min(100%, 440px);
  padding: 28px;
}

.auth-panel h2 {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: 2.1rem;
  line-height: 1.02;
}

.auth-copy {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.auth-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.auth-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--danger);
  font-size: 0.95rem;
}

.auth-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(2, 5, 10, 0.68);
  backdrop-filter: blur(18px);
}

.modal-panel {
  width: min(100%, 760px);
  padding: 28px;
}

.modal-heading {
  margin-bottom: 16px;
}

.modal-form {
  gap: 16px;
}

.daily-log-history {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.daily-log-list {
  display: grid;
  gap: 12px;
}

.daily-log-card {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(10, 16, 27, 0.92), rgba(6, 10, 18, 0.96));
  border: 1px solid rgba(169, 186, 222, 0.1);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.16);
}

.daily-log-date {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.daily-log-fields,
.executive-log-fields {
  display: grid;
  gap: 12px;
}

.executive-log-field {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(4, 9, 16, 0.68);
  border: 1px solid rgba(169, 186, 222, 0.08);
}

.executive-log-field strong {
  display: block;
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.executive-log-field p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

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

.pill {
  padding: 11px 16px;
  background: rgba(9, 15, 24, 0.9);
  border: 1px solid var(--line);
  color: var(--muted);
}

.pill.is-active {
  color: #06111a;
  background: linear-gradient(135deg, var(--accent), #9fafff);
  box-shadow: 0 14px 24px rgba(102, 227, 255, 0.18);
}

.search-field {
  display: grid;
  gap: 8px;
  min-width: min(100%, 280px);
  flex: 1 1 260px;
}

.focus-card {
  margin-bottom: 18px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(102, 227, 255, 0.13), rgba(49, 73, 120, 0.22) 52%, rgba(255, 133, 154, 0.08)),
    rgba(8, 14, 24, 0.74);
  border: 1px solid rgba(102, 227, 255, 0.14);
}

.focus-card h3 {
  margin: 0 0 8px;
  font-size: 1.6rem;
}

.task-list {
  display: grid;
  gap: 14px;
}

.task-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(10, 16, 27, 0.92), rgba(6, 10, 18, 0.96));
  border: 1px solid rgba(169, 186, 222, 0.1);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.22);
  animation: rise 420ms ease both;
  animation-delay: var(--stagger, 0ms);
}

.task-card:hover {
  border-color: rgba(102, 227, 255, 0.18);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.3);
}

.task-card.is-complete {
  opacity: 0.82;
}

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

.task-main {
  display: flex;
  align-items: start;
  gap: 14px;
  min-width: 0;
  flex: 1;
}

.check-button {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  margin-top: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(169, 186, 222, 0.2);
  box-shadow: inset 0 0 0 2px transparent;
}

.task-card.is-complete .check-button {
  background: var(--accent-deep);
  box-shadow: inset 0 0 0 6px var(--surface-strong);
}

.task-title {
  margin: 0;
  font-size: 1.34rem;
  line-height: 1.1;
}

.task-copy {
  min-width: 0;
  flex: 1;
}

.task-card.is-complete .task-title {
  color: var(--muted);
  text-decoration: line-through;
}

.task-notes {
  margin: 12px 0 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(4, 9, 16, 0.78);
  border: 1px solid rgba(169, 186, 222, 0.08);
  color: #b5c2d8;
  line-height: 1.7;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.task-notes a {
  color: var(--ink);
  text-decoration-thickness: 1.5px;
}

.task-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.text-button,
.delete-button {
  background: transparent;
  padding: 0;
  font-weight: 600;
}

.text-button {
  color: var(--ink);
}

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

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(11, 18, 30, 0.88);
  border: 1px solid rgba(169, 186, 222, 0.12);
  font-size: 0.84rem;
  color: #c7d6f1;
}

.tag--high {
  background: rgba(255, 133, 154, 0.12);
  color: #ffc0cb;
}

.tag--medium {
  background: rgba(102, 227, 255, 0.1);
  color: #aaeefe;
}

.tag--low {
  background: rgba(143, 224, 190, 0.11);
  color: #b7edd5;
}

.empty-state {
  padding: 28px 22px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed rgba(169, 186, 222, 0.16);
  background: rgba(6, 10, 18, 0.44);
}

.password-table-shell {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(169, 186, 222, 0.1);
  background: rgba(6, 10, 18, 0.46);
}

.assignment-table-shell {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(169, 186, 222, 0.1);
  background: rgba(6, 10, 18, 0.46);
}

.executive-table-shell {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(169, 186, 222, 0.1);
  background: rgba(6, 10, 18, 0.46);
}

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

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

.executive-table {
  width: 100%;
  min-width: 1040px;
  border-collapse: collapse;
}

.password-table thead {
  background: rgba(10, 15, 24, 0.92);
}

.assignment-table thead {
  background: rgba(10, 15, 24, 0.92);
}

.executive-table thead {
  background: rgba(10, 15, 24, 0.92);
}

.password-table th,
.password-table td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
}

.assignment-table th,
.assignment-table td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
}

.executive-table th,
.executive-table td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
}

.password-table th {
  color: var(--ink);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}

.assignment-table th {
  color: var(--ink);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}

.executive-table th {
  color: var(--ink);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}

.password-table tbody tr {
  border-top: 1px solid rgba(169, 186, 222, 0.08);
}

.assignment-table tbody tr {
  border-top: 1px solid rgba(169, 186, 222, 0.08);
}

.executive-table tbody tr {
  border-top: 1px solid rgba(169, 186, 222, 0.08);
}

.password-table tbody tr:hover {
  background: rgba(102, 227, 255, 0.04);
}

.assignment-table tbody tr:hover {
  background: rgba(102, 227, 255, 0.04);
}

.executive-table tbody tr:hover {
  background: rgba(102, 227, 255, 0.04);
}

.password-cell__account strong,
.password-cell__email strong {
  display: block;
  color: var(--text);
}

.assignment-cell__name strong {
  display: block;
  color: var(--text);
}

.assignment-cell__name span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.password-cell__account span,
.password-cell__email span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.password-value {
  display: inline-block;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(10, 16, 27, 0.88);
  border: 1px solid rgba(169, 186, 222, 0.1);
  color: #c7d6f1;
  font-family: "SFMono-Regular", "Menlo", "Monaco", "Courier New", monospace;
  font-size: 0.93rem;
  line-height: 1.55;
  word-break: break-all;
}

.password-table .delete-button {
  white-space: nowrap;
}

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

.assignment-status {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(169, 186, 222, 0.12);
  background: rgba(11, 18, 30, 0.88);
  color: #c7d6f1;
  font-size: 0.84rem;
  font-weight: 600;
}

.assignment-status--active {
  background: rgba(143, 224, 190, 0.11);
  color: #b7edd5;
}

.assignment-status--inactive {
  background: rgba(255, 133, 154, 0.12);
  color: #ffc0cb;
}

.executive-layout {
  display: grid;
  gap: 24px;
}

.executive-hero {
  min-height: 380px;
}

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

.executive-directory-card {
  padding: 24px;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 220px;
}

.executive-directory-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.04;
}

.executive-directory-card p:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.executive-directory-card:hover {
  border-color: rgba(102, 227, 255, 0.18);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.3);
}

.roadmap-shell {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.roadmap-sidebar,
.roadmap-editor,
.roadmap-preview-shell {
  padding: 24px;
}

.roadmap-sidebar {
  position: sticky;
  top: 20px;
  display: grid;
  gap: 18px;
}

.roadmap-main {
  display: grid;
  gap: 24px;
}

.roadmap-selector-list,
.roadmap-phase-list,
.roadmap-preview {
  display: grid;
  gap: 14px;
}

.roadmap-selector-card {
  width: 100%;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(10, 16, 27, 0.92), rgba(6, 10, 18, 0.96));
  border: 1px solid rgba(169, 186, 222, 0.1);
  color: var(--text);
  text-align: left;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.16);
}

.roadmap-selector-card.is-active {
  border-color: rgba(102, 227, 255, 0.22);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.24);
  background:
    linear-gradient(135deg, rgba(102, 227, 255, 0.12), rgba(79, 133, 255, 0.1) 55%, rgba(8, 13, 23, 0.92)),
    rgba(8, 13, 23, 0.92);
}

.roadmap-selector-card strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.35;
}

.roadmap-selector-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.roadmap-selector-card span {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.roadmap-phase-heading {
  margin-bottom: 0;
}

.phase-editor-card {
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(10, 16, 27, 0.92), rgba(6, 10, 18, 0.96));
  border: 1px solid rgba(169, 186, 222, 0.1);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.16);
}

.phase-editor-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.phase-editor-top h3 {
  margin: 6px 0 0;
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.08;
}

.phase-editor-fields {
  gap: 12px;
}

.roadmap-overview-card,
.roadmap-visual-section {
  padding: 22px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(10, 16, 27, 0.92), rgba(6, 10, 18, 0.96)),
    rgba(8, 13, 23, 0.92);
  border: 1px solid rgba(169, 186, 222, 0.1);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.16);
}

.roadmap-overview-card h2,
.roadmap-section-heading h3 {
  margin: 6px 0 0;
  font-family: var(--serif);
}

.roadmap-overview-card h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.98;
}

.roadmap-overview-card p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.roadmap-empty-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(4, 9, 16, 0.62);
  border: 1px dashed rgba(102, 227, 255, 0.16);
}

.roadmap-empty-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.roadmap-section-heading {
  margin-bottom: 16px;
}

.roadmap-section-heading h3 {
  font-size: 1.8rem;
  line-height: 1.05;
}

.roadmap-order-list {
  display: grid;
  gap: 10px;
}

.roadmap-order-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(4, 9, 16, 0.68);
  border: 1px solid rgba(169, 186, 222, 0.08);
}

.roadmap-order-number,
.roadmap-priority-rank {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(102, 227, 255, 0.24), rgba(79, 133, 255, 0.2));
  border: 1px solid rgba(102, 227, 255, 0.16);
  color: var(--ink);
  font-weight: 700;
}

.roadmap-order-card p,
.roadmap-priority-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
}

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

.roadmap-lane-card {
  padding: 18px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(102, 227, 255, 0.1), rgba(79, 133, 255, 0.08) 58%, rgba(10, 16, 27, 0.92)),
    rgba(10, 16, 27, 0.92);
  border: 1px solid rgba(102, 227, 255, 0.12);
  min-height: 120px;
  display: grid;
  align-content: start;
}

.roadmap-lane-card strong {
  font-size: 1rem;
  line-height: 1.5;
}

.roadmap-priority-list {
  display: grid;
  gap: 10px;
}

.roadmap-priority-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(4, 9, 16, 0.68);
  border: 1px solid rgba(169, 186, 222, 0.08);
}

.roadmap-timeline {
  position: relative;
  display: grid;
  gap: 16px;
}

.roadmap-timeline::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: linear-gradient(180deg, rgba(102, 227, 255, 0.3), rgba(79, 133, 255, 0.08));
}

.roadmap-phase-card {
  position: relative;
  margin-left: 0;
  padding-left: 0;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(10, 16, 27, 0.92), rgba(6, 10, 18, 0.96));
  border: 1px solid rgba(169, 186, 222, 0.1);
  overflow: hidden;
}

.roadmap-phase-card[open] {
  border-color: rgba(102, 227, 255, 0.18);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.24);
}

.roadmap-phase-summary {
  list-style: none;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 20px;
  cursor: pointer;
}

.roadmap-phase-summary::-webkit-details-marker {
  display: none;
}

.roadmap-phase-badge {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-top: 2px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(102, 227, 255, 0.28), rgba(79, 133, 255, 0.22));
  border: 1px solid rgba(102, 227, 255, 0.18);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
}

.roadmap-phase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  grid-column: 2 / -1;
}

.roadmap-phase-header strong {
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.05;
}

.roadmap-phase-goal {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
  grid-column: 2 / -1;
}

.roadmap-phase-status {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  white-space: nowrap;
}

.roadmap-phase-status--current {
  background: rgba(102, 227, 255, 0.12);
  color: var(--ink);
}

.roadmap-phase-status--upcoming {
  background: rgba(255, 225, 138, 0.12);
  color: #ffe59e;
}

.roadmap-phase-status--final {
  background: rgba(143, 224, 190, 0.11);
  color: #b7edd5;
}

.roadmap-phase-body {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0 20px 20px 80px;
}

.roadmap-detail-block {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(4, 9, 16, 0.68);
  border: 1px solid rgba(169, 186, 222, 0.08);
}

.roadmap-detail-block strong {
  display: block;
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.roadmap-detail-block p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.executive-name-cell {
  white-space: nowrap;
  font-weight: 600;
}

.completion-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(169, 186, 222, 0.12);
  background: rgba(11, 18, 30, 0.88);
  color: #c7d6f1;
  font-size: 0.84rem;
  font-weight: 600;
}

.completion-badge--high {
  background: rgba(143, 224, 190, 0.11);
  color: #b7edd5;
}

.completion-badge--medium {
  background: rgba(255, 225, 138, 0.12);
  color: #ffe59e;
}

.completion-badge--low {
  background: rgba(255, 133, 154, 0.12);
  color: #ffc0cb;
}

.completion-badge--neutral {
  background: rgba(169, 186, 222, 0.08);
  color: #c7d6f1;
}

.is-alert {
  color: var(--danger);
  font-weight: 600;
}

.executive-log-feed {
  display: grid;
  gap: 20px;
}

.executive-log-group {
  display: grid;
  gap: 12px;
}

.executive-log-date {
  margin: 0;
  color: var(--ink);
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.executive-log-card {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(10, 16, 27, 0.92), rgba(6, 10, 18, 0.96));
  border: 1px solid rgba(169, 186, 222, 0.1);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.16);
}

.executive-log-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.executive-log-title {
  font-size: 1.02rem;
  line-height: 1.4;
}

.payroll-form {
  margin-bottom: 18px;
}

.payroll-table td strong {
  display: block;
  color: var(--text);
}

.payroll-table td span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.payroll-notes-cell {
  max-width: 320px;
  color: var(--muted);
  line-height: 1.55;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .home-hero,
  .hero,
  .archive-hero {
    grid-template-columns: 1fr;
  }

  .home-grid,
  .layout,
  .executive-directory-grid,
  .roadmap-shell {
    grid-template-columns: 1fr;
  }

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

  .archive-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .composer {
    position: static;
  }

  .roadmap-sidebar {
    position: static;
  }

  .personal-user-grid {
    grid-template-columns: 1fr;
  }

  .roadmap-field-grid,
  .roadmap-lane-grid,
  .roadmap-phase-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .page-shell {
    padding: 16px 16px 36px;
  }

  .topbar,
  .hero,
  .archive-hero,
  .home-hero,
  .personal-gate,
  .personal-section,
  .launch-card,
  .info-card,
  .composer,
  .board {
    padding: 20px;
    border-radius: 28px;
  }

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

  .brand {
    justify-content: center;
  }

  .nav-links {
    justify-content: center;
  }

  .hero__metrics,
  .field-row {
    grid-template-columns: 1fr;
  }

  .progress-grid,
  .personal-progress-grid {
    grid-template-columns: 1fr;
  }

  .archive-summary {
    flex-direction: column;
    align-items: start;
  }

  .archive-meta,
  .personal-task-actions {
    justify-content: flex-start;
  }

  .archive-detail-grid {
    grid-template-columns: 1fr;
  }

  .resource-table-shell {
    overflow-x: auto;
  }

  .password-table-shell {
    overflow-x: auto;
  }

  .assignment-table-shell {
    overflow-x: auto;
  }

  .executive-table-shell {
    overflow-x: auto;
  }

  .progress-tile {
    max-width: 220px;
  }

  .section-heading {
    flex-direction: column;
    align-items: stretch;
  }

  .task-top {
    flex-direction: column;
  }

  .task-actions {
    justify-content: flex-start;
  }

  .executive-log-top {
    flex-direction: column;
    align-items: start;
  }
}
