/* ============================================================
   Therapy Colab — shared stylesheet
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&family=Encode+Sans+Expanded:wght@400;600;700&display=swap');

/* ── Custom Properties ── */
:root {
  --bg:        #F5F0E8;
  --surf:      #EAE2D6;
  --border:    #D8CCBE;
  --sage:      #5C9F99;
  --sage-dk:   #4D8D87;
  --orange:    #E17563;
  --text:      #302C27;
  --muted:     #7A7068;
  --white:     #fff;
  --dark:      #251F1A;

  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;
  --font-logo:  'Encode Sans Expanded', system-ui, sans-serif;

  --radius:    6px;
  --shadow:    0 2px 12px rgba(48, 44, 39, 0.08);
  --shadow-lg: 0 8px 32px rgba(48, 44, 39, 0.12);
  --transition: 0.2s ease;

  --max-w: 1200px;
  --section-py: 72px;
}

/* ── Custom Cursor ── */
body, a, button { cursor: none; }
#cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--sage);
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.2s ease, height 0.2s ease, background 0.2s ease;
  will-change: left, top;
}
#cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 10000; pointer-events: none;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sage);
  transform: translate(-50%, -50%);
  transition: transform 0.05s ease, opacity 0.2s ease;
  will-change: left, top;
}
body.hovering #cursor-ring { width: 56px; height: 56px; background: rgba(92,159,153,0.1); }
body.hovering #cursor-dot  { opacity: 0; transform: translate(-50%,-50%) scale(0); }
body.clicking #cursor-ring { width: 28px; height: 28px; background: rgba(92,159,153,0.2); }

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--sage);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--sage-dk); }

ul, ol { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }
h4 { font-size: 1.05rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.7;
}

strong { font-weight: 600; }

/* ── Layout Helpers ── */
.section {
  padding: var(--section-py) 24px;
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section--surf { background: var(--surf); }
.section--dark { background: var(--dark); color: var(--white); }
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--white); }

.text-center { text-align: center; }
.text-muted   { color: var(--muted); }
.text-sage    { color: var(--sage); }
.text-orange  { color: var(--orange); }

/* Screen-reader only — visually hidden */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Eyebrow ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 3px;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.btn:hover { opacity: 0.88; }

.btn-primary {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}
.btn-primary:hover { background: var(--sage-dk); border-color: var(--sage-dk); opacity: 1; color: var(--white); }

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover { border-color: var(--text); opacity: 1; }

.btn-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-white:hover { border-color: rgba(255,255,255,0.7); opacity: 1; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ── Navigation ── */
.wf-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

.wf-nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.wf-nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.wf-nav__logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.wf-nav__brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.wf-nav__wordmark {
  font-family: var(--font-logo);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.wf-nav__tagline {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.04em;
  line-height: 1;
}

.wf-nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

.wf-nav__links a {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 14px;
  transition: color var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.wf-nav__links a:hover { color: var(--text); }
.wf-nav__links a.active { color: var(--text); }

.wf-nav__cta {
  flex-shrink: 0;
}

/* Mobile-only CTA — hidden on desktop */
.wf-nav__mobile-cta { display: none; }

/* Hamburger — hidden on desktop */
.wf-nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.wf-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ── Footer ── */
.page-footer {
  background: var(--dark);
  padding: 56px 5% 36px;
}

.page-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.page-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.page-footer__logo-icon {
  height: 36px;
  width: auto;
  flex-shrink: 0;
}

.page-footer__brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.page-footer__wordmark {
  font-family: var(--font-logo);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.page-footer__tagline {
  font-size: 0.53rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  font-weight: 400;
}

.page-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  align-items: center;
}

.page-footer__nav a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
  text-decoration: none;
}
.page-footer__nav a:hover { color: rgba(255,255,255,0.85); }

.page-footer__rule {
  max-width: var(--max-w);
  margin: 0 auto 20px;
  height: 1px;
  background: rgba(255,255,255,0.07);
}

.page-footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.page-footer__copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.22);
  margin: 0;
}

