:root {
  --pink: #ff4196;
  --pink-dark: #d91f77;
  --ink: #17171b;
  --muted: #66666f;
  --line: #d9d9df;
  --soft: #f4f4f6;
  --white: #ffffff;
  --max: 1080px;
  --header: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", "Yu Gothic UI", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(255, 65, 150, 0.35);
  outline-offset: 4px;
}

.shell {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header);
}

.site-header .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header);
}

.brand img {
  width: 132px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 500;
}

.site-nav a {
  transition: color 180ms ease-out;
}

.site-nav a:hover {
  color: var(--pink-dark);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--pink);
  border-radius: 4px;
  background: var(--pink);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  cursor: pointer;
  transition:
    background-color 180ms ease-out,
    border-color 180ms ease-out,
    color 180ms ease-out;
}

.nav-cta {
  min-height: 40px;
  padding-inline: 18px;
}

.button:hover,
.nav-cta:hover {
  border-color: var(--pink-dark);
  background: var(--pink-dark);
  color: var(--white);
}

.button.is-ghost {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.button.is-ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--pink-dark);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-title,
.hero-title {
  margin: 0;
  font-weight: 560;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-title .line,
.section-title .line {
  display: block;
}

.section-copy {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 112px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}

.section-title {
  font-size: 43px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 500ms ease-out,
    transform 500ms ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  padding: 76px 0 28px;
  border-top: 3px solid #ff4196;
  background: #fff;
  color: #64646b;
  font-size: 13px;
  line-height: 1.6;
}

.footer-shell {
  width: min(calc(100% - 48px), 1080px);
  margin-inline: auto;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(2, minmax(160px, 0.55fr));
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand img {
  display: block;
  width: 142px;
  height: auto;
  margin-bottom: 24px;
}

.footer-brand p {
  max-width: 390px;
  margin: 0;
  line-height: 1.9;
}

.footer-heading {
  margin: 3px 0 22px;
  color: #e91678;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.footer-column nav {
  display: grid;
  gap: 13px;
}

.footer-column a,
.footer-column span {
  color: #2b2b30;
  line-height: 1.6;
}

.footer-column a {
  transition: color 180ms ease-out;
}

.footer-column a:hover {
  color: #e91678;
}

.footer-column span small {
  margin-left: 5px;
  color: #9a9aa2;
  font-size: 9px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid #dedee3;
  color: #8a8a92;
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

/* A: Editorial Grid */
.theme-editorial .site-header {
  border-bottom: 1px solid rgba(23, 23, 27, 0.16);
}

.theme-editorial .e-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--soft);
}

.theme-editorial .e-hero-media {
  position: absolute;
  inset: 0;
  background-image: url("../assets/hero-chair-yoga.png");
  background-position: center;
  background-size: cover;
}

.theme-editorial .e-hero > .shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  min-height: 760px;
  padding-top: var(--header);
}

.theme-editorial .e-hero-copy {
  grid-column: 1 / span 7;
  padding: 72px 0 108px;
}

.theme-editorial .hero-title {
  max-width: 680px;
  font-size: 76px;
  line-height: 1.12;
}

.theme-editorial .hero-title .accent {
  color: var(--pink-dark);
}

.theme-editorial .hero-lead {
  max-width: 560px;
  margin: 30px 0 0;
  color: #3d3d44;
  font-size: 18px;
  line-height: 1.9;
}

.theme-editorial .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.theme-editorial .e-proof-strip {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(23, 23, 27, 0.16);
  background: rgba(255, 255, 255, 0.94);
}

.theme-editorial .e-proof-strip .shell {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  min-height: 84px;
  padding-top: 0;
}

.theme-editorial .e-proof-label,
.theme-editorial .e-proof-item {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 17px 22px;
  border-right: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.45;
}

.theme-editorial .e-proof-label {
  padding-left: 0;
  color: var(--muted);
  font-weight: 600;
}

.theme-editorial .e-proof-item strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.theme-editorial .e-index-section {
  border-top: 1px solid var(--line);
}

.theme-editorial .e-index-grid {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 42px;
}

.theme-editorial .e-index-number {
  color: var(--pink);
  font-size: 84px;
  font-weight: 400;
  line-height: 1;
}

.theme-editorial .e-problems {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 54px;
  border-top: 1px solid var(--ink);
}

.theme-editorial .e-problem {
  min-height: 210px;
  padding: 28px 28px 28px 0;
  border-bottom: 1px solid var(--line);
}

.theme-editorial .e-problem + .e-problem {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.theme-editorial .e-problem span {
  color: var(--pink-dark);
  font-size: 12px;
  font-weight: 700;
}

.theme-editorial .e-problem h3 {
  margin: 18px 0 12px;
  font-size: 22px;
  font-weight: 560;
  line-height: 1.45;
}

.theme-editorial .e-problem p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.theme-editorial .e-method {
  background: var(--soft);
}

.theme-editorial .e-method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.theme-editorial .e-method-item {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 20px;
  padding: 32px 28px 32px 0;
}

.theme-editorial .e-method-item:nth-child(even) {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.theme-editorial .e-method-item:nth-child(-n + 2) {
  border-bottom: 1px solid var(--line);
}

.theme-editorial .e-method-item strong {
  color: var(--pink);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.theme-editorial .e-method-item h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 560;
}

.theme-editorial .e-method-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.theme-editorial .e-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  min-height: 620px;
  padding: 0;
}

.theme-editorial .e-proof-image {
  min-height: 620px;
  background: url("../assets/planning-consultation.png") center / cover
    no-repeat;
}

.theme-editorial .e-proof-copy {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 96px max(40px, calc((100vw - var(--max)) / 2)) 96px
    clamp(56px, 5vw, 88px);
  background: var(--ink);
  color: var(--white);
}

.theme-editorial .e-proof-copy > .reveal {
  width: 100%;
  max-width: 620px;
}

.theme-editorial .e-proof-copy .eyebrow {
  color: var(--pink);
}

.theme-editorial .e-proof-copy .section-title {
  max-width: 520px;
}

.theme-editorial .e-proof-list {
  display: grid;
  gap: 0;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #4a4a52;
}

.theme-editorial .e-proof-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid #4a4a52;
  color: #d5d5da;
  font-size: 14px;
}

.theme-editorial .e-proof-list b {
  color: var(--pink);
  font-weight: 600;
}

.theme-editorial .e-program-section {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.theme-editorial .e-program-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}

.theme-editorial .e-program-list article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  min-height: 148px;
  padding: 26px 24px 26px 0;
  border-bottom: 1px solid var(--line);
}

.theme-editorial .e-program-list article:nth-child(even) {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.theme-editorial .e-program-list article > span {
  color: var(--pink);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
}

.theme-editorial .e-program-list h3 {
  margin: 0 0 6px;
  font-size: 19px;
  font-weight: 600;
}

.theme-editorial .e-program-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.theme-editorial .e-program-list small {
  padding-top: 5px;
  color: #8b8b94;
  font-size: 9px;
  font-weight: 700;
}

.theme-editorial .e-network {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.theme-editorial .e-network-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.theme-editorial .e-network-card {
  min-width: 0;
  padding: 24px 20px;
}

.theme-editorial .e-network-card + .e-network-card {
  border-left: 1px solid var(--line);
}

.theme-editorial .e-network-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.theme-editorial .e-network-top b {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--pink);
  color: var(--pink-dark);
  font-size: 12px;
  font-weight: 700;
}

.theme-editorial .e-network-top small {
  color: #8b8b94;
  font-size: 9px;
  font-weight: 700;
}

.theme-editorial .e-network-card h3 {
  min-height: 64px;
  margin: 38px 0 14px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.theme-editorial .e-network-card > p {
  min-height: 92px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.theme-editorial .e-network-card dl {
  margin: 24px 0 0;
  border-top: 1px solid var(--line);
}

.theme-editorial .e-network-card dl div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
}

.theme-editorial .e-network-card dt {
  color: var(--muted);
}

.theme-editorial .e-network-card dd {
  margin: 0;
  font-weight: 600;
}

.theme-editorial .e-network-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.theme-editorial .e-use {
  border-top: 1px solid var(--line);
  background: var(--soft);
}

.theme-editorial .e-use-photo {
  height: 500px;
  background: url("../assets/online-session.png") center 45% / cover no-repeat;
}

.theme-editorial .e-use-content {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 72px;
  padding-block: 72px 92px;
}

.theme-editorial .e-use-content .section-copy {
  max-width: 420px;
  margin-top: 22px;
}

.theme-editorial .e-use-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}

.theme-editorial .e-use-list article {
  min-height: 150px;
  padding: 22px 20px 22px 0;
  border-bottom: 1px solid var(--line);
}

.theme-editorial .e-use-list article:nth-child(even) {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.theme-editorial .e-use-list small {
  color: var(--pink-dark);
  font-size: 11px;
  font-weight: 700;
}

.theme-editorial .e-use-list h3 {
  margin: 20px 0 5px;
  font-size: 18px;
  font-weight: 600;
}

.theme-editorial .e-use-list p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.theme-editorial .e-price {
  background: var(--white);
}

.theme-editorial .e-price-table {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--ink);
}

.theme-editorial .e-price-table article {
  position: relative;
  min-width: 0;
  min-height: 260px;
  padding: 26px 22px;
}

.theme-editorial .e-price-table article + article {
  border-left: 1px solid var(--line);
}

.theme-editorial .e-price-table article.is-featured::before {
  position: absolute;
  top: -1px;
  right: -1px;
  left: -1px;
  height: 5px;
  background: var(--pink);
  content: "";
}

.theme-editorial .e-price-table small {
  color: var(--pink-dark);
  font-size: 10px;
  font-weight: 700;
}

.theme-editorial .e-price-table h3 {
  margin: 34px 0 20px;
  font-size: 18px;
  font-weight: 600;
}

.theme-editorial .e-price-table strong {
  display: block;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
}

.theme-editorial .e-price-table strong span {
  font-size: 12px;
}

.theme-editorial .e-price-table p {
  margin: 24px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.theme-editorial .e-flow {
  border-top: 1px solid var(--line);
  background: var(--soft);
}

.theme-editorial .e-flow-line {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  list-style: none;
}

.theme-editorial .e-flow-line li {
  min-height: 180px;
  padding: 24px 18px;
}

.theme-editorial .e-flow-line li + li {
  border-left: 1px solid var(--line);
}

.theme-editorial .e-flow-line span {
  color: var(--pink);
  font-size: 28px;
  font-weight: 500;
}

.theme-editorial .e-flow-line h3 {
  margin: 36px 0 8px;
  font-size: 16px;
  font-weight: 600;
}

.theme-editorial .e-flow-line p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.theme-editorial .e-faq {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.theme-editorial .e-faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}

.theme-editorial .e-faq-list article {
  display: grid;
  grid-template-columns: 36px minmax(130px, 0.65fr) minmax(0, 1.35fr);
  gap: 14px;
  min-height: 126px;
  padding: 22px 20px 22px 0;
  border-bottom: 1px solid var(--line);
}

.theme-editorial .e-faq-list article:nth-child(even) {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.theme-editorial .e-faq-list b {
  color: var(--pink-dark);
  font-size: 11px;
}

.theme-editorial .e-faq-list h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.theme-editorial .e-faq-list p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.theme-editorial .e-cta {
  padding: 104px 0;
  border-top: 1px solid var(--line);
}

.theme-editorial .e-cta .shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 56px;
  align-items: end;
}

.theme-editorial .e-cta h2 {
  margin: 0;
  font-size: 54px;
  font-weight: 520;
  line-height: 1.25;
}

/* B: Operating System */
.theme-system {
  background: #eeeef1;
}

.theme-system .site-header {
  color: var(--white);
}

.theme-system .site-header .shell {
  width: min(calc(100% - 48px), 1180px);
}

.theme-system .brand img {
  filter: brightness(0) invert(1);
}

.theme-system .site-nav a:hover {
  color: var(--pink);
}

.theme-system .s-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: url("../assets/planning-consultation.png") center / cover
    no-repeat;
}

.theme-system .s-hero::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 53%;
  background: rgba(23, 23, 27, 0.94);
  content: "";
}

