:root {
  --ink: #111a17;
  --ink-soft: #35433e;
  --muted: #66736e;
  --white: #ffffff;
  --paper: #f6f7f4;
  --line: #d9dfda;
  --green: #0d6244;
  --green-deep: #073827;
  --slate: #123049;
  --rust: #a95f34;
  --max: 1180px;
  --radius: 6px;
  --shadow: 0 24px 70px rgba(4, 17, 13, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  overscroll-behavior-x: none;
  scroll-behavior: auto;
  scroll-padding-top: 88px;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  min-height: 100%;
  overflow-x: clip;
  overscroll-behavior-x: none;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

svg,
img {
  display: block;
}

.visually-hidden,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link:focus {
  z-index: 100;
  top: 16px;
  left: 16px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 14px;
  color: var(--white);
  background: var(--green);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
  padding: 0 5.5vw;
  color: var(--white);
  background: rgba(7, 12, 10, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: none;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav [aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-action {
  padding: 12px 18px;
  color: var(--white);
  background: var(--green);
}

.nav-action::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  color: currentColor;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
}

.menu-toggle span:not(.visually-hidden) {
  width: 20px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2, 7, 6, 0.86) 0%, rgba(2, 7, 6, 0.62) 34%, rgba(2, 7, 6, 0.12) 78%),
    url("assets/hero-faith-feasibility.png") center / cover no-repeat;
}

.hero-content {
  width: min(760px, 88vw);
  margin-left: 5.5vw;
  padding: 128px 0 82px;
}

h1,
h2,
.hero-lede {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.04;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.4rem, 6vw, 5.8rem);
}

.hero-lede {
  max-width: 700px;
  margin: 20px 0 0;
  font-size: clamp(2rem, 3.4vw, 3.45rem);
}

.hero-copy {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.accent-rule {
  width: 72px;
  height: 2px;
  margin-top: 26px;
  background: var(--rust);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button-primary {
  color: var(--white);
  background: var(--green);
}

.button-primary:hover {
  background: #0a4d35;
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.36);
}

.section-label {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.15rem);
}

.section-copy {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--ink-soft);
}

.lane-section,
.topics-section,
.contact-section,
.page-section,
.bio-body,
.bio-options,
.detail-list-section,
.workshop-overview,
.categories-section,
.workshop-builder,
.model-statement,
.revenue-section,
.model-flow {
  width: min(var(--max), 88vw);
  margin: 0 auto;
}

.lane-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid var(--line);
}

.lane-card {
  min-height: 300px;
  padding: 48px 44px;
  border-right: 1px solid var(--line);
}

.lane-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 24px;
  color: var(--green);
}

.lane-icon svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lane-card h2 {
  margin: 0;
  font-size: 2rem;
}

.lane-card p {
  margin: 14px 0 0;
  color: var(--ink-soft);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-color: rgba(13, 98, 68, 0.35);
  text-underline-offset: 5px;
}

.story-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  color: var(--white);
  background: var(--green-deep);
}

.story-copy {
  display: grid;
  align-content: center;
  padding: 70px 8vw 70px 5.5vw;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
}

.story-copy h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(2.15rem, 4vw, 3.35rem);
}

.story-copy p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.signature {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-style: italic;
}

.story-image {
  min-height: 470px;
  background: url("assets/advocacy-community-development.png") center / cover no-repeat;
}

.topics-section {
  padding: 76px 0 70px;
  text-align: center;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 54px;
  border-left: 1px solid var(--line);
}

.topic-card {
  min-height: 190px;
  padding: 26px 24px;
  text-align: left;
  border-right: 1px solid var(--line);
}

.topic-card h3 {
  margin: 0;
  font-size: 1rem;
}

.topic-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-copy {
  padding: 70px 5.5vw;
  color: var(--white);
  background:
    linear-gradient(rgba(18, 48, 73, 0.92), rgba(18, 48, 73, 0.92)),
    url("assets/hero-faith-feasibility.png") left center / cover no-repeat;
}

.contact-copy .section-label {
  color: rgba(255, 255, 255, 0.72);
}

.contact-copy h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.25rem);
}

.contact-copy p {
  max-width: 460px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 70px 5.5vw;
}

.contact-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-form textarea {
  resize: vertical;
}

.focus-followups,
.full-field,
.contact-form .button {
  grid-column: 1 / -1;
}

.focus-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.focus-panel[hidden] {
  display: none;
}

.form-section-title {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-form .button {
  justify-self: start;
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding: 40px 5.5vw;
  color: var(--ink-soft);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.footer-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
}

.footer-card h2,
.footer-card h3,
.footer-card p {
  margin: 0;
}

.footer-card h2 {
  font-size: 1.45rem;
}

.footer-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 500;
}

.footer-card p {
  margin-top: 12px;
}

.page-hero {
  min-height: 520px;
  display: grid;
  align-items: end;
  padding: 150px 5.5vw 78px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(2, 7, 6, 0.84), rgba(2, 7, 6, 0.46), rgba(2, 7, 6, 0.2)),
    url("assets/hero-faith-feasibility.png") center / cover no-repeat;
}

.page-hero-content {
  max-width: 840px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2.45rem, 4.6vw, 4.25rem);
}

