/* The Ripple Network — Join page */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--surface-page);
  color: var(--text-body);
  font-family: var(--font-text);
  font-size: var(--text-base);
  line-height: var(--leading-body);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
.section { padding: 108px 0; }
.section--tight { padding: 72px 0; }

/* type */
.display {
  font-family: var(--font-display);
  color: var(--text-heading);
  line-height: var(--leading-snug);
  font-weight: 400;
  margin: 0;
}
.h1 { font-size: clamp(40px, 5.6vw, 68px); line-height: 1.04; letter-spacing: -0.5px; }
.h2 { font-size: clamp(30px, 3.6vw, 44px); line-height: 1.08; }
.h3 { font-size: clamp(22px, 2.2vw, 28px); }
.lead { font-size: 21px; font-weight: 300; line-height: 1.55; color: var(--text-body); }
.muted { color: var(--text-muted); }
.coral { color: var(--ripple-coral); }
.center { text-align: center; }
.eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ripple-coral);
}

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-text); font-size: 16px; font-weight: 600;
  padding: 15px 30px; border-radius: 999px; cursor: pointer;
  border: 1.5px solid transparent; transition: transform .15s ease, background .2s ease, color .2s ease;
  letter-spacing: .01em; white-space: nowrap;
}
.btn:active { transform: scale(.98); }
.btn--primary { background: var(--ripple-coral); color: #fff; }
.btn--primary:hover { background: #d24f4b; }
.btn--teal { background: var(--ripple-teal); color: #fff; }
.btn--teal:hover { background: #015d59; }
.btn--ghost { background: transparent; color: var(--ripple-teal); border-color: var(--ripple-teal); }
.btn--ghost:hover { background: var(--ripple-teal); color: #fff; }
.btn--onteal { background: #fff; color: var(--ripple-teal); }
.btn--onteal:hover { background: var(--ripple-gold); color: var(--ripple-ink); }
.btn--lg { font-size: 17px; padding: 17px 36px; }

/* nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,235,249,0.86); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ripple-hairline);
}
.nav__row { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.nav__logo { height: 34px; }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a { font-size: 15px; font-weight: 500; color: var(--ripple-ink); }
.nav__links a:hover { color: var(--ripple-teal); }
@media (max-width: 860px){ .nav__links .nav__link { display: none; } }

/* hero */
.hero { position: relative; overflow: hidden; }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
  padding: 72px 0 88px;
}
@media (max-width: 940px){ .hero__grid { grid-template-columns: 1fr; gap: 44px; } }
.hero__badges { display: flex; align-items: center; gap: 14px; margin: 30px 0 14px; }
.avatars { display: flex; }
.avatars img {
  width: 44px; height: 44px; border-radius: 999px; object-fit: cover;
  border: 2.5px solid var(--surface-page); margin-left: -12px;
}
.avatars img:first-child { margin-left: 0; }
.hero__cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 34px; }
.hero__note { margin-top: 18px; font-size: 15px; }
.hero__note b { color: var(--ripple-teal); font-weight: 600; }

/* scrolling image columns */
.columns {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  height: 560px; overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}
@media (max-width: 940px){ .columns { height: 460px; } }
.col { display: flex; flex-direction: column; gap: 16px; }
.col--up { animation: scrollUp 34s linear infinite; }
.col--down { animation: scrollDown 40s linear infinite; }
.col img {
  width: 100%; border-radius: 14px; object-fit: cover; aspect-ratio: 3/4;
  box-shadow: 0 6px 22px rgba(70,40,80,0.10);
}
@keyframes scrollUp { from { transform: translateY(0); } to { transform: translateY(-50%); } }
@keyframes scrollDown { from { transform: translateY(-50%); } to { transform: translateY(0); } }
@media (prefers-reduced-motion: reduce){ .col--up, .col--down { animation: none; } }

/* logo strip / social proof marquee */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee__track { display: flex; gap: 18px; width: max-content; animation: slide 48s linear infinite; }
.marquee__track img { height: 190px; width: 260px; object-fit: cover; border-radius: 12px; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .marquee__track { animation: none; } }

/* generic cards grid */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px){ .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px){ .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface-card); border: 1px solid var(--border-hairline);
  border-radius: 14px; padding: 26px 28px; box-shadow: 0 2px 10px rgba(70,40,80,0.05);
}
.card__title { font-family: var(--font-display); font-size: 22px; color: var(--ripple-teal); margin: 0 0 8px; }
.card p { margin: 0; }

/* pain points */
.pain { display: flex; gap: 18px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--ripple-hairline); }
.pain__dot { flex: none; margin-top: 4px; }
.pain p { margin: 0; font-size: 18px; color: var(--text-body); }

/* testimonial */
.quote { display: flex; flex-direction: column; height: 100%; }
.quote__stars { color: var(--ripple-gold); letter-spacing: 3px; margin-bottom: 12px; font-size: 15px; }
.quote__body { font-size: 16px; line-height: 1.55; color: var(--text-body); margin: 0 0 20px; flex: 1; }
.quote__who { display: flex; align-items: center; gap: 12px; }
.quote__who img { width: 46px; height: 46px; border-radius: 999px; object-fit: cover; }
.quote__name { font-family: var(--font-display); font-size: 17px; color: var(--ripple-ink); }
.quote__role { font-size: 13px; color: var(--text-muted); }

/* pricing */
.price {
  background: var(--surface-dark); color: #fff; border-radius: 22px;
  padding: 56px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center;
  position: relative; overflow: hidden;
}
@media (max-width: 860px){ .price { grid-template-columns: 1fr; padding: 40px; } }
.price__fig { font-family: var(--font-display); font-size: 76px; line-height: 1; }
.price__fig span { font-size: 30px; color: var(--ripple-teal-light); }
.price__list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 13px; }
.price__list li { display: flex; gap: 12px; align-items: flex-start; color: var(--on-dark-body); font-size: 16px; }
.price__check { color: var(--ripple-gold); flex: none; font-weight: 700; }
.price__ripple { position: absolute; right: -140px; top: -140px; opacity: .5; }

