/* ============================================================
   Unchaos — For Therapists page styles
   ============================================================ */

/* COHORT INTRO BANNER (above pillars) */
.cohort-intro-banner {
  background: var(--accent-2);
  border: 1.5px solid var(--ink);
  border-radius: 18px;
  padding: 26px 32px;
  margin: 0 0 36px;
  text-align: center;
  box-shadow: 6px 6px 0 var(--ink);
}
.cohort-intro-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 10px;
}
.cohort-intro-banner h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 18px;
}
.cohort-intro-banner h3 em { color: var(--accent-deep); }
.cohort-intro-dates {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  align-items: center;
}
.cohort-intro-dates span {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--bg);
  border: 1.5px solid var(--ink);
  padding: 7px 14px;
  border-radius: 999px;
  color: var(--ink);
}
.cohort-intro-dates .cohort-intro-time {
  background: var(--ink);
  color: var(--bg);
  text-transform: none;
  letter-spacing: .04em;
}

/* LUMA button — force brand brown over Luma's default dark theme */
a.luma-checkout--button.btn,
a.luma-checkout--button.btn-accent,
.luma-checkout--button.btn {
  background: var(--accent) !important;
  color: var(--bg) !important;
  border: 1.5px solid var(--ink) !important;
  box-shadow: 4px 4px 0 var(--ink);
  border-radius: 999px !important;
  font-family: var(--sans) !important;
  font-weight: 500 !important;
  letter-spacing: .02em !important;
  text-transform: none !important;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
a.luma-checkout--button.btn:hover,
.luma-checkout--button.btn:hover {
  background: var(--accent-deep) !important;
  color: var(--bg) !important;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}

/* TESTIMONIAL ROTATOR */
.testim-rotator {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}
.testim-track {
  position: relative;
  min-height: 280px;
}
.testim-track .t-quote {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s ease, transform .5s ease;
  pointer-events: none;
  background: var(--card);
  border: 1.5px solid var(--ink);
  border-radius: 18px;
  padding: 36px 40px;
  box-shadow: 6px 6px 0 var(--ink);
  margin: 0;
}
.testim-track .t-quote.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}
.testim-track .t-quote.is-active ~ .t-quote { display: none; }
.testim-track blockquote {
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  margin: 12px 0 18px;
}
.testim-track figcaption {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.testim-track .q-mark {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  color: var(--accent);
  opacity: .6;
}
.testim-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 24px;
}
.testim-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  background: var(--bg);
  cursor: pointer;
  font-size: 16px;
  color: var(--ink);
  transition: transform .15s ease, background .15s ease;
}
.testim-btn:hover { background: var(--accent-2); transform: translateY(-1px); }
.testim-dots { display: inline-flex; gap: 8px; }
.testim-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s ease, transform .2s ease;
}
.testim-dot.is-active { background: var(--accent-deep); transform: scale(1.3); }

/* COHORT · WHAT YOU LEAVE WITH */
.t-cohort-takeaways { background: var(--bg); }
.takeaways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 40px;
}
.takeaways-grid--3 { grid-template-columns: repeat(3, 1fr); }
.takeaway-item {
  border-top: 1.5px solid var(--ink);
  padding-top: 18px;
}
.takeaway-item h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.25;
}
.takeaway-item p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
}

/* COHORT · WHO THIS IS FOR */
.t-cohort-who { background: var(--bg-alt); }
.cohort-who-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.cohort-who-grid h2 {
  font-family: var(--serif);
  font-weight: 300;
  margin: 14px 0 18px;
}
.cohort-who-toggles {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cohort-toggle {
  background: var(--card);
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  padding: 16px 22px;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .2s ease, box-shadow .2s ease;
}
.cohort-toggle[open] {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}
.cohort-toggle summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.cohort-toggle summary::-webkit-details-marker { display: none; }
.cohort-toggle summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
  color: var(--accent-deep);
  transition: transform .2s ease;
}
.cohort-toggle[open] summary::after { content: "–"; }
.cohort-toggle p {
  margin: 12px 0 0;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .takeaways-grid { grid-template-columns: 1fr 1fr; }
  .cohort-who-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .takeaways-grid { grid-template-columns: 1fr; }
}


