:root {
  color-scheme: light;
  --ink: #171922;
  --muted: #5f6472;
  --brand: #d93618;
  --brand-deep: #a92413;
  --brand-soft: #fff0eb;
  --brand-glow: rgba(255, 104, 48, 0.18);
  --orange: #ff9b26;
  --sun: #ffd34f;
  --community: #c2410c;
  --community-soft: #fff0eb;
  --cyan: #078a9f;
  --accent: #ffd34f;
  --surface: #ffffff;
  --surface-soft: #f7f7fb;
  --line: #e4e5ec;
  --line-strong: #d2d4de;
  --shadow: 0 26px 75px rgba(27, 31, 45, 0.1);
  --shadow-small: 0 14px 35px rgba(27, 31, 45, 0.075);
  --radius: 24px;
  --content: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  background: #faf9f8;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  margin: 0;
  min-width: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 4% -2%, rgba(255, 186, 121, 0.26), transparent 31rem),
    radial-gradient(circle at 99% 13%, rgba(217, 54, 24, 0.12), transparent 27rem),
    linear-gradient(rgba(215, 218, 229, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 218, 229, 0.14) 1px, transparent 1px),
    #faf9f8;
  background-size: auto, auto, 48px 48px, 48px 48px, auto;
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--brand-deep);
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.16em;
}

a:hover {
  color: #7f1d0f;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  border-radius: 10px;
  padding: 10px 14px;
  color: #ffffff;
  background: #171922;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(224, 225, 232, 0.88);
  background: rgba(252, 251, 250, 0.9);
  box-shadow: 0 8px 28px rgba(30, 32, 44, 0.035);
  backdrop-filter: blur(22px) saturate(150%);
}

.nav-shell,
.page-shell,
.footer-shell {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.nav-shell {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  text-decoration: none;
}

.wordmark-mark {
  display: block;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(217, 54, 24, 0.2));
}

.wordmark-type {
  display: block;
  width: 124px;
  height: auto;
  flex: 0 0 auto;
  filter: brightness(0) saturate(100%);
  opacity: 0.94;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.primary-nav a {
  border-radius: 999px;
  padding: 9px 13px;
  color: #4b4f5d;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--brand-deep);
  background: var(--brand-soft);
}

.nav-launch-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 8px;
  border-radius: 14px;
  padding: 8px 14px;
  color: #ffffff;
  background: #171922;
  box-shadow: 0 10px 24px rgba(23, 25, 34, 0.16);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.nav-launch-cta strong {
  color: var(--sun);
  font-size: 14px;
}

.nav-launch-cta:hover {
  color: #ffffff;
  background: #292c39;
  box-shadow: 0 14px 30px rgba(23, 25, 34, 0.2);
  transform: translateY(-1px);
}

.page-shell {
  padding-block: 30px 96px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 8px;
  color: #87958e;
  content: "/";
}

.breadcrumbs a {
  color: var(--muted);
}

.hero {
  overflow: hidden;
  position: relative;
  padding: clamp(30px, 5vw, 64px);
  border: 1px solid rgba(224, 225, 232, 0.94);
  border-radius: 36px;
  background:
    linear-gradient(142deg, rgba(255, 255, 255, 0.99), rgba(255, 247, 242, 0.97) 56%, rgba(245, 244, 255, 0.98));
  box-shadow: var(--shadow);
}

.hero::after {
  position: absolute;
  width: 360px;
  height: 360px;
  right: -180px;
  bottom: -230px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sun), var(--orange));
  content: "";
  opacity: 0.42;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(330px, 0.84fr);
  align-items: center;
  gap: clamp(34px, 6vw, 76px);
}

.hero-content {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 12px;
  border-radius: 999px;
  padding: 6px 11px;
  color: var(--brand-deep);
  background: var(--brand-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink);
  font-weight: 880;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5.7vw, 4.65rem);
  letter-spacing: -0.058em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 3.5vw, 2.3rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.hero-copy {
  max-width: 760px;
  margin: 0;
  color: #555b69;
  font-size: clamp(1.05rem, 2.4vw, 1.28rem);
}

