/* ===== MULTI-PAGE ADDITIONS ===== */

/* ============ HERO VARIANTS ============ */
.hero--landing {
  padding-top:    clamp(48px, 8vw, 86px);
  padding-bottom: 70px;
}

.hero--landing::before {
  content:         "";
  position:        absolute;
  inset:           0;
  z-index:         -1;
  pointer-events:  none;
  background:      radial-gradient(680px 380px at 50% -6%, rgba(139,92,246,.22), transparent 66%);
}

/* ============ HOME PANELS ============ */
.panels {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   16px;
  margin-top:            48px;
  text-align:            left;
}

.panel {
  display:       block;
  background:    var(--surface);
  border:        1px solid var(--line);
  border-radius: var(--radius);
  padding:       26px;
  transition:
    border-color .25s,
    transform    .25s;
}

.panel__icon {
  width:         46px;
  height:        46px;
  border-radius: 12px;
  display:       grid;
  place-items:   center;
  background:    rgba(139,92,246,.14);
  border:        1px solid rgba(139,92,246,.35);
  margin-bottom: 18px;
}

.panel__icon svg {
  width:  22px;
  height: 22px;
  stroke: var(--gold);
}

.panel:hover {
  border-color: var(--gold);
  transform:    translateY(-4px);
}

.panel__kicker {
  font-family:    var(--font-mono);
  font-size:      11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color:          var(--gold);
}

.panel h3 {
  margin:    14px 0 8px;
  font-size: 1.35rem;
}

.panel p {
  font-size: .92rem;
}

.panel__link {
  display:        inline-block;
  margin-top:     16px;
  font-family:    var(--font-mono);
  font-size:      12px;
  font-weight:    700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color:          var(--gold);
}

/* ============ GENERIC SECTION ============ */
.section {
  padding: clamp(76px, 8vw, 112px) 0;
}

#members {
  padding-top: clamp(34px, 4.5vw, 54px);
}

/* ============ SECTION HEADER ============ */
.section__header {
  text-align: center;
  max-width:  62ch;
  margin:     0 auto 56px;
}

#page-network .hero--network .wrap,
#page-membership #members .section__header {
  text-align: center;
}

.hero--network .kicker {
  font-size: 13.5px;
}

.section__header h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.section__header h1,
.section__header h2 {
  margin-top: 14px;
}

.section__header p {
  margin-top: 14px;
}

/* ============ BENEFITS GRID ============ */
.benefits {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   18px;
}

.benefits--four {
  grid-template-columns: repeat(2, 1fr);
  gap:                   20px;
}

.benefits--four .benefit {
  padding:    32px;
  transition:
    border-color .25s,
    transform    .25s;
}

.benefits--four .benefit:hover {
  border-color: rgba(139,92,246,.45);
  transform:    translateY(-4px);
}

.benefits--four .benefit__top {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  margin-bottom:   20px;
}

.benefits--four .benefit__icon {
  width:         50px;
  height:        50px;
  border-radius: 13px;
  display:       grid;
  place-items:   center;
  background:    rgba(139,92,246,.14);
  border:        1px solid rgba(139,92,246,.35);
}

.benefits--four .benefit__icon svg {
  width:  24px;
  height: 24px;
  stroke: var(--gold);
  fill:   none;
}

.benefits--four .benefit__number {
  font-family:    var(--font-mono);
  font-size:      13px;
  font-weight:    700;
  letter-spacing: .08em;
  color:          var(--gold);
  opacity:        .45;
}

.benefits--four .benefit h3 {
  font-size:     1.3rem;
  margin-bottom: 10px;
}

.benefits--four .benefit p {
  font-size:   .95rem;
  color:       var(--muted);
  line-height: 1.65;
}

/* ============ PILLARS HEADER ============ */
.section__pillars-header {
  text-align:   center;
  max-width:    62ch;
  margin:       46px auto 28px;
}

.section__pillars-header h2 {
  margin-top: 12px;
}

.section__pillars-header p {
  margin-top: 12px;
}

/* ============ BENEFIT CARD (base) ============ */
.benefit {
  background:    var(--surface);
  border:        1px solid var(--line);
  border-radius: var(--radius);
  padding:       26px;
}