/* WHO grid CTA banner: full-width, sits after the grid */
.who-banner {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 56px;
  align-items: center;
  padding: 44px 48px;
  background: var(--accent-2);
  border: 1.5px solid var(--ink);
  border-radius: 24px;
  position: relative;
}
[data-aesthetic="collage"] .who-banner { box-shadow: 8px 8px 0 var(--ink); }
[data-aesthetic="editorial"] .who-banner { border: 1px solid var(--line); border-radius: var(--radius-lg); }

.who-banner-copy h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.15;
  margin: 12px 0 14px;
  letter-spacing: -0.01em;
}
.who-banner-copy h3 em { color: var(--accent-deep); font-style: italic; }
.who-banner-copy p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  max-width: 380px;
}

/* Two-step flow */
.who-steps {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.who-step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 22px 26px;
  background: var(--card);
  border: 1.5px solid var(--ink);
  border-radius: 16px;
  transition: transform .2s ease, box-shadow .2s ease;
}
[data-aesthetic="collage"] .who-step { box-shadow: 4px 4px 0 var(--ink); }
[data-aesthetic="editorial"] .who-step { border: 1px solid var(--line); }

.who-step-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--accent-deep);
  line-height: 1;
  letter-spacing: -0.02em;
}
.who-step-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.who-step-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.who-step-sub {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.who-step-cta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding: 10px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.who-step-cta:hover { background: var(--ink); color: var(--bg); }
.who-step-cta--primary { background: var(--ink); color: var(--bg); }
.who-step-cta--primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); color: var(--bg); }

@media (max-width: 900px) {
  .who-banner { grid-template-columns: 1fr; gap: 28px; padding: 32px 28px; }
  .who-step { grid-template-columns: auto 1fr; }
  .who-step-cta { grid-column: 1 / -1; justify-self: start; }
}

/* Cohort banner: cohort-vs-circles explainer + CTA row */
.cohort-vs-circles {
  margin: 22px 0 26px;
  padding: 20px 22px;
  background: color-mix(in oklab, var(--ink) 6%, transparent);
  border-left: 3px solid var(--accent-deep);
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 760px;
}
.cohort-vs-circles strong {
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 8px;
}
.cohort-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 600px) {
  .cohort-cta-row .btn { width: 100%; text-align: center; }
}

.t-hero { padding: 140px 0 40px; position: relative; overflow: hidden; }
.t-blob-1 { width: 540px; height: 540px; background: var(--accent-3); top: -160px; right: -160px; }
.t-blob-2 { width: 420px; height: 420px; background: var(--accent-2); bottom: 10%; left: -160px; opacity: .45; }

.t-hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 80px; align-items: center;
}
.t-hero-copy h1 { margin: 20px 0 22px; }
.t-hero-sub { font-size: 18px; color: var(--ink-soft); line-height: 1.55; max-width: 540px; margin-bottom: 36px; }
.t-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.t-hero-meta { display: flex; gap: 20px; flex-wrap: wrap; font-family: var(--mono); font-size: 12px; color: var(--ink-soft); letter-spacing: .04em; }
.t-hero-meta span::before { content: "◦"; color: var(--accent); margin-right: 8px; }

