/* ── Join page ────────────────────────────────────────────────── */

/* Hero */
.join-hero {
  min-height: 68vh;
  display: flex;
  align-items: flex-end;
  padding: clamp(100px, 16vh, 180px) clamp(20px, 4vw, 56px) clamp(52px, 7vh, 88px);
  background: var(--cream);
}

.join-hero-inner { max-width: 820px; }

.join-headline {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.94;
  font-size: clamp(44px, 7.2vw, 120px);
  margin-top: 18px;
}

.join-lead {
  margin-top: 28px;
  font-size: clamp(15px, 1.1vw, 18px);
  color: var(--sub);
  max-width: 42ch;
  line-height: 1.65;
}

/* ── Plans ──────────────────────────────────────────────────── */
.plans-section {
  background: var(--cream);
  padding: clamp(60px, 8vh, 100px) clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}

@media (max-width: 1100px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .plans-grid { grid-template-columns: 1fr; }
}

.plan-card {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  transition: border-color .3s, transform .35s var(--ease-out), box-shadow .35s;
}

.plan-card:hover {
  border-color: rgba(23,19,16,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -15px rgba(23,19,16,0.12);
}

.plan-card.featured {
  background: var(--dark-teal);
  border-color: transparent;
  color: var(--ink-inv);
}

.plan-card.featured:hover {
  border-color: rgba(42,204,195,0.3);
  box-shadow: 0 24px 60px -15px rgba(7,32,31,0.5);
}

.plan-no {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sub);
}

.plan-card.featured .plan-no { color: var(--sub-dark); }

.plan-badge {
  display: inline-block;
  margin-left: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: rgba(42,204,195,0.15);
  padding: 3px 8px;
  border-radius: var(--r-pill);
}

.plan-name {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  font-size: clamp(26px, 2.6vw, 40px);
  line-height: 1.05;
  margin-top: 20px;
}

.plan-card.featured .plan-name { color: var(--accent-dark); }

.plan-tagline {
  font-size: 13px;
  color: var(--sub);
  margin-top: 8px;
  line-height: 1.5;
}

.plan-card.featured .plan-tagline { color: var(--sub-dark); }

.plan-price {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.plan-card.featured .plan-price { border-color: var(--line-dark); }

.plan-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 3vw, 50px);
  letter-spacing: -0.03em;
  line-height: 1;
}

.plan-period {
  font-size: 13px;
  color: var(--sub);
  margin-top: 4px;
}

.plan-card.featured .plan-period { color: var(--sub-dark); }

.plan-features {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--sub);
  line-height: 1.45;
}

.plan-card.featured .plan-features li { color: var(--sub-dark); }

.plan-features li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='7.5' fill='none' stroke='rgba(23,19,16,0.2)'/%3E%3Cpath d='M4.5 8l2.5 2.5 4.5-4.5' stroke='%230E9E99' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center no-repeat;
}

.plan-card.featured .plan-features li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='7.5' fill='none' stroke='rgba(42,204,195,0.3)'/%3E%3Cpath d='M4.5 8l2.5 2.5 4.5-4.5' stroke='%232ACCC3' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
}

.plan-cta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  transition: gap .3s var(--ease-out);
}

.plan-card.featured .plan-cta { color: var(--accent-dark); }
.plan-cta:hover { gap: 14px; }

/* ── Pricing groups (Coworking · Training · Studio · Launch) ──── */
.pricing-group { margin-top: clamp(52px, 8vh, 96px); }
.pricing-group:first-of-type { margin-top: 44px; }

.pricing-group-title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1;
  margin-top: 12px;
}

.pricing-group-sub {
  margin-top: 14px;
  color: var(--sub);
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 56ch;
}

/* column-count variants of the plans grid */
.plans-grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.plans-grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

@media (max-width: 1100px) {
  .plans-grid.cols-3,
  .plans-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .plans-grid.cols-3,
  .plans-grid.cols-2 { grid-template-columns: 1fr; }
}

/* secondary price points under the headline amount */
.plan-price-alt {
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--sub);
  line-height: 1.5;
}

.plan-card.featured .plan-price-alt { color: var(--sub-dark); }

/* podcast studio à-la-carte pricing list */
.studio-pricing {
  margin-top: 30px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--cream);
  overflow: hidden;
  max-width: 760px;
}

.studio-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 16px clamp(18px, 2.5vw, 26px);
  border-bottom: 1px solid var(--line);
}

.studio-row:last-child { border-bottom: none; }

.studio-row-label { font-size: 14.5px; color: var(--ink); line-height: 1.4; }

.studio-row-price {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--accent);
  white-space: nowrap;
}

.pricing-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--sub);
  line-height: 1.6;
  max-width: 60ch;
}

.pricing-note strong { color: var(--ink); font-weight: 700; }

/* ── Perks / All-access section ──────────────────────────────── */
.perks-section {
  background: var(--cream);
  padding: clamp(60px, 8vh, 100px) clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
}

.perks-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

@media (max-width: 780px) {
  .perks-inner { grid-template-columns: 1fr; }
}

.perks-headline {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(36px, 4vw, 62px);
  line-height: 0.96;
  margin-top: 16px;
}