.page-hero p:not(.section-label) {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.page-hero .section-label {
  color: rgba(255, 255, 255, 0.72);
}

.page-section,
.bio-body,
.bio-options,
.detail-list-section,
.workshop-overview,
.categories-section,
.workshop-builder,
.model-statement,
.revenue-section,
.model-flow {
  padding: 76px 0;
}

.split-section,
.bio-body,
.workshop-overview,
.workshop-builder,
.model-statement,
.model-flow {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 70px;
}

.section-intro h2,
.split-section h2,
.bio-body h2,
.workshop-overview h2,
.workshop-builder h2,
.model-statement h2,
.model-flow h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.article-copy {
  display: grid;
  gap: 20px;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.article-copy p {
  margin: 0;
}

.stack-list,
.flow-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.stack-list article,
.flow-list article {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.stack-list h3,
.flow-list h3 {
  margin: 0;
}

.stack-list p,
.flow-list p {
  margin: 10px 0 0;
  color: var(--muted);
}

.bio-options,
.detail-list,
.format-grid,
.builder-steps,
.revenue-grid,
.industry-grid {
  display: grid;
  gap: 18px;
}

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

.detail-list,
.format-grid,
.builder-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.revenue-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 36px;
}

.industry-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.bio-options article,
.detail-list article,
.format-grid article,
.builder-steps article,
.revenue-grid article,
.industry-card {
  min-width: 0;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
}

.revenue-grid article {
  color: var(--white);
  background: var(--slate);
}

.revenue-grid p,
.revenue-grid li {
  color: rgba(255, 255, 255, 0.76);
}

.revenue-grid span,
.builder-steps span {
  display: block;
  margin-bottom: 24px;
  color: var(--rust);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.revenue-grid ul,
.industry-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding-left: 18px;
}

.category-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0 0;
}

.category-button {
  min-height: 42px;
  padding: 10px 14px;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 900;
  cursor: pointer;
}

.category-button.is-active,
.category-button:hover {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.industry-card[hidden] {
  display: none;
}

.quote-band {
  padding: 70px 5.5vw;
  color: var(--white);
  background: var(--slate);
}

.quote-band p {
  width: min(920px, 88vw);
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.2;
}

:focus-visible {
  outline: 3px solid rgba(169, 95, 52, 0.45);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 72px;
    padding: 0 5vw;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 5vw;
    display: none;
    width: min(340px, 90vw);
    padding: 14px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
    gap: 4px;
  }

  .site-nav a {
    padding: 12px 10px;
  }

  .nav-action {
    color: var(--white);
    text-align: center;
  }

  .lane-section,
  .topics-grid,
  .story-band,
  .contact-section,
  .site-footer,
  .split-section,
  .bio-body,
  .workshop-overview,
  .workshop-builder,
  .model-statement,
  .model-flow {
    grid-template-columns: 1fr;
  }

  .lane-section,
  .topics-grid {
    border-left: 0;
  }

  .lane-card,
  .topic-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .revenue-grid,
  .industry-grid,
  .detail-list,
  .format-grid,
  .builder-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .brand-name {
    font-size: 1rem;
    letter-spacing: 0.08em;
  }

  .hero {
    min-height: 720px;
    background:
      linear-gradient(90deg, rgba(2, 7, 6, 0.86), rgba(2, 7, 6, 0.56)),
      url("assets/hero-faith-feasibility.png") 60% center / cover no-repeat;
  }

  .hero-content {
    width: min(90vw, 760px);
    margin-left: 5vw;
    padding-top: 116px;
    padding-bottom: 70px;
  }

  .hero h1 {
    font-size: 3.1rem;
  }

  .hero-lede {
    font-size: 2rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .lane-section,
  .topics-section,
  .page-section,
  .bio-body,
  .bio-options,
  .detail-list-section,
  .workshop-overview,
  .categories-section,
  .workshop-builder,
  .model-statement,
  .revenue-section,
  .model-flow {
    width: calc(100vw - 32px);
  }

  .lane-card,
  .topic-card,
  .bio-options article,
  .detail-list article,
  .format-grid article,
  .builder-steps article,
  .revenue-grid article,
  .industry-card {
    padding: 26px;
  }

  .story-copy {
    padding: 58px 5vw;
  }

  .story-image {
    min-height: 300px;
  }

  .contact-copy,
  .contact-form {
    padding: 52px 5vw;
  }

  .contact-form,
  .focus-panel,
  .bio-options,
  .revenue-grid,
  .industry-grid,
  .detail-list,
  .format-grid,
  .builder-steps {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 480px;
    padding: 124px 5vw 62px;
  }

  .category-controls {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.sw-page {
  color: #111a17;
  background: #f8f7f1;
}

.sw-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 5vw;
  color: #f8f7f1;
  background: #08130f;
  border-bottom: 1px solid rgba(248, 247, 241, 0.12);
}

.sw-brand,
.sw-nav {
  display: flex;
  align-items: center;
}

.sw-brand {
  gap: 12px;
}

.sw-brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #f8f7f1;
  background: #0d6244;
  border: 1px solid rgba(248, 247, 241, 0.2);
  border-radius: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.sw-brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sw-nav {
  gap: 24px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sw-nav-action {
  padding: 12px 16px;
  background: #0d6244;
  border-radius: 4px;
}

.sw-menu-toggle {
  color: #f8f7f1;
}

.sw-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.62fr);
  gap: 54px;
  align-items: center;
  min-height: 690px;
  padding: 82px 5vw 74px;
  color: #f8f7f1;
  background:
    linear-gradient(105deg, rgba(8, 19, 15, 0.98), rgba(8, 19, 15, 0.88) 52%, rgba(13, 98, 68, 0.82)),
    url("assets/hero-faith-feasibility.png") center / cover no-repeat;
}

.sw-page-hero {
  display: grid;
  align-items: end;
  min-height: 520px;
  padding: 120px 5vw 76px;
  color: #f8f7f1;
  background:
    linear-gradient(105deg, rgba(8, 19, 15, 0.98), rgba(8, 19, 15, 0.86) 54%, rgba(13, 98, 68, 0.75)),
    url("assets/hero-faith-feasibility.png") center / cover no-repeat;
}

.sw-page-hero > div {
  max-width: 880px;
}

.sw-page-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 5vw, 4.9rem);
  font-weight: 500;
  line-height: 1.04;
}

.sw-page-hero p:not(.sw-kicker) {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(248, 247, 241, 0.84);
  font-size: 1.06rem;
}

.sw-hero-content {
  max-width: 820px;
}

.sw-kicker,
.sw-label {
  margin: 0 0 14px;
  color: #bd7447;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sw-hero h1,
.sw-section h2,
.sw-tips h2,
.sw-business h2,
.sw-workshops h2,
.sw-signup-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.04;
}

.sw-hero h1 {
  max-width: 820px;
  font-size: clamp(3.4rem, 6.3vw, 6rem);
}

.sw-hero-content > p:not(.sw-kicker) {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(248, 247, 241, 0.84);
  font-size: 1.08rem;
}

.sw-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.sw-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
}

.sw-button-primary {
  color: #f8f7f1;
  background: #0d6244;
}

.sw-button-secondary {
  color: #f8f7f1;
  border-color: rgba(248, 247, 241, 0.42);
}

.sw-hero-panel {
  padding: 34px;
  color: #111a17;
  background: rgba(248, 247, 241, 0.94);
  border: 1px solid rgba(248, 247, 241, 0.35);
  border-radius: 6px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.sw-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
  color: #0d6244;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sw-hero-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.sw-hero-panel ul {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding-left: 20px;
}

.sw-section,
.sw-tips,
.sw-business,
.sw-workshops,
.sw-signup-section {
  width: min(1180px, 90vw);
  margin: 0 auto;
  padding: 82px 0;
}

.sw-section,
.sw-business,
.sw-signup-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 72px;
}

.sw-section h2,
.sw-tips h2,
.sw-business h2,
.sw-workshops h2,
.sw-signup-copy h2 {
  font-size: clamp(2.25rem, 4vw, 3.7rem);
}

.sw-editorial-copy {
  display: grid;
  gap: 22px;
  color: #35433e;
  font-size: 1.08rem;
}

.sw-editorial-copy p {
  margin: 0;
}

