:root {
  --paper: #f4f1e9;
  --paper-deep: #ebe6dc;
  --ink: #171715;
  --muted: #68645d;
  --line: rgba(23, 23, 21, 0.18);
  --black: #111110;
  --black-soft: #1d1c1a;
  --white: #fffdf7;
  --orange: #f15a32;
  --orange-dark: #d94722;
  --green: #17695d;
  --green-soft: #dfeae6;
  --max-width: 1180px;
  --side: clamp(20px, 4vw, 56px);
  --serif: "Songti SC", "STSong", "Noto Serif CJK SC", "Source Han Serif SC", serif;
  --sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

a:hover {
  color: var(--orange);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.page-shell {
  width: min(100%, calc(var(--max-width) + var(--side) * 2));
  margin: 0 auto;
  padding-inline: var(--side);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 72px;
  padding: 0 var(--side);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(17, 17, 16, 0.96);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
}

.brand img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.site-header nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3vw, 42px);
}

.site-header nav a,
.header-link {
  color: rgba(255, 253, 247, 0.7);
  font-size: 14px;
  text-decoration: none;
}

.site-header nav a:hover,
.header-link:hover {
  color: var(--white);
}

.header-link {
  justify-self: end;
  color: var(--white);
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: clamp(56px, 8vw, 112px);
  align-items: center;
  padding-top: 76px;
  padding-bottom: 82px;
}

.overline {
  margin: 0 0 24px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero h1 > span {
  display: block;
}

.hero-intro {
  max-width: 680px;
  margin-top: 40px;
  color: rgba(255, 253, 247, 0.78);
  font-size: 19px;
  line-height: 1.8;
}

.hero-intro .hero-lead {
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.65;
}

.hero-intro strong {
  color: var(--orange);
}

.hero-intro p {
  margin: 0;
}

.hero-intro p + p {
  margin-top: 16px;
}

.hero-product {
  max-width: 680px;
  margin: 28px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 253, 247, 0.66);
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  background: var(--orange);
  color: #fff;
}

.button-primary:hover {
  background: var(--orange-dark);
  color: #fff;
}

.button-placeholder {
  cursor: default;
  opacity: 0.66;
  user-select: none;
}

.button-placeholder:hover {
  background: var(--orange);
  color: #fff;
  transform: none;
}

.text-link {
  color: rgba(255, 253, 247, 0.78);
  font-size: 14px;
}

.hero-note {
  margin: 20px 0 0;
  color: rgba(255, 253, 247, 0.52);
  font-size: 13px;
}

.host-figure {
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.035);
}

.host-portraits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.portrait {
  position: relative;
  overflow: hidden;
  min-width: 0;
  background: var(--black-soft);
  color: var(--white);
  text-decoration: none;
}

.portrait:hover {
  color: var(--white);
}

.portrait-yage {
  background: #000;
}

.portrait img {
  width: 100%;
  aspect-ratio: 4 / 5.2;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.03);
}

.portrait-yage img {
  filter: none;
}

.portrait p {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 38px 14px 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.88));
}

.portrait strong,
.portrait span {
  display: block;
}

.portrait strong {
  font-size: 15px;
}

.portrait span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  line-height: 1.5;
}

.host-figure figcaption {
  padding: 15px 4px 0;
  color: rgba(255, 253, 247, 0.56);
  font-size: 12px;
  line-height: 1.7;
}

.section {
  padding: clamp(72px, 7vw, 96px) 0;
  border-bottom: 1px solid var(--line);
}

.section-tint {
  background: var(--paper-deep);
}

.section-dark {
  border-color: rgba(255, 255, 255, 0.14);
  background: var(--black);
  color: var(--white);
}

.section-intro {
  max-width: 860px;
  margin-bottom: clamp(44px, 4.5vw, 60px);
}

.section-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.14;
}

.section-kicker {
  margin: 0 0 16px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 700;
}