.perks-sub {
  margin-top: 20px;
  color: var(--sub);
  font-size: 15px;
  line-height: 1.65;
  max-width: 36ch;
}

.perks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.perk-item {
  padding: 22px 20px;
  border: 1px solid var(--line);
  margin: -1px -1px 0 0;
}

.perk-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(14,158,153,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 12px;
}

.perk-name {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
}

.perk-desc {
  font-size: 13px;
  color: var(--sub);
  margin-top: 4px;
  line-height: 1.5;
}

/* ── Join CTA strip ──────────────────────────────────────────── */
.join-cta-strip {
  background: var(--cream);
  padding: clamp(64px, 9vw, 110px) clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.join-cta-text {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(32px, 4.4vw, 72px);
  line-height: 0.97;
  max-width: 14ch;
}

.join-cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════
   BEYOND THE SPACE — innovation & leadership (dark editorial band)
═══════════════════════════════════════════════════════════════ */
.beyond {
  position: relative;
  isolation: isolate;
  background: var(--dark-teal);
  color: var(--ink-inv);
  padding: clamp(76px, 13vh, 150px) clamp(20px, 4vw, 56px);
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
}

/* atmospheric corner glows */
.beyond::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(58% 60% at 12% -5%, rgba(42, 204, 195, 0.16), transparent 62%),
    radial-gradient(46% 55% at 105% 108%, rgba(14, 158, 153, 0.20), transparent 60%);
  pointer-events: none;
}

/* faint grid texture, softly masked toward the centre */
.beyond::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(var(--line-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(72% 62% at 50% 28%, #000, transparent 78%);
  mask-image: radial-gradient(72% 62% at 50% 28%, #000, transparent 78%);
  opacity: 0.5;
  pointer-events: none;
}

.beyond-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.beyond-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.beyond-eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.beyond-headline {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  font-size: clamp(40px, 6.4vw, 86px);
  margin: clamp(16px, 2.4vh, 24px) 0 0;
  max-width: 15ch;
}

.beyond-headline .grad {
  background: linear-gradient(115deg, var(--accent-dark) 8%, var(--accent) 92%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.beyond-lead {
  margin: clamp(20px, 3vh, 30px) 0 0;
  max-width: 60ch;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.6;
  color: var(--sub-dark);
}

.beyond-grid {
  list-style: none;
  margin: clamp(44px, 6.5vh, 76px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.5vw, 22px);
}

.beyond-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 2.4vw, 40px);
  background: rgba(233, 243, 242, 0.035);
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), border-color 0.45s var(--ease-out), background 0.45s;
}

/* accent line that grows across the top on hover */
.beyond-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--accent-dark), transparent);
  transition: width 0.55s var(--ease-out);
}

.beyond-card:hover {
  transform: translateY(-6px);
  background: rgba(233, 243, 242, 0.06);
  border-color: color-mix(in srgb, var(--accent-dark) 42%, transparent);
}

.beyond-card:hover::before {
  width: 100%;
}

.beyond-ico {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: clamp(18px, 2vh, 26px);
  border-radius: 15px;
  color: var(--accent-dark);
  background: color-mix(in srgb, var(--accent) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent-dark) 28%, transparent);
  transition: transform 0.45s var(--ease-out);
}

.beyond-card:hover .beyond-ico {
  transform: scale(1.06) rotate(-3deg);
}

.beyond-ico svg {
  width: 26px;
  height: 26px;
}

.beyond-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.18;
  font-size: clamp(19px, 1.5vw, 24px);
  margin: 0 0 12px;
  color: var(--ink-inv);
}

.beyond-card p {
  margin: 0;
  font-size: clamp(14px, 1vw, 15.5px);
  line-height: 1.62;
  color: var(--sub-dark);
}

.beyond-cta {
  margin-top: clamp(40px, 6vh, 72px);
  padding-top: clamp(28px, 4vh, 44px);
  border-top: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 3vw, 40px);
  flex-wrap: wrap;
}

.beyond-cta-text {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: clamp(20px, 2vw, 30px);
  color: var(--ink-inv);
  max-width: 20ch;
}

.beyond-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.beyond .beyond-ghost {
  background: transparent;
  color: var(--ink-inv);
  border-color: var(--line-dark);
}

.beyond .beyond-ghost:hover {
  border-color: var(--accent-dark);
  color: #fff;
  filter: none;
  box-shadow: none;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .beyond-grid { grid-template-columns: 1fr; }
  .beyond-cta { flex-direction: column; align-items: flex-start; }
}

/* Beyond section acting as the page hero — extra top room to clear the fixed nav */
.beyond--hero { padding-top: clamp(112px, 17vh, 190px); }

/* Nav sitting over the dark hero: light logo + light links until scrolled (.solid) */
.sitenav .brand img.brand-logo--light { display: none; }
.sitenav--over-dark:not(.solid) .brand img.brand-logo--dark { display: none; }
.sitenav--over-dark:not(.solid) .brand img.brand-logo--light { display: block; }
.sitenav--over-dark:not(.solid) .links a:not(.join) { color: var(--ink-inv); }