.sw-tip-grid,
.sw-workshop-grid {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

.sw-tip-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sw-workshop-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sw-tip-grid article,
.sw-workshop-grid article {
  min-width: 0;
  padding: 30px;
  background: #fff;
  border: 1px solid #d9dfda;
  border-radius: 6px;
}

.sw-tip-grid span {
  display: block;
  margin-bottom: 24px;
  color: #bd7447;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.sw-tip-grid h3,
.sw-workshop-grid h3,
.sw-business-list h3 {
  margin: 0;
  font-size: 1.12rem;
}

.sw-tip-grid p,
.sw-workshop-grid p,
.sw-business-list p,
.sw-signup-copy p {
  margin: 12px 0 0;
  color: #66736e;
}

.sw-business-list {
  display: grid;
  border-top: 1px solid #d9dfda;
}

.sw-business-list article {
  padding: 24px 0;
  border-bottom: 1px solid #d9dfda;
}

.sw-workshops {
  border-top: 1px solid #d9dfda;
  border-bottom: 1px solid #d9dfda;
}

.sw-workshops .sw-section-copy {
  max-width: 760px;
}

.sw-workshops .sw-section-copy p:not(.sw-label) {
  margin: 18px 0 0;
  color: #35433e;
}

.sw-signup-section {
  align-items: start;
}

.sw-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 34px;
  background: #fff;
  border: 1px solid #d9dfda;
  border-radius: 6px;
  box-shadow: 0 24px 70px rgba(4, 17, 13, 0.1);
}

.sw-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: #35433e;
  font-size: 0.88rem;
  font-weight: 900;
}

.sw-form input,
.sw-form select,
.sw-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: #111a17;
  background: #f8f7f1;
  border: 1px solid #d9dfda;
  border-radius: 5px;
}

.sw-form textarea {
  resize: vertical;
}

.sw-checkbox {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: start;
  gap: 10px !important;
}

.sw-checkbox input {
  width: auto;
  min-height: auto;
  margin-top: 5px;
}

.sw-form-status {
  min-height: 24px;
  margin: 0;
  color: #0d6244;
  font-size: 0.9rem;
  font-weight: 800;
}

.sw-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 5vw;
  color: rgba(248, 247, 241, 0.78);
  background: #08130f;
}

.sw-footer p {
  max-width: 820px;
  margin: 0;
}

.sw-footer a {
  color: #f8f7f1;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 980px) {
  .sw-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 5vw;
    display: none;
    width: min(340px, 90vw);
    padding: 14px;
    color: #111a17;
    background: #fff;
    border: 1px solid #d9dfda;
    box-shadow: 0 24px 70px rgba(4, 17, 13, 0.18);
  }

  .sw-nav.is-open {
    display: grid;
    gap: 4px;
  }

  .sw-nav a {
    padding: 12px 10px;
  }

  .sw-nav-action {
    color: #f8f7f1;
    text-align: center;
  }

  .sw-hero,
  .sw-page-hero,
  .sw-section,
  .sw-business,
  .sw-signup-section,
  .sw-footer {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .sw-header {
    padding: 0 20px;
  }

  .sw-brand-name {
    font-size: 1rem;
    letter-spacing: 0.05em;
  }

  .sw-hero {
    min-height: auto;
    padding: 68px 20px 52px;
  }

  .sw-page-hero {
    min-height: auto;
    padding: 86px 20px 58px;
  }

  .sw-page-hero h1 {
    font-size: 2.8rem;
  }

  .sw-hero h1 {
    font-size: 3rem;
  }

  .sw-hero-actions,
  .sw-button {
    width: 100%;
  }

  .sw-section,
  .sw-tips,
  .sw-business,
  .sw-workshops,
  .sw-signup-section {
    width: calc(100vw - 32px);
    padding: 58px 0;
  }

  .sw-tip-grid,
  .sw-workshop-grid,
  .sw-form {
    grid-template-columns: 1fr;
  }

  .sw-footer {
    display: grid;
  }
}