.benefit h3 {
  font-size:     1.12rem;
  margin-bottom: 8px;
}

.benefit p {
  font-size: .92rem;
}

/* ============ ASSESSMENT FORM ============ */
.assessment-form {
  max-width:     640px;
  margin:        0 auto;
  background:    var(--surface);
  border:        1px solid var(--line);
  border-radius: var(--radius);
  padding:       32px;
}

.assessment-form__field-group {
  margin-bottom: 16px;
}

.assessment-form label {
  display:        block;
  font-family:    var(--font-mono);
  font-size:      11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color:          var(--muted);
  margin-bottom:  7px;
}

.assessment-form input,
.assessment-form select,
.assessment-form textarea {
  width:         100%;
  background:    var(--ink-2);
  border:        1px solid var(--line);
  border-radius: 10px;
  padding:       13px 14px;
  color:         var(--text);
  font-family:   var(--font-body);
  font-size:     .95rem;
}

.assessment-form input:focus,
.assessment-form select:focus,
.assessment-form textarea:focus {
  outline:      none;
  border-color: var(--gold);
}

.assessment-form__row {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   14px;
}

.assessment-form .btn {
  width:           100%;
  justify-content: center;
  margin-top:      6px;
}

.assessment-form__success {
  text-align:  center;
  color:       var(--gold);
  font-family: var(--font-mono);
  font-size:   13px;
  margin-top:  16px;
}

/* collapsible state */
.assessment-form--collapsible {
  max-height: 0;
  overflow:   hidden;
  opacity:    0;
  transition:
    max-height .55s cubic-bezier(.2,.7,.2,1),
    opacity    .4s ease,
    margin-top .4s ease;
}

.assessment-form--collapsible.is-open {
  max-height: 1600px;
  opacity:    1;
  margin-top: 26px;
}

#assessToggle {
  margin-top: 8px;
}