.section-intro > p {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.section-intro p.section-kicker {
  max-width: none;
  margin: 0 0 16px;
  color: var(--orange-dark);
  font-size: 12px;
}

.section-dark .section-intro > p {
  color: rgba(255, 253, 247, 0.6);
}

.community-section {
  background: #f8f7f2;
}

.community-intro {
  max-width: 980px;
}

.community-intro .section-kicker {
  color: var(--green);
}

.community-intro > p:last-child {
  max-width: 790px;
}

.talent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.talent-grid article {
  min-width: 0;
  padding: 30px 34px 32px 0;
}

.talent-grid article + article {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.talent-step {
  margin: 0 0 15px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}

.talent-grid h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.55;
}

.community-proof {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(38px, 7vw, 96px);
  align-items: center;
  margin-top: 48px;
  padding: 34px;
  border: 1px solid rgba(23, 105, 93, 0.22);
  background: var(--green-soft);
}

.community-proof > p {
  margin: 0;
  color: #25433d;
  font-size: 16px;
}

.community-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.community-facts p {
  margin: 0;
  padding: 4px 18px;
}

.community-facts p + p {
  border-left: 1px solid rgba(23, 105, 93, 0.26);
}

.community-facts strong,
.community-facts span {
  display: block;
}

.community-facts strong {
  color: var(--green);
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.25;
}

.community-facts span {
  margin-top: 4px;
  color: #4c625d;
  font-size: 12px;
}

.membership-section {
  background: var(--paper);
}

.membership-intro {
  max-width: 980px;
}

.membership-stack {
  border-top: 1px solid var(--line);
}

.membership-item {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(34px, 6vw, 82px);
  border-bottom: 1px solid var(--line);
}

.membership-item summary {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 28px 0;
  cursor: default;
  list-style: none;
}

.membership-item summary::-webkit-details-marker {
  display: none;
}

.membership-number {
  color: var(--orange-dark);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 13px;
  font-weight: 700;
}

.membership-heading strong,
.membership-heading small {
  display: block;
}

.membership-heading strong {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.35;
}

.membership-heading small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.membership-detail {
  margin: 0;
  padding: 28px 0 28px 36px;
  border-left: 1px solid var(--line);
}

.membership-detail p {
  margin: 0;
  color: var(--muted);
}

.membership-detail p + p {
  margin-top: 14px;
}

.membership-detail a {
  display: inline-block;
  margin-left: 0.35em;
  color: var(--orange-dark);
  font-weight: 700;
  white-space: nowrap;
}

.thesis-section {
  border-color: rgba(255, 255, 255, 0.14);
  background: var(--black);
  color: var(--white);
}

.thesis-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1.24fr);
  gap: 80px;
  align-items: start;
}

.thesis-section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.18;
}

.thesis-section h2 span {
  display: block;
}

.thesis-copy {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.9;
}

.thesis-copy .thesis-question {
  margin-top: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
}

.thesis-copy p {
  margin: 0;
  color: rgba(255, 253, 247, 0.72);
}

.thesis-copy p + p {
  margin-top: 26px;
}

.thesis-copy .thesis-conclusion {
  margin-top: 30px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
}

.host-stories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.host-story {
  display: block;
  padding: 42px 48px 16px 0;
  border-bottom: 1px solid var(--line);
}

.host-story + .host-story {
  padding-right: 0;
  padding-left: 48px;
  border-left: 1px solid var(--line);
}

.host-story .person-name {
  margin: 0 0 16px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 700;
}

.host-story h3 {
  max-width: 780px;
  margin: 0;
  font-family: var(--serif);
  font-size: 36px;
  letter-spacing: 0;
  line-height: 1.35;
}

.host-story h3 + p {
  max-width: 780px;
  margin: 24px 0 0;
  color: var(--muted);
}

.boundary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 7vw, 100px);
}

.boundary-grid > div {
  padding-top: 22px;
  border-top: 3px solid var(--ink);
}

.boundary-grid > div:last-child {
  border-top-color: var(--orange);
}

.boundary-grid h3 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: 26px;
}

.check-list,
.dash-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.dash-list li {
  position: relative;
  padding: 16px 0 16px 30px;
  border-top: 1px solid var(--line);
}

.check-list li::before,
.dash-list li::before {
  position: absolute;
  top: 17px;
  left: 0;
  color: var(--orange-dark);
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
}

.dash-list li::before {
  content: "—";
}