/* StrongWorkflow answer-engine redesign */
.answer-site {
  --answer-ink: #f7ecd8;
  --answer-muted: #cbbda4;
  --answer-soft: #a99678;
  --answer-paper: #0c100c;
  --answer-paper-light: #151a13;
  --answer-surface: #191f17;
  --answer-green: #8b9b72;
  --answer-green-dark: #243322;
  --answer-moss: #928d64;
  --answer-clay: #965f3d;
  --answer-gold: #bd9454;
  --answer-gold-bright: #d5b16d;
  --answer-stone: #3c3024;
  --answer-line: rgba(213, 177, 109, 0.24);
  --answer-shadow: 0 26px 70px rgba(0, 0, 0, 0.48);
  color: var(--answer-ink);
  background:
    radial-gradient(circle at 16% 0%, rgba(116, 83, 45, 0.28), transparent 32rem),
    radial-gradient(circle at 82% 10%, rgba(71, 91, 58, 0.2), transparent 28rem),
    linear-gradient(180deg, #14170f 0%, #0c110d 58%, var(--answer-paper) 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.answer-site::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(120deg, rgba(247, 236, 216, 0.032), transparent 38%),
    linear-gradient(180deg, rgba(213, 177, 109, 0.022), transparent 44%);
  background-size: 100% 100%;
  mask-image: linear-gradient(180deg, #000, transparent 72%);
}

.answer-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 72px;
  padding: 0 40px;
  color: var(--answer-ink);
  background: rgba(7, 12, 8, 0.9);
  border-bottom: 1px solid var(--answer-line);
  backdrop-filter: blur(18px);
}

.answer-brand {
  gap: 12px;
}

.answer-brand .sw-brand-mark {
  width: 38px;
  height: 38px;
  color: var(--answer-gold-bright);
  background:
    linear-gradient(145deg, #243622, #0c120c);
  border: 1px solid rgba(213, 177, 109, 0.42);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.answer-brand .sw-brand-name {
  color: var(--answer-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: none;
}

.answer-nav {
  gap: 8px;
  color: var(--answer-muted);
  font-size: 0.88rem;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: none;
}

.answer-nav a {
  min-height: 40px;
  padding: 9px 12px;
  border-radius: 8px;
}

.answer-nav a:hover,
.answer-nav a:focus-visible,
.answer-nav a[aria-current="page"] {
  color: var(--answer-gold-bright);
  background: rgba(240, 216, 138, 0.08);
}

.answer-nav .sw-nav-action {
  color: #1b140d;
  background: var(--answer-gold-bright);
  border-color: rgba(213, 177, 109, 0.64);
  box-shadow: 0 12px 30px rgba(120, 84, 38, 0.18);
}

.answer-nav .sw-nav-action:hover,
.answer-nav .sw-nav-action:focus-visible,
.answer-nav .sw-nav-action[aria-current="page"] {
  color: #1b140d;
  background: #e2c37d;
  border-color: rgba(226, 195, 125, 0.76);
}

.answer-header .sw-menu-toggle {
  color: var(--answer-ink);
  background: var(--answer-surface);
  border: 1px solid var(--answer-line);
  border-radius: 8px;
}

.answer-header .sw-menu-toggle span:not(.visually-hidden) {
  background: var(--answer-ink);
}

.answer-hero,
.answer-page-hero,
.answer-section,
.answer-guide,
.answer-signup {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.answer-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.82fr);
  gap: 28px;
  align-items: start;
  min-height: auto;
  padding: 62px 0 42px;
}

.answer-hero-copy {
  max-width: 670px;
}

.answer-hero h1,
.answer-page-hero h1,
.answer-section-title h2,
.answer-guide h2 {
  margin: 0;
  color: var(--answer-ink);
  font-weight: 520;
  letter-spacing: 0;
  line-height: 1.02;
}

.answer-hero h1 {
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.1rem;
  font-weight: 700;
  line-height: 0.99;
}

.answer-hero-copy p {
  max-width: 610px;
  margin: 20px 0 0;
  color: var(--answer-muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.answer-composer {
  display: grid;
  gap: 18px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(25, 36, 25, 0.94), rgba(11, 18, 12, 0.94));
  border: 1px solid var(--answer-line);
  border-radius: 8px;
  box-shadow: var(--answer-shadow);
}

.answer-prompt {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  min-height: 82px;
  padding: 18px;
  background: rgba(247, 236, 216, 0.052);
  border: 1px solid rgba(213, 177, 109, 0.2);
  border-radius: 8px;
}

.answer-prompt p {
  margin: 0;
  color: var(--answer-ink);
  font-size: 1.08rem;
  font-weight: 780;
  line-height: 1.35;
}

.answer-cursor {
  width: 12px;
  height: 12px;
  background: var(--answer-gold-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(213, 177, 109, 0.08);
}

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

.answer-chip-row a,
.answer-sources span,
.answer-filter-bar button {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  color: var(--answer-muted);
  background: rgba(247, 236, 216, 0.045);
  border: 1px solid rgba(213, 177, 109, 0.18);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 720;
}

.answer-chip-row a:hover,
.answer-chip-row a:focus-visible,
.answer-filter-bar button:hover,
.answer-filter-bar button:focus-visible,
.answer-filter-bar button.is-active {
  color: var(--answer-ink);
  background: rgba(104, 74, 39, 0.44);
  border-color: rgba(213, 177, 109, 0.58);
}

.answer-quick-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.answer-quick-form label,
.answer-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: var(--answer-muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.answer-quick-form input,
.answer-form input,
.answer-form select,
.answer-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--answer-ink);
  background: rgba(5, 10, 7, 0.82);
  border: 1px solid var(--answer-line);
  border-radius: 8px;
  outline: none;
}

.answer-quick-form input:focus,
.answer-form input:focus,
.answer-form select:focus,
.answer-form textarea:focus {
  border-color: var(--answer-gold-bright);
  box-shadow: 0 0 0 3px rgba(213, 177, 109, 0.12);
}

.answer-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 16px;
  color: #1b140d;
  background: var(--answer-gold-bright);
  border: 1px solid rgba(213, 177, 109, 0.72);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 850;
  box-shadow: 0 14px 34px rgba(83, 56, 28, 0.18);
}

.answer-submit:hover,
.answer-submit:focus-visible {
  background: #e2c37d;
  border-color: rgba(226, 195, 125, 0.86);
}

.answer-quick-form .sw-form-status {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 0;
  color: var(--answer-green-dark);
  font-size: 0.83rem;
}

.answer-brief-primary {
  grid-column: 1 / -1;
  margin-top: 6px;
}

.answer-brief {
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(26, 36, 24, 0.78), rgba(9, 16, 11, 0.78));
  border: 1px solid var(--answer-line);
  border-radius: 8px;
}

.answer-brief-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--answer-soft);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.answer-brief h2 {
  max-width: 780px;
  margin: 14px 0 0;
  color: var(--answer-ink);
  font-size: 1.62rem;
  line-height: 1.2;
}

.answer-brief p {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--answer-muted);
}

.answer-brief dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 0;
}

.answer-brief dl div {
  min-width: 0;
  padding: 14px;
  background: rgba(235, 222, 199, 0.07);
  border-radius: 8px;
}

.answer-brief dt {
  color: var(--answer-gold-bright);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.answer-brief dd {
  margin: 4px 0 0;
  color: var(--answer-ink);
  font-weight: 750;
}

.answer-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: end;
  padding: 74px 0 48px;
}

.answer-page-hero h1 {
  max-width: 860px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1;
}

.answer-page-hero p,
.answer-section-title p,
.answer-guide p {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--answer-muted);
  font-size: 1.04rem;
  line-height: 1.68;
}

.answer-model-card {
  padding: 22px;
  background:
    linear-gradient(145deg, #0f3f2b, #08150e 74%);
  border-radius: 8px;
  color: var(--answer-ink);
  border: 1px solid rgba(240, 216, 138, 0.22);
  box-shadow: var(--answer-shadow);
}

.answer-model-card h2 {
  margin: 0 0 14px;
  color: inherit;
  font-size: 1.2rem;
}

.answer-model-card p,
.answer-model-card li {
  color: rgba(247, 240, 228, 0.82);
}

.answer-model-card ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.answer-section {
  padding: 62px 0;
  border-top: 1px solid var(--answer-line);
}

.answer-section-title {
  max-width: 780px;
}

.answer-section-title span {
  display: block;
  margin-bottom: 10px;
  color: var(--answer-green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.answer-section-title h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.72rem;
}

.answer-result-list {
  display: grid;
  gap: 0;
  margin-top: 34px;
  background: rgba(13, 21, 14, 0.7);
  border: 1px solid var(--answer-line);
  border-radius: 8px;
  overflow: hidden;
}

.answer-result {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 24px;
  border-bottom: 1px solid var(--answer-line);
}

.answer-result:last-child {
  border-bottom: 0;
}

.answer-result-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--answer-gold-bright);
  background: rgba(216, 184, 102, 0.1);
  border: 1px solid rgba(216, 184, 102, 0.26);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 900;
}

.answer-result h3 {
  margin: 0;
  color: var(--answer-ink);
  font-size: 1.35rem;
  line-height: 1.25;
}

.answer-result p {
  margin: 9px 0 0;
  color: var(--answer-muted);
  font-size: 0.98rem;
}

.answer-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.answer-sources span {
  min-height: 28px;
  padding: 5px 8px;
  color: #5d5c50;
  font-size: 0.75rem;
}

.answer-split {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.answer-path {
  display: grid;
  gap: 14px;
}

.answer-path article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  background: rgba(13, 21, 14, 0.76);
  border: 1px solid var(--answer-line);
  border-radius: 8px;
}