.t-hero-visual { position: relative; min-height: 500px; }
.t-hero-stack { position: relative; width: 100%; height: 100%; }
.t-polaroid {
  position: absolute;
  background: var(--card);
  border: 1.5px solid var(--ink);
  border-radius: 6px;
  padding: 12px 12px 14px;
  box-shadow: 8px 8px 0 var(--ink);
}
.t-polaroid .ph-img { border-radius: 4px; }
.t-pcap {
  margin-top: 10px;
  font-family: var(--mono); font-size: 11px;
  color: var(--ink); letter-spacing: .04em;
  text-align: center;
}
.t-p1 { top: 0; left: 4%; width: 58%; transform: rotate(-4deg); z-index: 2; }
.t-p2 { top: 16%; right: 0; width: 54%; transform: rotate(5deg); z-index: 1; }
.t-sticker {
  position: absolute;
  bottom: 0; left: 10%;
  transform: rotate(-3deg);
  background: var(--accent);
  color: var(--bg);
  border: 1.5px solid var(--ink);
  padding: 10px 20px;
  border-radius: 999px;
  font-family: var(--mono); font-size: 12px;
  letter-spacing: .08em; text-transform: uppercase;
  z-index: 3;
  box-shadow: 4px 4px 0 var(--ink);
}

/* Section heads */
.t-section-head { margin-bottom: 32px; max-width: 780px; }
.t-section-head.center { margin: 0 auto 32px; text-align: center; }
.t-section-head h2 { margin: 14px 0 18px; }
.t-lead { font-size: 18px; color: var(--ink-soft); line-height: 1.55; }

/* EXPLAINER */
.explainer-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-bottom: 32px;
}
.explainer { padding: 30px 24px; }
.ex-glyph { font-size: 32px; color: var(--accent); margin-bottom: 14px; line-height: 1; }
.explainer h3 { font-size: 20px; margin-bottom: 10px; }
.explainer p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }

.peer-note {
  background: color-mix(in oklab, var(--accent-2) 50%, var(--bg));
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  padding: 18px 22px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.55;
}
.peer-note strong { color: var(--accent-deep); margin-right: 6px; }

/* WHO */
.t-who { background: var(--bg-alt); }
.who-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.who-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px 24px 24px;
  position: relative;
}
[data-aesthetic="collage"] .who-card {
  border: 1.5px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
}
.who-tape {
  position: absolute;
  top: -14px; left: 18px;
  transform: rotate(var(--rot, 0));
  background: var(--accent-3);
  color: var(--bg);
  border: 1px solid var(--ink);
  padding: 5px 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .06em;
  font-weight: 500;
}
[data-aesthetic="collage"] .who-tape { box-shadow: 2px 2px 0 var(--ink); }
.who-card p { color: var(--ink-soft); font-size: 15px; line-height: 1.55; }

/* HOW */
.how-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1.5px solid var(--ink);
  border-radius: 20px;
  overflow: hidden;
  background: var(--card);
}
[data-aesthetic="collage"] .how-grid { box-shadow: 8px 8px 0 var(--ink); }
.how-panel {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.how-panel:nth-child(3n) { border-right: none; }
.how-panel:nth-last-child(-n+3) { border-bottom: none; }
.how-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent-deep);
  letter-spacing: .12em;
  margin-bottom: 10px;
}
.how-panel h3 { font-size: 22px; margin-bottom: 8px; }
.how-panel p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }

/* COHORT BANNER */
.t-cohort-banner {
  padding: 40px 0;
}
.cohort-banner-card {
  background: var(--ink);
  color: var(--bg);
  border-radius: 28px;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  border: 1.5px solid var(--ink);
}
[data-aesthetic="collage"] .cohort-banner-card { box-shadow: 10px 10px 0 var(--accent); }
.cohort-banner-card::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 10% 20%, color-mix(in oklab, var(--accent) 40%, transparent), transparent 50%),
    radial-gradient(circle at 90% 80%, color-mix(in oklab, var(--accent-3) 40%, transparent), transparent 50%);
  pointer-events: none;
}
.cohort-banner-card > * { position: relative; }
.cohort-banner-tag {
  font-family: var(--mono); font-size: 11px; letter-spacing: .16em;
  color: var(--accent-2); margin-bottom: 14px;
}
.cohort-banner-card h2 {
  color: var(--bg); font-size: clamp(40px, 5vw, 64px); margin-bottom: 18px;
}
.cohort-banner-card h2 em { color: var(--accent-2); }
.cohort-banner-sub {
  font-size: 17px; line-height: 1.55;
  color: color-mix(in oklab, var(--bg) 85%, transparent);
  max-width: 680px; margin-bottom: 28px;
}
.cohort-banner-meta {
  display: grid; grid-template-columns: repeat(4, auto);
  gap: 24px 40px;
  padding: 20px 0;
  border-top: 1px solid color-mix(in oklab, var(--bg) 20%, transparent);
  border-bottom: 1px solid color-mix(in oklab, var(--bg) 20%, transparent);
  margin-bottom: 28px;
}
.cohort-banner-meta div { display: flex; flex-direction: column; gap: 4px; }
.cohort-banner-meta span {
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: color-mix(in oklab, var(--bg) 60%, transparent);
}
.cohort-banner-meta strong {
  font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--bg);
}

