@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap");
:root {
  font-family: "DM Sans", sans-serif;
  color: #142126;
  background: #f7f8fa;
  font-synthesis: none;
  --green: #214ee8;
  --lime: #dafa6e;
  --line: #dce1e5;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
textarea,
select {
  outline-offset: 4px;
}
button {
  cursor: pointer;
}
button:disabled {
  opacity: 0.55;
  cursor: wait;
}
header {
  max-width: 1280px;
  margin: auto;
  padding: 30px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.brand {
  font-weight: 700;
  font-size: 25px;
  text-decoration: none;
  letter-spacing: -1px;
}
.brand span {
  color: #214ee8;
  padding: 0 4px;
}
nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
}
nav a {
  text-decoration: none;
}
main {
  max-width: 1280px;
  margin: auto;
  padding: 65px 48px;
}
.eyebrow,
.number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
}
h1 {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: clamp(58px, 7vw, 100px);
  line-height: 1.02;
  letter-spacing: -3px;
  margin: 26px 0;
}
h1 em {
  font-weight: 400;
  color: #214ee8;
}
h2 {
  font-family: "DM Sans", sans-serif;
  font-size: 38px;
  line-height: 1.06;
  font-weight: 400;
  margin: 20px 0;
}
h3 {
  font-size: 19px;
}
.lede {
  font-size: 18px;
  line-height: 1.7;
  max-width: 680px;
  color: #546156;
}
.button,
button {
  display: inline-block;
  border: 0;
  background: var(--green);
  color: white;
  padding: 14px 21px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.button.secondary,
button.secondary {
  background: transparent;
  color: var(--green);
  border: 1px solid var(--line);
}
.caption {
  display: inline-block;
  margin: 20px;
  font-size: 12px;
  color: #64705f;
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 65px 0;
}
.offer-grid article {
  padding: 30px;
  background: #ebece2;
  border-radius: 10px;
  min-height: 285px;
  display: flex;
  flex-direction: column;
}
.offer-grid p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 290px;
  margin-bottom: 26px;
}
.offer-grid b {
  margin-top: auto;
  font-size: 14px;
}
.offer-grid .lime {
  background: var(--lime);
}
.offer-grid .dark {
  background: var(--green);
  color: #f8faef;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.guide-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 12px 0 32px;
}
.guide-links a {
  padding: 25px 20px;
  text-decoration: none;
  border-right: 1px solid var(--line);
}
.notice {
  font-size: 13px;
  line-height: 1.7;
  color: #667161;
  max-width: 850px;
}
footer {
  max-width: 1184px;
  margin: 20px auto;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
}
.workspace h1 {
  font-size: 58px;
  letter-spacing: -1px;
}
.workspace {
  padding-top: 35px;
}
.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 26px 0;
}
.tabs a {
  padding: 10px 16px;
  border-radius: 30px;
  text-decoration: none;
  border: 1px solid var(--line);
  font-size: 14px;
}
.tabs a.active {
  background: var(--green);
  color: white;
}
.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 26px;
  margin: 18px 0;
}
.panel p {
  line-height: 1.7;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
label {
  display: block;
  font-size: 13px;
  font-weight: 600;
}
input,
select,
textarea {
  display: block;
  width: 100%;
  padding: 12px;
  border: 1px solid #b5c0ad;
  border-radius: 5px;
  background: white;
  color: #142126;
  margin-top: 7px;
}
textarea {
  min-height: 120px;
  resize: vertical;
}
.full {
  grid-column: 1/-1;
}
.actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.error {
  background: #fae4d8;
  color: #783d26;
  padding: 15px;
  border-radius: 5px;
  line-height: 1.6;
}
.success {
  background: #e5efce;
  padding: 15px;
  border-radius: 5px;
}
.muted {
  color: #6a7567;
  font-size: 13px;
}
.badge {
  display: inline-block;
  padding: 6px 10px;
  background: #edf1ff;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 600;
  margin: 0 6px 8px 0;
}
.row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
}
.check {
  display: flex;
  align-items: start;
  gap: 10px;
  font-weight: 400;
  line-height: 1.6;
  margin: 12px 0;
}
.check input {
  width: auto;
  margin: 5px 0;
}
.answer {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.empty {
  padding: 45px 25px;
  text-align: center;
  border: 1px dashed #a9b79d;
  border-radius: 10px;
}
.two-col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}
.list {
  padding-left: 22px;
  line-height: 1.8;
}
.guide {
  max-width: 800px;
}
.guide h1 {
  font-size: 65px;
}
.guide p,
.guide li {
  line-height: 1.85;
}
.guide pre {
  white-space: pre-wrap;
  background: #e9edde;
  padding: 24px;
  font:
    14px/1.8 "DM Sans",
    sans-serif;
}
.loading {
  padding: 40px;
  color: #667161;
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 13px;
}
td,
th {
  text-align: left;
  border-bottom: 1px solid var(--line);
  padding: 12px;
  word-break: break-word;
}
.table-wrap {
  overflow: auto;
}
small {
  line-height: 1.7;
}
details {
  margin: 16px 0;
}
summary {
  cursor: pointer;
  font-weight: 600;
}
@media (max-width: 700px) {
  header {
    padding: 23px 20px;
  }
  .brand {
    font-size: 21px;
  }
  nav {
    gap: 15px;
    font-size: 12px;
  }
  main {
    padding: 38px 20px;
  }
  h1 {
    letter-spacing: -2px;
  }
  .offer-grid,
  .guide-links,
  .form-grid,
  .two-col {
    grid-template-columns: 1fr;
  }
  .offer-grid {
    margin: 38px 0;
  }
  .offer-grid article {
    min-height: 240px;
  }
  .caption {
    margin: 15px 0;
    display: block;
  }
  .section-head {
    display: block;
  }
  .guide-links a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  footer {
    margin: 20px;
    padding: 20px 0;
    gap: 20px;
  }
  .row {
    flex-direction: column;
  }
  .workspace h1,
  .guide h1 {
    font-size: 46px;
  }
  .panel {
    padding: 20px;
  }
}