.answer-path article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--answer-gold-bright);
  background: rgba(213, 177, 109, 0.08);
  border: 1px solid rgba(213, 177, 109, 0.28);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 900;
}

.answer-path h3,
.answer-update-stream h3,
.answer-guide-note p {
  margin: 0;
  color: var(--answer-ink);
  font-size: 1.08rem;
  line-height: 1.32;
}

.answer-path p {
  margin: 7px 0 0;
  color: var(--answer-muted);
}

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

.answer-update-stream article {
  min-width: 0;
  padding: 20px;
  background: rgba(21, 26, 19, 0.9);
  border: 1px solid var(--answer-line);
  border-radius: 8px;
}

.answer-update-stream time {
  display: block;
  margin-bottom: 18px;
  color: var(--answer-gold-bright);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.answer-update-stream p {
  margin: 9px 0 0;
  color: var(--answer-muted);
}

.answer-guide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: center;
  padding: 38px;
  background: rgba(21, 26, 19, 0.94);
  border: 1px solid rgba(213, 177, 109, 0.24);
  border-left: 3px solid rgba(213, 177, 109, 0.62);
  border-radius: 8px;
  color: var(--answer-ink);
}

.answer-guide h2,
.answer-guide p,
.answer-guide-note p {
  color: inherit;
}

.answer-guide p {
  color: rgba(247, 240, 228, 0.76);
}

.answer-guide-note {
  display: grid;
  gap: 16px;
  padding: 20px;
  background: rgba(247, 240, 228, 0.08);
  border: 1px solid rgba(247, 240, 228, 0.2);
  border-radius: 8px;
}

.answer-guide-note span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--answer-gold-bright);
  background: rgba(213, 177, 109, 0.08);
  border: 1px solid rgba(213, 177, 109, 0.28);
  border-radius: 8px;
  font-weight: 900;
}

.answer-signup {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  padding: 70px 0 82px;
}

.answer-form {
  padding: 22px;
  background: rgba(24, 33, 25, 0.84);
  border-color: var(--answer-line);
  border-radius: 8px;
  box-shadow: var(--answer-shadow);
}

.answer-form .sw-form-status {
  color: var(--answer-gold-bright);
}

.answer-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.answer-filter-bar button {
  cursor: pointer;
}

.answer-footer {
  color: rgba(247, 240, 228, 0.78);
  background: #070d09;
}

.answer-footer a {
  color: var(--answer-ink);
}

.game-hero,
.game-plan-shell {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.game-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 46px;
  align-items: center;
  padding: 78px 0 46px;
}

