@charset "UTF-8";
:root {
  --bg: #f6f7fb;
  --surface: #fff;
  --ink: #222536;
  --sub: #656b7b;
  --line: #e7e9f0;
  --purple: #6550c8;
  --purple-dark: #513dac;
  --lavender: #f0edfb;
  --green: #217452;
  --green-bg: #eaf6ef;
  --orange: #945221;
  --orange-bg: #fcf1e7;
  --red: #b3374e;
  --red-bg: #fff0f3;
  --radius: 16px;
  --shadow: 0 4px 20px #282d4410;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Noto Sans JP",
    "Hiragino Kaku Gothic ProN",
    Meiryo,
    sans-serif;
  font-synthesis: none;
  color: var(--ink);
  background: var(--bg);
  font-size: 14px;
  line-height: 1.65;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
  opacity: 0.55;
}
a {
  color: var(--purple);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid #927ee0;
  outline-offset: 3px;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1 {
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: -0.04em;
}
h2 {
  font-size: 19px;
  line-height: 1.5;
  letter-spacing: -0.025em;
}
h3 {
  font-size: 15px;
  line-height: 1.6;
}
small {
  font-size: 12px;
}
svg.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.muted {
  color: var(--sub);
}
.eyebrow {
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.16em;
  color: var(--purple);
  margin-bottom: 10px;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  padding: 12px;
  background: #fff;
  z-index: 100;
}
.skip-link:focus {
  top: 10px;
}
.app-shell {
  display: flex;
  min-height: 100vh;
}
.sidebar {
  width: 232px;
  flex-shrink: 0;
  background: #fff;
  border-right: 1px solid var(--line);
  position: fixed;
  inset: 0 auto 0 0;
  display: flex;
  flex-direction: column;
  padding: 28px 18px 18px;
  z-index: 30;
}
.brand {
  display: flex;
  gap: 11px;
  align-items: center;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.05;
  font-weight: 750;
  letter-spacing: -0.04em;
}
.brand:hover {
  text-decoration: none;
}
.brand-sub {
  display: block;
  font-size: 11px;
  letter-spacing: 0.26em;
  font-weight: 650;
  color: var(--sub);
  margin-top: 6px;
}
.workspace-label {
  margin: 30px 0 23px;
  padding: 13px 10px;
  background: #f8f9fb;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 650;
}
.workspace-label small {
  display: block;
  color: var(--sub);
  font-weight: 400;
  font-size: 11px;
  margin-top: 2px;
}
.workspace-symbol {
  height: 28px;
  width: 28px;
  border-radius: 8px;
  background: #e9e5f8;
  color: var(--purple);
  display: grid;
  place-items: center;
}
nav {
  display: grid;
  gap: 5px;
}
.nav-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #777e8d;
  margin: 20px 12px 7px;
  font-weight: 650;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  min-height: 44px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 550;
  color: #65697a;
}
.nav-link:hover {
  background: #f7f6fb;
  text-decoration: none;
  color: var(--purple);
}
.nav-link.active {
  background: var(--lavender);
  color: var(--purple);
  font-weight: 700;
}
.nav-link .nav-count {
  margin-left: auto;
  font-size: 11px;
  border-radius: 5px;
  padding: 0 6px;
  background: #ded7f5;
  color: #5843b2;
}
.sidebar-bottom {
  margin-top: auto;
  padding-top: 28px;
}
.help-link {
  display: flex;
  justify-content: space-between;
  padding: 12px;
  font-size: 12px;
  color: var(--sub);
}
.profile {
  border-top: 1px solid var(--line);
  padding: 18px 9px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.avatar {
  border: 0;
  background: #e9e5f9;
  color: #5343a0;
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.profile-name {
  font-size: 12px;
  max-width: 138px;
  overflow-wrap: anywhere;
}
.profile-role {
  color: var(--sub);
  font-size: 11px;
}
.text-button {
  border: 0;
  background: none;
  color: var(--sub);
  padding: 8px;
  font-size: 12px;
}
.logout {
  margin: 2px 0 0 44px;
}
.main-shell {
  margin-left: 232px;
  min-width: 0;
  width: calc(100% - 232px);
}
.topbar {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 38px;
  gap: 16px;
  background: #ffffffcf;
  border-bottom: 1px solid var(--line);
}
#breadcrumb {
  color: var(--sub);
  font-size: 12px;
  min-width: 0;
  overflow-wrap: anywhere;
}
#breadcrumb strong {
  color: var(--ink);
  font-weight: 600;
}
#breadcrumb .sep {
  margin: 0 10px;
  color: #b8bbc7;
}
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.environment {
  font-size: 11px;
  color: var(--green);
  white-space: nowrap;
  display: flex;
  gap: 6px;
  align-items: center;
}
.environment:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.environment.demo {
  color: var(--orange);
}
.search-button {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--sub);
  border-radius: 8px;
  padding: 7px 10px;
  min-height: 36px;
  font-size: 12px;
}
.search-button svg {
  width: 16px;
  height: 16px;
}
.search-button kbd {
  font: 11px monospace;
  margin-left: 36px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0 5px;
  color: var(--sub);
}
.top-avatar {
  width: 32px;
  height: 32px;
}
.mobile-menu {
  display: none !important;
}
main#main {
  padding: 32px 38px 44px;
  max-width: 1600px;
  margin: auto;
  min-height: calc(100vh - 136px);
}
.page-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}
.page-head .muted {
  margin-top: 7px;
  font-size: 13px;
}
.page-head-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: white;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink);
  text-align: center;
}
.button:hover {
  text-decoration: none;
  background: #f9f9fc;
  border-color: #ccc6e0;
}
.button.primary {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
  box-shadow: 0 3px 7px #6550c81a;
}
.button.primary:hover {
  background: var(--purple-dark);
}
.button.soft {
  color: var(--purple);
  background: var(--lavender);
  border-color: transparent;
}
.button.danger {
  color: var(--red);
  background: var(--red-bg);
  border-color: #f0ccd4;
}
.button.small {
  min-height: 33px;
  padding: 6px 10px;
  font-size: 11px;
}
.button .icon {
  width: 16px;
  height: 16px;
}
.full {
  width: 100%;
}
.icon-button {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--sub);
  font-size: 24px;
  flex-shrink: 0;
}
.hero {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
  background: #efecfa;
  border: 1px solid #e6e0f7;
  border-radius: var(--radius);
  padding: 27px 30px;
  margin-bottom: 23px;
  position: relative;
}
.hero h2 {
  font-size: 24px;
  margin-bottom: 9px;
}
.hero p {
  color: #625d7a;
  font-size: 13px;
  max-width: 520px;
}
.hero .button {
  margin-top: 18px;
}
.hero-side {
  border-left: 1px solid #dcd5ee;
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-side .small-title {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #655d80;
}
.hero-side strong {
  font-size: 17px;
  margin: 7px 0;
  overflow-wrap: anywhere;
}
.hero-countdown {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 3px;
  color: var(--purple);
}
.hero-countdown b {
  font-size: 35px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}
.hero-countdown span {
  font-size: 12px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 25px;
}
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 18px 20px;
}
.stat-top {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  align-items: center;
  font-size: 12px;
  color: var(--sub);
}
.stat-icon {
  height: 29px;
  width: 29px;
  border-radius: 8px;
  background: #f5f3fc;
  color: var(--purple);
  display: grid;
  place-items: center;
}
.stat-icon .icon {
  width: 16px;
  height: 16px;
}
.stat-value {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-top: 10px;
}
.stat-value strong {
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
}
.stat-value span {
  font-size: 11px;
  color: var(--sub);
}
.stat-note {
  font-size: 11px;
  color: var(--sub);
  margin-top: 5px;
}
.columns {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
  gap: 22px;
  margin-bottom: 23px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 0;
}
.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 21px 23px 17px;
}
.card-head a {
  font-size: 11px;
  white-space: nowrap;
}
.card-head .muted {
  font-size: 12px;
}
.card-body {
  padding: 0 23px 22px;
}
.card-padding {
  padding: 24px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin: 25px 0 14px;
}
.section-head small {
  font-weight: 400;
  color: var(--sub);
  margin-left: 8px;
}
.section-head a {
  font-size: 12px;
}
.task-row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 0;
  border-top: 1px solid #f0f1f5;
  min-width: 0;
}
.task-check {
  height: 25px;
  width: 25px;
  border: 1.5px solid #d9dce6;
  border-radius: 7px;
  background: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--green);
}
.task-check .icon {
  height: 15px;
  width: 15px;
}
.task-check.done {
  background: var(--green-bg);
  border-color: #b4ddc5;
}
.task-title {
  flex: 1;
  min-width: 0;
}
.task-title button {
  border: 0;
  background: none;
  padding: 0;
  color: var(--ink);
  text-align: left;
  line-height: 1.65;
  font-size: 12px;
  font-weight: 550;
  overflow-wrap: anywhere;
  min-height: 26px;
}
.task-title small {
  display: block;
  color: var(--sub);
  font-size: 11px;
}
.task-title.completed button {
  text-decoration: line-through;
  color: var(--sub);
}
.due {
  font-size: 11px;
  color: var(--sub);
  white-space: nowrap;
}
.due.overdue {
  color: var(--red);
}
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.6;
  white-space: nowrap;
  background: #f0f1f5;
  color: #5e6576;
}
.pill.purple {
  background: var(--lavender);
  color: #5843b2;
}
.pill.green {
  background: var(--green-bg);
  color: var(--green);
}
.pill.orange {
  background: var(--orange-bg);
  color: var(--orange);
}
.pill.red {
  background: var(--red-bg);
  color: var(--red);
}
.agenda-row {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid #f0f1f5;
}
.date-box {
  width: 39px;
  flex-shrink: 0;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  align-self: start;
  padding: 3px;
}
.date-box small {
  display: block;
  font-size: 11px;
  color: var(--sub);
}
.date-box b {
  font-size: 17px;
  line-height: 1.3;
}
.agenda-copy {
  min-width: 0;
  flex: 1;
}
.agenda-copy a,
.agenda-copy button {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  overflow-wrap: anywhere;
  border: 0;
  background: none;
  text-align: left;
  padding: 0;
  min-height: 26px;
}
.agenda-meta {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-top: 5px;
  color: var(--sub);
  font-size: 11px;
}
.launch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.launch-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  min-width: 0;
  color: var(--ink);
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
.launch-card:hover {
  text-decoration: none;
  border-color: #b6a9e8;
  box-shadow: var(--shadow);
}
.launch-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 8px;
}
.launch-symbol {
  width: 37px;
  height: 37px;
  background: var(--lavender);
  color: var(--purple);
  border-radius: 10px;
  display: grid;
  place-items: center;
}
.launch-symbol.orange {
  background: var(--orange-bg);
  color: var(--orange);
}
.launch-symbol.green {
  background: var(--green-bg);
  color: var(--green);
}
.launch-card h3 {
  font-size: 16px;
  overflow-wrap: anywhere;
  margin-bottom: 6px;
}
.launch-card p {
  font-size: 11px;
  color: var(--sub);
  margin-bottom: 20px;
  overflow-wrap: anywhere;
}
.launch-card-bottom {
  margin-top: auto;
}
.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--sub);
  margin-bottom: 8px;
}
.progress-label strong {
  color: var(--ink);
}
.progress {
  height: 5px;
  border-radius: 5px;
  background: #eeedf5;
  overflow: hidden;
}
.progress span {
  display: block;
  height: 100%;
  background: #8270d6;
  border-radius: 5px;
}
.launch-date {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  font-size: 11px;
  color: var(--sub);
}
.empty {
  padding: 36px 22px;
  text-align: center;
}
.empty-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  background: var(--lavender);
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: var(--purple);
}
.empty h3 {
  font-size: 16px;
  margin-bottom: 7px;
}
.empty p {
  font-size: 12px;
  color: var(--sub);
  max-width: 400px;
  margin: 0 auto 16px;
}
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}
.filter-bar input {
  min-width: 180px;
  flex: 1;
  max-width: 320px;
}
.filter-bar select {
  min-width: 130px;
}
.filter-bar input,
.filter-bar select {
  padding: 9px 12px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: white;
  color: var(--ink);
  font-size: 12px;
}
.segmented {
  display: flex;
  padding: 4px;
  background: #eeedf4;
  border-radius: 9px;
  gap: 3px;
}
.segmented button {
  border: 0;
  background: none;
  color: var(--sub);
  padding: 7px 12px;
  min-height: 32px;
  border-radius: 6px;
  font-size: 11px;
}
.segmented button.active {
  background: #fff;
  box-shadow: 0 1px 4px #20203b0e;
  color: var(--purple);
  font-weight: 650;
}
.table-wrap {
  overflow: auto;
  max-width: 100%;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  text-align: left;
}
th {
  font-weight: 550;
  font-size: 11px;
  color: var(--sub);
  padding: 12px 18px;
  background: #fafbfc;
  white-space: nowrap;
}
td {
  padding: 16px 18px;
  border-top: 1px solid var(--line);
  vertical-align: middle;
}
td strong {
  font-weight: 600;
}
td small {
  display: block;
  font-size: 11px;
  color: var(--sub);
  margin-top: 4px;
}
.number {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.table-title {
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--ink);
  text-align: left;
  font-weight: 600;
  min-height: 28px;
  max-width: 420px;
  overflow-wrap: anywhere;
}
.table-title:hover {
  color: var(--purple);
}
.table-actions {
  display: flex;
  gap: 6px;
  align-items: center;
}
.board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}
.board-column {
  background: #eff0f6;
  border: 1px solid #e8e9f1;
  border-radius: 12px;
  padding: 13px;
  min-width: 0;
}
.board-column h3 {
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  padding: 0 3px;
}
.board-column h3 span {
  font-size: 11px;
  color: var(--sub);
}
.board-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 14px;
  margin-bottom: 10px;
  min-width: 0;
}
.board-card .table-title {
  font-size: 12px;
  line-height: 1.7;
}
.board-card small {
  display: block;
  font-size: 11px;
  color: var(--sub);
  margin: 5px 0 12px;
}
.board-card select {
  font-size: 11px;
  width: 100%;
  background: #f8f9fb;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 7px;
  color: var(--sub);
  min-height: 34px;
}
.board-empty {
  color: var(--sub);
  font-size: 11px;
  padding: 14px 5px;
  text-align: center;
}
.project-hero {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 22px;
}
.project-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 14px;
}
.project-hero h1 {
  margin: 10px 0;
}
.project-hero p {
  max-width: 750px;
  overflow-wrap: anywhere;
  font-size: 13px;
}
.phase-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 25px;
}
.phase-step {
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fafbfc;
  padding: 12px 10px;
  color: var(--sub);
  text-align: center;
  font-size: 11px;
}
.phase-step span {
  display: block;
  font-size: 11px;
  color: #828797;
  margin-bottom: 5px;
}
.phase-step.current {
  background: var(--lavender);
  border-color: #d8cff4;
  color: var(--purple);
  font-weight: 700;
}
.tabs {
  display: flex;
  gap: 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 23px;
  overflow-x: auto;
}
.tab {
  color: var(--sub);
  font-size: 12px;
  padding: 12px 1px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  display: block;
  min-height: 44px;
}
.tab:hover {
  text-decoration: none;
  color: var(--purple);
}
.tab.active {
  color: var(--purple);
  border-color: var(--purple);
  font-weight: 650;
}
.detail-list {
  display: grid;
  gap: 20px;
}
.detail-list dt {
  color: var(--sub);
  font-size: 11px;
  margin-bottom: 5px;
}
.detail-list dd {
  margin: 0;
  font-size: 13px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.notice {
  background: var(--lavender);
  border: 1px solid #e1d9f7;
  border-radius: 10px;
  padding: 13px 16px;
  color: #5e528b;
  font-size: 12px;
  margin: 15px 0;
  line-height: 1.8;
}
.notice.warning {
  background: var(--orange-bg);
  color: var(--orange);
  border-color: #f0dec9;
}
.notice p + p {
  margin-top: 7px;
}
.next-step {
  display: flex;
  gap: 14px;
  background: #faf9fe;
  border: 1px solid #ece7f8;
  border-radius: 11px;
  padding: 17px;
  margin-top: 20px;
}
.next-step .icon {
  color: var(--purple);
  margin-top: 2px;
}
.next-step p {
  font-size: 12px;
  color: var(--sub);
  margin: 4px 0 10px;
}
.calendar-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.calendar-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
.calendar-controls h2 {
  font-size: 18px;
  min-width: 126px;
  text-align: center;
}
.calendar {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}
.weekday {
  font-size: 11px;
  text-align: center;
  padding: 12px;
  background: #f7f8fb;
  color: var(--sub);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.calendar-day {
  min-height: 124px;
  padding: 10px 7px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-width: 0;
}
.calendar-day.outside {
  background: #fafbfc;
}
.day-number {
  font-size: 11px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
}
.day-number.today {
  border-radius: 50%;
  background: var(--purple);
  color: white;
}
.calendar-item {
  display: block;
  border: 0;
  background: var(--lavender);
  border-left: 2px solid #9686d9;
  color: #574a87;
  border-radius: 4px;
  padding: 5px;
  margin-top: 4px;
  font-size: 11px;
  line-height: 1.5;
  text-align: left;
  width: 100%;
  overflow-wrap: anywhere;
}
.calendar-item.task {
  background: #eef5f0;
  color: var(--green);
  border-color: #83b79a;
}
.calendar-item.content {
  background: var(--orange-bg);
  color: var(--orange);
  border-color: #d5a781;
}
.calendar-legend {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 11px;
  color: var(--sub);
  margin-top: 14px;
}
.calendar-legend i {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #a28de4;
  margin-right: 5px;
}
.calendar-legend i.green {
  background: #83b79a;
}
.calendar-legend i.orange {
  background: #d5a781;
}
.calendar-mobile {
  display: none;
}
.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.content-card {
  padding: 23px;
  display: flex;
  flex-direction: column;
}
.content-card-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 17px;
}
.channel-name {
  font-size: 11px;
  color: var(--sub);
  display: flex;
  gap: 6px;
  align-items: center;
}
.content-card h3 {
  font-size: 15px;
  overflow-wrap: anywhere;
}
.content-excerpt {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font-size: 12px;
  line-height: 1.9;
  color: var(--sub);
  padding: 12px 0 20px;
  flex: 1;
}
.content-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 15px;
}
.content-foot small {
  color: var(--sub);
  font-size: 11px;
}
.metrics-chart {
  display: flex;
  align-items: end;
  gap: 14px;
  height: 190px;
  border-bottom: 1px solid var(--line);
  padding: 0 7px;
}
.chart-column {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  gap: 7px;
}
.chart-column strong {
  font-size: 11px;
  font-weight: 500;
}
.chart-bar {
  width: 100%;
  max-width: 55px;
  background: #9b89df;
  border-radius: 5px 5px 0 0;
  min-height: 2px;
}
.chart-column small {
  color: var(--sub);
  font-size: 11px;
  white-space: nowrap;
  margin-bottom: 9px;
}
.settings-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 23px;
}
.settings-section {
  margin-bottom: 22px;
}
.settings-section p {
  font-size: 12px;
  color: var(--sub);
  margin: 8px 0 18px;
}
.setting-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding: 15px 0;
}
.setting-row h3 {
  font-size: 12px;
}
.setting-row p {
  font-size: 11px;
  color: var(--sub);
  margin: 4px 0 0;
}
.key-box {
  background: #f6f6fa;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 14px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font:
    12px/1.7 ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  margin: 14px 0;
  max-width: 100%;
  overflow: auto;
}
.token-once {
  background: var(--orange-bg);
  padding: 18px;
  border-radius: 10px;
  margin: 12px 0;
}
.token-once p {
  color: var(--orange);
  font-size: 12px;
}
.token-once code {
  display: block;
  word-break: break-all;
  font-size: 12px;
  margin: 12px 0;
}
.help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.help-card {
  padding: 25px;
}
.step-number {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--purple);
  margin-bottom: 16px;
  font-weight: 650;
}
.help-card h3 {
  font-size: 16px;
  margin-bottom: 9px;
}
.help-card p {
  font-size: 12px;
  color: var(--sub);
  line-height: 1.9;
}
.help-card .button {
  margin-top: 20px;
}
details {
  border-top: 1px solid var(--line);
  padding: 17px 0;
}
summary {
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  min-height: 26px;
}
details p {
  color: var(--sub);
  font-size: 12px;
  margin-top: 12px;
  line-height: 1.9;
}
.footer {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 20px 38px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: #757b89;
}
.footer span:first-child {
  font-weight: 600;
  letter-spacing: 0.03em;
}
.error-state {
  background: #fff;
  border: 1px solid #efd5dc;
  border-radius: 15px;
  padding: 32px;
  max-width: 800px;
}
.error-state p {
  margin: 13px 0 20px;
  color: var(--sub);
}
dialog {
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 24px 100px #171d3840;
  width: min(640px, calc(100% - 32px));
  padding: 0;
  max-height: calc(100dvh - 48px);
  color: var(--ink);
}
dialog.wide {
  width: min(880px, calc(100% - 32px));
}
dialog::backdrop {
  background: #1b1a324d;
  backdrop-filter: blur(3px);
}
.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 26px 17px;
  gap: 15px;
  border-bottom: 1px solid var(--line);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 2;
}
.modal-head .eyebrow {
  font-size: 11px;
  margin-bottom: 5px;
}
.modal-head h2 {
  font-size: 20px;
}
#modalBody {
  padding: 23px 26px 26px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  min-width: 0;
}
.field.span2 {
  grid-column: 1/-1;
}
.field input,
.field select,
.field textarea {
  border: 1px solid #dfe2eb;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 10px 12px;
  min-height: 42px;
  width: 100%;
  font-size: 13px;
  min-width: 0;
  font-weight: 400;
}
.field textarea {
  resize: vertical;
  line-height: 1.85;
  min-height: 110px;
}
.field textarea.large {
  min-height: 270px;
}
.field-help {
  font-size: 11px;
  color: var(--sub);
  font-weight: 400;
  margin: 0 0 15px;
  line-height: 1.7;
}
.field .field-help {
  margin: 0;
}
.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 9px;
  margin-top: 23px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.form-error {
  color: var(--red);
  font-size: 12px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  margin-top: 14px;
}
.template-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 22px;
}
.template-option {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  cursor: pointer;
  display: flex;
  gap: 9px;
  align-items: start;
  font-size: 12px;
}
.template-option:has(input:checked) {
  border-color: #9e8bdc;
  background: #f8f6ff;
}
.template-option input {
  accent-color: var(--purple);
  margin: 4px 0 0;
  width: 16px;
  height: 16px;
}
.template-option strong {
  display: block;
  font-size: 12px;
}
.template-option small {
  display: block;
  font-size: 11px;
  color: var(--sub);
  margin-top: 5px;
}
.editor-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 23px;
}
.preview-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--sub);
  margin: 0 0 10px;
}
.message-preview {
  border: 1px solid var(--line);
  background: #fafbfc;
  border-radius: 12px;
  padding: 20px;
  position: sticky;
  top: 110px;
}
.message-preview h3 {
  border-bottom: 1px solid var(--line);
  padding-bottom: 13px;
  margin-bottom: 13px;
  font-size: 14px;
  overflow-wrap: anywhere;
}
.message-preview p {
  font-size: 12px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  line-height: 1.95;
}
.search-results {
  display: grid;
  gap: 7px;
  margin-top: 15px;
}
.search-result {
  display: block;
  border: 1px solid var(--line);
  padding: 12px;
  border-radius: 8px;
  color: var(--ink);
  text-align: left;
  background: #fff;
  font-size: 12px;
  width: 100%;
  overflow-wrap: anywhere;
}
.search-result small {
  display: block;
  color: var(--sub);
  font-size: 11px;
}
#toast {
  position: fixed;
  bottom: 24px;
  left: calc(50% + 100px);
  transform: translateX(-50%);
  background: #282b3c;
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  font-size: 12px;
  z-index: 90;
  max-width: calc(100% - 40px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
#toast.show {
  opacity: 1;
}
.page-skeleton {
  display: grid;
  gap: 20px;
}
.page-skeleton div {
  background: linear-gradient(100deg, #eeedf3 30%, #fafafd 48%, #eeedf3 65%);
  background-size: 250% 100%;
  animation: shimmer 2s infinite;
  border-radius: 15px;
  height: 150px;
}
.page-skeleton div:first-child {
  height: 40px;
  width: 40%;
}
@keyframes shimmer {
  to {
    background-position: -150% 0;
  }
}
.auth-page {
  min-height: 100vh;
  background: #fbfbfd;
}
.auth-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.auth-story {
  padding: 55px max(40px, 10vw);
  background: #efebfa;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 70px;
}
.auth-story h1 {
  font-size: 38px;
  line-height: 1.6;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}
.auth-story p {
  color: #67617f;
  line-height: 2;
  font-size: 14px;
}
.auth-story .eyebrow {
  font-size: 11px;
  color: var(--purple);
}
.auth-steps {
  list-style: none;
  padding: 0;
  margin: 33px 0 0;
  display: grid;
  gap: 15px;
}
.auth-steps li {
  font-size: 12px;
  color: #615878;
}
.auth-steps span {
  font-size: 11px;
  letter-spacing: 0.12em;
  padding: 6px 8px;
  border: 1px solid #d8d1ec;
  border-radius: 5px;
  margin-right: 12px;
  color: var(--purple);
}
.auth-note {
  font-size: 11px !important;
}
.auth-card {
  align-self: center;
  justify-self: center;
  width: 100%;
  max-width: 440px;
  padding: 50px 36px;
}
.auth-card h2 {
  font-size: 25px;
  margin-bottom: 10px;
}
.auth-card > .muted,
.auth-card #authContent > .muted {
  font-size: 12px;
  margin-bottom: 30px;
  line-height: 1.9;
}
.auth-card .field {
  margin-top: 19px;
}
.auth-card .form-error {
  margin-bottom: 14px;
}
.auth-footnote {
  font-size: 11px;
  line-height: 1.85;
  color: var(--sub);
  margin-top: 24px;
}
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  color: var(--sub);
  margin: 24px 0;
}
.divider:before,
.divider:after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}
.join-wrap {
  max-width: 470px;
  margin: 60px auto;
  padding: 20px;
}
.join-wrap .brand {
  justify-content: center;
}
.join-wrap .auth-card {
  padding: 35px 0;
}
.nav-backdrop {
  display: none;
}
[hidden] {
  display: none !important;
}
@media (min-width: 1600px) {
  .launch-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .hero {
    padding: 32px 36px;
  }
}
@media (max-width: 1199px) {
  .sidebar {
    width: 210px;
    padding-inline: 14px;
  }
  .main-shell {
    margin-left: 210px;
    width: calc(100% - 210px);
  }
  .topbar {
    padding: 0 26px;
  }
  main#main {
    padding: 28px 26px 38px;
  }
  .launch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .columns {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 16px;
  }
  .card-head {
    padding: 18px;
  }
  .card-body {
    padding: 0 18px 18px;
  }
  .stats-grid {
    gap: 12px;
  }
  .stat {
    padding: 16px;
  }
  .hero {
    padding: 24px;
  }
  .board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .help-grid {
    gap: 12px;
  }
  .help-card {
    padding: 20px;
  }
  .footer {
    padding-inline: 26px;
  }
}
@media (max-width: 959px) {
  .sidebar {
    width: 210px;
  }
  .main-shell {
    margin-left: 210px;
    width: calc(100% - 210px);
  }
  .environment {
    display: none;
  }
  .topbar-actions {
    gap: 12px;
  }
  .search-button kbd {
    display: none;
  }
  .columns,
  .settings-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-side {
    border-left: 0;
    border-top: 1px solid #dcd5ee;
    padding: 16px 0 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3px;
  }
  .hero-side strong {
    grid-column: 1;
    font-size: 14px;
    margin: 0;
  }
  .hero-countdown {
    grid-column: 2;
    grid-row: 1/3;
    margin: 0;
  }
  .hero-countdown b {
    font-size: 28px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .content-grid {
    grid-template-columns: 1fr;
  }
  .help-grid {
    grid-template-columns: 1fr;
  }
  .help-card {
    display: block;
  }
  .calendar-day {
    min-height: 90px;
    padding: 7px 4px;
  }
  .calendar-item {
    font-size: 11px;
  }
  .editor-layout {
    grid-template-columns: 1fr;
  }
  .message-preview {
    position: static;
  }
  .auth-story {
    padding: 40px;
  }
  .auth-story h1 {
    font-size: 31px;
  }
  .auth-layout {
    grid-template-columns: 0.95fr 1fr;
  }
}
@media (max-width: 767px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.2s;
    width: 244px;
    padding: 24px 18px;
    overflow-y: auto;
  }
  .sidebar.open {
    transform: translateX(0);
  }
  .nav-backdrop.visible {
    display: block;
    position: fixed;
    inset: 0;
    border: 0;
    background: #1c1d3a44;
    z-index: 25;
  }
  .main-shell {
    margin-left: 0;
    width: 100%;
  }
  .mobile-menu {
    display: inline-flex !important;
    width: 34px;
    height: 34px;
  }
  .topbar {
    height: 63px;
    padding: 0 18px;
    gap: 12px;
  }
  .topbar-actions {
    margin-left: auto;
    gap: 12px;
  }
  .top-avatar {
    display: none;
  }
  .search-button {
    padding: 7px 9px;
  }
  .search-button > span:nth-child(2) {
    display: none;
  }
  #breadcrumb {
    font-size: 11px;
    flex: 1;
  }
  .topbar .environment {
    display: none;
  }
  main#main {
    padding: 24px 18px 30px;
    min-height: calc(100dvh - 118px);
  }
  .page-head {
    align-items: start;
    margin-bottom: 22px;
    gap: 12px;
  }
  .page-head h1 {
    font-size: 24px;
  }
  .page-head .muted {
    font-size: 12px;
    line-height: 1.8;
  }
  .page-head-actions .button {
    padding: 9px 11px;
    font-size: 11px;
  }
  .page-head-actions {
    flex-shrink: 0;
  }
  .hero {
    padding: 22px;
    gap: 18px;
  }
  .hero h2 {
    font-size: 21px;
    line-height: 1.6;
  }
  .hero p {
    font-size: 12px;
    line-height: 1.9;
  }
  .eyebrow {
    font-size: 11px;
  }
  .hero-side .small-title {
    font-size: 11px;
  }
  .hero-side strong {
    font-size: 13px;
  }
  .stats-grid {
    gap: 11px;
    margin-bottom: 22px;
  }
  .stat {
    padding: 15px 16px;
  }
  .stat-top {
    font-size: 11px;
  }
  .stat-value strong {
    font-size: 26px;
  }
  .stat-note {
    font-size: 11px;
  }
  .stat-icon {
    width: 25px;
    height: 25px;
  }
  .columns {
    gap: 18px;
  }
  .card-head {
    padding: 19px 18px 14px;
  }
  .card-head h2 {
    font-size: 16px;
  }
  .card-body {
    padding: 0 18px 18px;
  }
  .task-row {
    gap: 9px;
  }
  .task-title button {
    font-size: 12px;
  }
  .task-title small {
    font-size: 11px;
  }
  .due {
    font-size: 11px;
  }
  .launch-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .launch-card {
    padding: 21px;
  }
  .launch-card-top {
    margin-bottom: 15px;
  }
  .launch-card h3 {
    font-size: 16px;
  }
  .launch-card p {
    margin-bottom: 18px;
    font-size: 12px;
  }
  .progress-label {
    font-size: 11px;
  }
  .launch-date {
    font-size: 11px;
  }
  .launch-grid.home-grid .launch-card {
    min-height: 220px;
  }
  .section-head h2 {
    font-size: 17px;
  }
  .section-head small {
    font-size: 11px;
  }
  .filter-bar {
    gap: 8px;
  }
  .filter-bar input {
    max-width: none;
    flex-basis: 100%;
    min-width: 0;
  }
  .filter-bar select {
    flex: 1;
    min-width: 0;
    font-size: 11px;
  }
  .segmented {
    width: 100%;
    justify-content: space-between;
  }
  .segmented button {
    flex: 1;
    padding-inline: 7px;
  }
  .board {
    grid-template-columns: 1fr;
  }
  .board-column {
    padding: 14px;
  }
  .board-card {
    padding: 16px;
  }
  .board-card .table-title {
    font-size: 13px;
  }
  .board-card small {
    font-size: 11px;
  }
  .board-card select {
    min-height: 38px;
    font-size: 12px;
  }
  .table-wrap table {
    min-width: 630px;
  }
  .project-hero {
    padding: 20px;
  }
  .project-hero h1 {
    font-size: 23px;
    overflow-wrap: anywhere;
  }
  .project-meta {
    font-size: 11px;
    gap: 8px;
  }
  .phase-track {
    gap: 5px;
    margin-top: 22px;
  }
  .phase-step {
    padding: 9px 4px;
    font-size: 11px;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }
  .phase-step span {
    font-size: 11px;
  }
  .tabs {
    gap: 21px;
    margin-bottom: 20px;
  }
  .tab {
    font-size: 12px;
  }
  .card-padding {
    padding: 20px;
  }
  .content-card {
    padding: 21px;
  }
  .content-excerpt {
    font-size: 12px;
  }
  .calendar {
    display: none;
  }
  .calendar-mobile {
    display: block;
  }
  .calendar-toolbar {
    gap: 16px;
  }
  .calendar-controls h2 {
    font-size: 17px;
  }
  .calendar-controls {
    gap: 6px;
  }
  .calendar-legend {
    margin: 17px 0;
  }
  .calendar-mobile .agenda-row {
    padding: 17px 0;
  }
  .calendar-mobile .agenda-copy a,
  .calendar-mobile .agenda-copy button {
    font-size: 13px;
  }
  .calendar-mobile .agenda-meta {
    font-size: 11px;
  }
  .calendar-mobile .date-box {
    width: 45px;
  }
  .calendar-mobile .date-box b {
    font-size: 20px;
  }
  .calendar-mobile .date-box small {
    font-size: 11px;
  }
  .footer {
    padding: 19px 18px;
    font-size: 11px;
  }
  #toast {
    left: 50%;
    bottom: 18px;
  }
  .form-grid {
    gap: 16px;
  }
  .modal-head {
    padding: 20px 19px 16px;
  }
  .modal-head h2 {
    font-size: 18px;
  }
  #modalBody {
    padding: 20px 19px;
  }
  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
  }
  .field {
    font-size: 12px;
  }
  .field-help {
    font-size: 11px;
  }
  .template-option {
    padding: 12px 10px;
  }
  .template-option strong {
    font-size: 11px;
  }
  .template-option small {
    font-size: 11px;
  }
  .template-option input {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
  }
  .form-actions .button {
    min-height: 42px;
  }
  .help-card p {
    font-size: 12px;
  }
  .settings-grid {
    gap: 0;
  }
  .setting-row {
    align-items: start;
  }
  .setting-row .button {
    flex-shrink: 0;
  }
  .auth-layout {
    display: block;
  }
  .auth-story {
    padding: 28px 25px;
    gap: 0;
  }
  .auth-story > div,
  .auth-story > .auth-note {
    display: none;
  }
  .auth-story .brand {
    font-size: 23px;
  }
  .auth-card {
    padding: 36px 25px;
    max-width: 460px;
    margin: auto;
  }
  .auth-card h2 {
    font-size: 23px;
  }
  .auth-page {
    background: #fbfbfd;
  }
  .auth-card .field input {
    font-size: 16px;
  }
  .join-wrap {
    margin: 25px auto;
  }
  .join-wrap .auth-card {
    padding: 30px 0;
  }
  .metrics-chart {
    gap: 8px;
  }
  .chart-column small {
    font-size: 11px;
  }
  .chart-column strong {
    font-size: 11px;
  }
}
@media (max-width: 374px) {
  h1 {
    font-size: 22px;
  }
  .page-head {
    flex-wrap: wrap;
  }
  .page-head-actions {
    width: 100%;
  }
  .page-head-actions .button {
    flex: 1;
  }
  .hero {
    padding: 19px;
  }
  .hero h2 {
    font-size: 19px;
  }
  .stat {
    padding: 13px 12px;
  }
  .stat-value strong {
    font-size: 24px;
  }
  .stat-icon {
    display: none;
  }
  .phase-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field.span2 {
    grid-column: auto;
  }
  .template-grid {
    grid-template-columns: 1fr;
  }
  .calendar-toolbar > .button {
    width: 100%;
  }
  .task-row {
    flex-wrap: wrap;
  }
  .task-title {
    flex-basis: calc(100% - 40px);
  }
  .task-row > .due,
  .task-row > .pill {
    margin-left: 34px;
  }
  .footer span:last-child {
    max-width: 135px;
    text-align: right;
  }
  .calendar-controls h2 {
    min-width: 115px;
  }
  .card-head {
    gap: 8px;
  }
  .card-head a {
    font-size: 11px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* Readable controls at every breakpoint. */
.calendar-toolbar > select {
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: white;
  color: var(--ink);
  font-size: 12px;
  font-family: inherit;
  max-width: 100%;
}
.calendar-item {
  font-size: 11px;
}
.card-head a,
.section-head a {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
}
.task-check {
  min-width: 28px;
  min-height: 28px;
}
.calendar-legend,
.stat-note,
.task-title small,
.agenda-meta,
.launch-card p,
.progress-label,
.content-foot small {
  font-size: 11px;
}
@media (max-width: 767px) {
  .button.small,
  .calendar-controls .button,
  .card-head a,
  .section-head a {
    font-size: 11px;
  }
  .help-link {
    min-height: 44px;
  }
  .task-check {
    min-width: 30px;
    min-height: 30px;
  }
  .calendar-toolbar > select {
    width: 100%;
  }
  .environment.demo {
    display: none;
  }
}

/* Section labels remain legible on dense task and settings screens. */
.board-column h3,
.setting-row h3,
.next-step h3 {
  font-size: 13px;
}