.byline {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-top: 24px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.byline-author {
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--brand-deep);
  background: var(--brand-soft);
  font-weight: 850;
  text-decoration: none;
}

.byline-author:hover,
.byline-author:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  margin-top: 28px;
}

.hero-actions .primary-cta {
  margin-top: 0;
}

.text-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 7px;
  color: #333745;
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
}

.text-cta:hover {
  color: var(--brand-deep);
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 26px;
  color: #4f5562;
  font-size: 13px;
  font-weight: 800;
}

.hero-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-trust-row svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--brand);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-visual {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
}

.hero-orbit {
  position: absolute;
  border: 1px dashed rgba(217, 54, 24, 0.26);
  border-radius: 50%;
}

.hero-orbit--one {
  width: 330px;
  height: 330px;
}

.hero-orbit--two {
  width: 250px;
  height: 250px;
  border-color: rgba(217, 54, 24, 0.18);
}

.challenge-preview {
  position: relative;
  z-index: 2;
  width: min(100%, 354px);
  border: 1px solid rgba(210, 212, 222, 0.95);
  border-radius: 28px;
  padding: 23px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 28px 65px rgba(30, 32, 44, 0.16);
  transform: rotate(1.5deg);
}

.challenge-preview::before {
  position: absolute;
  z-index: -1;
  inset: 12px -12px -12px 12px;
  border-radius: inherit;
  background: linear-gradient(145deg, #ffe8de, #fff0eb);
  content: "";
}

.challenge-preview__top {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 9px;
  align-items: center;
  gap: 10px;
  color: #5f6472;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.challenge-preview__top > i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #31b36b;
  box-shadow: 0 0 0 5px rgba(49, 179, 107, 0.12);
}

.challenge-preview__icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 13px;
  color: #ffffff;
  background: linear-gradient(145deg, var(--brand), #ff6b2c);
  box-shadow: 0 8px 18px var(--brand-glow);
}

.challenge-preview--community .challenge-preview__icon {
  background: linear-gradient(145deg, var(--community), #f97316);
}

.challenge-preview--shield .challenge-preview__icon {
  background: linear-gradient(145deg, #078a9f, #18b8c8);
}

.challenge-preview__icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.challenge-preview > strong {
  display: block;
  margin-top: 24px;
  color: var(--ink);
  font-size: 1.42rem;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.challenge-preview__steps {
  display: grid;
  gap: 9px;
  margin-top: 19px;
}

.challenge-preview__steps div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  border: 1px solid #ececf1;
  border-radius: 13px;
  padding: 9px 11px;
  color: #656a78;
  background: #fafafd;
  font-size: 12px;
  font-weight: 750;
}

.challenge-preview__steps b {
  color: #9498a4;
  font-size: 10px;
}

.challenge-preview__steps .is-active {
  border-color: #ffd7ca;
  color: var(--brand-deep);
  background: var(--brand-soft);
}

.challenge-preview__steps .is-active b {
  color: var(--brand-deep);
}

.challenge-preview__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  color: #646a77;
  font-size: 10px;
}

.challenge-preview__footer > span {
  display: flex;
}

.challenge-preview__footer i {
  width: 24px;
  height: 24px;
  margin-left: -5px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: var(--brand);
}

.challenge-preview__footer i:nth-child(2) { background: #e94b6f; }
.challenge-preview__footer i:nth-child(3) { background: #0aa0b2; }

.hero-proof-card {
  position: absolute;
  z-index: 3;
  right: -12px;
  bottom: 26px;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: 9px;
  border: 1px solid rgba(255, 205, 186, 0.95);
  border-radius: 18px;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 40px rgba(43, 34, 31, 0.14);
  transform: rotate(-2deg);
}

.hero-proof-card__avatars {
  display: flex;
  grid-row: 1 / span 2;
}

.hero-proof-card__avatars i {
  display: grid;
  width: 28px;
  height: 28px;
  margin-left: -7px;
  place-items: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  background: var(--community);
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
}

.hero-proof-card__avatars i:first-child { margin-left: 0; background: var(--brand); }
.hero-proof-card__avatars i:last-child { background: #078a9f; }
.hero-proof-card > strong { color: var(--ink); font-size: 16px; line-height: 1; }
.hero-proof-card > small { color: var(--muted); font-size: 10px; }

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 32px;
  margin-top: 48px;
  align-items: start;
}

.article-body {
  min-width: 0;
  border: 1px solid rgba(228, 229, 236, 0.92);
  border-radius: 28px;
  padding: clamp(24px, 4.5vw, 46px);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-small);
}

.article-section {
  padding-block: 4px 38px;
}

.article-section + .article-section {
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.article-section p {
  margin: 0 0 16px;
  color: #444a58;
}

.article-section p:last-child {
  margin-bottom: 0;
}

.article-section ul,
.article-section ol {
  margin: 18px 0 0;
  padding-left: 1.35em;
}

.article-section li {
  margin-bottom: 13px;
  padding-left: 5px;
  color: #444a58;
}

.article-section li strong {
  color: var(--ink);
}

.step-list {
  padding: 0 !important;
  counter-reset: steps;
  list-style: none;
}

.step-list li {
  position: relative;
  min-height: 48px;
  padding-left: 58px;
  counter-increment: steps;
}

.step-list li::before {
  position: absolute;
  top: -3px;
  left: 0;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 13px;
  color: #ffffff;
  background: linear-gradient(145deg, var(--brand), #ef6a2d);
  box-shadow: 0 8px 18px var(--brand-glow);
  content: counter(steps);
  font-size: 14px;
  font-weight: 900;
}

.callout {
  margin: 25px 0 0;
  border-left: 5px solid var(--brand);
  border-radius: 0 16px 16px 0;
  padding: 18px 20px;
  color: #5b3428;
  background: var(--brand-soft);
}

.callout strong {
  color: var(--brand-deep);
}

.sidebar-card,
.card,
.setup-card,
.cta-card {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-small);
}

.sidebar-card {
  position: sticky;
  top: 96px;
  border-radius: 22px;
  padding: 24px;
  background: linear-gradient(150deg, #ffffff, #fff8f4);
}

.sidebar-card h2 {
  font-size: 1.15rem;
}

.sidebar-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-card li + li {
  margin-top: 13px;
}

.sidebar-card a {
  font-size: 15px;
  font-weight: 750;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: 23px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.card::after {
  position: absolute;
  width: 120px;
  height: 120px;
  right: -70px;
  bottom: -76px;
  border-radius: 50%;
  background: var(--brand-soft);
  content: "";
  transition: transform 220ms ease;
}

.card:hover {
  border-color: #f3b7a5;
  box-shadow: 0 22px 50px rgba(83, 49, 38, 0.12);
  transform: translateY(-4px);
}

.card:hover::after {
  transform: scale(1.25);
}

.card--template::after { background: #fff2cf; }
.card--community::after { background: var(--community-soft); }

.card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.card-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 15px;
  color: var(--brand-deep);
  background: var(--brand-soft);
}

.card--template .card-icon {
  color: #8d4a00;
  background: #fff2cf;
}

.card--community .card-icon {
  color: var(--brand-deep);
  background: var(--community-soft);
}

.card-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.card-number {
  color: #afb2bd;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.card p {
  flex: 1;
  margin: 0 0 22px;
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 15px;
}

.card h3,
.card-kicker,
.card-link {
  position: relative;
  z-index: 1;
}

.card h3 {
  font-size: 1.24rem;
}

.card-title-link {
  color: inherit;
  text-decoration: none;
}

.card-title-link:hover,
.card-title-link:focus-visible {
  color: var(--brand-deep);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.card-link span:last-child {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--brand);
  transition: transform 180ms ease;
}

.card--template .card-link span:last-child { background: #b76000; }
.card--community .card-link span:last-child { background: var(--community); }
.card:hover .card-link span:last-child { transform: translateX(3px); }

.card-kicker {
  margin-bottom: 12px;
  color: var(--brand-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.setup-card {
  margin: 6px 0 34px;
  border-radius: 28px;
  padding: clamp(24px, 5vw, 38px);
  background: linear-gradient(145deg, #ffffff, #fff8f3);
}

.setup-contract {
  max-width: 78ch;
  margin: 12px 0 0;
  color: #555b69;
  font-size: 14px;
}

.setup-contract strong {
  color: var(--ink);
}

.setup-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
  margin: 20px 0 0;
}

.setup-list div {
  border-top: 1px solid var(--line);
  padding-top: 13px;
}

.setup-list dt {
  color: var(--brand-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.setup-list dd {
  margin: 5px 0 0;
  color: #444a58;
  font-size: 15px;
}

.cta-card {
  overflow: hidden;
  position: relative;
  margin-top: 18px;
  border-radius: 28px;
  padding: clamp(28px, 6vw, 50px);
  border-color: #2d3040;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 155, 38, 0.22), transparent 18rem),
    radial-gradient(circle at 10% 100%, rgba(217, 54, 24, 0.18), transparent 22rem),
    #171922;
}

.cta-card h2,
.cta-card p {
  position: relative;
  z-index: 1;
  max-width: 720px;
  color: #ffffff;
}

.cta-card p {
  color: #d6d8e1;
}

.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 10px;
  border-radius: 14px;
  padding: 12px 19px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.primary-cta {
  color: #ffffff;
  background: var(--brand-deep);
  box-shadow: 0 11px 25px rgba(169, 36, 19, 0.2);
}

.primary-cta:hover {
  color: #ffffff;
  background: #8f1d0f;
  transform: translateY(-1px);
}

.secondary-cta {
  border: 1px solid var(--line-strong);
  color: var(--brand-deep);
  background: #ffffff;
}

.cta-note {
  display: block;
  margin-top: 12px;
  color: #bfc2cf;
  font-size: 13px;
}

.section-lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.index-section {
  padding-top: 64px;
}

.index-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 48px;
}

.index-overview > div {
  display: flex;
  min-height: 92px;
  align-items: center;
  gap: 13px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-small);
}

.index-overview strong {
  color: var(--brand);
  font-size: clamp(1.7rem, 4vw, 2.25rem);
  letter-spacing: -0.05em;
}

.index-overview span {
  max-width: 120px;
  color: #5d6270;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.section-heading-row--index {
  align-items: flex-start;
}

.section-heading-row--index > div {
  max-width: 620px;
}

.section-heading-row--index .section-lead {
  max-width: 440px;
  margin: 5px 0 0;
  font-size: 16px;
}

.index-tools {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin: 24px 0 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-small);
}

.index-tools label {
  display: grid;
  width: min(100%, 600px);
  gap: 6px;
}

.index-tools label span {
  color: #3e424e;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.index-tools input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 10px 14px 10px 42px;
  color: var(--ink);
  background:
    linear-gradient(45deg, transparent 46%, #737986 47% 53%, transparent 54%) 18px 25px / 8px 8px no-repeat,
    radial-gradient(circle, transparent 48%, #737986 50% 62%, transparent 64%) 14px 13px / 15px 15px no-repeat,
    #ffffff;
  font: inherit;
  font-size: 15px;
  outline: none;
}

.index-tools input::placeholder {
  color: #667085;
  opacity: 1;
}

.index-tools input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(217, 54, 24, 0.12);
}

.index-tools p {
  flex: 0 0 auto;
  margin: 0 2px 11px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.card-grid [data-resource-card][hidden] {
  display: none;
}

.index-empty {
  display: grid;
  gap: 3px;
  margin: 0 0 18px;
  border: 1px dashed #e1a895;
  border-radius: 18px;
  padding: 20px;
  color: var(--muted);
  background: var(--brand-soft);
}

.index-empty[hidden] {
  display: none;
}

.index-empty strong {
  color: var(--ink);
}

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.section-heading-row h2,
.section-heading-row p {
  margin-bottom: 0;
}

.section-heading-row .secondary-cta,
.section-heading-row .community-button {
  flex: 0 0 auto;
  margin-top: 0;
}

.resource-section > ul,
.source-list,
.editorial-standards ul {
  padding-left: 1.35em;
}

.resource-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.resource-item {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  background: var(--surface);
  box-shadow: var(--shadow-small);
}

.resource-item h3 {
  overflow-wrap: anywhere;
}

.resource-item dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.resource-item dl > div {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.resource-item dt {
  color: var(--brand-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.resource-item dd {
  margin: 5px 0 0;
  color: #444a58;
  overflow-wrap: anywhere;
}

.resource-item dd ul {
  margin: 8px 0 0;
  padding-left: 1.2em;
}

.prompt-deck {
  overflow: hidden;
  margin: 28px 0 38px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 155, 38, 0.14), transparent 24rem),
    linear-gradient(145deg, #ffffff, #fffaf7 66%, #fff0eb);
  box-shadow: var(--shadow);
}

.prompt-deck__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-bottom: 1px solid var(--line);
  padding: 24px clamp(20px, 4vw, 34px) 20px;
}

.prompt-deck__toolbar strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.15rem, 2.6vw, 1.42rem);
  letter-spacing: -0.025em;
}

.prompt-deck__toolbar p {
  max-width: 600px;
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.prompt-deck__actions,
.prompt-deck__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.prompt-deck__actions {
  flex: 0 0 auto;
  justify-content: flex-end;
}

.prompt-deck button {
  min-height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 9px 13px;
  color: #343845;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 5px 14px rgba(27, 31, 45, 0.055);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease, transform 160ms ease;
}

.prompt-deck button:hover {
  border-color: #f1a189;
  color: var(--brand-deep);
  background: var(--brand-soft);
  transform: translateY(-1px);
}

.prompt-deck__actions button:first-child {
  border-color: var(--brand-deep);
  color: #ffffff;
  background: var(--brand-deep);
}

.prompt-deck__actions button:first-child:hover {
  color: #ffffff;
  background: #8f1d0f;
}

.prompt-deck__filters {
  padding: 18px clamp(20px, 4vw, 34px) 4px;
}

.prompt-deck__filters button {
  min-height: 38px;
  border-radius: 999px;
  padding: 8px 12px;
  box-shadow: none;
}

.prompt-deck__filters button span {
  display: inline-grid;
  min-width: 24px;
  height: 24px;
  margin-left: 5px;
  place-items: center;
  border-radius: 999px;
  color: #666b79;
  background: #f0f1f5;
  font-size: 11px;
}

.prompt-deck__filters button[aria-pressed="true"] {
  border-color: #2c2f3b;
  color: #ffffff;
  background: #2c2f3b;
}

.prompt-deck__filters button[aria-pressed="true"] span {
  color: #252833;
  background: var(--sun);
}

.prompt-deck__status {
  min-height: 24px;
  margin: 4px clamp(20px, 4vw, 34px) 0;
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 750;
}

.prompt-deck__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-height: 760px;
  margin: 0;
  padding: 14px clamp(20px, 4vw, 34px) 30px;
  overflow-y: auto;
  list-style: none;
  counter-reset: none;
  scrollbar-color: #c9cbd3 transparent;
}

.prompt-deck__list li {
  display: grid;
  min-width: 0;
  min-height: 74px;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 12px 12px 12px 10px;
  color: #353946;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 20px rgba(27, 31, 45, 0.045);
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.prompt-deck__list li:hover {
  border-color: #e7b3a4;
  background: #ffffff;
  transform: translateY(-1px);
}

.prompt-deck__list li.prompt-deck__item--selected {
  border-color: var(--brand);
  background: #fff5f1;
  box-shadow: 0 0 0 4px rgba(217, 54, 24, 0.12), 0 14px 30px rgba(217, 54, 24, 0.12);
}

.prompt-deck__number {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 11px;
  color: var(--brand-deep);
  background: var(--brand-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.prompt-deck__list [data-prompt-text] {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.42;
}

.prompt-deck__list [data-prompt-copy-one] {
  min-height: 36px;
  padding: 7px 10px;
  opacity: 0.78;
}

.prompt-print-region {
  display: none;
}

.editorial-standards {
  border: 1px solid #ffd0c1;
  border-radius: 22px;
  padding: 26px;
  background: #fff5f1;
}

.editorial-standards p:last-child {
  margin-bottom: 0;
}

.source-section {
  color: #555b69;
}

.source-list li {
  margin-bottom: 14px;
}

.community-compose-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.community-intro {
  padding-top: 32px;
}

.community-feed > :not([data-community-feed-fallback]) ~ [data-community-feed-fallback] {
  display: none;
}

.status-banner {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  border: 1px solid #ffd0c1;
  border-radius: 16px;
  padding: 16px 18px;
  color: #663725;
  background: #fff5f1;
  font-size: 15px;
}

.status-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.legal-document,
.account-data-card {
  max-width: 860px;
  margin-top: 48px;
}

.account-data-link,
.account-data-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--surface);
  box-shadow: var(--shadow-small);
}

.account-data-link h2,
.account-data-link p,
.account-data-card > h2,
.account-data-card > p {
  margin-top: 0;
}

.account-data-form {
  display: grid;
  gap: 20px;
  margin-top: 26px;
}

.account-data-form fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  border: 0;
  padding: 0;
}

.account-data-form legend,
.account-data-field > span {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.account-data-form legend {
  grid-column: 1 / -1;
}

.account-data-form fieldset label {
  display: flex;
  gap: 11px;
  min-height: 86px;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  color: #34453d;
  background: #fbfdfc;
  cursor: pointer;
}

.account-data-form input[type="radio"] {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 3px;
  accent-color: var(--brand);
}

.account-data-field {
  display: grid;
}

.account-data-field input,
.account-data-field textarea {
  width: 100%;
  border: 1px solid #b8cdc2;
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

.account-data-field textarea {
  resize: vertical;
}

.account-data-form .primary-cta {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.account-data-form .primary-cta:disabled {
  opacity: 0.65;
  cursor: wait;
}

.account-data-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.account-data-status[data-tone="success"] {
  color: #176441;
}

.account-data-status[data-tone="error"] {
  color: #a32929;
}

.account-data-note {
  margin: 22px 0 0;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid #292c39;
  color: #bfc2ce;
  background:
    radial-gradient(circle at 0 100%, rgba(217, 54, 24, 0.14), transparent 26rem),
    radial-gradient(circle at 100% 0, rgba(217, 54, 24, 0.13), transparent 24rem),
    #171922;
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: clamp(38px, 8vw, 90px);
  padding-block: 54px 42px;
  font-size: 14px;
}

.footer-brand {
  max-width: 370px;
}

.wordmark--footer .wordmark-type {
  filter: none;
  opacity: 1;
}

.footer-brand p {
  margin: 17px 0 12px;
  color: #e8e9ee;
  font-size: 18px;
  font-weight: 800;
}

.footer-launch-link {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  color: #cfd1dc;
  font-size: 13px;
  text-decoration: none;
}

.footer-launch-link strong {
  color: var(--sun);
  font-size: 15px;
}

.footer-launch-link:hover {
  color: #ffffff;
}

.footer-nav-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: clamp(36px, 7vw, 80px);
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 5px;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-links a {
  color: #bfc2ce;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid #303340;
  padding-block: 22px 30px;
  color: #8f93a2;
  font-size: 12px;
}

.sr-only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    gap: 26px;
  }

  .hero-visual {
    min-height: 340px;
  }

  .challenge-preview {
    padding: 19px;
  }

  .hero-proof-card {
    right: 0;
    bottom: 8px;
  }

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

  .sidebar-card {
    position: static;
  }

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

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

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .nav-shell,
  .page-shell,
  .footer-shell {
    width: min(calc(100% - 28px), var(--content));
  }

  .nav-shell {
    min-height: 0;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px 12px;
    padding-block: 9px 10px;
  }

  .wordmark {
    min-height: 42px;
  }

  .wordmark-mark {
    width: 33px;
    height: 33px;
  }

  .wordmark-type {
    width: 108px;
  }

  .header-actions {
    width: 100%;
    order: 2;
    justify-content: space-between;
    gap: 8px;
  }

  .primary-nav {
    min-width: 0;
    flex: 1 1 auto;
    justify-content: flex-start;
    gap: 4px;
  }

  .primary-nav a {
    flex: 0 0 auto;
    padding: 8px 10px;
    font-size: 13px;
  }

  .nav-launch-cta {
    min-height: 38px;
    padding: 7px 10px;
  }

  .nav-launch-cta span {
    display: none;
  }

  .page-shell {
    padding-block: 22px 64px;
  }

  .hero {
    border-radius: 25px;
    padding: 30px 26px 26px;
  }

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

  .hero-visual {
    min-height: 330px;
    margin-top: -4px;
  }

  .hero-proof-card {
    right: 3px;
    bottom: 4px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
  }

  .hero-actions .primary-cta,
  .hero-actions .text-cta {
    width: 100%;
  }

  .hero-actions .text-cta {
    justify-content: center;
  }

  .content-grid {
    gap: 26px;
    margin-top: 38px;
  }

  .card-grid,
  .setup-list,
  .resource-list,
  .account-data-form fieldset,
  .index-overview {
    grid-template-columns: 1fr;
  }

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

  .prompt-deck__actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .prompt-deck__actions button {
    min-width: 0;
    padding-inline: 7px;
  }

  .prompt-deck__filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;
  }

  .prompt-deck__filters button {
    flex: 0 0 auto;
  }

  .prompt-deck__list {
    grid-template-columns: 1fr;
    max-height: 720px;
    padding-top: 8px;
  }

  .prompt-deck__list li {
    min-height: 0;
    grid-template-columns: 32px minmax(0, 1fr);
    grid-template-areas:
      "number copy"
      "prompt prompt";
    align-items: start;
    row-gap: 9px;
    padding: 14px;
  }

  .prompt-deck__number {
    grid-area: number;
    width: 32px;
    height: 32px;
    margin-top: 1px;
    font-size: 12px;
  }

  .prompt-deck__list [data-prompt-text] {
    grid-area: prompt;
    overflow-wrap: normal;
    word-break: normal;
    font-size: 15px;
    line-height: 1.48;
  }

  .prompt-deck__list [data-prompt-copy-one] {
    grid-area: copy;
    justify-self: end;
  }

  .index-overview {
    gap: 10px;
    margin-bottom: 40px;
  }

  .index-overview > div {
    min-height: 76px;
  }

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

  .index-tools {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .index-tools p {
    margin: 0;
  }

  .section-heading-row .secondary-cta,
  .section-heading-row .community-button {
    width: 100%;
  }

  .footer-shell {
    flex-direction: column;
  }

  .footer-nav-groups {
    width: 100%;
  }

  .footer-bottom {
    width: min(calc(100% - 28px), var(--content));
    flex-direction: column;
    gap: 8px;
  }
}

@media print {
  body.printing-prompt-deck > *:not(.prompt-print-region) {
    display: none !important;
  }

  .prompt-print-region {
    display: block;
    color: #000000;
    background: #ffffff;
  }

  .prompt-print-region h1 {
    margin: 0 0 18pt;
    font-size: 22pt;
  }

  .prompt-print-region .prompt-deck__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8pt;
    max-height: none;
    padding: 0;
    overflow: visible;
  }

  .prompt-print-region .prompt-deck__list li {
    min-height: 0;
    break-inside: avoid;
    border: 1px solid #b6b6b6;
    box-shadow: none;
  }
}

@media (max-width: 340px) {
  .hero {
    padding: 30px 24px;
  }

  h1 {
    font-size: 2rem;
    letter-spacing: -0.025em;
  }

  .primary-nav a {
    padding-inline: 7px;
    font-size: 12px;
  }

  .nav-launch-cta {
    padding-inline: 8px;
  }

  .hero-visual {
    min-height: 312px;
    transform: scale(0.92);
    transform-origin: top center;
    margin-bottom: -22px;
  }

  .challenge-preview {
    padding: 17px;
  }

  .hero-proof-card {
    right: -9px;
  }

  .footer-nav-groups {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