.game-label {
  display: block;
  margin-bottom: 12px;
  color: var(--answer-gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.game-hero h1,
.game-output h2,
.game-lead h2 {
  margin: 0;
  color: var(--answer-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.03;
}

.game-hero h1 {
  max-width: 760px;
  font-size: 3.95rem;
}

.game-hero p,
.game-hero-note p,
.game-question p,
.game-output > p,
.game-lead p {
  margin: 18px 0 0;
  color: var(--answer-muted);
  font-size: 1.04rem;
  line-height: 1.68;
}

.game-hero-note {
  padding: 24px 24px 24px 26px;
  color: var(--answer-ink);
  background: rgba(247, 236, 216, 0.055);
  border: 1px solid rgba(213, 177, 109, 0.2);
  border-left: 3px solid rgba(213, 177, 109, 0.64);
  border-radius: 8px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
}

.game-hero-note span {
  color: var(--answer-gold-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.game-plan-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.78fr);
  gap: 22px;
  padding-bottom: 80px;
}

.game-conversation,
.game-output,
.game-lead {
  background: rgba(21, 26, 19, 0.94);
  border: 1px solid var(--answer-line);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.game-conversation {
  display: grid;
  gap: 22px;
  padding: 30px;
}

.game-question {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  align-items: start;
}

.game-question > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--answer-gold-bright);
  background: rgba(213, 177, 109, 0.08);
  border: 1px solid rgba(213, 177, 109, 0.28);
  border-radius: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.game-question h2 {
  margin: 0;
  color: var(--answer-ink);
  font-size: 1.28rem;
  line-height: 1.25;
}

.game-question p {
  margin-top: 6px;
  font-size: 0.95rem;
}

.game-choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.game-choice-grid button {
  min-height: 40px;
  padding: 9px 13px;
  color: var(--answer-muted);
  background: rgba(247, 236, 216, 0.045);
  border: 1px solid rgba(213, 177, 109, 0.18);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 760;
}

.game-choice-grid button:hover,
.game-choice-grid button:focus-visible,
.game-choice-grid button.is-active {
  color: var(--answer-ink);
  background: rgba(104, 74, 39, 0.44);
  border-color: rgba(213, 177, 109, 0.58);
  box-shadow: inset 0 -1px 0 rgba(247, 236, 216, 0.08);
}

.game-input-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.game-input-grid label {
  display: grid;
  gap: 7px;
  color: var(--answer-muted);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.02em;
}

.game-input-grid input {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--answer-ink);
  background: rgba(10, 14, 10, 0.88);
  border: 1px solid var(--answer-line);
  border-radius: 8px;
}

.game-output {
  align-self: start;
  padding: 30px;
}

.game-output h2 {
  font-size: 2.16rem;
}

.game-output > p {
  font-size: 0.98rem;
}

.game-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 24px;
  overflow: hidden;
  background: rgba(213, 177, 109, 0.18);
  border: 1px solid rgba(213, 177, 109, 0.18);
  border-radius: 8px;
}

.game-metrics article {
  min-width: 0;
  padding: 16px;
  background: rgba(12, 16, 12, 0.88);
  border: 0;
  border-radius: 0;
}

.game-metrics span {
  display: block;
  color: var(--answer-gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.56rem;
  font-weight: 600;
  line-height: 1;
}

.game-metrics p {
  margin: 8px 0 0;
  color: var(--answer-muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.game-path {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.game-path > div {
  min-width: 0;
  padding: 18px;
  background: rgba(9, 13, 9, 0.7);
  border: 1px solid rgba(213, 177, 109, 0.16);
  border-radius: 8px;
}

.game-path strong {
  display: block;
  color: var(--answer-gold-bright);
  margin-bottom: 12px;
}

.game-path ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--answer-muted);
}

.game-path li::marker {
  color: var(--answer-gold-bright);
}

.game-inspection-list {
  margin-top: 18px;
  padding: 18px;
  color: var(--answer-muted);
  background: rgba(247, 236, 216, 0.045);
  border: 1px solid rgba(213, 177, 109, 0.16);
  border-left: 3px solid rgba(139, 155, 114, 0.72);
  border-radius: 8px;
}

.game-inspection-list strong {
  display: block;
  color: var(--answer-gold-bright);
  margin-bottom: 12px;
}

.game-inspection-list ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
}

.game-inspection-list li::marker {
  color: var(--answer-green);
}

.game-lead {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  padding: 30px;
}

.game-lead h2 {
  font-size: 2.35rem;
}

.game-plan-form {
  box-shadow: none;
}

@media (max-width: 980px) {
  .answer-header {
    padding: 0 24px;
  }

  .answer-nav {
    top: calc(100% + 8px);
    right: 24px;
    color: var(--answer-ink);
    background: var(--answer-surface);
    border-color: var(--answer-line);
    border-radius: 8px;
  }

  .answer-hero,
  .answer-page-hero,
  .answer-split,
  .answer-guide,
  .answer-signup,
  .game-hero,
  .game-plan-shell,
  .game-lead {
    grid-template-columns: 1fr;
  }

  .answer-hero {
    min-height: auto;
    padding-top: 68px;
  }

  .answer-hero h1 {
    font-size: 3.45rem;
  }

  .answer-page-hero h1 {
    font-size: 3.15rem;
  }

  .answer-update-stream {
    grid-template-columns: 1fr;
  }

  .game-hero {
    padding-top: 62px;
  }
}

@media (max-width: 680px) {
  .answer-hero,
  .answer-page-hero,
  .answer-section,
  .answer-guide,
  .answer-signup,
  .game-hero,
  .game-plan-shell {
    width: calc(100% - 32px);
  }

  .game-hero h1 {
    font-size: 2.65rem;
  }

  .game-input-grid,
  .game-metrics,
  .game-path {
    grid-template-columns: 1fr;
  }

  .game-lead {
    padding: 22px;
  }

  .game-lead h2,
  .game-output h2 {
    font-size: 2.1rem;
  }

  .answer-hero {
    gap: 22px;
    padding: 50px 0 40px;
  }

  .answer-hero h1 {
    font-size: 2.64rem;
    line-height: 1.01;
  }

  .answer-page-hero {
    padding: 58px 0 38px;
  }

  .answer-page-hero h1,
  .answer-section-title h2 {
    font-size: 2.25rem;
  }

  .answer-quick-form,
  .answer-brief dl,
  .answer-form {
    grid-template-columns: 1fr;
  }

  .answer-composer {
    gap: 14px;
    padding: 16px;
  }

  .answer-prompt {
    min-height: 70px;
    padding: 14px;
  }

  .answer-result {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .answer-path article {
    grid-template-columns: 1fr;
  }

  .answer-guide {
    padding: 24px;
  }
}

/* Regal professional pass: executive stationery, not app/video styling */
.answer-site {
  --answer-ink: #162417;
  --answer-muted: #5f6557;
  --answer-soft: #8a8068;
  --answer-paper: #f4efe3;
  --answer-paper-light: #fbf7ee;
  --answer-surface: #fffaf0;
  --answer-green: #24472f;
  --answer-green-dark: #12331f;
  --answer-moss: #727849;
  --answer-clay: #8d5936;
  --answer-gold: #a97832;
  --answer-gold-bright: #b9883d;
  --answer-stone: #e3d7c2;
  --answer-line: rgba(56, 43, 28, 0.16);
  --answer-shadow: 0 22px 54px rgba(56, 43, 28, 0.12);
  color: var(--answer-ink);
  background:
    linear-gradient(90deg, rgba(36, 71, 47, 0.055) 0, transparent 36%),
    linear-gradient(180deg, #fffaf0 0%, #f4efe3 52%, #efe5d3 100%);
}

.answer-site::before {
  background:
    linear-gradient(90deg, transparent 0 31px, rgba(56, 43, 28, 0.05) 32px, transparent 33px),
    linear-gradient(180deg, rgba(255, 250, 240, 0.72), transparent 34%);
  background-size: 34px 100%, 100% 100%;
  mask-image: none;
}

.answer-header {
  min-height: 78px;
  color: var(--answer-ink);
  background: rgba(255, 250, 240, 0.92);
  border-bottom: 1px solid rgba(56, 43, 28, 0.14);
  backdrop-filter: blur(14px);
}

.answer-brand .sw-brand-mark {
  color: #f9eedb;
  background: #183722;
  border-color: rgba(169, 120, 50, 0.54);
  box-shadow: none;
}

.answer-brand .sw-brand-name,
.answer-nav,
.answer-nav a {
  color: var(--answer-ink);
}

.answer-nav a:hover,
.answer-nav a:focus-visible,
.answer-nav a[aria-current="page"] {
  color: var(--answer-green-dark);
  background: rgba(169, 120, 50, 0.1);
}

.answer-nav .sw-nav-action,
.answer-submit,
.answer-primary-link {
  color: #fffaf0;
  background: var(--answer-green-dark);
  border: 1px solid var(--answer-green-dark);
  box-shadow: 0 14px 28px rgba(18, 51, 31, 0.18);
}

.answer-nav .sw-nav-action:hover,
.answer-nav .sw-nav-action:focus-visible,
.answer-submit:hover,
.answer-submit:focus-visible,
.answer-primary-link:hover,
.answer-primary-link:focus-visible {
  color: #fffaf0;
  background: #24472f;
  border-color: #24472f;
}

.answer-header .sw-menu-toggle {
  color: var(--answer-ink);
  background: rgba(255, 250, 240, 0.84);
  border-color: var(--answer-line);
}

.answer-header .sw-menu-toggle span:not(.visually-hidden) {
  background: var(--answer-ink);
}

.answer-hero {
  position: relative;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: 54px;
  align-items: center;
  width: min(1280px, calc(100% - 48px));
  padding: 86px clamp(24px, 5vw, 64px) 58px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.98) 0%, rgba(255, 250, 240, 0.9) 35%, rgba(255, 250, 240, 0.56) 58%, rgba(255, 250, 240, 0.18) 100%),
    linear-gradient(180deg, rgba(255, 250, 240, 0.08), rgba(244, 239, 227, 0.68)),
    url("assets/hero-water-real.jpg") center right / cover no-repeat;
  border: 1px solid rgba(56, 43, 28, 0.13);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 28px 78px rgba(56, 43, 28, 0.13);
}

.answer-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.answer-hero h1,
.answer-page-hero h1,
.answer-section-title h2,
.answer-guide h2,
.game-hero h1,
.game-output h2,
.game-lead h2 {
  color: var(--answer-green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 650;
}

.answer-hero h1 {
  max-width: 780px;
  font-size: clamp(3.15rem, 6.4vw, 5.75rem);
  line-height: 0.96;
}

.answer-hero-copy p,
.answer-page-hero p,
.answer-section-title p,
.answer-guide p,
.game-hero p,
.game-hero-note p,
.game-question p,
.game-output > p,
.game-lead p,
.answer-result p,
.answer-path p,
.answer-update-stream p,
.answer-brief p {
  color: var(--answer-muted);
}

.answer-hero .answer-composer,
.answer-hero .answer-brief {
  position: relative;
  z-index: 1;
}

.answer-model-card {
  background:
    linear-gradient(145deg, rgba(255, 250, 240, 0.96), rgba(246, 239, 225, 0.9)),
    #fffaf0;
  border-top: 4px solid var(--answer-green-dark);
}

.answer-model-card h2 {
  color: var(--answer-green-dark);
  font-family: Georgia, "Times New Roman", serif;
}

.answer-model-card ol {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: outcome;
}

.answer-model-card li {
  position: relative;
  min-height: 40px;
  padding: 8px 0 8px 50px;
  color: var(--answer-ink);
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.35;
  counter-increment: outcome;
}

.answer-model-card li::before {
  position: absolute;
  top: 4px;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  content: counter(outcome, decimal-leading-zero);
  color: var(--answer-green-dark);
  background: #f5ead5;
  border: 1px solid rgba(169, 120, 50, 0.28);
  border-radius: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.78rem;
  font-weight: 800;
}

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

.answer-primary-link,
.answer-secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 850;
  text-decoration: none;
}

.answer-secondary-link {
  color: var(--answer-green-dark);
  background: rgba(255, 250, 240, 0.62);
  border: 1px solid rgba(36, 71, 47, 0.24);
}

.answer-secondary-link:hover,
.answer-secondary-link:focus-visible {
  background: #fffaf0;
  border-color: rgba(36, 71, 47, 0.46);
}

.answer-composer,
.answer-brief,
.answer-result-list,
.answer-path article,
.answer-update-stream article,
.answer-guide,
.answer-form,
.game-conversation,
.game-output,
.game-lead,
.game-hero-note,
.game-path > div,
.game-inspection-list,
.answer-model-card {
  color: var(--answer-ink);
  background: rgba(255, 250, 240, 0.82);
  border: 1px solid var(--answer-line);
  border-radius: 6px;
  box-shadow: var(--answer-shadow);
}

.answer-composer {
  padding: 22px;
  border-top: 4px solid var(--answer-green-dark);
}

.answer-prompt {
  min-height: auto;
  background: #f7f0e3;
  border-color: rgba(56, 43, 28, 0.12);
}

.answer-prompt p,
.answer-brief h2,
.answer-brief dd,
.answer-result h3,
.answer-path h3,
.answer-update-stream h3,
.answer-guide-note p,
.game-question h2 {
  color: var(--answer-green-dark);
}

.answer-cursor {
  width: 10px;
  height: 10px;
  background: var(--answer-gold);
  box-shadow: none;
}

.answer-chip-row a,
.answer-sources span,
.answer-filter-bar button,
.game-choice-grid button {
  color: var(--answer-green-dark);
  background: rgba(255, 250, 240, 0.58);
  border: 1px solid rgba(56, 43, 28, 0.14);
  border-radius: 6px;
}

.answer-chip-row a:hover,
.answer-chip-row a:focus-visible,
.answer-filter-bar button:hover,
.answer-filter-bar button:focus-visible,
.answer-filter-bar button.is-active,
.game-choice-grid button:hover,
.game-choice-grid button:focus-visible,
.game-choice-grid button.is-active {
  color: #fffaf0;
  background: var(--answer-green-dark);
  border-color: var(--answer-green-dark);
}

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

.answer-quick-form button,
.answer-quick-form .sw-form-status {
  grid-column: 1 / -1;
}

.answer-quick-form label,
.answer-form label,
.game-input-grid label {
  color: #4f513f;
  font-weight: 760;
}

.answer-quick-form input,
.answer-quick-form select,
.answer-form input,
.answer-form select,
.answer-form textarea,
.game-input-grid input {
  color: var(--answer-ink);
  background: #fffdf7;
  border-color: rgba(56, 43, 28, 0.18);
  border-radius: 6px;
}

.answer-quick-form input:focus,
.answer-quick-form select:focus,
.answer-form input:focus,
.answer-form select:focus,
.answer-form textarea:focus,
.game-input-grid input:focus {
  border-color: var(--answer-gold);
  box-shadow: 0 0 0 3px rgba(169, 120, 50, 0.14);
}

.answer-brief,
.answer-result-list,
.answer-section {
  border-color: rgba(56, 43, 28, 0.14);
}

.answer-brief-head,
.answer-brief dt,
.answer-section-title span,
.answer-update-stream time,
.game-label,
.game-path strong,
.game-inspection-list strong {
  color: var(--answer-gold);
  letter-spacing: 0.13em;
}

.answer-brief dl div,
.answer-guide-note {
  background: #f7f0e3;
  border: 1px solid rgba(56, 43, 28, 0.1);
}

.answer-result-list {
  background: rgba(255, 250, 240, 0.74);
}

.answer-result {
  border-color: rgba(56, 43, 28, 0.12);
}

.answer-result-index,
.answer-path article > span,
.game-question > span,
.answer-guide-note span {
  color: var(--answer-green-dark);
  background: rgba(169, 120, 50, 0.12);
  border: 1px solid rgba(169, 120, 50, 0.28);
  border-radius: 6px;
  box-shadow: none;
}

.answer-guide {
  border-left: 4px solid var(--answer-green-dark);
}

.answer-footer {
  color: rgba(255, 250, 240, 0.78);
  background: #12331f;
}

.answer-footer a {
  color: #fffaf0;
}

.game-hero {
  padding-top: 76px;
}

.game-plan-shell {
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.78fr);
}

.game-hero-note,
.game-inspection-list {
  border-left: 4px solid var(--answer-green-dark);
}

.game-metrics {
  background: rgba(56, 43, 28, 0.12);
  border-color: rgba(56, 43, 28, 0.12);
}

.game-metrics article {
  background: #fffaf0;
}

.game-metrics span {
  color: var(--answer-green-dark);
}

.game-path ol,
.game-inspection-list ul {
  color: var(--answer-muted);
}

@media (max-width: 980px) {
  .answer-nav {
    color: var(--answer-ink);
    background: #fffaf0;
  }

  .answer-hero,
  .answer-page-hero,
  .answer-split,
  .answer-guide,
  .answer-signup,
  .game-hero,
  .game-plan-shell,
  .game-lead {
    grid-template-columns: 1fr;
  }

  .answer-hero {
    gap: 28px;
    background:
      linear-gradient(180deg, rgba(255, 250, 240, 0.94) 0%, rgba(255, 250, 240, 0.8) 48%, rgba(255, 250, 240, 0.68) 100%),
      url("assets/hero-water-real.jpg") center top / cover no-repeat;
  }
}

@media (max-width: 680px) {
  .answer-hero h1 {
    font-size: 2.58rem;
    line-height: 0.98;
  }

  .answer-hero {
    width: min(100% - 22px, 100%);
    padding: 46px 12px 32px;
  }

  .answer-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .answer-primary-link,
  .answer-secondary-link,
  .answer-submit {
    width: 100%;
  }

  .answer-quick-form {
    grid-template-columns: 1fr;
  }

  .answer-composer,
  .answer-form {
    padding: 16px;
  }

  .sw-checkbox {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 12px;
    align-items: start;
  }

  .sw-checkbox input {
    width: 22px;
    min-height: 22px;
    height: 22px;
    accent-color: var(--answer-green-dark);
  }
}

.answer-brand .sw-brand-logo {
  width: 82px;
  height: 44px;
  object-fit: contain;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.answer-brand .sw-brand-name {
  margin-left: 2px;
}

.sprint-section {
  display: block;
}

.sprint-section .answer-section-title {
  max-width: 720px;
  margin-bottom: 34px;
}

.sprint-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  isolation: isolate;
}

.sprint-timeline::before {
  position: absolute;
  z-index: -1;
  top: 38px;
  left: 8%;
  right: 8%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(36, 71, 47, 0), rgba(36, 71, 47, 0.38), rgba(169, 120, 50, 0.34), rgba(36, 71, 47, 0));
  transform-origin: left center;
  animation: sprint-line-draw 780ms ease-out both;
}

