:root {
  --ink: #172223;
  --muted: #5c6868;
  --line: #dce2df;
  --paper: #f8faf8;
  --orange: #d74822;
  --lime: #e0fa9b;
  --white: #fff;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}
button:disabled {
  opacity: 0.5;
  cursor: wait;
}
[hidden] {
  display: none !important;
}
.sidebar {
  width: 248px;
  position: fixed;
  inset: 0 auto 0 0;
  background: #fff;
  border-right: 1px solid var(--line);
  padding: 35px 24px 24px;
  display: flex;
  flex-direction: column;
  z-index: 2;
}
.brand {
  font-size: 31px;
  font-weight: 800;
  letter-spacing: -1.8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  font-size: 24px;
  font-weight: 400;
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  background: var(--orange);
  color: #fff;
  border-radius: 8px;
  letter-spacing: 0;
}
.sidebar-caption {
  font-size: 11px;
  letter-spacing: 1.6px;
  color: var(--muted);
  margin: 28px 0 16px;
}
nav {
  display: grid;
  gap: 6px;
}
.nav {
  border: 0;
  background: none;
  text-align: left;
  padding: 13px 10px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  line-height: 1.4;
}
.nav span {
  font-size: 20px;
  width: 21px;
  color: var(--ink);
}
.nav.active {
  background: var(--lime);
  color: var(--ink);
  font-weight: 600;
}
.nav:hover {
  background: #eff3ed;
}
.sidebar-note {
  margin-top: 50px;
  border-top: 1px solid var(--line);
  padding-top: 25px;
}
.mini-label {
  font-size: 10px;
  letter-spacing: 1.4px;
}
.sidebar-note p {
  font-family: Georgia, serif;
  font-size: 23px;
  margin: 10px 0 17px;
}
.sidebar-note a {
  font-size: 13px;
}
.sidebar-bottom {
  margin-top: auto;
  padding-top: 35px;
  display: grid;
  gap: 14px;
}
.sidebar-bottom > a {
  font-size: 12px;
  color: var(--muted);
}
.account-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  font-size: 13px;
}
.sidebar-bottom small {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
}
.workspace {
  margin-left: 248px;
}
.topbar {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 0 44px;
  background: #fff;
  font-size: 13px;
}
.topbar > span {
  color: var(--muted);
}
.topbar > div {
  display: flex;
  align-items: center;
  gap: 25px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
}
.button:hover {
  background: #2e4141;
  text-decoration: none;
}
.button.small {
  padding: 10px 15px;
  font-size: 13px;
}
.button.secondary {
  background: white;
  color: var(--ink);
  border-color: #cbd3cf;
}
.button.secondary:hover {
  background: #eef3eb;
}
main {
  max-width: 1470px;
  margin: auto;
  padding: 0 44px;
}
.page-intro {
  padding: 49px 0 34px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.7px;
  margin: 0 0 17px;
  color: var(--muted);
}
h1 {
  font-size: clamp(32px, 3.25vw, 51px);
  line-height: 1.08;
  letter-spacing: -2px;
  font-weight: 500;
  margin: 0 0 19px;
}
.orange {
  color: var(--orange);
}
.intro-copy {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}
.index-stamp {
  transform: rotate(7deg);
  display: flex;
  flex-direction: column;
  border: 1px solid #25372b;
  background: var(--lime);
  padding: 22px 20px;
  flex: 0 0 152px;
  width: 152px;
  height: 152px;
  justify-content: space-between;
  margin-right: 15px;
}
.index-stamp span {
  font-size: 24px;
  letter-spacing: -1px;
  line-height: 1.05;
}
.index-stamp small {
  font-size: 8px;
  letter-spacing: 0.9px;
}
.search-bar {
  display: flex;
  gap: 14px;
  align-items: center;
  background: #fff;
  border: 1px solid #bcc8c0;
  border-radius: 9px;
  padding: 7px 8px 7px 19px;
  box-shadow: 0 3px 8px #17222305;
}
.search-bar > span {
  font-size: 30px;
  line-height: 1;
  color: var(--muted);
}
.search-bar input {
  flex: 1;
  width: 0;
  min-width: 0;
  border: 0;
  padding: 12px 2px;
  background: transparent;
  font-size: 16px;
  color: var(--ink);
}
.filter-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 20px 0 33px;
  flex-wrap: wrap;
}
.segmented {
  display: flex;
  gap: 4px;
}
.segmented button {
  border: 0;
  background: none;
  padding: 9px 13px;
  font-size: 13px;
  color: var(--muted);
  border-radius: 5px;
}
.segmented button.selected {
  background: var(--ink);
  color: #fff;
}
.selects {
  display: flex;
  gap: 12px;
}
select {
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
  padding: 9px 29px 9px 12px;
  font-size: 13px;
  max-width: 100%;
}
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 17px;
  gap: 15px;
}
h2 {
  font-size: 20px;
  letter-spacing: -0.5px;
  margin: 0;
  font-weight: 500;
}
.muted {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 22px 21px;
  min-height: 278px;
  transition:
    transform 0.15s,
    border-color 0.15s;
}
.card:hover {
  border-color: #a3b29f;
  transform: translateY(-2px);
}
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 21px;
}
.tag {
  font-size: 10px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  display: inline-block;
  padding: 5px 7px;
  background: #edf3e9;
  border-radius: 3px;
  font-weight: 600;
}
.tag.request {
  background: #fff0e6;
  color: #aa441d;
}
.tag.private {
  background: #eff0f5;
}
.card-region {
  color: var(--muted);
  font-size: 11px;
}
.card h3 {
  font-size: 20px;
  letter-spacing: -0.5px;
  font-weight: 500;
  line-height: 1.22;
  margin: 0 0 12px;
  overflow-wrap: anywhere;
}
.card-title {
  background: none;
  padding: 0;
  border: 0;
  text-align: left;
  color: inherit;
  font: inherit;
}
.card p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 21px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-meta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #edf0ed;
  display: flex;
  justify-content: space-between;
  gap: 7px;
  align-items: center;
  font-size: 11px;
  color: var(--muted);
}
.card-meta strong {
  font-weight: 400;
  color: var(--ink);
  display: block;
  max-width: 190px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.card-meta small {
  display: block;
  margin-top: 5px;
  font-size: 10px;
}
.card-arrow {
  border: 1px solid var(--line);
  background: white;
  flex: 0 0 29px;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  color: var(--ink);
}
.watch-banner {
  margin-top: 27px;
  display: flex;
  align-items: center;
  gap: 19px;
  background: #eef4e8;
  border: 1px solid #d5e0cb;
  border-radius: 8px;
  padding: 22px 24px;
}
.watch-glyph {
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
}
.watch-banner h3 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 7px;
}
.watch-banner p {
  font-size: 12px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}