/* COHORT REGISTRATION */
.t-cohort-register { background: var(--bg); }
.cohort-register-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.cohort-register-copy h2 { margin: 14px 0 18px; }
.cohort-register-copy h2 em { color: var(--accent-deep); }
.cohort-register-copy .t-lead { font-size: 18px; line-height: 1.6; color: var(--ink-soft); margin-bottom: 24px; }
.cohort-register-meta {
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.cohort-register-meta li {
  font-size: 15px; color: var(--ink); line-height: 1.5;
}
.cohort-register-meta strong {
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent-deep);
  display: inline-block; min-width: 90px; margin-right: 8px;
  font-weight: 600;
}
.cohort-register-form .form-frame {
  background: var(--card);
  border: 1.5px solid var(--ink);
  border-radius: 24px;
  padding: 14px;
  box-shadow: 8px 8px 0 var(--ink);
  overflow: hidden;
}
[data-aesthetic="editorial"] .cohort-register-form .form-frame { box-shadow: 4px 4px 0 var(--ink); }
.cohort-register-form iframe {
  display: block;
  width: 100%;
  border-radius: 14px;
  background: var(--bg);
}
@media (max-width: 820px) {
  .cohort-register-grid { grid-template-columns: 1fr; gap: 36px; }
  .cohort-register-form .form-frame { padding: 8px; box-shadow: 4px 4px 0 var(--ink); }
}

/* COHORT DEEP DIVE */
.t-cohort { background: var(--bg-alt); }
.pillars-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 48px;
}
.pillar {
  background: var(--card);
  border: 1.5px solid var(--ink);
  border-radius: 20px;
  padding: 36px 30px;
}
[data-aesthetic="collage"] .pillar { box-shadow: 8px 8px 0 var(--ink); }
[data-aesthetic="editorial"] .pillar { border: 1px solid var(--line); }
.pillar-label {
  font-family: var(--mono); font-size: 11px; letter-spacing: .16em;
  color: var(--accent-deep); margin-bottom: 10px;
}
.pillar h3 { font-size: 26px; margin-bottom: 14px; }
.pillar p { font-size: 15px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 20px; }
.pillar ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.pillar li {
  padding-left: 22px;
  position: relative;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
}
.pillar li::before {
  content: "✦";
  position: absolute; left: 0; top: 1px;
  color: var(--accent);
}

.cohort-format {
  background: var(--card);
  border: 1.5px solid var(--ink);
  border-radius: 20px;
  padding: 36px 40px;
}
[data-aesthetic="collage"] .cohort-format { box-shadow: 6px 6px 0 var(--ink); }
.cf-head {
  font-family: var(--serif); font-size: 26px; margin-bottom: 22px;
}
.cf-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.cf-grid > div {
  display: flex; flex-direction: column; gap: 4px;
  padding-left: 16px;
  border-left: 2px solid var(--accent);
}
.cf-grid strong {
  font-size: 17px; color: var(--ink);
  font-family: var(--serif); font-weight: 500;
}
.cf-grid span {
  font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: .04em;
}