.sprint-timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto 1fr;
  gap: 16px;
  min-height: 218px;
  padding: 26px;
  overflow: hidden;
  opacity: 1;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(246, 239, 225, 0.88)),
    #fffaf0;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  animation: sprint-card-lift 520ms ease-out both;
}

.sprint-timeline article:nth-child(2) {
  animation-delay: 80ms;
}

.sprint-timeline article:nth-child(3) {
  animation-delay: 160ms;
}

.sprint-timeline article::after {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 34px;
  height: 34px;
  content: "";
  background:
    linear-gradient(90deg, rgba(169, 120, 50, 0.45), rgba(169, 120, 50, 0.45)) 50% 0 / 1px 100% no-repeat,
    linear-gradient(0deg, rgba(169, 120, 50, 0.45), rgba(169, 120, 50, 0.45)) 0 50% / 100% 1px no-repeat;
  opacity: 0.42;
}

.sprint-timeline article:hover {
  transform: translateY(-4px);
  border-color: rgba(36, 71, 47, 0.28);
  box-shadow: 0 24px 58px rgba(56, 43, 28, 0.16);
}

.sprint-timeline article > span {
  width: max-content;
  min-width: 56px;
  height: 40px;
  padding: 0 13px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  color: var(--answer-green-dark);
  background: #f5ead5;
  border-color: rgba(169, 120, 50, 0.28);
}