.watch-banner .button {
  margin-left: auto;
  font-size: 12px;
}
.principles {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 31px 0;
  font-size: 10px;
  color: #899487;
  letter-spacing: 0.4px;
}
.principles strong {
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  margin-left: 8px;
  letter-spacing: 0;
}
footer {
  border-top: 1px solid var(--line);
  padding: 23px 0 30px;
  color: var(--muted);
  font-size: 11px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  line-height: 1.7;
}
footer > div {
  display: flex;
  gap: 20px;
}
.simple-intro {
  padding: 48px 0 28px;
}
.simple-intro .button {
  margin-top: 22px;
}
.list-grid {
  display: grid;
  gap: 16px;
  margin: 25px 0 40px;
}
.list-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 23px;
  background: white;
}
.list-item h3 {
  margin: 12px 0;
  font-size: 21px;
  font-weight: 500;
}
.list-item p {
  line-height: 1.6;
  overflow-wrap: anywhere;
}
.list-item .button {
  margin-right: 10px;
  margin-top: 10px;
}
.list-item ul {
  padding-left: 20px;
  line-height: 1.8;
}
.empty {
  grid-column: 1/-1;
  text-align: center;
  background: #fff;
  border: 1px dashed #bac7b3;
  border-radius: 8px;
  padding: 40px 25px;
}
.empty h3 {
  font-size: 23px;
  font-weight: 500;
  margin: 0 0 12px;
}
.empty p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 auto;
  max-width: 510px;
  font-size: 14px;
}
.info-strip,
.preview-notice {
  padding: 14px 18px;
  background: #f0f5e8;
  border: 1px solid #d2dec4;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.6;
}
.preview-notice {
  margin-top: 20px;
  background: #fff4df;
  border-color: #edddba;
  font-size: 11px;
  letter-spacing: 0.4px;
}
dialog {
  width: min(590px, calc(100% - 32px));
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 28px;
  color: var(--ink);
  max-height: 90dvh;
  overflow-y: auto;
  background: #fff;
  box-shadow: 0 20px 90px #17222333;
}
dialog::backdrop {
  background: #14221d66;
  backdrop-filter: blur(4px);
}
.dialog-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.dialog-heading h2 {
  font-size: 24px;
}
.close {
  border: 0;
  background: #f1f3ef;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  font-size: 24px;
  line-height: 1;
  color: var(--ink);
}
dialog p {
  font-size: 14px;
  line-height: 1.65;
}
label {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}
label > input:not([type="checkbox"]):not([type="radio"]),
label > textarea,
label > select {
  width: 100%;
  display: block;
  margin-top: 6px;
  padding: 11px 12px;
  background: #fafcf9;
  border: 1px solid #cdd6ce;
  border-radius: 5px;
  font-size: 16px;
  color: var(--ink);
}
textarea {
  resize: vertical;
}
.check {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 13px;
}
.check input {
  margin-top: 4px;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  accent-color: var(--ink);
}
.check a {
  text-decoration: underline;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.divider {
  border-top: 1px solid var(--line);
  margin: 25px 0;
  padding-top: 22px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 1px;
}
.form-error {
  color: #ad3218;
  font-size: 13px;
}
.text-button {
  background: none;
  border: 0;
  padding: 14px 0;
  font-size: 13px;
  text-decoration: underline;
  color: var(--muted);
}
#keyOutput {
  width: 100%;
  min-height: 80px;
  font-family: monospace;
  font-size: 14px;
  padding: 10px;
  overflow-wrap: anywhere;
}
.watch-choices > label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid var(--line);
  padding: 15px;
  border-radius: 6px;
}
.watch-choices small {
  display: block;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 6px;
}
.watch-choices input {
  margin-top: 5px;
  accent-color: var(--ink);
}
#detailContent h2 {
  font-size: 32px;
  line-height: 1.15;
  margin: 18px 0;
}
#detailContent .description {
  white-space: pre-wrap;
}
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 23px 0;
}
.evidence {
  background: #f0f5e9;
  border-radius: 6px;
  padding: 16px;
  font-size: 13px;
  line-height: 1.7;
}
.evidence strong {
  display: block;
}
.detail-source {
  overflow-wrap: anywhere;
  text-decoration: underline;
}
.share-page {
  max-width: 800px;
  margin: 70px auto;
  padding: 0 25px;
}
.share-page .brand {
  margin-bottom: 60px;
}
.share-page h1 {
  font-size: 48px;
}
.share-page .lead {
  font-size: 20px;
  line-height: 1.7;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.share-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 30px;
  flex-wrap: wrap;
}
#toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  padding: 14px 24px;
  border-radius: 7px;
  z-index: 10;
  font-size: 14px;
  max-width: 90vw;
  box-shadow: 0 5px 25px #17222330;
}
.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;
}
#loadMore {
  margin-top: 20px;
}
@media (min-width: 1500px) {
  .cards {
    gap: 20px;
  }
  .card {
    min-height: 285px;
  }
  .page-intro {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}
@media (max-width: 1200px) {
  .sidebar {
    width: 215px;
    padding: 28px 18px;
  }
  .workspace {
    margin-left: 215px;
  }
  main {
    padding: 0 28px;
  }
  .topbar {
    padding: 0 28px;
  }
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .index-stamp {
    width: 125px;
    height: 125px;
    flex-basis: 125px;
    padding: 17px;
  }
  .index-stamp span {
    font-size: 21px;
  }
  .index-stamp small {
    font-size: 7px;
  }
  .principles {
    flex-wrap: wrap;
  }
  .watch-banner {
    flex-wrap: wrap;
  }
  .watch-banner .button {
    margin-left: 50px;
  }
}
@media (max-width: 760px) {
  .sidebar {
    position: static;
    width: auto;
    padding: 18px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .brand {
    font-size: 27px;
  }
  .sidebar-caption,
  .sidebar-note,
  .sidebar-bottom {
    display: none;
  }
  .sidebar nav {
    display: flex;
    overflow-x: auto;
    margin-top: 16px;
    gap: 6px;
  }
  .nav {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 10px;
    font-size: 12px;
  }
  .nav span {
    font-size: 17px;
    width: auto;
  }
  .workspace {
    margin-left: 0;
  }
  .topbar {
    height: 62px;
    padding: 0 20px;
  }
  .topbar > span {
    font-size: 11px;
  }
  .topbar > div {
    gap: 12px;
  }
  .topbar > div > a {
    display: none;
  }
  .button.small {
    font-size: 11px;
  }
  main {
    padding: 0 20px;
  }
  .page-intro {
    padding: 33px 0 25px;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 1.2px;
  }
  h1 {
    font-size: 35px;
    letter-spacing: -1.4px;
  }
  .intro-copy {
    font-size: 14px;
  }
  .index-stamp {
    display: none;
  }
  .search-bar {
    flex-wrap: wrap;
    padding: 10px 12px;
    gap: 5px;
  }
  .search-bar > span {
    display: none;
  }
  .search-bar input {
    flex-basis: 100%;
    width: 100%;
    padding: 10px 3px;
    font-size: 16px;
  }
  .search-bar .button {
    width: 100%;
    padding: 12px;
    font-size: 13px;
  }
  .filter-row {
    margin: 17px 0 25px;
    gap: 15px;
  }
  .selects {
    width: 100%;
  }
  .selects select {
    flex: 1;
    min-width: 0;
    padding-right: 15px;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .card {
    min-height: 245px;
    padding: 22px;
  }
  .card h3 {
    font-size: 23px;
  }
  .card p {
    font-size: 14px;
  }
  .section-heading h2 {
    font-size: 18px;
  }
  .section-heading .muted {
    font-size: 11px;
  }
  .watch-banner {
    padding: 20px;
    gap: 12px;
  }
  .watch-glyph {
    display: none;
  }
  .watch-banner .button {
    margin: 5px 0 0;
  }
  .principles {
    display: grid;
    gap: 14px;
    padding: 25px 0;
  }
  footer {
    flex-direction: column;
    gap: 10px;
  }
  .simple-intro {
    padding-top: 35px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  dialog {
    padding: 22px;
  }
  .share-page {
    margin-top: 35px;
  }
  .share-page h1 {
    font-size: 36px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}
.connect-page{max-width:1120px;margin:auto;padding:0 40px}.connect-header{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:35px 0 65px;font-size:14px}.connect-page h1{font-size:clamp(36px,5vw,64px);letter-spacing:-2px}.connect-page .lead{font-size:20px;line-height:1.65;color:var(--muted);margin-bottom:38px}.connection-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px}.connection-card{background:#fff;border:1px solid var(--line);border-radius:10px;padding:28px}.step-number{font-size:12px;color:var(--orange);letter-spacing:1px;font-weight:600}.connection-card h2{font-size:25px;line-height:1.25;margin:20px 0 15px}.connection-card p,.connection-section p{font-size:16px;line-height:1.7}.connection-card p.muted,.connection-section p.muted{font-size:14px}.connection-card a,.connection-section a{font-size:14px;text-decoration:underline}.copy-row{display:flex;gap:8px}.copy-row input{min-width:0;width:100%;font:13px monospace;border:1px solid var(--line);padding:12px;border-radius:5px;background:var(--paper)}.connection-section{padding:40px 0;border-top:1px solid var(--line);margin-top:35px}.connection-section h2{font-size:26px}.prompt-example{background:#edf6df;padding:23px;border-radius:8px;margin-top:23px}.prompt-example p{margin-top:0}.connection-section pre{overflow-wrap:anywhere;white-space:pre-wrap;font-size:14px;background:#fff;border:1px solid var(--line);padding:18px;border-radius:6px;line-height:1.7}.coverage-strip{display:flex;flex-wrap:wrap;gap:10px;margin:18px 0}.coverage-pill{border:1px solid var(--line);background:white;border-radius:20px;padding:7px 12px;font-size:12px;color:var(--muted)}.coverage-pill strong{color:var(--ink);font-weight:500}.close-note{color:var(--muted);font-size:14px;line-height:1.6}@media(max-width:760px){.connect-page{padding:0 20px}.connect-header{padding:25px 0 40px}.connection-grid{grid-template-columns:1fr}.connection-card{padding:22px}.connect-header>a:last-child{font-size:12px}.connect-page .lead{font-size:17px}.copy-row{flex-wrap:wrap}.copy-row input{flex-basis:100%}.copy-row .button{width:100%}}