.theme-system .s-hero .shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  min-height: 720px;
  padding-top: var(--header);
}

.theme-system .s-hero-copy {
  grid-column: 1 / span 6;
  padding: 72px 40px 72px 0;
  color: var(--white);
}

.theme-system .s-hero .eyebrow {
  color: var(--pink);
}

.theme-system .hero-title {
  font-size: 62px;
  line-height: 1.18;
}

.theme-system .hero-lead {
  max-width: 500px;
  margin: 26px 0 0;
  color: #d0d0d6;
  font-size: 17px;
}

.theme-system .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.theme-system .button.is-ghost {
  border-color: #777780;
  color: var(--white);
}

.theme-system .button.is-ghost:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.theme-system .s-status {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 40px;
  width: min(430px, calc(47vw - 52px));
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
}

.theme-system .s-status-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.theme-system .s-status-head span:last-child {
  color: #217a4a;
}

.theme-system .s-status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.theme-system .s-status-item {
  padding: 17px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.theme-system .s-status-item:nth-child(even) {
  border-right: 0;
}

.theme-system .s-status-item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.theme-system .s-status-item b {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
  font-weight: 650;
}

.theme-system .s-status-item span {
  color: var(--muted);
  font-size: 11px;
}

.theme-system .s-workspace {
  padding: 96px 0;
}

.theme-system .s-workspace .shell {
  padding: 0;
  border: 1px solid #ceced5;
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.theme-system .s-workspace-head {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) 220px;
  min-height: 150px;
  border-bottom: 1px solid #ceced5;
}

.theme-system .s-workspace-head > * {
  padding: 28px;
}

.theme-system .s-workspace-head .s-label {
  border-right: 1px solid #ceced5;
  color: var(--pink-dark);
  font-size: 12px;
  font-weight: 700;
}

.theme-system .s-workspace-head h2 {
  margin: 0;
  font-size: 38px;
  font-weight: 560;
  line-height: 1.35;
}

.theme-system .s-workspace-head p {
  margin: 0;
  border-left: 1px solid #ceced5;
  color: var(--muted);
  font-size: 13px;
}

.theme-system .s-rows {
  display: grid;
}

.theme-system .s-row {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) 220px;
  min-height: 118px;
  border-bottom: 1px solid #ceced5;
}

.theme-system .s-row:last-child {
  border-bottom: 0;
}

.theme-system .s-row > * {
  padding: 24px 28px;
}

.theme-system .s-row-index {
  border-right: 1px solid #ceced5;
  color: var(--pink);
  font-size: 32px;
  font-weight: 500;
}

.theme-system .s-row h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 650;
}

.theme-system .s-row p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.theme-system .s-row-tag {
  display: flex;
  align-items: center;
  border-left: 1px solid #ceced5;
  color: #42424a;
  font-size: 12px;
  font-weight: 600;
}

.theme-system .s-modules {
  padding: 104px 0;
  background: var(--ink);
  color: var(--white);
}

.theme-system .s-modules .section-copy {
  color: #b9b9c1;
}

.theme-system .s-module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.theme-system .s-module {
  min-height: 230px;
  padding: 24px;
  border: 1px solid #44444c;
  border-radius: 6px;
  background: #202026;
}

.theme-system .s-module-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #55555f;
  border-radius: 4px;
  color: var(--pink);
}

.theme-system .s-module-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.theme-system .s-module h3 {
  margin: 36px 0 10px;
  font-size: 19px;
  font-weight: 600;
}

.theme-system .s-module p {
  margin: 0;
  color: #b9b9c1;
  font-size: 13px;
}

.theme-system .s-problem,
.theme-system .s-instructors,
.theme-system .s-price {
  padding: 96px 0;
  background: #eeeef1;
}

.theme-system .s-problem .shell,
.theme-system .s-instructors .shell,
.theme-system .s-price .shell {
  overflow: hidden;
  border: 1px solid #ceced5;
  border-radius: 8px;
  background: var(--white);
}

.theme-system .s-panel-heading {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) 260px;
  min-height: 164px;
  border-bottom: 1px solid #ceced5;
}

.theme-system .s-panel-heading > * {
  margin: 0;
  padding: 28px;
}

.theme-system .s-panel-heading > span {
  border-right: 1px solid #ceced5;
  color: var(--pink-dark);
  font-size: 11px;
  font-weight: 700;
}

.theme-system .s-panel-heading h2 {
  font-size: 36px;
  font-weight: 560;
  line-height: 1.35;
}

.theme-system .s-panel-heading p {
  border-left: 1px solid #ceced5;
  color: var(--muted);
  font-size: 12px;
}

.theme-system .s-issue-header,
.theme-system .s-issue-table article {
  display: grid;
  grid-template-columns: 80px minmax(210px, 1.2fr) minmax(210px, 1fr) 130px;
}

.theme-system .s-issue-header {
  min-height: 44px;
  align-items: center;
  border-bottom: 1px solid #ceced5;
  background: #f6f6f8;
  color: #777780;
  font-size: 9px;
  font-weight: 700;
}

.theme-system .s-issue-header span,
.theme-system .s-issue-table article > * {
  min-width: 0;
  margin: 0;
  padding: 14px 18px;
}

.theme-system .s-issue-header span + span,
.theme-system .s-issue-table article > * + * {
  border-left: 1px solid #ceced5;
}

.theme-system .s-issue-table article {
  min-height: 98px;
  border-bottom: 1px solid #ceced5;
}

.theme-system .s-issue-table article:last-child {
  border-bottom: 0;
}

.theme-system .s-issue-table article b {
  color: var(--pink);
  font-size: 22px;
  font-weight: 500;
}

.theme-system .s-issue-table article h3 {
  font-size: 15px;
  font-weight: 650;
  line-height: 1.5;
}

.theme-system .s-issue-table article p {
  color: var(--muted);
  font-size: 11px;
}

.theme-system .s-issue-table article small {
  color: #a03c67;
  font-size: 9px;
  font-weight: 700;
}

.theme-system .s-proof {
  padding: 104px 0;
  background: var(--white);
}

.theme-system .s-network-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--ink);
}

.theme-system .s-network-map > * {
  min-height: 280px;
  padding: 26px;
}

.theme-system .s-network-map > * + * {
  border-left: 1px solid var(--line);
}

.theme-system .s-network-map article small {
  color: var(--pink-dark);
  font-size: 9px;
  font-weight: 700;
}

.theme-system .s-network-map article h3 {
  min-height: 72px;
  margin: 72px 0 18px;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.5;
}

.theme-system .s-network-map article p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.theme-system .s-network-core {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  background: var(--pink);
  color: var(--white);
}

.theme-system .s-network-core span {
  font-size: 17px;
  font-weight: 700;
}

.theme-system .s-network-core b {
  font-size: 27px;
  font-weight: 550;
  line-height: 1.35;
}

.theme-system .s-instructor-header,
.theme-system .s-instructor-table article {
  display: grid;
  grid-template-columns: 90px minmax(220px, 1.2fr) minmax(220px, 1fr) 180px;
}

.theme-system .s-instructor-header {
  min-height: 44px;
  align-items: center;
  border-bottom: 1px solid #ceced5;
  background: #f6f6f8;
  color: #777780;
  font-size: 9px;
  font-weight: 700;
}

.theme-system .s-instructor-header span,
.theme-system .s-instructor-table article > * {
  min-width: 0;
  margin: 0;
  padding: 16px 20px;
}

.theme-system .s-instructor-header span + span,
.theme-system .s-instructor-table article > * + * {
  border-left: 1px solid #ceced5;
}

.theme-system .s-instructor-table article {
  min-height: 94px;
  border-bottom: 1px solid #ceced5;
}

.theme-system .s-instructor-table article b {
  color: var(--pink-dark);
  font-size: 13px;
}

.theme-system .s-instructor-table article h3 {
  font-size: 15px;
  font-weight: 650;
}

.theme-system .s-instructor-table article p {
  color: var(--muted);
  font-size: 11px;
}

.theme-system .s-instructor-table article small {
  color: #4b4b53;
  font-size: 9px;
  font-weight: 700;
}

.theme-system .s-table-note {
  margin: 0;
  padding: 14px 20px;
  color: var(--muted);
  font-size: 10px;
}

.theme-system .s-scenarios {
  padding: 104px 0;
  background: var(--ink);
  color: var(--white);
}

.theme-system .s-scenarios .section-copy {
  color: #b9b9c1;
}

.theme-system .s-scenario-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #55555f;
  border-bottom: 1px solid #55555f;
}

.theme-system .s-scenario-grid article {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 24px;
}

.theme-system .s-scenario-grid article + article {
  border-left: 1px solid #55555f;
}