.page-footer__social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.page-footer__social a {
  display: inline-flex;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.page-footer__social a:hover { color: var(--sage); }
.page-footer__social svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

/* ── Hero ── */
.hero {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero__inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 54vh;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 6% 56px 5%;
  border-right: 1px solid var(--border);
}

.hero__title {
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
}

.hero__title em {
  font-style: italic;
  color: var(--sage);
}

.hero__body {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.9;
  font-weight: 300;
  max-width: 480px;
}

.hero__photo {
  overflow: hidden;
  background: var(--surf);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero__photo-placeholder {
  color: var(--border);
  font-size: 0.875rem;
  font-family: var(--font-sans);
  text-align: center;
  padding: 24px;
  letter-spacing: 0.02em;
}

/* ── About Section ── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about__heading { }

.about__body { color: var(--muted); line-height: 1.75; }

/* ── Who It's For ── */
.who__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 48px;
}

.who__item {
  background: var(--bg);
  padding: 40px 36px;
  border: 1px solid var(--border);
}

/* Featured full-width card (Behavior Analysts & ABA Providers) */
.who__item--featured { grid-column: 1 / -1; }

.who__item--sage .who__item-heading { color: var(--sage); }

.who__item-heading {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.who__item-body {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Why Section ── */
.why__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.why__item {
  padding: 36px 32px;
  border-top: 3px solid var(--sage);
  background: var(--surf);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why__item:last-child { border-right: none; }
.why__item:nth-child(4) { border-right: 1px solid var(--border); }

.why__row-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.why__row-2 .why__item:last-child { border-right: none; }

.why__item-number {
  font-family: var(--font-logo);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.why__item-heading {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.why__item-body {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Feature Split ── */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 520px;
}

.feature__photo {
  background: var(--surf);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  overflow: hidden;
}

.feature__photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

.feature__content {
  background: #ffffff;
  padding: 80px 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature__body {
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 28px;
  font-weight: 300;
  max-width: 480px;
}

/* ── Membership Cards ── */
.memberships__intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 48px;
}
.memberships__intro h2 { margin: 0; }
.memberships__intro p { color: var(--muted); font-size: 0.9375rem; max-width: 360px; line-height: 1.7; margin: 0; }

.membership-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}

.membership-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.membership-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.membership-card--highlight {
  background: var(--sage);
  border-color: var(--sage);
}

.membership-card__popular {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
  margin-bottom: 16px;
  display: block;
  min-height: 14px;
}
.membership-card--highlight .membership-card__popular { color: rgba(255,255,255,0.65); }

.membership-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text);
  margin-bottom: 4px;
}
.membership-card--highlight h3 { color: var(--white); }

.membership-card__hours {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.membership-card--highlight .membership-card__hours { color: rgba(255,255,255,0.6); }

.membership-card__price {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--text);
  line-height: 1;
}
.membership-card--highlight .membership-card__price { color: var(--white); }

.membership-card__price-unit {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 6px;
  margin-bottom: 20px;
}
.membership-card--highlight .membership-card__price-unit { color: rgba(255,255,255,0.6); }

.membership-card__rule {
  height: 1px;
  background: var(--border);
  margin-bottom: 18px;
}
.membership-card--highlight .membership-card__rule { background: rgba(255,255,255,0.2); }

.membership-card__link {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  text-decoration: none;
  margin-top: auto;
}
.membership-card--highlight .membership-card__link { color: var(--white); }

.memberships__footnote {
  margin-top: 40px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9375rem;
}

.memberships__footnote p + p {
  margin-top: 10px;
}

.memberships__footnote em {
  font-size: 0.875rem;
  color: var(--muted);
}

/* ── Waitlist / Stay in the Loop ── */
.waitlist__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.waitlist__left .eyebrow { margin-bottom: 14px; }
.waitlist__left h2 { margin-bottom: 14px; }
.waitlist__left p { color: var(--muted); font-size: 0.9375rem; line-height: 1.8; margin: 0; }

.waitlist__right { display: flex; flex-direction: column; gap: 10px; }

.waitlist-form {
  display: flex;
  align-items: stretch;
}

.waitlist-form input[type="email"] {
  flex: 1;
  padding: 13px 18px;
  border: 1px solid var(--border);
  border-right: none;
  border-radius: 3px 0 0 3px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  min-width: 0;
}
.waitlist-form input[type="email"]:focus { border-color: var(--sage); }
.waitlist-form input[type="email"]::placeholder { color: var(--muted); }
.waitlist-form .btn { border-radius: 0 3px 3px 0; }

.waitlist__note {
  font-size: 0.75rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 2px;
}

/* ── Final CTA ── */
.final-cta {
  padding: var(--section-py) 5%;
  background: #302C27;
}

.final-cta__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.final-cta h2 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.final-cta__sub {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
}

.final-cta .btn-group {
  flex-direction: column;
  min-width: 220px;
  gap: 12px;
}
.final-cta .btn { width: 100%; text-align: center; }

/* ── Steps (for how-it-works etc) ── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: step-counter;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  counter-increment: step-counter;
}
.step:last-child { border-bottom: none; }

.step__number {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--sage);
  line-height: 1;
  padding-top: 4px;
}
.step__number::before { content: counter(step-counter, decimal-leading-zero); }

.step__heading {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.step__body { font-size: 0.9375rem; color: var(--muted); }

/* ── Form Styles ── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus { border-color: var(--sage); }

.form-textarea { min-height: 120px; resize: vertical; }

/* ── Divider ── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── Utility ── */
.mt-0  { margin-top: 0; }
.mb-0  { margin-bottom: 0; }
.mt-sm { margin-top: 16px; }
.mb-sm { margin-bottom: 16px; }
.mt-md { margin-top: 32px; }
.mb-md { margin-bottom: 32px; }
.mt-lg { margin-top: 56px; }
.mb-lg { margin-bottom: 56px; }

/* ============================================================
   Responsive — 900px breakpoint
   ============================================================ */
@media (max-width: 900px) {
  :root { --section-py: 60px; }

  /* Nav */
  .wf-nav__links { display: none; }
  .wf-nav__cta   { display: none; }
  .wf-nav__hamburger { display: flex; }

  .wf-nav__links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 28px;
    gap: 2px;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(48,44,39,0.08);
  }
  .wf-nav__links.open a {
    font-size: 0.8rem;
    padding: 10px 0;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  .wf-nav__links.open a:last-of-type { border-bottom: none; }
  .wf-nav__links.open .wf-nav__mobile-cta {
    display: block;
    margin-top: 16px;
    width: 100%;
  }

  .wf-nav__links.open .wf-nav__cta-mobile {
    display: block;
    margin-top: 12px;
  }

  .wf-nav {
    position: sticky;
    top: 0;
  }

  /* Hero — stack, photo on top */
  .hero__inner { grid-template-columns: 1fr; min-height: unset; }
  .hero__photo { order: -1; min-height: 240px; width: 100%; aspect-ratio: 16/9; }
  .hero__photo img { width: 100%; height: 100%; object-fit: cover; }
  .hero__content { border-right: none; border-bottom: 1px solid var(--border); padding: 40px 24px; }
  .hero__title { font-size: 1.75rem; }
  .hero__body { font-size: 0.9375rem; margin-bottom: 28px; }

  /* About */
  .about__grid  { grid-template-columns: 1fr; gap: 32px; }

  /* Who */
  .who__grid    { grid-template-columns: 1fr; }

  /* Why */
  .why__intro   { grid-template-columns: 1fr; gap: 24px; }
  .why__grid    { grid-template-columns: 1fr 1fr; }
  .why__row-2   { grid-template-columns: 1fr 1fr; }
  .why__item    { border-right: 1px solid var(--border) !important; }
  .why__item:nth-child(even) { border-right: none !important; }

  /* Feature */
  .feature__grid { grid-template-columns: 1fr; gap: 36px; }

  /* Membership cards */
  .membership-cards {
    grid-template-columns: 1fr 1fr;
  }

  /* Footer */
  .page-footer__inner { flex-direction: column; gap: 24px; }
  .page-footer__nav { justify-content: flex-start; gap: 8px 20px; }
  /* Cursor hidden on touch */
  #cursor-ring, #cursor-dot { display: none; }
}

/* ============================================================
   Responsive — 600px breakpoint
   ============================================================ */
@media (max-width: 600px) {
  :root { --section-py: 48px; }

  /* Membership cards */
  .membership-cards { grid-template-columns: 1fr; }

  /* Why */
  .why__grid  { grid-template-columns: 1fr; }
  .why__row-2 { grid-template-columns: 1fr; }
  .why__item  { border-right: none !important; }

  /* Waitlist */
  .waitlist__inner { grid-template-columns: 1fr; gap: 32px; }
  .waitlist-form { flex-direction: column; }
  .waitlist-form input[type="email"] { border-right: 1px solid var(--border); border-radius: 3px; }
  .waitlist-form .btn { border-radius: 3px; }

  /* Final CTA */
  .final-cta__inner { grid-template-columns: 1fr; gap: 36px; }
  .final-cta .btn-group { min-width: unset; }

  /* Feature */
  .feature { grid-template-columns: 1fr; }
  .feature__content { padding: 48px 24px; }

  /* Btn group */
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { width: 100%; text-align: center; }

  /* Footer bottom */
  .page-footer__bottom { flex-direction: column; align-items: flex-start; }
}