/* ============ CROSSLINK ============ */
.crosslink {
  position:      relative;
  overflow:      hidden;
  padding:       clamp(78px, 10vw, 128px) 0;
  background:    var(--ink-2);
  border-top:    1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.crosslink::before {
  content:         "";
  position:        absolute;
  inset:           0;
  pointer-events:  none;
  background:      radial-gradient(120% 150% at 50% 0%, rgba(139,92,246,.20), transparent 60%);
}

.crosslink .wrap {
  position:        relative;
  z-index:         1;
  max-width:       760px;
  margin:          0 auto;
  display:         flex;
  flex-direction:  column;
  align-items:     center;
  text-align:      center;
  gap:             26px;
  padding:         0 24px;
  border:          none;
  background:      none;
  box-shadow:      none;
}

.crosslink__headline {
  font-family:    var(--font-display);
  font-weight:    800;
  font-size:      clamp(1.6rem, 4.4vw, 2.6rem);
  max-width:      18ch;
  margin:         0;
  padding:        0;
  border:         none;
  background:     none;
  box-shadow:     none;
  line-height:    1.14;
  letter-spacing: -.02em;
}

.crosslink__headline span {
  display:         block;
  margin-top:      10px;
  font-size:       clamp(1rem, 1.6vw, 1.15rem);
  font-weight:     400;
  color:           var(--gold);
  opacity:         1;
  letter-spacing:  0;
}

/* ============ NETWORK ORB ============ */
.network-orb {
  position:  relative;
  max-width: 600px;
  height:    360px;
  margin:    6px auto 30px;
}

.network-orb canvas {
  display: block;
  width:   100%;
  height:  100%;
  cursor:  grab;
}

.network-orb::after {
  content:        "";
  position:       absolute;
  inset:          0;
  pointer-events: none;
  background:     radial-gradient(closest-side, transparent 55%, #0a0815 92%);
}

/* ============ SECTION MODIFIER: BAND ============ */
.section--band {
  background:    var(--ink-2);
  border-top:    1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ============ UTILITIES ============ */
.text-center {
  text-align: center;
}

.kicker--centered {
  justify-content: center;
}

.hero__cta--centered {
  justify-content: center;
}

.hero__aux {
  margin-top: 16px;
  text-align: center;
}

.link-quiet {
  font-family:  var(--font-display);
  font-weight:  600;
  font-size:    .95rem;
  color:        var(--muted);
  transition:   color .2s;
}

.link-quiet span {
  color:               var(--gold);
  transition:          color .2s, background-size .3s ease;
  background-image:    linear-gradient(currentColor, currentColor);
  background-repeat:   no-repeat;
  background-position: 0 100%;
  background-size:     0% 1.5px;
  padding-bottom:      2px;
}

.link-quiet:hover {
  color: var(--text);
}

.link-quiet:hover span {
  color:           #a97bff;
  background-size: 100% 1.5px;
}

.stack--small {
  margin-top: 18px;
}

.stack--medium {
  margin-top: 22px;
}

/* ============ HERO: NETWORK VARIANT ============ */
.hero--network {
  padding:  clamp(46px, 7vw, 80px) 0 26px;
}

.hero--network .hero__title {
  margin: 18px auto 0;
}

/* ============ APPLY PAGE ============ */
/* Hero text and form now share one section (see #apply-form in HTML) with
   the page's own --ink tone (set in 01-tokens.css) — no seam between the
   header/hero and the form. */
#apply-form {
  padding-bottom: clamp(70px, 8vw, 100px);
}

.apply-embed {
  max-width: 650px;
  margin:    clamp(40px, 6vw, 64px) auto 0;
}

.price--large {
  font-size: 1.5rem;
}

/* ============ SKIP LINK ============ */
.skip-link {
  position:      absolute;
  left:          -9999px;
  top:           0;
  z-index:       200;
  background:    var(--gold);
  color:         #fff;
  font-family:   var(--font-mono);
  font-size:     13px;
  padding:       12px 18px;
  border-radius: 0 0 10px 0;
}

.skip-link:focus {
  left: 0;
}

/* ============ PHILOSOPHY BAND ============ */
.philosophy {
  padding:  96px 0;
  position: relative;
  overflow: hidden;
}

.philosophy::before {
  content:    "";
  position:   absolute;
  inset:      0;
  z-index:    -1;
  background: radial-gradient(640px 340px at 50% 0, var(--glow), transparent 70%);
}

.philosophy__inner {
  max-width:  900px;
  margin:     0 auto;
  text-align: center;
}

.philosophy__inner h2 {
  margin-top:   16px;
  max-width:    20ch;
  margin-left:  auto;
  margin-right: auto;
}

.philosophy__lead {
  margin-top:   18px;
  font-size:    clamp(1.05rem, 2vw, 1.2rem);
  color:        var(--text);
  max-width:    60ch;
  margin-left:  auto;
  margin-right: auto;
}

.philosophy__sub {
  margin-top:   14px;
  max-width:    62ch;
  margin-left:  auto;
  margin-right: auto;
}

/* ============ PROOF ROW ============ */
.proof-row {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   1px;
  background:            var(--line);
  border:                1px solid var(--line);
  border-radius:         var(--radius);
  overflow:              hidden;
  margin-top:            46px;
}

.proof-item {
  background: var(--surface);
  padding:    28px 22px;
}

.proof-item__number {
  font-family:  var(--font-display);
  font-weight:  800;
  font-size:    clamp(1.6rem, 3.4vw, 2.2rem);
  color:        var(--gold);
}

.proof-item__label {
  font-family:    var(--font-mono);
  font-size:      11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color:          var(--muted);
  margin-top:     8px;
  line-height:    1.5;
}

/* ============ VALUE GRID ============ */
.value {
  padding: 90px 0;
}

.value__grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   18px;
  margin-top:            46px;
}

.value-card {
  background:    var(--surface);
  border:        1px solid var(--line);
  border-radius: var(--radius);
  padding:       30px;
  transition:
    border-color .25s,
    transform    .25s;
}

.value-card:hover {
  border-color: var(--gold);
  transform:    translateY(-4px);
}

.value-card__icon {
  width:         46px;
  height:        46px;
  border-radius: 12px;
  display:       grid;
  place-items:   center;
  background:    rgba(139,92,246,.14);
  border:        1px solid rgba(139,92,246,.35);
  margin-bottom: 20px;
}

.value-card__icon svg {
  width:  22px;
  height: 22px;
  stroke: var(--gold);
  fill:   none;
}

.value-card h3 {
  font-size:     1.18rem;
  margin-bottom: 10px;
}

.value-card p {
  font-size: .93rem;
}

/* ============ UNLOCKS GRID ============ */
.unlocks {
  padding: 90px 0;
}

.unlocks__grid {
  display:               grid;
  grid-template-columns: repeat(4, 1fr);
  gap:                   16px;
  align-items:           stretch;
  margin-top:            14px;
}

.unlock {
  position:      relative;
  display:       flex;
  flex-direction: column;
  border:        1px solid var(--line);
  border-radius: 20px;
  background:    var(--surface);
  padding:       28px 24px;
  transition:
    border-color .25s,
    transform    .25s;
}

.unlock:hover {
  transform:    translateY(-4px);
  border-color: var(--line-strong);
}

.unlock--popular {
  border-color: rgba(139,92,246,.55);
  background:
    linear-gradient(180deg, rgba(139,92,246,.12), transparent 42%),
    var(--surface);
}

.unlock__badge {
  position:       absolute;
  top:            -11px;
  left:           50%;
  transform:      translateX(-50%);
  font-family:    var(--font-mono);
  font-size:      10px;
  font-weight:    700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color:          #fff;
  background:     linear-gradient(120deg, var(--gold), var(--gold-deep));
  padding:        5px 12px;
  border-radius:  999px;
  white-space:    nowrap;
}

.unlock__name {
  font-family:  var(--font-display);
  font-weight:  800;
  font-size:    1.3rem;
}

.unlock__audience {
  font-family: var(--font-mono);
  font-size:   11px;
  color:       var(--muted);
  margin-top:  8px;
  min-height:  30px;
  line-height: 1.4;
}

.unlock__revenue-band {
  display:        inline-block;
  align-self:     flex-start;
  font-family:    var(--font-mono);
  font-size:      12px;
  font-weight:    700;
  color:          var(--gold);
  background:     var(--surface-2);
  border:         1px solid var(--line);
  padding:        5px 11px;
  border-radius:  8px;
  margin-top:     14px;
}

.unlock__features {
  list-style:  none;
  display:     grid;
  gap:         11px;
  margin:      22px 0 0;
  padding-top: 22px;
  border-top:  1px solid var(--line);
}

.unlock__features li {
  display:     flex;
  gap:         10px;
  align-items: flex-start;
  font-size:   .88rem;
  color:       var(--text);
}

.unlock__features li svg {
  flex:   none;
  width:  17px;
  height: 17px;
  margin-top: 3px;
  stroke: var(--gold);
  fill:   none;
}

.unlock__price-wrap {
  margin-top:  auto;
  padding-top: 22px;
}

.unlock__price {
  font-family:  var(--font-display);
  font-weight:  800;
  font-size:    1.9rem;
  line-height:  1;
}

.unlock__price-period {
  font-size:   .82rem;
  color:       var(--muted);
  font-family: var(--font-mono);
  font-weight: 400;
}

.unlock__monthly-price {
  font-family: var(--font-mono);
  font-size:   11.5px;
  color:       var(--gold);
  margin-top:  8px;
}

.unlock .btn {
  width:           100%;
  justify-content: center;
  margin-top:      18px;
  padding:         14px;
}

.unlocks__note {
  text-align:  center;
  font-family: var(--font-mono);
  font-size:   11.5px;
  color:       var(--muted);
  margin-top:  30px;
}

/* ============ RESPONSIVE — multipage ============ */
@media (max-width: 980px) {
  .value__grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 860px) {
  .panels,
  .benefits,
  .benefits--four {
    grid-template-columns: 1fr;
  }

  .benefits--four .benefit {
    padding: 24px;
  }

  .benefits--four .benefit h3 {
    font-size: 1.18rem;
  }

  .benefits--four .benefit__top {
    margin-bottom: 16px;
  }
}

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

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

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

@media (max-width: 560px) {
  .network-orb {
    height: 280px;
  }

  .assessment-form__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero__cta .btn {
    width:           100%;
    justify-content: center;
  }

  .link-quiet {
    display: inline-block;
    padding: 8px 4px;
  }

  .crosslink .wrap .btn {
    width: 100%;
  }
}