.theme-system .s-scenario-grid span {
  color: var(--pink);
  font-size: 9px;
  font-weight: 700;
}

.theme-system .s-scenario-grid h3 {
  margin: 64px 0 12px;
  font-size: 19px;
  font-weight: 600;
}

.theme-system .s-scenario-grid p {
  margin: 0;
  color: #b9b9c1;
  font-size: 12px;
}

.theme-system .s-scenario-grid b {
  margin-top: auto;
  color: #777780;
  font-size: 10px;
}

.theme-system .s-price-header,
.theme-system .s-price-table article {
  display: grid;
  grid-template-columns: 120px minmax(180px, 0.9fr) minmax(220px, 1.2fr) 190px;
}

.theme-system .s-price-header {
  min-height: 44px;
  align-items: center;
  border-bottom: 1px solid #ceced5;
  background: #f6f6f8;
  color: #777780;
  font-size: 9px;
  font-weight: 700;
}

.theme-system .s-price-header span,
.theme-system .s-price-table article > * {
  min-width: 0;
  margin: 0;
  padding: 18px 20px;
}

.theme-system .s-price-header span + span,
.theme-system .s-price-table article > * + * {
  border-left: 1px solid #ceced5;
}

.theme-system .s-price-table article {
  position: relative;
  min-height: 92px;
  border-bottom: 1px solid #ceced5;
}

.theme-system .s-price-table article.is-recommended::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: var(--pink);
  content: "";
}

.theme-system .s-price-table article b {
  color: var(--pink-dark);
  font-size: 10px;
}

.theme-system .s-price-table article h3 {
  font-size: 15px;
  font-weight: 650;
}

.theme-system .s-price-table article p {
  color: var(--muted);
  font-size: 11px;
}

.theme-system .s-price-table article strong {
  font-size: 18px;
  font-weight: 650;
  white-space: nowrap;
}

.theme-system .s-price-table article strong span {
  font-size: 10px;
}

.theme-system .s-faq {
  padding: 104px 0;
  background: var(--white);
}

.theme-system .s-doc-head {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 220px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.theme-system .s-doc-head > * {
  margin: 0;
  padding: 22px;
}

.theme-system .s-doc-head > * + * {
  border-left: 1px solid var(--line);
}

.theme-system .s-doc-head span {
  color: var(--pink-dark);
  font-size: 10px;
  font-weight: 700;
}

.theme-system .s-doc-head h2 {
  font-size: 32px;
  font-weight: 560;
}

.theme-system .s-doc-head p {
  color: var(--muted);
  font-size: 11px;
}

.theme-system .s-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid var(--ink);
}

.theme-system .s-faq-grid article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  min-height: 150px;
  padding: 24px 22px 24px 0;
  border-bottom: 1px solid var(--line);
}

.theme-system .s-faq-grid article:nth-child(even) {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.theme-system .s-faq-grid b {
  color: var(--pink-dark);
  font-size: 11px;
}

.theme-system .s-faq-grid h3 {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 650;
}

.theme-system .s-faq-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.theme-system .s-deployment {
  padding: 104px 0;
  background: var(--white);
}

.theme-system .s-deployment-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: start;
}

.theme-system .s-deployment-image {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
}

.theme-system .s-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}

.theme-system .s-steps li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.theme-system .s-steps b {
  color: var(--pink-dark);
  font-size: 12px;
}

.theme-system .s-steps span {
  font-size: 14px;
  font-weight: 600;
}

.theme-system .s-steps small {
  color: var(--muted);
  font-size: 11px;
}

.theme-system .s-cta {
  padding: 76px 0;
  border-top: 1px solid var(--line);
  background: #eeeef1;
}

.theme-system .s-cta .shell {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.theme-system .s-cta h2 {
  margin: 0;
  font-size: 42px;
  font-weight: 560;
}

/* C: Human Story */
.theme-human {
  background: var(--white);
}

.theme-human .site-header {
  position: relative;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.theme-human .h-hero {
  display: grid;
  min-height: 760px;
  grid-template-rows: 430px minmax(330px, auto);
  background: var(--soft);
}

.theme-human .h-hero-image {
  background: url("../assets/online-session.png") center 44% / cover no-repeat;
}

.theme-human .h-hero-caption {
  display: flex;
  align-items: center;
  background: var(--white);
}

.theme-human .h-hero-caption .shell {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 72px;
  align-items: center;
  padding-block: 52px;
}

.theme-human .hero-title {
  font-size: 60px;
  line-height: 1.2;
}

.theme-human .hero-title .accent {
  color: var(--pink-dark);
}

.theme-human .hero-lead {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 16px;
}

.theme-human .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.theme-human .h-intro {
  padding: 120px 0;
}

.theme-human .h-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: center;
}

.theme-human .h-intro-image-wrap {
  position: relative;
  padding: 0 38px 38px 0;
}

.theme-human .h-intro-image-wrap::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 72%;
  height: 72%;
  border: 1px solid var(--pink);
  content: "";
}

.theme-human .h-intro-image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.theme-human .h-intro-quote {
  margin: 30px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  color: #3d3d44;
  font-size: 19px;
  line-height: 1.8;
}

.theme-human .h-cards {
  padding: 112px 0;
  background: var(--soft);
}

.theme-human .h-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.theme-human .h-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.theme-human .h-card span {
  color: var(--pink-dark);
  font-size: 12px;
  font-weight: 700;
}

.theme-human .h-card h3 {
  margin: 38px 0 14px;
  font-size: 23px;
  font-weight: 560;
  line-height: 1.45;
}

.theme-human .h-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.theme-human .h-card small {
  margin-top: auto;
  padding-top: 26px;
  color: #3c3c43;
  font-size: 12px;
  font-weight: 650;
}

.theme-human .h-program {
  padding: 0;
}