.boundary-footnote {
  margin: 50px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.case-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-title-break {
  display: none;
}

.case {
  min-width: 0;
}

.case:not(.case-featured) {
  display: flex;
  flex-direction: column;
  padding: 38px 42px 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.case:not(.case-featured):nth-child(odd) {
  padding-right: 0;
  padding-left: 42px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.case:not(.case-featured):nth-last-child(-n + 2) {
  border-bottom: 0;
}

.case-featured {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(40px, 7vw, 94px);
  align-items: center;
  padding: 42px 0 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.case-featured img {
  width: 100%;
  max-height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  object-fit: contain;
  background: #080808;
}

.case-source {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
}

.case h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(25px, 2.35vw, 32px);
  line-height: 1.34;
}

.case p:not(.case-source) {
  margin: 18px 0 0;
  color: rgba(255, 253, 247, 0.62);
}

.case a {
  display: inline-block;
  margin-top: 24px;
  color: var(--orange);
  font-weight: 700;
}

.case:not(.case-featured) > a {
  margin-top: auto;
  padding-top: 26px;
}

.case-person {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.case-person img {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: #fff;
  object-fit: cover;
}

.case-person div {
  min-width: 0;
}

.case-person strong,
.case-person span,
.case-person small {
  display: block;
}

.case-person strong {
  color: var(--white);
  font-size: 14px;
  line-height: 1.4;
}

.case-person span,
.case-person small {
  margin-top: 2px;
  color: rgba(255, 253, 247, 0.55);
  font-size: 12px;
  line-height: 1.5;
}

.pricing-section {
  background: var(--white);
}

.annual-plan {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 8vw, 110px);
  padding: clamp(34px, 5vw, 62px);
  background: var(--black);
  color: var(--white);
}

.annual-price > p:not(.plan-name, .plan-price) {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.annual-price .plan-price span {
  color: rgba(255, 255, 255, 0.5);
}

.annual-price .button {
  margin-top: 28px;
}

.annual-plan ul {
  align-self: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.annual-plan li {
  position: relative;
  padding: 16px 0 16px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.8);
}

.annual-plan li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.annual-plan li::before {
  position: absolute;
  left: 0;
  color: var(--orange);
  content: "✓";
  font-weight: 700;
}

.compact-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.compact-plans article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 28px;
  align-items: start;
  padding: 28px 32px;
  background: var(--paper);
}

.compact-plans article > div p,
.compact-plans article > p {
  margin: 0;
}

.compact-plans article > div p:not(.plan-name),
.compact-plans article > p:last-child {
  color: var(--muted);
  font-size: 13px;
}

.compact-plans article > div p:not(.plan-name) {
  margin-top: 6px;
}

.compact-plans article > p:last-child {
  grid-column: 1 / -1;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.compact-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
}

.compact-price strong {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}

.compact-price span {
  color: var(--muted);
  font-size: 12px;
}

.plan-name {
  margin: 0;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 700;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 18px 0 12px;
  line-height: 1;
}

.plan-price strong {
  font-family: var(--serif);
  font-size: 64px;
}

.plan-price span {
  color: var(--muted);
}

.pricing-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 7vw, 100px);
  margin-top: 56px;
}

.pricing-notes > div {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.pricing-notes h3,
.pricing-notes p {
  margin: 0;
}

.pricing-notes h3 {
  font-family: var(--serif);
  font-size: 22px;
}

.pricing-notes p {
  margin-top: 12px;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 44px 24px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 4px;
  color: var(--orange-dark);
  content: "+";
  font-family: ui-monospace, monospace;
  font-size: 22px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 720px;
  margin: -4px 0 28px;
  color: var(--muted);
}

.final-cta {
  padding: clamp(64px, 6vw, 88px) 0;
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.final-cta .overline {
  color: var(--orange-dark);
}

.final-cta h2 {
  max-width: 880px;
  margin: 0;
  font-family: var(--serif);
  font-size: 72px;
  letter-spacing: 0;
  line-height: 1.12;
}

.final-cta p:not(.overline) {
  max-width: 680px;
  margin: 24px 0 32px;
  color: var(--muted);
  font-size: 17px;
}

.site-footer {
  padding: 24px 0;
  background: var(--black);
  color: rgba(255, 255, 255, 0.56);
}

.site-footer .page-shell {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: inherit;
}

@media (max-width: 980px) {
  .site-header nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    max-width: 800px;
  }

  .hero h1 {
    font-size: 64px;
  }

  .host-figure {
    max-width: 620px;
  }

  .thesis-layout {
    gap: 48px;
  }

  .thesis-section h2 {
    font-size: 48px;
  }

  .community-proof {
    grid-template-columns: 1fr;
  }

  .membership-item {
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
    gap: 34px;
  }

  .annual-plan {
    gap: 48px;
  }

  .case-featured {
    grid-column: 1 / -1;
  }

}

@media (max-width: 700px) {
  :root {
    --side: 20px;
  }

  html {
    scroll-padding-top: 64px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    min-height: 64px;
  }

  .brand {
    gap: 9px;
    font-size: 14px;
  }

  .brand img {
    width: 24px;
    height: 24px;
  }

  .header-link {
    font-size: 13px;
  }

  .hero-grid {
    gap: 52px;
    padding-top: 66px;
    padding-bottom: 74px;
  }

  .overline {
    margin-bottom: 18px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: 40px;
    letter-spacing: 0;
  }

  .hero-intro {
    margin-top: 30px;
    font-size: 16px;
  }

  .hero-intro .hero-lead {
    font-size: 18px;
  }

  .hero-product {
    margin-top: 24px;
    padding-top: 20px;
    font-size: 14px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 30px;
  }

  .button {
    width: 100%;
  }

  .host-figure {
    width: 100%;
    padding: 10px;
  }

  .portrait p {
    padding: 32px 10px 10px;
  }

  .portrait strong {
    font-size: 13px;
  }

  .portrait span {
    font-size: 10px;
  }

  .section {
    padding: 56px 0;
  }

  .section-intro {
    margin-bottom: 36px;
  }

  .section-intro h2 {
    font-size: 38px;
  }

  .section-intro > p {
    margin-top: 12px;
    font-size: 15px;
  }

  .section-intro p.section-kicker {
    margin: 0 0 12px;
    font-size: 11px;
  }

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

  .talent-grid article,
  .talent-grid article + article {
    padding: 24px 0;
    border-left: 0;
  }

  .talent-grid article + article {
    border-top: 1px solid var(--line);
  }

  .talent-grid h3 {
    font-size: 21px;
  }

  .community-proof {
    gap: 26px;
    margin-top: 34px;
    padding: 24px 20px;
  }

  .community-facts {
    grid-template-columns: 1fr 1fr;
  }

  .community-facts p {
    padding: 16px 12px 16px 0;
  }

  .community-facts p + p {
    padding-left: 12px;
  }

  .community-facts p:nth-child(3) {
    padding-left: 0;
    border-top: 1px solid rgba(23, 105, 93, 0.26);
    border-left: 0;
  }

  .community-facts p:nth-child(4) {
    border-top: 1px solid rgba(23, 105, 93, 0.26);
  }

  .community-facts strong {
    font-size: 24px;
  }

  .membership-item {
    display: block;
  }

  .membership-item summary {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px;
    padding: 22px 38px 22px 0;
    cursor: pointer;
  }

  .membership-item summary::after {
    position: absolute;
    top: 26px;
    right: 2px;
    color: var(--orange-dark);
    content: "+";
    font-family: ui-monospace, monospace;
    font-size: 21px;
    font-weight: 400;
  }

  .membership-item[open] summary::after {
    content: "−";
  }

  .membership-heading strong {
    font-size: 22px;
  }

  .membership-heading small {
    font-size: 12px;
  }

  .membership-detail {
    margin: 0 0 24px 36px;
    padding: 0 0 0 16px;
  }

  .thesis-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .thesis-section h2 {
    font-size: 38px;
  }

  .thesis-copy {
    font-size: 16px;
    line-height: 1.85;
  }

  .thesis-copy p + p {
    margin-top: 22px;
  }

  .thesis-copy .thesis-question {
    font-size: 23px;
    line-height: 1.55;
  }

  .thesis-copy .thesis-conclusion {
    margin-top: 26px;
    font-family: var(--sans);
    font-size: 20px;
    line-height: 1.65;
  }

  .host-stories {
    grid-template-columns: 1fr;
  }

  .host-story,
  .host-story + .host-story {
    padding: 30px 0;
    border-left: 0;
  }

  .host-story h3 {
    font-family: var(--sans);
    font-size: 19px;
    line-height: 1.5;
  }

  .host-story h3 + p {
    margin-top: 18px;
  }

  .boundary-grid,
  .pricing-notes {
    grid-template-columns: 1fr;
  }

  .boundary-grid {
    gap: 44px;
  }

  .case-list {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-inline: calc(var(--side) * -1);
    padding: 0 var(--side) 16px;
    overflow-x: auto;
    border-top: 0;
    scroll-padding-inline: var(--side);
    scroll-snap-type: x mandatory;
  }

  .case,
  .case + .case:not(.case-featured),
  .case:not(.case-featured):last-child,
  .case:not(.case-featured):nth-child(odd) {
    flex: 0 0 calc(100vw - 56px);
    min-width: 0;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.035);
    scroll-snap-align: start;
  }

  .case-featured {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .case-featured img {
    max-height: 280px;
  }

  .case h3 {
    font-size: 25px;
  }

  .proof-title-break {
    display: block;
  }

  .case:not(.case-featured) > a {
    margin-top: 24px;
    padding-top: 0;
  }

  .case-person {
    margin-top: 24px;
  }

  .annual-plan {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 32px 24px;
  }

  .annual-price .button {
    margin-top: 24px;
  }

  .compact-plans {
    grid-template-columns: 1fr;
  }

  .compact-plans article {
    padding: 24px 20px;
  }

  .faq-list summary {
    font-size: 16px;
  }

  .final-cta h2 {
    font-size: 38px;
  }

  .site-footer .page-shell {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 340px) {
  .hero h1 {
    font-size: 32px;
  }
}

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

  .button {
    transition: none;
  }
}