[hidden] {
  display: none !important;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}
/* Shared Lucide treatment and the original blue/lime discovery palette. */
.lucide {
  vertical-align: middle;
  flex-shrink: 0;
  display: inline-block;
}
.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.brand {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-size: 24px;
  gap: 0;
}
.brand .brand-symbol {
  width: 34px;
  height: 34px;
  padding: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #214ee8;
  color: #dafa6e;
  border-radius: 11px;
  margin-right: 9px;
}
.brand-symbol .lucide {
  width: 23px;
  height: 23px;
}
.brand .wordmark-end {
  font-family: Georgia, serif;
  font-style: italic;
  color: inherit;
  padding: 0;
  font-weight: 400;
}
.brand span {
  padding: 0;
}
header {
  padding-top: 24px;
  padding-bottom: 24px;
}
header nav {
  align-items: center;
}
.nav-workspace {
  display: flex;
  align-items: center;
  gap: 8px;
}
.button {
  transition:
    transform 0.18s,
    box-shadow 0.18s;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px #214ee820;
}
.discovery-home {
  padding-top: 0;
  padding-bottom: 22px;
}
.discovery-hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
  padding: 60px 0 48px;
}
.hero-copy .eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 1.5px;
}
.live-dot {
  width: 7px;
  height: 7px;
  background: #214ee8;
  border-radius: 50%;
}
.hero-copy h1 {
  font-size: clamp(52px, 5.6vw, 76px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -3.5px;
  margin: 25px 0 22px;
}
.hero-copy h1 em {
  font-family: Georgia, serif;
  font-weight: 400;
}
.hero-description {
  font-size: 18px;
  color: #526169;
  line-height: 1.65;
  margin: 0 0 25px;
}
.hero-foot {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: #637079;
  margin: 16px 0 0;
}
.grant-feature {
  background: #214ee8;
  color: white;
  border-radius: 20px;
  padding: 27px 28px 20px;
  box-shadow: 0 12px 0 -6px #dce4ff;
  overflow: hidden;
}
.feature-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.feature-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.1px;
}
.feature-pill {
  font-size: 11px;
  padding: 6px 11px;
  border: 1px solid #ffffff50;
  border-radius: 30px;
  color: #eef2ff;
}
.grant-feature h2 {
  font-size: 30px;
  letter-spacing: -0.85px;
  line-height: 1.2;
  font-weight: 500;
  margin: 27px 0 28px;
}
.grant-journey {
  display: grid;
  grid-template-columns: 1fr 22px 1fr 22px 1fr;
  align-items: center;
  gap: 5px;
  margin: 0 0 28px;
}
.grant-journey > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  text-align: center;
  color: #e3eaff;
}
.journey-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #ffffff16;
  border: 1px solid #ffffff40;
  border-radius: 16px;
  transform: rotate(-5deg);
}
.journey-icon .lucide {
  width: 28px;
  height: 28px;
  transform: rotate(5deg);
}
.journey-icon.final {
  background: #dafa6e;
  color: #142126;
  border-color: #dafa6e;
  transform: rotate(5deg);
}
.journey-icon.final .lucide {
  transform: rotate(-5deg);
}
.journey-arrow {
  width: 18px;
  color: #ffffff80;
  margin-top: -25px;
}
.feature-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #dafa6e;
  color: #142126;
  text-decoration: none;
  padding: 15px 17px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.18s;
}
.feature-action:hover {
  background: #e7ff9c;
}
.feature-note {
  font-size: 11px;
  color: #d7e0ff;
  text-align: center;
  margin: 13px 0 0;
}
.service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: white;
  border-radius: 12px;
  margin: 0 0 50px;
}
.service-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 22px 18px;
  text-decoration: none;
  border-right: 1px solid var(--line);
}
.service-item:last-child {
  border: 0;
}
.service-icon {
  height: 42px;
  width: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-icon.blue {
  background: #edf1ff;
  color: #214ee8;
}
.service-icon.lime {
  background: #edf6d5;
  color: #536923;
}
.service-icon.peach {
  background: #fff0df;
  color: #a46b30;
}
.service-item h3 {
  font-size: 14px;
  margin: 0 0 6px;
  font-weight: 600;
}
.service-item p {
  font-size: 11px;
  margin: 0;
  color: #65727b;
  line-height: 1.5;
  max-width: 200px;
}
.service-price {
  display: block;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.5px;
  margin-top: 11px;
}
.service-price small {
  font-size: 11px;
  font-weight: 400;
  color: #69727c;
  letter-spacing: 0;
}
.service-arrow {
  margin-left: auto;
  color: #65727b;
}
.service-item:hover h3 {
  color: #214ee8;
}
.opportunity-library {
  scroll-margin-top: 24px;
}
.opportunity-library .section-head {
  margin-bottom: 22px;
}
.opportunity-library .eyebrow {
  font-size: 10px;
  margin: 0 0 10px;
  color: #687581;
}
.opportunity-library h2 {
  font-size: 29px;
  letter-spacing: -1px;
  font-weight: 500;
  margin: 0;
}
.library-count {
  font-size: 12px;
  color: #65727b;
}
.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 23px;
}
.category-filters button {
  background: transparent;
  color: #596670;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  padding: 9px 12px;
}
.category-filters button.selected {
  background: #142126;
  color: white;
  border-color: #142126;
}
.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.opportunity-card {
  display: flex;
  flex-direction: column;
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  min-height: 206px;
  text-decoration: none;
  transition:
    transform 0.18s,
    border-color 0.18s,
    box-shadow 0.18s;
}
.opportunity-card:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}
.opportunity-card:hover {
  transform: translateY(-4px);
  border-color: #a5b9ff;
  box-shadow: 0 8px 22px #14212608;
}
.opportunity-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.opportunity-top > span:last-child {
  font-size: 10px;
  color: #687581;
  text-align: right;
  max-width: 145px;
}
.guide-icon {
  height: 43px;
  width: 43px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tone-0 {
  background: #edf1ff;
  color: #214ee8;
}
.tone-1 {
  background: #edf4df;
  color: #62793c;
}
.tone-2 {
  background: #fdf0e2;
  color: #a8763e;
}
.tone-3 {
  background: #edeafa;
  color: #7862a2;
}
.opportunity-card h3 {
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  font-weight: 500;
  margin: 21px 0 24px;
  max-width: 245px;
}
.opportunity-card h3 a {
  text-decoration: none;
}
.opportunity-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-size: 11px;
  color: #214ee8;
}
.coverage-note {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 22px;
  margin: 28px 0 0;
  background: #edf1fb;
  border-radius: 9px;
  color: #536475;
}
.coverage-note > .lucide {
  color: #214ee8;
}
.coverage-note p {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
}
.coverage-note a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  white-space: nowrap;
  margin-left: auto;
  color: #214ee8;
}
footer {
  align-items: center;
  color: #65727b;
}
.footer-wordmark {
  font-size: 20px;
}
footer > a:last-child {
  font-size: 12px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.guide:has(#guides) {
  max-width: 1280px;
}
.guide:has(#guides) h1 {
  font-size: 58px;
  font-weight: 500;
}
.guide #guides {
  margin-top: 24px;
}
.guide:has(#guides) > p {
  max-width: 580px;
}
.guide:has(#guides) > label {
  max-width: 460px;
}
.prompt-disclosure {
  background: #edf1fb;
  border-radius: 10px;
  padding: 18px;
}
.prompt-disclosure pre {
  max-height: 420px;
  overflow: auto;
}
.workspace h1 {
  font-weight: 500;
}
.workspace h2 {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.6px;
}
@media (max-width: 1050px) {
  .discovery-hero {
    gap: 30px;
  }
  .hero-copy h1 {
    font-size: 60px;
  }
  .service-item {
    padding: 18px 14px;
    gap: 10px;
  }
  .service-arrow {
    display: none;
  }
  .grant-feature {
    padding: 24px 22px 18px;
  }
  .grant-feature h2 {
    font-size: 27px;
  }
  .opportunity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  header {
    flex-wrap: wrap;
    gap: 18px;
  }
  .brand {
    font-size: 23px;
  }
  header nav {
    gap: 20px;
    font-size: 12px;
  }
  .discovery-hero {
    grid-template-columns: 1fr;
    padding: 34px 0 32px;
    gap: 30px;
  }
  .hero-copy h1 {
    font-size: 58px;
    letter-spacing: -3px;
  }
  .hero-description {
    font-size: 16px;
  }
  .grant-feature h2 {
    font-size: 28px;
  }
  .service-strip {
    grid-template-columns: 1fr;
    margin-bottom: 36px;
  }
  .service-item {
    padding: 18px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    align-items: center;
  }
  .service-item > div {
    flex: 1;
  }
  .service-item h3 {
    font-size: 15px;
  }
  .service-item p {
    max-width: none;
  }
  .service-price {
    margin-top: 6px;
    font-size: 20px;
  }
  .service-arrow {
    display: block;
  }
  .opportunity-library h2 {
    font-size: 26px;
  }
  .library-count {
    display: none;
  }
  .opportunity-grid {
    grid-template-columns: 1fr;
  }
  .opportunity-card {
    min-height: 190px;
  }
  .opportunity-card h3 {
    max-width: none;
  }
  .category-filters {
    gap: 6px;
  }
  .category-filters button {
    font-size: 11px;
    padding: 8px 10px;
  }
  .coverage-note {
    flex-wrap: wrap;
    padding: 18px;
  }
  .coverage-note p {
    flex: 1;
  }
  .coverage-note a {
    margin-left: 32px;
  }
  footer {
    flex-wrap: wrap;
  }
  footer > span {
    font-size: 11px;
  }
  .guide:has(#guides) h1 {
    font-size: 44px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* Action-first public guides */
.guide:has(.quick-guide) {
  max-width: 1000px;
  padding-top: 30px;
}
.quick-guide {
  max-width: 820px;
  margin: auto;
}
.guide-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  text-decoration: none;
  color: #596775;
}
.quick-heading {
  padding: 30px 0 22px;
}
.quick-heading .eyebrow {
  color: var(--green);
  margin: 0 0 12px;
}
.guide .quick-heading h1 {
  font-size: clamp(34px, 5.4vw, 54px);
  line-height: 1.04;
  letter-spacing: -2px;
  max-width: 680px;
  margin: 0 0 16px;
}
.guide .quick-heading > p:last-child {
  font-size: 16px;
  line-height: 1.5;
  max-width: 580px;
  color: #596775;
  margin: 0;
}
.quick-start {
  display: flex;
  gap: 22px;
  background: var(--green);
  color: white;
  padding: 28px;
  border-radius: 20px;
}
.quick-start-icon {
  flex: 0 0 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #ffffff20;
  color: var(--lime);
  transform: rotate(-6deg);
}
.quick-start-icon .icon {
  width: 28px;
  height: 28px;
}
.quick-start .eyebrow {
  color: var(--lime);
  margin: 0 0 8px;
}
.guide .quick-start h2 {
  font-size: 27px;
  letter-spacing: -0.8px;
  margin: 0 0 10px;
  line-height: 1.15;
}
.guide .quick-start p {
  line-height: 1.5;
  margin: 0 0 18px;
  font-size: 15px;
  max-width: 510px;
}
.quick-start .quick-copy {
  background: var(--lime);
  color: #142126;
  border: none;
  padding: 13px 20px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 700;
}
.quick-copy:hover {
  background: #e5ff97;
}
.guide .quick-start .copy-feedback {
  font-size: 12px;
  margin: 10px 0 0;
  color: #e2e8ff;
}
.quick-path {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 24px 0;
}
.quick-path > div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  line-height: 1.3;
}
.quick-step-number {
  font-size: 12px;
  color: var(--green);
  background: #e8edff;
  padding: 8px;
  border-radius: 50%;
  font-weight: 700;
}
.quick-detail {
  border-bottom: 1px solid var(--line);
  margin: 0;
  padding: 0;
}
.quick-detail summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  padding: 18px 0;
  font-size: 14px;
}
.quick-detail summary::-webkit-details-marker {
  display: none;
}
.quick-detail[open] > summary .icon {
  transform: rotate(180deg);
}
.quick-detail > p,
.quick-detail li {
  font-size: 14px;
}
.quick-detail h3 {
  font-size: 15px;
}
.guide .quick-detail pre {
  background: #edf0f5;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.6;
  max-height: 420px;
  overflow: auto;
  margin: 0 0 20px;
  overflow-wrap: anywhere;
}
.quick-resources {
  margin: 24px 0;
  background: white;
  border: 1px solid var(--line);
  padding: 22px 24px;
  border-radius: 16px;
}
.guide .quick-resources h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  letter-spacing: -0.3px;
  margin: 0;
}
.quick-resources h2 .icon {
  color: var(--green);
}
.quick-resources ul {
  padding-left: 20px;
  margin: 12px 0;
}
.guide .quick-resources li {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 8px;
  color: #596775;
}
.quick-source {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
}
.guide .quick-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: #596775;
  line-height: 1.5;
  margin: 24px 0;
}
.quick-note .icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.quick-next {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-radius: 16px;
  background: #eaf2d8;
  text-decoration: none;
  font-size: 12px;
}
.quick-next strong {
  display: block;
  font-size: 19px;
  margin-top: 5px;
}
@media (max-width: 600px) {
  .guide:has(.quick-guide) {
    padding: 24px 20px;
  }
  .quick-start {
    padding: 24px;
    gap: 12px;
  }
  .quick-start-icon {
    display: none;
  }
  .guide .quick-heading h1 {
    letter-spacing: -1.3px;
  }
  .quick-path {
    gap: 12px;
  }
  .quick-path > div {
    flex-direction: column;
    align-items: flex-start;
    font-size: 12px;
  }
  .quick-resources {
    padding: 20px;
  }
}