/* learn tracks */
.track { display: flex; gap: 22px; padding: 26px; background: var(--surface-card); border: 1px solid var(--border-hairline); border-radius: 14px; box-shadow: 0 2px 10px rgba(70,40,80,0.05); }
.track__no { font-family: var(--font-display); font-size: 40px; color: var(--ripple-teal-light); line-height: 1; flex: none; width: 58px; }
.track h3 { margin: 0 0 6px; font-family: var(--font-display); font-weight: 400; font-size: 22px; color: var(--ripple-ink); }
.track p { margin: 0; font-size: 15px; color: var(--text-muted); }

/* founder */
.founder { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
@media (max-width: 860px){ .founder { grid-template-columns: 1fr; } }
.founder__img { border-radius: 18px; overflow: hidden; box-shadow: 0 14px 40px rgba(70,40,80,0.14); }
.founder__img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

/* experts */
.expert { text-align: center; }
.expert__img { border-radius: 14px; overflow: hidden; margin-bottom: 14px; box-shadow: 0 6px 18px rgba(70,40,80,0.08); }
.expert__img img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.expert__name { font-family: var(--font-display); font-size: 19px; color: var(--ripple-ink); }
.expert__role { font-size: 13px; color: var(--ripple-coral); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; margin-top: 3px; }

/* stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
@media (max-width: 860px){ .stats { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; } }
.stat__fig { font-family: var(--font-display); font-size: clamp(48px, 6vw, 76px); line-height: 1; color: #fff; }
.stat__cap { color: var(--on-dark-body); font-size: 15px; margin-top: 10px; max-width: 200px; }

/* faq */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--ripple-lilac-line); }
.faq__q { display: flex; justify-content: space-between; align-items: center; gap: 20px; width: 100%; background: none; border: 0; cursor: pointer; text-align: left; padding: 24px 4px; font-family: var(--font-display); font-size: 20px; color: var(--ripple-ink); }
.faq__sign { flex: none; color: var(--ripple-coral); font-size: 26px; line-height: 1; transition: transform .2s ease; }
.faq__item[data-open="true"] .faq__sign { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a p { margin: 0 4px 24px; color: var(--text-body); font-size: 16px; }

/* wall of love */
.wall { columns: 3; column-gap: 20px; }
@media (max-width: 940px){ .wall { columns: 2; } }
@media (max-width: 620px){ .wall { columns: 1; } }
.wall .card { break-inside: avoid; margin-bottom: 20px; }

/* dark section */
.dark { background: var(--surface-dark); color: #fff; }
.dark .display, .dark .h2 { color: #fff; }
.dark .eyebrow { color: var(--ripple-teal-light); }
.dark .lead { color: var(--on-dark-body); }

/* final cta */
.final { position: relative; overflow: hidden; text-align: center; }
.final__ripple { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); opacity: .16; }
.final__inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }

/* footer */
.footer { background: var(--ripple-ink); color: #cfc9d2; padding: 64px 0 40px; }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 860px){ .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer__logo { height: 30px; margin-bottom: 18px; }
.footer h4 { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin: 0 0 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 14px; }
.footer__bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; font-size: 13px; color: #8f8a96; flex-wrap: wrap; gap: 10px; }

/* video */
.video { position: relative; max-width: 940px; margin: 0 auto; border-radius: 18px; overflow: hidden; box-shadow: 0 18px 50px rgba(70,40,80,0.16); aspect-ratio: 16/9; background: var(--ripple-teal); }
.video iframe { width: 100%; height: 100%; border: 0; display: block; }
.video__poster { position: absolute; inset: 0; padding: 0; border: 0; cursor: pointer; background: none; width: 100%; height: 100%; }
.video__poster img { width: 100%; height: 100%; object-fit: cover; }
.video__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(1,58,55,.10), rgba(1,58,55,.55)); }
.video__play { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 84px; height: 84px; border-radius: 999px; background: var(--ripple-coral); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(0,0,0,.25); transition: transform .15s ease; }
.video__poster:hover .video__play { transform: translate(-50%,-50%) scale(1.06); }
.video__tri { width: 0; height: 0; border-style: solid; border-width: 15px 0 15px 25px; border-color: transparent transparent transparent #fff; margin-left: 6px; }
.video__label { position: absolute; left: 0; right: 0; bottom: 26px; text-align: center; color: #fff; font-family: var(--font-display); font-size: 20px; }

/* phases */
.phase { background: var(--surface-card); border: 1px solid var(--border-hairline); border-radius: 14px; padding: 28px; box-shadow: 0 2px 10px rgba(70,40,80,0.05); position: relative; }
.phase__meta { font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ripple-coral); }
.phase__no { font-family: var(--font-display); font-size: 46px; color: var(--ripple-teal-light); line-height: 1; margin: 6px 0 10px; }
.phase__title { font-family: var(--font-display); font-weight: 400; font-size: 23px; color: var(--ripple-ink); margin: 0 0 8px; }

/* weeks */
.weeks { background: var(--surface-dark); border-radius: 18px; padding: 40px 44px; }
.weeks__head { margin-bottom: 20px; }
.weeks__head .eyebrow, .weeks .eyebrow { color: var(--ripple-teal-light); }
.weeks__head .muted { color: var(--on-dark-body) !important; }
.week { display: grid; grid-template-columns: 150px 1fr; gap: 20px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.14); align-items: baseline; }
.week__no { font-family: var(--font-display); font-size: 17px; color: var(--ripple-gold); }
.week__t { font-family: var(--font-display); font-size: 19px; color: #fff; margin-bottom: 2px; }
.weeks .muted { color: var(--on-dark-body) !important; }
@media (max-width: 620px){ .week { grid-template-columns: 1fr; gap: 4px; } }

/* plans (pricing) */
.plans { display: flex; flex-direction: column; gap: 26px; }
.plan { border-radius: 22px; padding: 42px; position: relative; overflow: hidden; }
.plan--dark { background: var(--surface-dark); color: #fff; }
.plan--light { background: var(--surface-card); border: 1px solid var(--border-card); box-shadow: 0 2px 12px rgba(70,40,80,0.06); }
.plan--hero { display: grid; grid-template-columns: 1.5fr 0.9fr; gap: 44px; align-items: center; }
.plan__hero-copy, .plan__hero-buy { position: relative; z-index: 2; }
.plan__hero-buy { border-left: 1px solid rgba(255,255,255,.16); padding-left: 44px; }
@media (max-width: 860px){ .plan--hero { grid-template-columns: 1fr; gap: 28px; } .plan__hero-buy { border-left: 0; padding-left: 0; } }
.memberships { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
@media (max-width: 720px){ .memberships { grid-template-columns: 1fr; } }
.plan--alumni { background: var(--surface-soft); }
.plan__badge { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ripple-ink); background: var(--ripple-gold); padding: 7px 14px; border-radius: 999px; margin-bottom: 18px; }
.plan__badge--soft { background: #fff; color: var(--ripple-teal); border: 1px solid var(--ripple-lilac-line); }
.plan__badge--gold { background: var(--ripple-gold); color: var(--ripple-ink); }
.plan__name { font-family: var(--font-display); font-weight: 400; font-size: 30px; color: #fff; margin: 0; }
.plan__sub { margin: 4px 0 0; color: var(--ripple-teal-light); font-size: 15px; }
.plan__price { font-family: var(--font-display); font-size: 60px; color: #fff; line-height: 1; margin: 22px 0 6px; }
.plan__price span { font-size: 22px; color: var(--ripple-teal-light); }
.plan__list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.plan__list--2col { grid-template-columns: 1fr 1fr; column-gap: 26px; }
@media (max-width: 560px){ .plan__list--2col { grid-template-columns: 1fr; } }
.plan__list li { display: flex; gap: 12px; align-items: flex-start; color: var(--on-dark-body); font-size: 15px; }
.plan__list--light li { color: var(--text-body); }
.ck { color: var(--ripple-gold); font-weight: 700; flex: none; }
.ck--teal { color: var(--ripple-teal); }

/* experts */
.experts { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
@media (max-width: 860px){ .experts { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; } }
@media (max-width: 480px){ .experts { grid-template-columns: 1fr; } }
.expert__bio { font-size: 13px; color: var(--text-muted); margin: 10px 0 0; line-height: 1.5; }

/* corporate band */
.corp { background: var(--surface-card); border: 1px solid var(--border-card); border-radius: 18px; padding: 40px 44px; display: flex; align-items: center; justify-content: space-between; gap: 28px; box-shadow: 0 2px 12px rgba(70,40,80,0.05); flex-wrap: wrap; }

/* section header helper */
.shead { max-width: 720px; margin-bottom: 48px; }
.shead .h2 { margin: 12px 0 0; }
.shead p { margin: 16px 0 0; }
.shead--center { margin-left: auto; margin-right: auto; text-align: center; }

/* member log-in link — stays visible on mobile (unlike the .nav__link section links) */
.nav__links a.nav__login { font-size: 15px; font-weight: 600; color: var(--ripple-teal); white-space: nowrap; }
.nav__links a.nav__login:hover { color: var(--ripple-ink); }
@media (max-width: 620px){
  .wrap { padding: 0 20px; }
  .nav__logo { height: 26px; }
  .nav__links { gap: 14px; }
  .nav .btn--primary { padding: 10px 18px; font-size: 14px; }
}

/* mobile hamburger menu */
.nav__toggle {
  display: none; width: 42px; height: 42px; padding: 0; border: 0; background: transparent;
  cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--ripple-ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__menu { background: rgba(246,235,249,0.98); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border-bottom: 1px solid var(--ripple-hairline); }
.nav__menu-inner { display: flex; flex-direction: column; padding-top: 4px; padding-bottom: 16px; }
.nav__menu-inner a { padding: 14px 2px; font-size: 17px; font-weight: 500; color: var(--ripple-ink); border-top: 1px solid var(--ripple-hairline); }
.nav__menu-inner a:first-child { border-top: 0; }
.nav__menu-inner a:hover { color: var(--ripple-teal); }
@media (max-width: 860px){ .nav__toggle { display: flex; } }
@media (min-width: 861px){ .nav__menu { display: none !important; } }

/* apply lightbox (Typeform) */
.applym {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(30,16,38,.62); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  animation: applymIn .2s ease;
}
@keyframes applymIn { from { opacity: 0; } to { opacity: 1; } }
.applym__dialog {
  position: relative; width: 100%; max-width: 760px; height: 86vh; max-height: 900px;
  background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.4);
}
.applym__frame { width: 100%; height: 100%; border: 0; display: block; }
.applym__close {
  position: absolute; top: 12px; right: 14px; z-index: 2;
  width: 40px; height: 40px; border-radius: 999px; border: 0; cursor: pointer;
  background: rgba(0,0,0,.55); color: #fff; font-size: 26px; line-height: 1;
  display: flex; align-items: center; justify-content: center; transition: background .2s ease;
}
.applym__close:hover { background: rgba(0,0,0,.82); }
@media (max-width: 620px){
  .applym { padding: 0; }
  .applym__dialog { height: 100%; max-height: none; border-radius: 0; }
}
