/* ============ YOKED — design system ============ */
:root {
  --navy: #131b4d;
  --navy-deep: #0c1236;
  --purple: #6b4eff;
  --pink: #f0478a;
  --coral: #ff6b5e;
  --cream: #faf9fc;
  --ink: #1c2145;
  --ink-soft: #565d85;
  --white: #ffffff;
  --grad: linear-gradient(115deg, #1f2a6b 0%, #6b4eff 48%, #f0478a 100%);
  --grad-soft: linear-gradient(115deg, #6b4eff, #f0478a);
  --radius: 24px;
  --font: 'Poppins', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--purple); color: #fff; }

h1,h2,h3 { font-weight: 800; line-height: 1.12; letter-spacing: -0.02em; }
.wrap { width: min(1180px, 92vw); margin: 0 auto; }

/* ============ preloader ============ */

/* ============ branded intro ============ */
#intro {
  position: fixed; inset: 0; z-index: 200; background: #0a0f2e;
  display: flex; align-items: center; justify-content: center;
  animation: introLift 1s cubic-bezier(.76,0,.24,1) 2.7s forwards;
  pointer-events: none;
}
#intro svg { width: min(340px, 64vw); overflow: visible; }
#intro svg .st {
  fill: none; stroke: url(#wg); stroke-width: 3;
  stroke-dasharray: 1; stroke-dashoffset: 1;
  animation: drawP .8s cubic-bezier(.45,0,.3,1) forwards;
}
#intro svg .st:nth-of-type(1) { animation-delay: .1s }
#intro svg .st:nth-of-type(2) { animation-delay: .28s }
#intro svg .st:nth-of-type(3) { animation-delay: .46s }
#intro svg .st:nth-of-type(4) { animation-delay: .64s }
#intro svg .st:nth-of-type(5) { animation-delay: .82s }
#intro svg .st:nth-of-type(6) { animation-delay: .96s }
#intro svg .st:nth-of-type(7) { animation-delay: 1.1s }
#intro svg .st:nth-of-type(8) { animation-delay: 1.24s }
#intro svg .fl { fill: #fff; fill-opacity: 0; animation: fillP .6s ease 1.85s forwards; }
@keyframes drawP { to { stroke-dashoffset: 0 } }
@keyframes fillP { to { fill-opacity: 1 } }
@keyframes introLift { to { transform: translateY(-100%); visibility: hidden; } }

/* ============ nav ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .4s, box-shadow .4s, backdrop-filter .4s;
}
.nav.scrolled {
  background: rgba(12, 18, 54, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(12,18,54,.25);
}
.nav-inner {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 18px 0; position: relative;
}
.nav-logo { justify-self: center; }
.nl-left { justify-self: start; }
.nl-right { justify-self: end; display: flex; gap: 28px; align-items: center; }
.nl-right a { color: rgba(255,255,255,.85); font-size: .92rem; font-weight: 500; transition: color .25s; }
.nl-right a:hover { color: #fff; }
.nl-right a.btn-primary { color: #fff; }
.nl-right a.btn-white { color: #131b4d; }
.nav-logo img { height: 30px; }
.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.85); font-size: .92rem; font-weight: 500;
  transition: color .25s;
}
.nav-links a:hover { color: #fff; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 34px; border-radius: 999px; border: none;
  font-weight: 700; font-size: 1rem; letter-spacing: .01em;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s;
  will-change: transform;
}
.btn-primary {
  background: var(--grad-soft); color: #fff;
  box-shadow: 0 10px 30px rgba(107,78,255,.35);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 40px rgba(240,71,138,.4); }
.btn-white {
  background: #fff; color: #131b4d;
  box-shadow: 0 8px 30px rgba(0,0,0,.22);
}
.btn-white:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 38px rgba(0,0,0,.3); }
.btn-ghost {
  background: rgba(255,255,255,.08); color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.16); transform: translateY(-3px); }
.nav .btn { padding: 11px 26px; font-size: .9rem; }
.nav-burger { display: none; background: none; border: none; }

/* ============ hero ============ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column;
  background: #0a0f2e; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0; transform: scale(1.1); will-change: transform, opacity;
  animation: heroPhoto 2.6s cubic-bezier(.2,.6,.2,1) 2.75s forwards;
}
@keyframes heroPhoto { to { opacity: 1; transform: scale(1); } }
.hero-shade {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to top, rgba(10,12,24,.44) 0%, rgba(10,12,24,.08) 26%, transparent 40%),
              linear-gradient(to bottom, rgba(10,12,24,.22) 0%, transparent 13%);
}
.hero-bottom {
  position: relative; z-index: 2; margin-top: auto;
  padding: 140px 0 38px; text-align: left;
}
.eyebrow {
  display: block; color: rgba(255,255,255,.92); font-size: .76rem; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase; margin-bottom: 22px;
  opacity: 0; animation: fadeUp .8s 3.3s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero-lines {
  color: #fff; font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  line-height: 1.06; letter-spacing: -.03em; font-weight: 800;
  text-shadow: 0 3px 26px rgba(8,10,26,.55);
}
.hero-lines .line { display: block; overflow: hidden; padding-bottom: .12em; margin-bottom: -.07em; white-space: nowrap; }
.hero-lines .line > span {
  display: inline-block; transform: translateY(118%);
  animation: lineUp 1.15s cubic-bezier(.16,.8,.24,1) forwards;
  will-change: transform;
}
.hero-lines .line:nth-child(1) > span { animation-delay: 3.4s }
.hero-lines .line:nth-child(2) > span { animation-delay: 3.53s }
.hero-lines .line:nth-child(3) > span { animation-delay: 3.66s }
.hero-lines em {
  font-family: 'Fraunces', Georgia, serif; font-style: italic; font-weight: 440;
  letter-spacing: -.01em; color: #fff; padding-right: .05em;
}
@keyframes lineUp { to { transform: translateY(0) } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px) } to { opacity: 1; transform: none } }
.hero p.sub {
  color: rgba(255,255,255,.7); font-size: clamp(1rem, 1.5vw, 1.16rem);
  max-width: 40ch; margin: 28px 0 38px; font-weight: 400;
  opacity: 0; animation: fadeUp .9s 2.85s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero-ctas {
  display: flex; gap: 22px; flex-wrap: wrap; align-items: center; margin-top: 30px;
  opacity: 0; animation: fadeUp .9s 3.85s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero .btn-primary { padding: 17px 44px; font-size: 1.05rem; }
.link-arrow { color: rgba(255,255,255,.7); font-weight: 600; font-size: .95rem; transition: color .25s; }
.link-arrow:hover { color: #fff; }
@keyframes fadeIn { to { opacity: 1 } }

.hero-meta {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.72); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase;
  opacity: 0; animation: fadeIn 1s 4.1s forwards;
}
.hero-meta .wrap { display: flex; justify-content: space-between; gap: 20px; padding: 20px 0 26px; flex-wrap: wrap; }

/* ============ manifesto ============ */
.manifesto { padding: clamp(110px, 16vw, 190px) 0; background: var(--cream); }
.manifesto .kicker { margin-bottom: 34px; }
.kicker {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--purple);
}
.manifesto h2 {
  font-size: clamp(1.7rem, 4.4vw, 3.4rem); max-width: 22ch; color: var(--ink);
}
.manifesto h2 .w { display: inline-block; opacity: .12; transition: none; }
.manifesto h2 .accent {
  background: var(--grad-soft);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.manifesto .foot { margin-top: 38px; color: var(--ink-soft); font-size: 1.05rem; max-width: 52ch; }

/* ============ how it works ============ */
.how { padding: clamp(90px, 12vw, 150px) 0; background: #fff; border-radius: 56px 56px 0 0; }
.sec-head { margin-bottom: clamp(48px, 7vw, 80px); }
.sec-head h2 { font-size: clamp(1.8rem, 3.8vw, 2.9rem); margin-top: 14px; }
.sec-head p { color: var(--ink-soft); margin-top: 14px; max-width: 56ch; font-size: 1.05rem; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; position: relative; }
.step {
  background: var(--cream); border-radius: var(--radius); padding: 42px 34px;
  position: relative; overflow: hidden;
  border: 1px solid rgba(107,78,255,.08);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
}
.step:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(31,42,107,.12); }
.step .num {
  font-size: 4.4rem; font-weight: 800; line-height: 1;
  background: var(--grad-soft);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  opacity: .9; margin-bottom: 20px;
}
.step h3 { font-size: 1.35rem; margin-bottom: 12px; }
.step p { color: var(--ink-soft); font-size: .98rem; }

/* ============ different (dark) ============ */
.different {
  background: var(--navy-deep); color: #fff;
  padding: clamp(100px, 13vw, 160px) 0;
  position: relative; overflow: hidden;
}
.different .kicker { color: #ff7ab1; }
.different h2 { color: #fff; }
.diff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 60px; }
.diff-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 40px 36px;
  backdrop-filter: blur(6px);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), background .35s, border-color .35s;
}
.diff-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.09); border-color: rgba(255,122,177,.4); }
.diff-card .icon {
  width: 54px; height: 54px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  background: var(--grad-soft); margin-bottom: 24px; font-size: 1.4rem;
  box-shadow: 0 8px 24px rgba(240,71,138,.35);
}
.diff-card .icon svg { width: 26px; height: 26px; stroke: #fff; }
.diff-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.diff-card p { color: rgba(255,255,255,.66); font-size: .96rem; }
.different .swirl-bg {
  position: absolute; left: -14%; bottom: -18%; width: 46vw; opacity: .05; pointer-events: none;
}

/* ============ founders ============ */
.founders { padding: clamp(100px, 13vw, 170px) 0; background: var(--cream); overflow: hidden; }
.founders-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.founders-photo { position: relative; }
.founders-photo .frame {
  border-radius: 30px; overflow: hidden;
  box-shadow: 0 40px 90px rgba(31,42,107,.28);
}
.founders-photo .frame img.subject {
  display: block; width: 100%; will-change: transform; scale: 1.07;
}
.founders-copy .quote {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 800; line-height: 1.25;
  margin: 26px 0;
}
.founders-copy .quote em {
  font-style: normal;
  background: var(--grad-soft); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.founders-copy p { color: var(--ink-soft); margin-bottom: 18px; font-size: 1.02rem; }
.founders-copy .sig { font-weight: 700; color: var(--ink); margin-top: 26px; }

/* ============ events ============ */
.events {
  background: var(--navy); color: #fff;
  padding: clamp(100px, 13vw, 160px) 0;
  border-radius: 56px; margin: 0 clamp(8px, 1.4vw, 20px);
  position: relative; overflow: hidden;
}
.events .kicker { color: #ff7ab1; }
.events h2 { color: #fff; }
.events .sec-head p { color: rgba(255,255,255,.66); }
.event-chips { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 10px; }
.chip {
  padding: 16px 28px; border-radius: 999px; font-weight: 600; font-size: .98rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  transition: transform .3s, background .3s, border-color .3s;
  cursor: default;
}
.chip:hover { transform: translateY(-4px) rotate(-1deg); background: var(--grad-soft); border-color: transparent; }
.events .note {
  margin-top: 44px; padding: 26px 32px; border-radius: 20px;
  background: rgba(255,255,255,.05); border: 1px dashed rgba(255,255,255,.25);
  color: rgba(255,255,255,.8); font-size: .98rem; max-width: 640px;
}
.events .note strong { color: #fff; }

/* ============ membership ============ */
.membership { padding: clamp(100px, 13vw, 170px) 0; background: var(--cream); }
.member-card {
  position: relative; max-width: 700px; margin: 0 auto;
  border-radius: 32px; padding: 3px;
  background: var(--grad);
  box-shadow: 0 30px 80px rgba(107,78,255,.25);
}
.member-inner {
  background: #fff; border-radius: 29px; padding: clamp(38px, 6vw, 64px);
  text-align: center;
}
.member-inner .tag {
  display: inline-block; background: var(--grad-soft); color: #fff;
  font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  padding: 9px 20px; border-radius: 999px; margin-bottom: 24px;
}
.member-inner h3 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 6px; }
.member-inner .price { font-size: clamp(2.6rem, 5vw, 3.6rem); font-weight: 800;
  background: var(--grad-soft); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.member-inner .price small { font-size: 1.1rem; color: var(--ink-soft); -webkit-text-fill-color: var(--ink-soft); font-weight: 600; }
.member-list { list-style: none; margin: 30px 0 36px; text-align: left; display: grid; gap: 14px; }
.member-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); font-size: .99rem; }
.member-list li::before {
  content: '✓'; flex: 0 0 22px; height: 22px; border-radius: 50%;
  background: var(--grad-soft); color: #fff; font-size: .72rem; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center; margin-top: 3px;
}
.member-inner .fine { font-size: .84rem; color: var(--ink-soft); margin-top: 18px; }

/* ============ safety strip ============ */
.safety { padding: 0 0 clamp(90px, 12vw, 150px); background: var(--cream); }
.safety-inner {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.safe-item {
  border: 1px solid rgba(31,42,107,.1); border-radius: 20px; padding: 30px 28px;
  background: #fff; display: flex; gap: 18px; align-items: flex-start;
  transition: transform .3s, box-shadow .3s;
}
.safe-item:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(31,42,107,.1); }
.safe-item .ic {
  flex: 0 0 44px; height: 44px; border-radius: 13px; background: rgba(107,78,255,.1);
  display: flex; align-items: center; justify-content: center;
}
.safe-item .ic svg { width: 22px; height: 22px; stroke: var(--purple); }
.safe-item h4 { font-size: 1.02rem; margin-bottom: 5px; }
.safe-item p { font-size: .88rem; color: var(--ink-soft); }

/* ============ final CTA ============ */
.cta {
  margin: 0 clamp(8px, 1.4vw, 20px) clamp(20px, 3vw, 40px);
  border-radius: 56px; overflow: hidden; position: relative;
  background: var(--navy-deep);
  padding: clamp(110px, 15vw, 180px) 0;
  text-align: center; color: #fff;
}
.cta h2 { font-size: clamp(2.2rem, 5.6vw, 4.2rem); max-width: 17ch; margin: 0 auto 22px; position: relative; z-index: 2;}
.cta h2 .grad-text { background: linear-gradient(90deg,#b5a3ff,#ff7ab1); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cta p { color: rgba(255,255,255,.7); max-width: 52ch; margin: 0 auto 44px; position: relative; z-index: 2; }
.cta .btn { position: relative; z-index: 2; }
.cta .interest { margin-top: 54px; position: relative; z-index: 2; }
.cta .interest p { font-size: .92rem; margin-bottom: 16px; }
.interest-form {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
}
.interest-form input {
  width: min(360px, 80vw); padding: 15px 24px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.08);
  color: #fff; font-family: inherit; font-size: .95rem; outline: none;
  backdrop-filter: blur(8px);
}
.interest-form input::placeholder { color: rgba(255,255,255,.45); }
.interest-form input:focus { border-color: #ff7ab1; }
.interest-msg { font-size: .88rem; margin-top: 14px; color: #4ade80; min-height: 1.2em; }

/* ============ footer ============ */
footer {
  background: var(--cream); padding: 60px 0 40px;
}
.foot-grid { display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; }
.foot-grid img { height: 56px; }
.foot-links { display: flex; gap: 26px; list-style: none; flex-wrap: wrap; }
.foot-links a { font-size: .88rem; color: var(--ink-soft); transition: color .25s; }
.foot-links a:hover { color: var(--purple); }
.foot-verse { text-align: center; margin-top: 44px; color: var(--ink-soft); font-size: .86rem; }
.foot-verse b { color: var(--ink); }
.foot-legal { text-align: center; margin-top: 18px; font-size: .76rem; color: #9aa0c3; max-width: 70ch; margin-left: auto; margin-right: auto; }

/* ============ reveal defaults ============ */
.rv { opacity: 0; transform: translateY(44px); }

/* ============ mobile ============ */
@media (max-width: 900px) {
  .steps, .diff-grid, .safety-inner { grid-template-columns: 1fr; }
  .founders-grid { grid-template-columns: 1fr; }
  .founders-photo { max-width: 480px; margin: 0 auto; }
  .nav-links, .nl-right { display: none; }
  .nav-logo { grid-column: 2; }
  .nav-burger { position: absolute; right: 0; top: 50%; transform: translateY(-50%); }
  .nav-burger {
    display: flex; flex-direction: column; gap: 5px; padding: 8px;
  }
  .nav-burger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }
  .nav-burger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .nav-burger.open span:nth-child(2){ opacity: 0; }
  .nav-burger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu {
    position: fixed; inset: 0; z-index: 49; background: rgba(12,18,54,.97);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 34px;
    opacity: 0; pointer-events: none; transition: opacity .35s;
  }
  .mobile-menu.open { opacity: 1; pointer-events: auto; }
  .mobile-menu a { color: #fff; font-size: 1.5rem; font-weight: 700; }
  .hero { padding-top: 90px; }
  .hero-bottom { padding-bottom: 30px; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-lines { font-size: clamp(2rem, 9vw, 2.8rem); }
  .hero-meta .wrap { justify-content: center; text-align: center; }
  .hero p.sub { margin: 24px auto 34px; }
  .hero-meta .wrap { justify-content: center; text-align: center; }
  .events, .cta { border-radius: 32px; }
  .how { border-radius: 32px 32px 0 0; }
}
@media (min-width: 901px) { .mobile-menu { display: none; } }

@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; }
  * { animation: none !important; transition: none !important; }
}