.auth-page {
  max-width: 540px;
  padding: 48px 24px 64px;
  min-height: calc(100svh - 180px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.auth-card {
  padding: 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 12px 48px #14212606;
}
.auth-emblem {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 17px;
  background: var(--green);
  color: var(--lime);
  margin-bottom: 24px;
}
.auth-card .eyebrow {
  font-size: 9px;
  letter-spacing: 1.3px;
  color: #62717e;
  margin: 0 0 12px;
}
.auth-card h1 {
  font-size: clamp(30px, 5vw, 38px);
  line-height: 1.1;
  letter-spacing: -1.4px;
  margin: 0;
  max-width: 340px;
}
.auth-intro {
  color: #687581;
  font-size: 14px;
  line-height: 1.5;
  margin: 14px 0 28px;
}
.auth-form label {
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 8px;
  display: block;
}
.auth-input {
  position: relative;
}
.auth-input > svg {
  position: absolute;
  left: 15px;
  top: 17px;
  color: #8995a0;
  pointer-events: none;
}
.auth-input input {
  height: 52px;
  padding: 12px 14px 12px 44px;
  margin: 0;
  background: #fafbfc;
  border-radius: 10px;
  border: 1px solid #dce1e5;
  width: 100%;
  min-width: 0;
  font-size: 15px;
}
.auth-input input:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}
.auth-submit {
  width: 100%;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
  border-radius: 10px;
  min-height: 50px;
  font-size: 14px;
}
.auth-submit:disabled {
  cursor: not-allowed;
  opacity: 1;
  background: #e9edfa;
  color: #6b77a0;
}
.auth-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  color: #77828b;
  margin: 14px 0 0;
  line-height: 1.5;
}
.auth-status {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 12px;
  line-height: 1.5;
  padding: 13px;
  border-radius: 10px;
  background: #f4f6f8;
  color: #63717d;
  margin: 24px 0 0;
}
.auth-status svg {
  flex-shrink: 0;
  margin-top: 1px;
}
.auth-sent {
  background: #edf5dd;
  color: #44622e;
  overflow-wrap: anywhere;
}
.auth-explore {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 12px;
  color: #62717e;
  text-decoration: none;
  margin-top: 24px;
}
.auth-explore:hover {
  color: var(--green);
  text-decoration: underline;
}
@media (max-width: 480px) {
  .auth-page {
    padding: 28px 18px 40px;
    justify-content: flex-start;
  }
  .auth-card {
    padding: 26px 22px;
    border-radius: 20px;
  }
  .auth-hint {
    font-size: 10px;
  }
}

.workspace-skeleton {
  min-height: 65vh;
}
.skeleton {
  background: #e7ebef;
  border-radius: 6px;
  animation: skeleton-pulse 1.6s ease-in-out infinite;
}
.skeleton-label {
  height: 12px;
  width: 170px;
  margin-bottom: 18px;
}
.skeleton-heading {
  height: 46px;
  width: min(440px, 85%);
  margin-bottom: 24px;
}
.skeleton-line {
  height: 14px;
  width: 90%;
  margin-top: 14px;
}
.skeleton-line.short {
  width: 65%;
}
.skeleton-title {
  padding-top: 12px;
}
.skeleton-tabs {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.skeleton-tabs > div {
  height: 16px;
  width: 110px;
  flex-shrink: 0;
}
.loading-panels {
  display: grid;
  gap: 20px;
}
.skeleton-panel {
  min-height: 190px;
  margin: 0;
}
.skeleton-panel .skeleton-heading {
  height: 24px;
  width: 55%;
}
@keyframes skeleton-pulse {
  50% {
    opacity: 0.5;
  }
}
@media (prefers-reduced-motion: reduce) {
  .skeleton {
    animation: none;
  }
}