/* TESTIMONIALS */
.t-testim { background: var(--bg); }
.t-testim .testim-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.t-quote {
  background: var(--card);
  border: 1.5px solid var(--ink);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
}
[data-aesthetic="collage"] .t-quote { box-shadow: 6px 6px 0 var(--ink); }
[data-aesthetic="editorial"] .t-quote { border: 1px solid var(--line); }
.q-mark {
  font-family: var(--serif); font-size: 80px; line-height: 0.6;
  color: var(--accent); opacity: .4;
  position: absolute; top: 20px; left: 26px;
}
.t-quote blockquote {
  font-family: var(--serif); font-size: 22px; line-height: 1.4;
  color: var(--ink); margin: 32px 0 16px;
}
.t-quote figcaption {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: .06em; color: var(--muted);
}

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 24px;
}
[data-aesthetic="collage"] .faq-item { border: 1.5px solid var(--ink); box-shadow: 4px 4px 0 var(--ink); }
.faq-item summary {
  font-family: var(--serif); font-size: 22px;
  cursor: pointer; list-style: none;
  position: relative; padding-right: 32px; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 24px; color: var(--accent-deep);
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { margin-top: 12px; color: var(--ink-soft); line-height: 1.65; font-size: 15px; }

/* JOIN */
.t-join { background: var(--ink); color: var(--bg); }
.t-join h2 { color: var(--bg); }
.t-join h2 em { color: var(--accent-2); }
.t-join-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px;
  align-items: start;
}
.t-join-copy p {
  color: color-mix(in oklab, var(--bg) 75%, transparent);
  font-size: 17px; line-height: 1.55; margin: 18px 0 28px;
}
.join-list {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
}
.join-list li {
  padding-left: 24px; position: relative;
  font-size: 14px;
  color: color-mix(in oklab, var(--bg) 85%, transparent);
}
.join-list li::before {
  content: "✦"; position: absolute; left: 0; color: var(--accent-2);
}

.t-join-form {
  background: var(--card);
  color: var(--ink);
  border-radius: 24px;
  padding: 36px;
  display: flex; flex-direction: column; gap: 18px;
  border: 1.5px solid var(--ink);
}
[data-aesthetic="collage"] .t-join-form { box-shadow: 10px 10px 0 var(--accent); }
.fld { display: flex; flex-direction: column; gap: 8px; }
.fld label {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft);
}
.fld input, .fld select, .fld textarea {
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: var(--sans); font-size: 15px;
  background: var(--bg);
  color: var(--ink);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.fld input:focus, .fld select:focus, .fld textarea:focus {
  border-color: var(--accent-deep);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 25%, transparent);
}
.fld-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.opt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.opt {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
}
.opt input { accent-color: var(--accent-deep); }
.opt:has(input:checked) { border-color: var(--ink); background: color-mix(in oklab, var(--accent-2) 35%, var(--bg)); }
.t-join-form button { align-self: flex-start; margin-top: 4px; }

@media (max-width: 900px) {
  .t-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .t-hero-visual { min-height: 420px; }
  .explainer-grid { grid-template-columns: 1fr 1fr; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .how-panel:nth-child(3n) { border-right: 1px solid var(--line); }
  .how-panel:nth-child(2n) { border-right: none; }
  .cohort-banner-meta { grid-template-columns: 1fr 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .cf-grid { grid-template-columns: 1fr 1fr; }
  .t-testim .testim-grid { grid-template-columns: 1fr; }
  .t-join-grid { grid-template-columns: 1fr; }
  .fld-row { grid-template-columns: 1fr; }
  .opt-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .explainer-grid, .who-grid, .how-grid { grid-template-columns: 1fr; }
  .how-panel { border-right: none !important; }
  .cohort-banner-meta { grid-template-columns: 1fr; }
  .cohort-banner-card { padding: 36px 28px; }
}