.theme-human .h-program-feature {
  display: grid;
  min-height: 620px;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.theme-human .h-program-image {
  min-height: 620px;
  background: url("../assets/program-chair-yoga.jpg") center / cover no-repeat;
}

.theme-human .h-program-copy {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 72px max(36px, calc((100vw - var(--max)) / 2)) 72px
    clamp(48px, 4vw, 72px);
  background: var(--ink);
  color: var(--white);
}

.theme-human .h-program-copy > .reveal {
  width: 100%;
  max-width: 560px;
}

.theme-human .h-program-copy .eyebrow {
  color: var(--pink);
}

.theme-human .h-program-copy p {
  margin: 22px 0 0;
  color: #c9c9d0;
}

.theme-human .h-program-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.theme-human .h-program-list li {
  padding: 7px 10px;
  border: 1px solid #55555f;
  border-radius: 4px;
  color: #eeeef2;
  font-size: 12px;
}

.theme-human .h-proof {
  padding: 112px 0;
  background: var(--white);
}

.theme-human .h-proof-story {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.theme-human .h-proof-story article {
  min-height: 330px;
  padding: 30px 28px;
}

.theme-human .h-proof-story article + article {
  border-left: 1px solid var(--line);
}

.theme-human .h-proof-story small {
  color: var(--pink-dark);
  font-size: 10px;
  font-weight: 700;
}

.theme-human .h-proof-story h3 {
  margin: 62px 0 12px;
  font-size: 23px;
  font-weight: 560;
}

.theme-human .h-proof-story b {
  display: block;
  min-height: 46px;
  color: #3c3c43;
  font-size: 12px;
  font-weight: 700;
}

.theme-human .h-proof-story p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.theme-human .h-people {
  padding: 112px 0;
}

.theme-human .h-people-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.theme-human .h-person {
  min-height: 250px;
  padding: 24px;
  border-top: 3px solid var(--pink);
  background: var(--soft);
}

.theme-human .h-person span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

.theme-human .h-person h3 {
  margin: 62px 0 12px;
  font-size: 18px;
  font-weight: 560;
  line-height: 1.45;
}

.theme-human .h-person p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.theme-human .h-plan {
  padding: 112px 0;
  background: var(--soft);
}

.theme-human .h-plan-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.theme-human .h-plan-item {
  padding: 30px 28px;
}

.theme-human .h-plan-item + .h-plan-item {
  border-left: 1px solid var(--line);
}

.theme-human .h-plan-item small {
  color: var(--pink-dark);
  font-size: 11px;
  font-weight: 700;
}

.theme-human .h-plan-item h3 {
  margin: 16px 0 8px;
  font-size: 20px;
  font-weight: 560;
}

.theme-human .h-plan-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.theme-human .h-price {
  padding: 112px 0;
  background: var(--white);
}

.theme-human .h-price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.theme-human .h-price-grid article {
  position: relative;
  min-height: 310px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.theme-human .h-price-grid article.is-featured {
  border-color: var(--pink);
  background: var(--white);
}

.theme-human .h-price-grid article.is-featured::before {
  position: absolute;
  top: -1px;
  right: -1px;
  left: -1px;
  height: 5px;
  border-radius: 8px 8px 0 0;
  background: var(--pink);
  content: "";
}

.theme-human .h-price-grid small {
  color: var(--pink-dark);
  font-size: 10px;
  font-weight: 700;
}

.theme-human .h-price-grid h3 {
  margin: 52px 0 18px;
  font-size: 19px;
  font-weight: 560;
}

.theme-human .h-price-grid strong {
  display: block;
  font-size: 22px;
  font-weight: 600;
  white-space: nowrap;
}

.theme-human .h-price-grid strong span {
  font-size: 11px;
}

.theme-human .h-price-grid p {
  margin: 28px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.theme-human .h-flow {
  padding: 0;
  background: var(--soft);
}

.theme-human .h-flow-layout {
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.theme-human .h-flow-image {
  min-height: 760px;
  background: url("../assets/planning-consultation.png") center / cover
    no-repeat;
}

.theme-human .h-flow-copy {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 80px max(36px, calc((100vw - var(--max)) / 2)) 80px
    clamp(56px, 5vw, 88px);
}

.theme-human .h-flow-copy > .reveal {
  width: 100%;
  max-width: 600px;
}

.theme-human .h-flow-copy .section-copy {
  margin-top: 22px;
}

.theme-human .h-flow-list {
  margin: 38px 0 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.theme-human .h-flow-list li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.theme-human .h-flow-list span {
  color: var(--pink-dark);
  font-size: 11px;
  font-weight: 700;
}

.theme-human .h-flow-list h3 {
  margin: 0 0 3px;
  font-size: 15px;
  font-weight: 600;
}

.theme-human .h-flow-list p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.theme-human .h-faq {
  padding: 112px 0;
  background: var(--white);
}

.theme-human .h-faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 54px;
  border-top: 1px solid var(--ink);
}

.theme-human .h-faq-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  min-height: 150px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.theme-human .h-faq-list span {
  color: var(--pink-dark);
  font-size: 11px;
  font-weight: 700;
}

.theme-human .h-faq-list h3 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

.theme-human .h-faq-list p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.theme-human .h-cta {
  padding: 112px 0;
  background: var(--pink);
  color: var(--white);
}

.theme-human .h-cta .shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
}

.theme-human .h-cta h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 560;
  line-height: 1.3;
}

.theme-human .h-cta p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.88);
}

.theme-human .h-cta .button {
  border-color: var(--white);
  background: var(--white);
  color: var(--pink-dark);
}

.theme-human .h-cta .button:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

@media (max-width: 1080px) {
  .theme-editorial .hero-title {
    font-size: 64px;
  }

  .theme-editorial .e-hero-copy {
    grid-column: 1 / span 7;
  }

  .theme-editorial .e-network-grid,
  .theme-editorial .e-price-table {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .theme-editorial .e-network-card:nth-child(3),
  .theme-editorial .e-price-table article:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .theme-editorial .e-network-card:nth-child(4),
  .theme-editorial .e-price-table article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .theme-system .s-hero::before {
    width: 58%;
  }

  .theme-system .s-hero-copy {
    grid-column: 1 / span 7;
  }

  .theme-system .s-status {
    width: min(370px, 37vw);
  }

  .theme-system .s-panel-heading {
    grid-template-columns: 140px minmax(0, 1fr) 220px;
  }

  .theme-system .s-network-map,
  .theme-system .s-scenario-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .theme-system .s-network-map > *:nth-child(3),
  .theme-system .s-scenario-grid article:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .theme-system .s-network-map > *:nth-child(4),
  .theme-system .s-scenario-grid article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .theme-human .h-people-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .theme-human .h-plan-row,
  .theme-human .h-price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .theme-human .h-plan-item:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .theme-human .h-plan-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 960px) {
  .theme-human .h-program-feature,
  .theme-human .h-flow-layout {
    grid-template-columns: 1fr;
  }

  .theme-human .h-program-image,
  .theme-human .h-flow-image {
    min-height: 460px;
  }

  .theme-human .h-program-copy,
  .theme-human .h-flow-copy {
    padding: 72px 36px;
  }
}

@media (max-width: 820px) {
  :root {
    --header: 64px;
  }

  .shell {
    width: min(calc(100% - 36px), var(--max));
  }

  .site-nav a:not(.nav-cta) {
    display: none;
  }

  .section {
    padding: 88px 0;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 42px;
  }

  .section-title {
    font-size: 36px;
  }

  .theme-editorial .e-hero,
  .theme-editorial .e-hero > .shell {
    min-height: 720px;
  }

  .theme-editorial .e-hero-media {
    background-position: 58% center;
    opacity: 0.36;
  }

  .theme-editorial .e-hero-copy {
    grid-column: 1 / -1;
    max-width: 650px;
  }

  .theme-editorial .e-proof-strip .shell {
    grid-template-columns: repeat(3, 1fr);
  }

  .theme-editorial .e-proof-label {
    display: none;
  }

  .theme-editorial .e-index-grid {
    grid-template-columns: 90px minmax(0, 1fr);
  }

  .theme-editorial .e-index-number {
    font-size: 64px;
  }

  .theme-editorial .e-problems {
    grid-template-columns: 1fr;
  }

  .theme-editorial .e-problem,
  .theme-editorial .e-problem + .e-problem {
    min-height: auto;
    padding: 24px 0;
    border-left: 0;
  }

  .theme-editorial .e-method-grid {
    grid-template-columns: 1fr;
  }

  .theme-editorial .e-method-item,
  .theme-editorial .e-method-item:nth-child(even) {
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .theme-editorial .e-method-item:last-child {
    border-bottom: 0;
  }

  .theme-editorial .e-program-list {
    grid-template-columns: 1fr;
  }

  .theme-editorial .e-program-list article,
  .theme-editorial .e-program-list article:nth-child(even) {
    padding: 24px 0;
    border-left: 0;
  }

  .theme-editorial .e-use-content {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .theme-editorial .e-use-photo {
    height: 420px;
  }

  .theme-editorial .e-flow-line {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .theme-editorial .e-flow-line li:nth-child(4) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .theme-editorial .e-flow-line li:nth-child(5) {
    border-top: 1px solid var(--line);
  }

  .theme-editorial .e-faq-list {
    grid-template-columns: 1fr;
  }

  .theme-editorial .e-faq-list article,
  .theme-editorial .e-faq-list article:nth-child(even) {
    padding: 22px 0;
    border-left: 0;
  }

  .theme-editorial .e-proof {
    grid-template-columns: 1fr;
  }

  .theme-editorial .e-proof-image {
    min-height: 420px;
  }

  .theme-editorial .e-proof-copy {
    padding: 72px 36px;
  }

  .theme-editorial .e-cta .shell,
  .theme-system .s-cta .shell,
  .theme-human .h-cta .shell {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .theme-system .s-hero,
  .theme-system .s-hero .shell {
    min-height: 760px;
  }

  .theme-system .s-hero::before {
    width: 72%;
  }

  .theme-system .s-hero-copy {
    grid-column: 1 / span 8;
  }

  .theme-system .s-status {
    right: 18px;
    bottom: 24px;
    width: min(380px, 47vw);
  }

  .theme-system .s-workspace .shell {
    width: min(calc(100% - 36px), var(--max));
  }

  .theme-system .s-workspace-head,
  .theme-system .s-row {
    grid-template-columns: 108px minmax(0, 1fr);
  }

  .theme-system .s-workspace-head p,
  .theme-system .s-row-tag {
    display: none;
  }

  .theme-system .s-panel-heading {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .theme-system .s-panel-heading p {
    display: none;
  }

  .theme-system .s-issue-header,
  .theme-system .s-instructor-header,
  .theme-system .s-price-header {
    display: none;
  }

  .theme-system .s-issue-table article {
    grid-template-columns: 66px minmax(0, 1fr);
  }

  .theme-system .s-issue-table article p,
  .theme-system .s-issue-table article small {
    grid-column: 2;
    border-left: 1px solid #ceced5;
  }

  .theme-system .s-instructor-table article {
    grid-template-columns: 66px minmax(0, 1fr);
  }

  .theme-system .s-instructor-table article p,
  .theme-system .s-instructor-table article small {
    grid-column: 2;
    border-left: 1px solid #ceced5;
  }

  .theme-system .s-price-table article {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .theme-system .s-price-table article p,
  .theme-system .s-price-table article strong {
    grid-column: 2;
    border-left: 1px solid #ceced5;
  }

  .theme-system .s-doc-head {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .theme-system .s-doc-head p {
    display: none;
  }

  .theme-system .s-faq-grid {
    grid-template-columns: 1fr;
  }

  .theme-system .s-faq-grid article,
  .theme-system .s-faq-grid article:nth-child(even) {
    padding: 22px 0;
    border-left: 0;
  }

  .theme-system .s-module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .theme-system .s-deployment-grid {
    grid-template-columns: 1fr;
  }

  .theme-human .h-hero {
    grid-template-rows: 390px auto;
  }

  .theme-human .h-hero-caption .shell,
  .theme-human .h-intro-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .theme-human .h-intro-image-wrap {
    max-width: 540px;
  }

  .theme-human .h-card-grid {
    grid-template-columns: 1fr;
  }

  .theme-human .h-card {
    min-height: 250px;
  }

  .theme-human .h-proof-story {
    grid-template-columns: 1fr;
  }

  .theme-human .h-proof-story article,
  .theme-human .h-proof-story article + article {
    min-height: 250px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .theme-human .h-proof-story article:first-child {
    border-top: 0;
  }

  .theme-human .h-proof-story h3 {
    margin-top: 42px;
  }

  .theme-human .h-program-feature {
    grid-template-columns: 1fr;
  }

  .theme-human .h-program-image {
    min-height: 440px;
  }

  .theme-human .h-program-copy {
    padding: 72px 36px;
  }

  .theme-human .h-flow-layout {
    grid-template-columns: 1fr;
  }

  .theme-human .h-flow-image {
    min-height: 460px;
  }

  .theme-human .h-flow-copy {
    padding: 72px 36px;
  }

  .theme-human .h-faq-list {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand img {
    width: 106px;
  }

  .nav-cta {
    min-height: 38px;
    padding-inline: 13px;
    font-size: 12px;
  }

  .section-title {
    font-size: 31px;
  }

  .eyebrow {
    margin-bottom: 14px;
  }

  .theme-editorial .e-hero,
  .theme-editorial .e-hero > .shell {
    min-height: 690px;
  }

  .theme-editorial .e-hero-media {
    background-position: 67% center;
    opacity: 0.28;
  }

  .theme-editorial .e-hero-copy {
    padding: 76px 0 118px;
  }

  .theme-editorial .hero-title {
    font-size: 44px;
  }

  .theme-editorial .hero-lead {
    font-size: 15px;
  }

  .theme-editorial .hero-actions,
  .theme-system .hero-actions,
  .theme-human .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .theme-editorial .e-proof-strip .shell {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
  }

  .theme-editorial .e-proof-item {
    padding: 13px 9px;
    border-right: 1px solid var(--line);
    font-size: 10px;
  }

  .theme-editorial .e-proof-item strong {
    font-size: 11px;
  }

  .theme-editorial .e-index-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .theme-editorial .e-index-number {
    font-size: 50px;
  }

  .theme-editorial .e-proof-image {
    min-height: 300px;
  }

  .theme-editorial .e-proof-copy {
    padding: 64px 20px;
  }

  .theme-editorial .e-program-list article {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .theme-editorial .e-program-list small {
    display: none;
  }

  .theme-editorial .e-network-grid,
  .theme-editorial .e-price-table {
    grid-template-columns: 1fr;
  }

  .theme-editorial .e-network-card,
  .theme-editorial .e-network-card + .e-network-card,
  .theme-editorial .e-network-card:nth-child(3),
  .theme-editorial .e-network-card:nth-child(4),
  .theme-editorial .e-price-table article,
  .theme-editorial .e-price-table article + article,
  .theme-editorial .e-price-table article:nth-child(3),
  .theme-editorial .e-price-table article:nth-child(4) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .theme-editorial .e-network-card:first-child,
  .theme-editorial .e-price-table article:first-child {
    border-top: 0;
  }

  .theme-editorial .e-network-card h3,
  .theme-editorial .e-network-card > p {
    min-height: 0;
  }

  .theme-editorial .e-use-photo {
    height: 300px;
  }

  .theme-editorial .e-use-content {
    padding-block: 60px 72px;
  }

  .theme-editorial .e-use-list {
    grid-template-columns: 1fr;
  }

  .theme-editorial .e-use-list article,
  .theme-editorial .e-use-list article:nth-child(even) {
    min-height: auto;
    padding: 20px 0;
    border-left: 0;
  }

  .theme-editorial .e-price-table article {
    min-height: 230px;
  }

  .theme-editorial .e-flow-line {
    grid-template-columns: 1fr;
  }

  .theme-editorial .e-flow-line li,
  .theme-editorial .e-flow-line li + li,
  .theme-editorial .e-flow-line li:nth-child(4),
  .theme-editorial .e-flow-line li:nth-child(5) {
    min-height: auto;
    padding: 20px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .theme-editorial .e-flow-line li:first-child {
    border-top: 0;
  }

  .theme-editorial .e-flow-line h3 {
    margin-top: 18px;
  }

  .theme-editorial .e-faq-list article {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .theme-editorial .e-faq-list article p {
    grid-column: 2;
  }

  .theme-editorial .e-cta h2 {
    font-size: 36px;
  }

  .theme-system .site-header .shell {
    width: min(calc(100% - 28px), 1180px);
  }

  .theme-system .s-hero {
    background-position: 62% center;
  }

  .theme-system .s-hero::before {
    width: 100%;
    background: rgba(23, 23, 27, 0.88);
  }

  .theme-system .s-hero,
  .theme-system .s-hero .shell {
    min-height: 820px;
  }

  .theme-system .s-hero-copy {
    grid-column: 1 / -1;
    padding: 66px 0 220px;
  }

  .theme-system .hero-title {
    font-size: 42px;
  }

  .theme-system .hero-lead {
    font-size: 15px;
  }

  .theme-system .s-status {
    right: 14px;
    bottom: 18px;
    left: 14px;
    width: auto;
  }

  .theme-system .s-workspace {
    padding: 72px 0;
  }

  .theme-system .s-workspace .shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .theme-system .s-workspace-head {
    display: block;
  }

  .theme-system .s-workspace-head .s-label {
    padding-bottom: 0;
    border-right: 0;
  }

  .theme-system .s-workspace-head h2 {
    padding-top: 16px;
    font-size: 30px;
  }

  .theme-system .s-problem,
  .theme-system .s-instructors,
  .theme-system .s-price {
    padding: 72px 0;
  }

  .theme-system .s-problem .shell,
  .theme-system .s-instructors .shell,
  .theme-system .s-price .shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .theme-system .s-panel-heading {
    display: block;
  }

  .theme-system .s-panel-heading > span {
    display: block;
    padding-bottom: 0;
    border-right: 0;
  }

  .theme-system .s-panel-heading h2 {
    padding-top: 14px;
    font-size: 29px;
  }

  .theme-system .s-issue-table article,
  .theme-system .s-instructor-table article {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .theme-system .s-issue-table article > *,
  .theme-system .s-instructor-table article > *,
  .theme-system .s-price-table article > * {
    padding: 13px 14px;
  }

  .theme-system .s-network-map,
  .theme-system .s-scenario-grid {
    grid-template-columns: 1fr;
  }

  .theme-system .s-network-map > *,
  .theme-system .s-network-map > * + *,
  .theme-system .s-network-map > *:nth-child(3),
  .theme-system .s-network-map > *:nth-child(4),
  .theme-system .s-scenario-grid article,
  .theme-system .s-scenario-grid article + article,
  .theme-system .s-scenario-grid article:nth-child(3),
  .theme-system .s-scenario-grid article:nth-child(4) {
    min-height: 230px;
    border-top: 1px solid #55555f;
    border-left: 0;
  }

  .theme-system .s-network-map > *:first-child,
  .theme-system .s-scenario-grid article:first-child {
    border-top: 0;
  }

  .theme-system .s-network-map article h3,
  .theme-system .s-scenario-grid h3 {
    margin-top: 48px;
  }

  .theme-system .s-price-table article {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .theme-system .s-doc-head {
    grid-template-columns: 1fr;
  }

  .theme-system .s-doc-head > * + * {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .theme-system .s-doc-head h2 {
    font-size: 28px;
  }

  .theme-system .s-row {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .theme-system .s-row > * {
    padding: 20px 16px;
  }

  .theme-system .s-row-index {
    font-size: 24px;
  }

  .theme-system .s-module-grid {
    grid-template-columns: 1fr;
  }

  .theme-system .s-deployment-image {
    aspect-ratio: 5 / 4;
  }

  .theme-system .s-steps li {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .theme-system .s-steps small {
    display: none;
  }

  .theme-system .s-cta h2 {
    font-size: 34px;
  }

  .theme-human .h-hero {
    min-height: 720px;
    grid-template-rows: 300px auto;
  }

  .theme-human .h-hero-image {
    background-position: 57% center;
  }

  .theme-human .h-hero-caption .shell {
    padding-block: 38px 48px;
  }

  .theme-human .hero-title {
    font-size: 40px;
  }

  .theme-human .h-intro,
  .theme-human .h-cards,
  .theme-human .h-proof,
  .theme-human .h-people,
  .theme-human .h-plan,
  .theme-human .h-price,
  .theme-human .h-faq {
    padding: 80px 0;
  }

  .theme-human .h-intro-image-wrap {
    padding: 0 24px 24px 0;
  }

  .theme-human .h-intro-image {
    aspect-ratio: 5 / 4;
  }

  .theme-human .h-intro-quote {
    font-size: 17px;
  }

  .theme-human .h-card {
    min-height: 230px;
    padding: 24px;
  }

  .theme-human .h-program-image {
    min-height: 320px;
  }

  .theme-human .h-program-copy {
    padding: 64px 20px;
  }

  .theme-human .h-proof-story article {
    min-height: 230px;
    padding: 24px 0;
  }

  .theme-human .h-proof-story b {
    min-height: 0;
  }

  .theme-human .h-people-grid {
    grid-template-columns: 1fr;
  }

  .theme-human .h-person {
    min-height: 210px;
  }

  .theme-human .h-person h3 {
    margin-top: 42px;
  }

  .theme-human .h-plan-row {
    grid-template-columns: 1fr;
  }

  .theme-human .h-plan-item + .h-plan-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .theme-human .h-price-grid {
    grid-template-columns: 1fr;
  }

  .theme-human .h-price-grid article {
    min-height: 270px;
  }

  .theme-human .h-flow-image {
    min-height: 320px;
  }

  .theme-human .h-flow-copy {
    padding: 64px 20px;
  }

  .theme-human .h-faq-list article {
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: 140px;
  }

  .theme-human .h-cta h2 {
    font-size: 35px;
  }

  .footer-shell {
    width: min(calc(100% - 32px), 1080px);
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-bottom: 48px;
  }

  .footer-brand p {
    max-width: 34em;
  }

  .footer-heading {
    margin-bottom: 15px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column-reverse;
    padding-bottom: 58px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* C: selected direction refinement */
.theme-human {
  --human-soft: #f7f7f8;
  --human-ink-soft: #26262c;
}

.theme-human .site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  height: var(--header);
  border-bottom: 1px solid rgba(23, 23, 27, 0.1);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.theme-human .site-nav {
  gap: 24px;
}

.theme-human .button,
.theme-human .nav-cta {
  transition:
    background-color 180ms ease-out,
    border-color 180ms ease-out,
    color 180ms ease-out,
    transform 180ms ease-out;
}

.theme-human .button:active,
.theme-human .nav-cta:active {
  transform: translateY(1px);
}

.theme-human .h-hero {
  position: relative;
  display: block;
  min-height: clamp(680px, calc(100dvh - 116px), 820px);
  overflow: hidden;
  background: var(--ink);
}

.theme-human .h-hero-image {
  position: absolute;
  inset: 0;
  background: url("../assets/online-session.png") 58% 42% / cover no-repeat;
  transform: scale(1.002);
}

.theme-human .h-hero-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(23, 23, 27, 0.96) 0%,
    rgba(23, 23, 27, 0.88) 38%,
    rgba(23, 23, 27, 0.58) 62%,
    rgba(23, 23, 27, 0.12) 84%,
    rgba(23, 23, 27, 0) 100%
  );
  content: "";
}

.theme-human .h-hero-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: transparent;
  color: var(--white);
}

.theme-human .h-hero-caption .shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 76px;
  align-items: center;
  padding-block: 44px 48px;
}

.theme-human .h-hero .eyebrow {
  margin-bottom: 14px;
  color: var(--pink);
}

.theme-human .hero-title {
  font-size: clamp(48px, 4.4vw, 66px);
  line-height: 1.16;
}

.theme-human .hero-title .accent {
  color: var(--pink);
}

.theme-human .hero-lead {
  margin: 0 0 22px;
  color: #e2e2e7;
  font-size: 15px;
  line-height: 1.85;
}

.theme-human .h-hero .button.is-ghost {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--white);
}

.theme-human .h-hero .button.is-ghost:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.theme-human .h-hero-note {
  margin: 14px 0 0;
  color: #a9a9b1;
  font-size: 11px;
}

.theme-human .h-facts {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.theme-human .h-facts .shell {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.theme-human .h-facts .shell > div {
  display: flex;
  min-height: 108px;
  flex-direction: column;
  justify-content: center;
  padding: 20px 26px;
}

.theme-human .h-facts .shell > div + div {
  border-left: 1px solid var(--line);
}

.theme-human .h-facts strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 560;
}

.theme-human .h-facts span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.theme-human .h-intro {
  padding: 132px 0;
}

.theme-human .h-intro-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 92px;
}

.theme-human .h-intro-image-wrap {
  padding: 0 28px 28px 0;
}

.theme-human .h-intro-image-wrap::after {
  width: 66%;
  height: 54%;
}

.theme-human .h-intro-image {
  aspect-ratio: 4 / 5;
  object-position: 46% center;
}

.theme-human .h-intro-caption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 2px;
  margin: 0;
  padding: 8px 0 8px 16px;
  background: var(--white);
  color: var(--pink-dark);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.theme-human .h-intro-copy {
  margin-top: 24px;
}

.theme-human .h-intro-tasks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.theme-human .h-intro-tasks li {
  padding: 12px 8px 10px 0;
  border-bottom: 1px solid var(--line);
  color: #45454c;
  font-size: 11px;
}

.theme-human .h-intro-tasks li::before {
  margin-right: 8px;
  color: var(--pink-dark);
  content: "+";
}

.theme-human .h-intro-quote {
  margin-top: 32px;
  font-size: 18px;
}

.theme-human .h-cards {
  padding: 124px 0;
  background: var(--human-soft);
}

.theme-human .h-card-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 40px 24px;
}

.theme-human .h-card {
  min-height: 250px;
  padding: 26px 0 32px;
  border: 0;
  border-top: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
}

.theme-human .h-card:nth-child(1) {
  grid-column: 1 / 6;
}

.theme-human .h-card:nth-child(2) {
  grid-column: 7 / 13;
}

.theme-human .h-card:nth-child(3) {
  grid-column: 3 / 11;
}

.theme-human .h-card h3 {
  margin: 38px 0 16px;
  font-size: 26px;
  line-height: 1.4;
}

.theme-human .h-card p {
  max-width: 43ch;
  font-size: 13px;
}

.theme-human .h-card small {
  padding-top: 30px;
  color: var(--muted);
}

.theme-human .h-program-feature {
  min-height: 760px;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.theme-human .h-program-image {
  min-height: 760px;
  background-position: center;
}

.theme-human .h-program-copy {
  padding-top: 84px;
  padding-bottom: 84px;
}

.theme-human .h-program-copy > .reveal {
  max-width: 520px;
}

.theme-human .h-program-sample {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid #4a4a53;
}

.theme-human .h-program-sample-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #b9b9c1;
  font-size: 9px;
}

.theme-human .h-program-sample-head b {
  color: var(--white);
  font-size: 11px;
  font-weight: 560;
}

.theme-human .h-program-sample ol {
  margin: 14px 0 0;
  padding: 0;
  border-top: 1px solid #3f3f47;
  list-style: none;
}

.theme-human .h-program-sample li {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid #3f3f47;
}

.theme-human .h-program-sample li strong {
  color: var(--pink);
  font-size: 10px;
  font-weight: 650;
}

.theme-human .h-program-sample li span {
  color: #dedee3;
  font-size: 11px;
}

.theme-human .h-proof {
  padding: 124px 0;
}

.theme-human .h-proof-story article {
  min-height: 350px;
  padding: 30px 30px 34px;
}

.theme-human .h-proof-story h3 {
  margin-top: 52px;
  font-size: 25px;
  line-height: 1.45;
}

.theme-human .h-proof-story b {
  min-height: 48px;
  color: #4b4b52;
  font-size: 11px;
  line-height: 1.55;
}

.theme-human .h-proof-story p {
  font-size: 12px;
  line-height: 1.8;
}

.theme-human .h-people {
  padding: 124px 0;
  background: var(--human-soft);
}

.theme-human .h-people-visual {
  margin: 0 0 54px;
}

.theme-human .h-people-visual img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center 42%;
}

.theme-human .h-people-visual figcaption {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 20px 24px;
  background: var(--human-ink-soft);
  color: var(--white);
}

.theme-human .h-people-visual figcaption span {
  color: var(--pink);
  font-size: 10px;
  font-weight: 700;
}

.theme-human .h-people-visual figcaption p {
  margin: 0;
  color: #d0d0d6;
  font-size: 12px;
}

.theme-human .h-people-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.theme-human .h-person {
  display: grid;
  min-height: 240px;
  grid-template-columns: 78px minmax(0, 1fr);
  align-content: start;
  padding: 28px 30px;
  border: 0;
  background: transparent;
}

.theme-human .h-person:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.theme-human .h-person:nth-child(-n + 2) {
  border-bottom: 1px solid var(--line);
}

.theme-human .h-person span {
  grid-row: 1 / span 3;
  color: var(--pink-dark);
}

.theme-human .h-person h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.theme-human .h-person p {
  font-size: 12px;
}

.theme-human .h-person small {
  margin-top: 18px;
  color: #73737b;
  font-size: 10px;
}

.theme-human .h-people-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: right;
}

.theme-human .h-plan {
  padding: 124px 0;
}

.theme-human .h-plan-item {
  position: relative;
  min-height: 220px;
}

.theme-human .h-plan-item:not(:last-child)::after {
  position: absolute;
  top: 36px;
  right: -5px;
  width: 9px;
  height: 9px;
  border-top: 1px solid var(--pink-dark);
  border-right: 1px solid var(--pink-dark);
  content: "";
  transform: rotate(45deg);
}

.theme-human .h-price {
  padding: 124px 0;
  background: var(--human-soft);
}

.theme-human .h-price-grid article {
  min-height: 340px;
  background: var(--white);
}

.theme-human .h-price-grid h3 {
  margin-top: 44px;
}

.theme-human .h-price-grid ul {
  margin: 28px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.theme-human .h-price-grid li {
  position: relative;
  padding: 4px 0 4px 14px;
  color: var(--muted);
  font-size: 11px;
}

.theme-human .h-price-grid li::before {
  position: absolute;
  top: 13px;
  left: 0;
  width: 5px;
  height: 1px;
  background: var(--pink-dark);
  content: "";
}

.theme-human .h-price-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 10px;
  text-align: right;
}

.theme-human .h-flow-layout {
  min-height: 800px;
}

.theme-human .h-flow-image {
  min-height: 800px;
}

.theme-human .h-flow-list li {
  grid-template-columns: 38px minmax(0, 1fr) 64px;
  align-items: center;
  padding: 15px 0;
}

.theme-human .h-flow-list li > small {
  color: #898991;
  font-size: 9px;
  text-align: right;
}

.theme-human .h-faq {
  padding: 124px 0;
}

.theme-human .h-faq-list {
  display: block;
  border-top: 1px solid var(--ink);
}

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

.theme-human .h-faq-list summary {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 26px;
  gap: 16px;
  align-items: center;
  min-height: 76px;
  padding: 14px 0;
  cursor: pointer;
  list-style: none;
}

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

.theme-human .h-faq-list summary::after {
  display: flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--pink-dark);
  content: "+";
  font-size: 15px;
  line-height: 1;
}

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

.theme-human .h-faq-list summary span {
  color: var(--pink-dark);
  font-size: 10px;
  font-weight: 700;
}

.theme-human .h-faq-list summary strong {
  font-size: 15px;
  font-weight: 560;
}

.theme-human .h-faq-list details > p {
  max-width: 760px;
  margin: -3px 68px 0 58px;
  padding: 0 0 24px;
  color: var(--muted);
  font-size: 12px;
}

.theme-human .h-cta {
  padding: 112px 0;
  background: var(--ink);
}

.theme-human .h-cta .shell {
  grid-template-columns: minmax(0, 1fr) minmax(280px, auto);
  gap: 72px;
}

.theme-human .h-cta .eyebrow {
  color: var(--pink);
}

.theme-human .h-cta h2 {
  font-size: 44px;
}

.theme-human .h-cta ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 24px 0 0;
  padding: 0;
  color: #c8c8cf;
  font-size: 11px;
  list-style: none;
}

.theme-human .h-cta li::before {
  margin-right: 7px;
  color: var(--pink);
  content: "+";
}

.theme-human .h-cta-action {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 10px;
}

.theme-human .h-cta .button {
  border-color: var(--pink);
  background: var(--pink);
  color: var(--white);
}

.theme-human .h-cta .button:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.theme-human .h-cta-action small {
  color: #97979f;
  font-size: 10px;
  text-align: center;
}

.theme-human .h-mobile-cta {
  display: none;
}

@media (max-width: 1080px) {
  .theme-human .h-hero-caption .shell {
    gap: 48px;
  }

  .theme-human .h-facts .shell > div {
    padding-inline: 18px;
  }

  .theme-human .h-program-feature {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .theme-human .h-price-grid {
    gap: 10px;
  }
}

@media (max-width: 960px) {
  .theme-human .h-hero {
    min-height: 760px;
  }

  .theme-human .h-hero-caption .shell {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
    gap: 34px;
  }

  .theme-human .h-facts .shell {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .theme-human .h-facts .shell > div {
    min-height: 88px;
    padding-inline: 28px;
  }

  .theme-human .h-facts .shell > div:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .theme-human .h-facts .shell > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .theme-human .h-program-feature,
  .theme-human .h-flow-layout {
    grid-template-columns: 1fr;
  }

  .theme-human .h-program-image,
  .theme-human .h-flow-image {
    min-height: 520px;
  }

  .theme-human .h-program-copy,
  .theme-human .h-flow-copy {
    padding: 80px max(36px, calc((100vw - var(--max)) / 2));
  }

  .theme-human .h-program-copy > .reveal,
  .theme-human .h-flow-copy > .reveal {
    max-width: none;
  }
}

@media (max-width: 820px) {
  .theme-human .h-hero {
    min-height: 780px;
  }

  .theme-human .h-hero-image {
    background-position: 62% 30%;
  }

  .theme-human .h-hero-caption .shell {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-block: 34px 38px;
  }

  .theme-human .hero-title {
    font-size: 46px;
  }

  .theme-human .hero-actions {
    align-items: stretch;
    flex-direction: row;
  }

  .theme-human .h-intro-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .theme-human .h-intro-image-wrap {
    max-width: 560px;
  }

  .theme-human .h-card-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .theme-human .h-card:nth-child(1),
  .theme-human .h-card:nth-child(2),
  .theme-human .h-card:nth-child(3) {
    grid-column: 1;
  }

  .theme-human .h-card {
    min-height: 230px;
  }

  .theme-human .h-people-visual img {
    aspect-ratio: 4 / 3;
  }

  .theme-human .h-people-visual figcaption {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .theme-human .h-person {
    grid-template-columns: 64px minmax(0, 1fr);
    padding: 26px 22px;
  }

  .theme-human .h-cta .shell {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .theme-human {
    padding-bottom: 66px;
  }

  .theme-human .site-header {
    height: 64px;
  }

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

  .theme-human .h-hero {
    min-height: 720px;
  }

  .theme-human .h-hero-image {
    background-position: 66% top;
  }

  .theme-human .h-hero-image::after {
    background: linear-gradient(
      to top,
      rgba(23, 23, 27, 0.97) 0%,
      rgba(23, 23, 27, 0.93) 44%,
      rgba(23, 23, 27, 0.7) 68%,
      rgba(23, 23, 27, 0.16) 88%,
      rgba(23, 23, 27, 0) 100%
    );
  }

  .theme-human .h-hero-caption {
    background: transparent;
  }

  .theme-human .h-hero-caption .shell {
    padding-block: 28px 32px;
  }

  .theme-human .hero-title {
    font-size: 39px;
  }

  .theme-human .hero-lead {
    font-size: 13px;
    line-height: 1.75;
  }

  .theme-human .hero-actions {
    flex-direction: column;
  }

  .theme-human .h-hero-note {
    text-align: center;
  }

  .theme-human .h-facts .shell > div {
    min-height: 82px;
    padding: 14px;
  }

  .theme-human .h-facts strong {
    font-size: 14px;
  }

  .theme-human .h-facts span {
    font-size: 9px;
  }

  .theme-human .h-intro,
  .theme-human .h-cards,
  .theme-human .h-proof,
  .theme-human .h-people,
  .theme-human .h-plan,
  .theme-human .h-price,
  .theme-human .h-faq {
    padding: 88px 0;
  }

  .theme-human .h-intro-image {
    aspect-ratio: 5 / 4;
  }

  .theme-human .h-intro-caption {
    display: none;
  }

  .theme-human .h-intro-tasks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .theme-human .h-card {
    padding-inline: 2px;
  }

  .theme-human .h-card h3 {
    font-size: 23px;
  }

  .theme-human .h-program-image,
  .theme-human .h-flow-image {
    min-height: 340px;
  }

  .theme-human .h-program-copy,
  .theme-human .h-flow-copy {
    padding: 68px 20px;
  }

  .theme-human .h-program-sample-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .theme-human .h-proof-story article {
    min-height: 270px;
  }

  .theme-human .h-people-visual {
    margin-bottom: 34px;
  }

  .theme-human .h-people-visual img {
    aspect-ratio: 5 / 4;
    object-position: 50% center;
  }

  .theme-human .h-people-visual figcaption {
    padding: 18px;
  }

  .theme-human .h-people-grid {
    grid-template-columns: 1fr;
  }

  .theme-human .h-person,
  .theme-human .h-person:nth-child(odd),
  .theme-human .h-person:nth-child(-n + 2) {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .theme-human .h-person:last-child {
    border-bottom: 0;
  }

  .theme-human .h-people-note,
  .theme-human .h-price-note {
    text-align: left;
  }

  .theme-human .h-plan-item:not(:last-child)::after {
    display: none;
  }

  .theme-human .h-flow-list li {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .theme-human .h-flow-list li > small {
    display: none;
  }

  .theme-human .h-faq-list summary {
    grid-template-columns: 30px minmax(0, 1fr) 24px;
    gap: 10px;
    min-height: 72px;
  }

  .theme-human .h-faq-list summary strong {
    font-size: 13px;
  }

  .theme-human .h-faq-list details > p {
    margin: 0 34px 0 40px;
    padding-bottom: 22px;
    font-size: 11px;
  }

  .theme-human .h-cta {
    padding: 88px 0;
  }

  .theme-human .h-cta h2 {
    font-size: 34px;
  }

  .theme-human .h-cta ul {
    align-items: flex-start;
    flex-direction: column;
  }

  .theme-human .h-mobile-cta {
    position: fixed;
    z-index: 40;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--pink);
    border-radius: 4px;
    background: var(--pink);
    box-shadow: 0 10px 30px rgba(23, 23, 27, 0.18);
    color: var(--white);
    font-size: 13px;
    font-weight: 650;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition:
      opacity 180ms ease-out,
      transform 180ms ease-out;
  }

  .theme-human .h-mobile-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

/* C: calibrated media scale */
.theme-human .h-hero {
  min-height: clamp(590px, calc(100dvh - 132px), 660px);
}

.theme-human .h-facts .shell > div {
  min-height: 96px;
}

.theme-human .h-intro,
.theme-human .h-cards,
.theme-human .h-proof,
.theme-human .h-people,
.theme-human .h-plan,
.theme-human .h-price,
.theme-human .h-faq {
  padding-block: 108px;
}

.theme-human .h-intro-image {
  height: 440px;
  aspect-ratio: auto;
  object-fit: cover;
}

.theme-human .h-program {
  padding: 52px 0;
  background: var(--ink);
}

.theme-human .h-program-feature {
  width: min(calc(100% - 48px), 1160px);
  min-height: 0;
  align-items: center;
  margin-inline: auto;
}

.theme-human .h-program-image {
  height: 480px;
  min-height: 0;
}

.theme-human .h-program-copy {
  padding: 52px 54px;
}

.theme-human .h-people-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.3fr);
  width: min(100%, 940px);
  min-height: 320px;
  margin-left: auto;
}

.theme-human .h-people-visual img {
  height: 320px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 40%;
}

.theme-human .h-people-visual figcaption {
  grid-template-columns: 1fr;
  align-content: end;
  gap: 16px;
  padding: 26px 24px;
}

.theme-human .h-flow {
  padding: 64px 0;
}

.theme-human .h-flow-layout {
  width: min(calc(100% - 48px), 1160px);
  min-height: 0;
  align-items: center;
  margin-inline: auto;
}

.theme-human .h-flow-image {
  height: 460px;
  min-height: 0;
}

.theme-human .h-flow-copy {
  padding: 48px 64px;
}

@media (max-width: 960px) {
  .theme-human .h-program,
  .theme-human .h-flow {
    padding: 0;
  }

  .theme-human .h-program-feature,
  .theme-human .h-flow-layout {
    width: 100%;
  }

  .theme-human .h-program-image,
  .theme-human .h-flow-image {
    height: 320px;
    min-height: 0;
  }
}

@media (max-width: 820px) {
  .theme-human .h-hero {
    min-height: 680px;
  }

  .theme-human .h-intro-image {
    height: 330px;
  }

  .theme-human .h-people-visual {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .theme-human .h-people-visual img {
    width: 100%;
    height: auto;
    aspect-ratio: 1896 / 830;
  }
}

@media (max-width: 640px) {
  .theme-human .h-hero {
    min-height: 650px;
  }

  .theme-human .h-intro,
  .theme-human .h-cards,
  .theme-human .h-proof,
  .theme-human .h-people,
  .theme-human .h-plan,
  .theme-human .h-price,
  .theme-human .h-faq {
    padding-block: 80px;
  }

  .theme-human .h-intro-image {
    height: 220px;
  }

  .theme-human .h-program-image,
  .theme-human .h-flow-image {
    height: 230px;
  }
}

/* C: editorial hierarchy and rhythm */
.theme-human .section-head {
  grid-template-columns: minmax(0, 1.16fr) minmax(280px, 0.74fr);
  gap: 88px;
  align-items: start;
  margin-bottom: 64px;
}

.theme-human .section-title {
  font-size: clamp(42px, 3.5vw, 50px);
  font-weight: 540;
  line-height: 1.28;
}

.theme-human .section-copy {
  max-width: 39ch;
  font-size: 14px;
  line-height: 1.95;
}

.theme-human .hero-title {
  font-size: clamp(54px, 4.8vw, 70px);
  font-weight: 540;
  line-height: 1.12;
}

.theme-human .hero-lead {
  max-width: 43ch;
  font-size: 15px;
  line-height: 1.9;
}

.theme-human .h-facts strong {
  font-size: 19px;
}

.theme-human .h-intro {
  padding-block: 120px;
}

.theme-human .h-intro .section-title {
  font-size: clamp(40px, 3.3vw, 48px);
}

.theme-human .h-intro-copy {
  max-width: 54ch;
  font-size: 14px;
  line-height: 2;
}

.theme-human .h-intro-quote {
  font-size: 20px;
  line-height: 1.75;
}

.theme-human .h-cards {
  padding-block: 124px;
}

.theme-human .h-cards .section-title {
  font-size: clamp(46px, 3.8vw, 54px);
}

.theme-human .h-card h3 {
  font-size: 27px;
  font-weight: 540;
}

.theme-human .h-card p {
  font-size: 14px;
  line-height: 1.9;
}

.theme-human .h-program .section-title {
  font-size: clamp(39px, 3.2vw, 45px);
}

.theme-human .h-program-copy > .reveal > p:not(.eyebrow) {
  max-width: 43ch;
  font-size: 14px;
  line-height: 1.95;
}

.theme-human .h-proof {
  padding-block: 128px;
}

.theme-human .h-proof .section-title {
  font-size: clamp(44px, 3.6vw, 52px);
}

.theme-human .h-proof-story h3 {
  font-size: 26px;
  font-weight: 540;
}

.theme-human .h-people {
  padding-block: 96px;
}

.theme-human .h-people .section-title {
  font-size: clamp(46px, 3.8vw, 54px);
}

.theme-human .h-person h3 {
  font-size: 22px;
  font-weight: 540;
}

.theme-human .h-plan {
  padding-block: 96px;
}

.theme-human .h-plan .section-title {
  font-size: clamp(40px, 3.3vw, 47px);
}

.theme-human .h-plan-item h3 {
  font-size: 21px;
  font-weight: 540;
}

.theme-human .h-price {
  padding-block: 120px;
}

.theme-human .h-price .section-title {
  font-size: clamp(44px, 3.6vw, 52px);
}

.theme-human .h-price-grid strong {
  font-size: 25px;
  font-weight: 580;
}

.theme-human .h-flow .section-title {
  font-size: clamp(40px, 3.3vw, 47px);
}

.theme-human .h-flow-list h3 {
  font-size: 16px;
  font-weight: 560;
}

.theme-human .h-faq {
  padding-block: 112px;
}

.theme-human .h-faq .section-title {
  font-size: clamp(38px, 3.1vw, 45px);
}

.theme-human .h-faq-list summary strong {
  font-size: 16px;
}

.theme-human .h-cta h2 {
  font-size: clamp(40px, 3.5vw, 50px);
  font-weight: 540;
  line-height: 1.28;
}

@media (min-width: 821px) and (max-width: 1080px) {
  .theme-human .h-program .section-title {
    font-size: 37px;
  }
}

@media (max-width: 820px) {
  .theme-human .section-head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
  }

  .theme-human .section-title,
  .theme-human .h-intro .section-title,
  .theme-human .h-cards .section-title,
  .theme-human .h-program .section-title,
  .theme-human .h-proof .section-title,
  .theme-human .h-people .section-title,
  .theme-human .h-plan .section-title,
  .theme-human .h-price .section-title,
  .theme-human .h-flow .section-title,
  .theme-human .h-faq .section-title {
    font-size: 38px;
  }

  .theme-human .section-copy {
    max-width: 54ch;
  }

  .theme-human .h-program-copy,
  .theme-human .h-flow-copy {
    padding: 72px 36px;
  }
}

@media (max-width: 640px) {
  .theme-human .hero-title {
    font-size: 40px;
    line-height: 1.16;
  }

  .theme-human .hero-lead {
    font-size: 13px;
    line-height: 1.8;
  }

  .theme-human .h-intro,
  .theme-human .h-people {
    padding-block: 84px;
  }

  .theme-human .h-cards,
  .theme-human .h-proof,
  .theme-human .h-price {
    padding-block: 88px;
  }

  .theme-human .h-plan {
    padding-block: 76px;
  }

  .theme-human .h-faq {
    padding-block: 80px;
  }

  .theme-human .section-title,
  .theme-human .h-intro .section-title,
  .theme-human .h-cards .section-title,
  .theme-human .h-program .section-title,
  .theme-human .h-proof .section-title,
  .theme-human .h-people .section-title,
  .theme-human .h-plan .section-title,
  .theme-human .h-price .section-title,
  .theme-human .h-flow .section-title,
  .theme-human .h-faq .section-title {
    font-size: 33px;
    line-height: 1.34;
  }

  .theme-human .h-card h3 {
    font-size: 24px;
  }

  .theme-human .h-intro-quote {
    font-size: 18px;
  }

  .theme-human .h-cta h2 {
    font-size: 34px;
  }

  .theme-human .h-program-copy,
  .theme-human .h-flow-copy {
    padding: 64px 20px;
  }
}

@media (max-width: 360px) {
  .theme-human .h-program .section-title {
    font-size: 27px;
  }
}

/* C: consistent heading scale and balanced promise grid */
.theme-human .mobile-break {
  display: none;
}

.theme-human .section-title,
.theme-human .h-cards .section-title,
.theme-human .h-proof .section-title,
.theme-human .h-people .section-title,
.theme-human .h-price .section-title {
  font-size: 46px;
}

.theme-human .section-title .line {
  white-space: nowrap;
}

.theme-human .h-intro .section-title {
  font-size: 44px;
}

.theme-human .h-program .section-title {
  font-size: 40px;
}

.theme-human .h-plan .section-title {
  font-size: 44px;
}

.theme-human .h-flow .section-title {
  font-size: 36px;
}

.theme-human .h-faq .section-title {
  font-size: 40px;
}

.theme-human .h-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.theme-human .h-card,
.theme-human .h-card:nth-child(1),
.theme-human .h-card:nth-child(2),
.theme-human .h-card:nth-child(3) {
  display: flex;
  min-height: 330px;
  grid-column: auto;
  flex-direction: column;
  padding: 26px 28px 30px;
  border-top: 0;
}

.theme-human .h-card + .h-card {
  border-left: 1px solid var(--line);
}

.theme-human .h-card h3 {
  margin-top: 34px;
}

.theme-human .h-card small {
  margin-top: auto;
  padding-top: 24px;
}

@media (min-width: 821px) and (max-width: 1080px) {
  .theme-human .section-title,
  .theme-human .h-cards .section-title,
  .theme-human .h-proof .section-title,
  .theme-human .h-people .section-title,
  .theme-human .h-plan .section-title,
  .theme-human .h-price .section-title {
    font-size: 40px;
  }

  .theme-human .h-intro .section-title {
    font-size: 37px;
  }

  .theme-human .h-program .section-title,
  .theme-human .h-faq .section-title {
    font-size: 36px;
  }

  .theme-human .h-flow .section-title {
    font-size: 31px;
  }

  .theme-human .h-card,
  .theme-human .h-card:nth-child(1),
  .theme-human .h-card:nth-child(2),
  .theme-human .h-card:nth-child(3) {
    padding-inline: 22px;
  }
}

@media (max-width: 820px) {
  .theme-human .section-title,
  .theme-human .h-intro .section-title,
  .theme-human .h-cards .section-title,
  .theme-human .h-program .section-title,
  .theme-human .h-proof .section-title,
  .theme-human .h-people .section-title,
  .theme-human .h-plan .section-title,
  .theme-human .h-price .section-title,
  .theme-human .h-flow .section-title,
  .theme-human .h-faq .section-title {
    font-size: 36px;
  }

  .theme-human .h-card-grid {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .theme-human .h-card,
  .theme-human .h-card:nth-child(1),
  .theme-human .h-card:nth-child(2),
  .theme-human .h-card:nth-child(3) {
    min-height: 260px;
    padding-inline: 4px;
    border-bottom: 1px solid var(--line);
  }

  .theme-human .h-card + .h-card {
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .theme-human .mobile-break {
    display: inline;
  }

  .theme-human .section-title,
  .theme-human .h-intro .section-title,
  .theme-human .h-cards .section-title,
  .theme-human .h-program .section-title,
  .theme-human .h-proof .section-title,
  .theme-human .h-people .section-title,
  .theme-human .h-plan .section-title,
  .theme-human .h-price .section-title,
  .theme-human .h-flow .section-title,
  .theme-human .h-faq .section-title {
    font-size: 30px;
  }

  .theme-human .section-title .line {
    white-space: normal;
  }

  .theme-human .h-cta h2 {
    font-size: 30px;
  }
}

@media (max-width: 360px) {
  .theme-human .section-title,
  .theme-human .h-intro .section-title,
  .theme-human .h-cards .section-title,
  .theme-human .h-proof .section-title,
  .theme-human .h-people .section-title,
  .theme-human .h-plan .section-title,
  .theme-human .h-price .section-title,
  .theme-human .h-faq .section-title {
    font-size: 27px;
  }

  .theme-human .h-program .section-title,
  .theme-human .h-flow .section-title {
    font-size: 25px;
  }

  .theme-human .h-cta h2 {
    font-size: 26px;
  }

  .theme-human .h-person {
    grid-template-columns: 1fr;
    row-gap: 8px;
  }

  .theme-human .h-person span {
    grid-row: auto;
  }

  .theme-human .h-person h3 {
    font-size: 20px;
  }
}

/* C: 企画から運営まで — 提供範囲バー / 提供ステップ / ご提案例 / 料金に含まれるもの */
.theme-human .hero-title {
  font-size: clamp(38px, 3.5vw, 50px);
}

.theme-human .h-hero-scope {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.theme-human .h-hero-scope li {
  padding: 4px 11px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: #dcdce2;
  font-size: 12px;
  line-height: 1.6;
}

.theme-human .h-intro-tasks li::before {
  content: none;
}

.theme-human .h-intro-tasks li b {
  margin-right: 7px;
  color: var(--pink-dark);
  font-size: 10px;
  font-weight: 700;
}

.theme-human .h-case {
  padding-block: 96px;
  background: var(--white);
}

.theme-human .h-case-card {
  padding: 32px 36px;
  border: 1px solid var(--line);
  background: var(--white);
}

.theme-human .h-case-card dl {
  margin: 0;
}

.theme-human .h-case-card dl > div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.theme-human .h-case-card dl > div:first-child {
  padding-top: 0;
  border-top: 0;
}

.theme-human .h-case-card dl > div:last-child {
  padding-bottom: 0;
}

.theme-human .h-case-card dt {
  color: var(--pink-dark);
  font-size: 11px;
  font-weight: 700;
}

.theme-human .h-case-card dd {
  margin: 0;
  color: #45454c;
  font-size: 13px;
  line-height: 1.9;
}

.theme-human .h-price-included {
  margin-bottom: 24px;
  padding: 22px 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.theme-human .h-price-included-title {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.theme-human .h-price-included ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.theme-human .h-price-included li {
  padding: 5px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #45454c;
  font-size: 12px;
  line-height: 1.6;
}

.theme-human .h-price-included li::before {
  margin-right: 6px;
  color: var(--pink-dark);
  content: "✓";
}

@media (max-width: 820px) {
  .theme-human .hero-title {
    font-size: 38px;
  }
}

@media (max-width: 640px) {
  .theme-human .hero-title {
    font-size: 32px;
    line-height: 1.18;
  }

  .theme-human .h-hero-scope {
    gap: 5px;
    margin-top: 16px;
  }

  .theme-human .h-hero-scope li {
    padding: 3px 9px;
    font-size: 11px;
  }

  .theme-human .h-case {
    padding-block: 80px;
  }

  .theme-human .h-case-card {
    padding: 24px 20px;
  }

  .theme-human .h-case-card dl > div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 0;
  }

  .theme-human .h-price-included {
    padding: 18px 18px;
  }
}

@media (max-width: 360px) {
  .theme-human .hero-title {
    font-size: 28px;
  }
}

/* C: 補足行を削減したカード/ステップの調整 */
.theme-human .h-card,
.theme-human .h-card:nth-child(1),
.theme-human .h-card:nth-child(2),
.theme-human .h-card:nth-child(3) {
  min-height: 210px;
}

.theme-human .h-person {
  min-height: 190px;
}

.theme-human .h-flow-list li {
  grid-template-columns: 38px minmax(0, 1fr);
}

@media (max-width: 820px) {
  .theme-human .h-card,
  .theme-human .h-card:nth-child(1),
  .theme-human .h-card:nth-child(2),
  .theme-human .h-card:nth-child(3) {
    min-height: 0;
  }
}

/* C: 12文字見出し(講師の手配だけではなく、/ 目的に合うプログラムと、)がモバイルで折返さないよう調整 */
@media (max-width: 640px) {
  .theme-human .section-title,
  .theme-human .h-intro .section-title,
  .theme-human .h-cards .section-title,
  .theme-human .h-program .section-title,
  .theme-human .h-proof .section-title,
  .theme-human .h-people .section-title,
  .theme-human .h-plan .section-title,
  .theme-human .h-price .section-title,
  .theme-human .h-flow .section-title,
  .theme-human .h-faq .section-title {
    font-size: 28px;
  }
}

@media (max-width: 360px) {
  .theme-human .section-title,
  .theme-human .h-intro .section-title,
  .theme-human .h-cards .section-title,
  .theme-human .h-program .section-title,
  .theme-human .h-proof .section-title,
  .theme-human .h-people .section-title,
  .theme-human .h-plan .section-title,
  .theme-human .h-price .section-title,
  .theme-human .h-flow .section-title,
  .theme-human .h-faq .section-title {
    font-size: 25px;
  }
}