.sprint-timeline h3 {
  max-width: 280px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.08;
}

.sprint-timeline p {
  max-width: 310px;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.62;
}

@keyframes sprint-card-lift {
  from {
    transform: translateY(12px);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes sprint-line-draw {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.founder-intake {
  grid-template-columns: minmax(270px, 0.56fr) minmax(0, 1fr);
}

.founder-intake .answer-section-title {
  position: sticky;
  top: 104px;
}

.founder-intake-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
  border-top: 4px solid var(--answer-green-dark);
}

.founder-question-set {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 18px;
  background: #f8f1e5;
  border: 1px solid rgba(56, 43, 28, 0.12);
  border-radius: 6px;
}

.founder-question-set[hidden] {
  display: none !important;
}

.founder-question-set:not([hidden]) {
  animation: intake-panel-in 220ms ease-out both;
}

.founder-question-set label:last-child {
  grid-column: 1 / -1;
}

.founder-intake-form textarea {
  min-height: 128px;
}

.founder-intake-form .answer-submit {
  grid-column: 1 / -1;
  justify-self: start;
  min-width: 280px;
}

.answer-form .sw-checkbox {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  max-width: 620px;
  padding: 14px 16px;
  background: #f8f1e5;
  border: 1px solid rgba(56, 43, 28, 0.12);
  border-radius: 6px;
}

.answer-form .sw-checkbox input {
  display: grid;
  place-items: center;
  appearance: none;
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin: 1px 0 0;
  background: #fffaf0;
  border: 1px solid rgba(18, 51, 31, 0.48);
  border-radius: 4px;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.answer-form .sw-checkbox input::before {
  width: 6px;
  height: 11px;
  content: "";
  border: solid #fffaf0;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.answer-form .sw-checkbox input:checked {
  background: var(--answer-green-dark);
  border-color: var(--answer-green-dark);
  box-shadow: 0 0 0 3px rgba(18, 51, 31, 0.1);
}

.answer-form .sw-checkbox input:checked::before {
  transform: rotate(45deg) scale(1);
}

.answer-form .sw-checkbox input:focus-visible {
  outline: 2px solid rgba(169, 120, 50, 0.72);
  outline-offset: 3px;
}

.answer-form .sw-checkbox span {
  color: var(--answer-muted);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
}

@media (prefers-reduced-motion: reduce) {
  .sprint-timeline article,
  .sprint-timeline::before,
  .founder-question-set:not([hidden]) {
    animation: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .sprint-timeline,
  .founder-intake,
  .founder-intake-form,
  .founder-question-set {
    grid-template-columns: 1fr;
  }

  .sprint-timeline::before {
    display: none;
  }

  .sprint-timeline article {
    border-left: 3px solid rgba(18, 51, 31, 0.78);
  }

  .founder-intake .answer-section-title {
    position: static;
  }
}

@media (max-width: 680px) {
  .answer-brand .sw-brand-logo {
    width: 62px;
    height: 34px;
  }

  .answer-brand .sw-brand-name {
    font-size: 0.94rem;
  }

  .sprint-timeline article {
    min-height: auto;
    padding: 20px;
  }

  .sprint-timeline p {
    max-width: none;
  }

  .founder-intake-form .answer-submit {
    width: 100%;
    min-width: 0;
  }
}

@keyframes intake-panel-in {
  from {
    opacity: 0.72;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.answer-page-hero .answer-model-card {
  color: var(--answer-ink);
  background:
    linear-gradient(145deg, rgba(255, 250, 240, 0.98), rgba(246, 239, 225, 0.92)),
    #fffaf0;
  border: 1px solid rgba(56, 43, 28, 0.14);
  border-top: 4px solid var(--answer-green-dark);
  box-shadow: 0 20px 48px rgba(56, 43, 28, 0.12);
}

.answer-page-hero .answer-model-card h2 {
  color: var(--answer-green-dark);
}

.answer-page-hero .answer-model-card li {
  color: var(--answer-ink);
}
