:root{
  --midnight:#15122b;
  --midnight-2:#1d1a3a;
  --midnight-3:#26224a;
  --indigo-glow:#3a3170;
  --gold:#f0b84e;
  --gold-soft:#f7d38a;
  --coral:#ef7d5c;
  --magenta:#d9548e;
  --cream:#faf4ea;
  --cream-dim:#e7ddca;
  --line:rgba(240,184,78,0.18);
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:'Jost', sans-serif;
  background:var(--midnight);
  color:var(--cream);
  line-height:1.65;
  font-weight:300;
  overflow-x:hidden;
}
h1,h2,h3,.serif{
  font-family:'Cormorant Garamond', serif;
  font-weight:500;
  letter-spacing:0.01em;
}
.script{
  font-style:italic;
  font-weight:500;
}
a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}
.wrap{max-width:1080px; margin:0 auto; padding:0 28px;}
section{position:relative; padding:110px 0;}
.eyebrow{
  text-transform:uppercase;
  letter-spacing:0.32em;
  font-size:12px;
  color:var(--gold-soft);
  font-weight:500;
  margin-bottom:18px;
  display:inline-block;
}

/* Background texture: soft radial glows, like light breaking through */
body::before{
  content:"";
  position:fixed; inset:0;
  background:
    radial-gradient(ellipse 900px 600px at 15% -5%, rgba(217,84,142,0.16), transparent 60%),
    radial-gradient(ellipse 900px 700px at 90% 10%, rgba(240,184,78,0.14), transparent 60%),
    radial-gradient(ellipse 800px 800px at 50% 100%, rgba(58,49,112,0.35), transparent 60%);
  pointer-events:none;
  z-index:0;
}

/* NAV */
header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  background:rgba(21,18,43,0.82);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
nav{
  max-width:1080px; margin:0 auto; padding:18px 28px;
  display:flex; align-items:center; justify-content:space-between;
}
.brandmark{
  font-family:'Cormorant Garamond', serif;
  font-size:26px; letter-spacing:0.12em; font-weight:600;
  color:var(--cream);
}
.brandmark span{color:var(--gold);}
.navlinks{display:flex; gap:28px; align-items:center; font-size:14px; letter-spacing:0.03em;}
.navlinks a{color:var(--cream-dim); transition:color .2s;}
.navlinks a:hover, .navlinks a.active{color:var(--gold);}
.nav-cta{
  background:linear-gradient(135deg, var(--gold), var(--coral));
  color:var(--midnight) !important;
  padding:10px 20px; border-radius:30px; font-weight:600; font-size:13px;
  letter-spacing:0.04em;
}
.navtoggle{display:none;}

/* HERO */
.hero{
  min-height:100vh;
  display:flex; align-items:center; justify-content:center;
  text-align:center;
  padding-top:140px;
  position:relative;
}
.phoenix-glyph{
  width:280px; max-width:70vw; height:auto; margin:0 auto 36px;
  filter:drop-shadow(0 0 40px rgba(240,184,78,0.25));
}
.hero h1{
  font-size:clamp(56px, 11vw, 108px);
  letter-spacing:0.06em;
  background:linear-gradient(120deg, var(--gold-soft) 10%, var(--coral) 50%, var(--magenta) 90%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
  line-height:1;
  margin-bottom:22px;
}
.hero .tagline{
  font-family:'Cormorant Garamond', serif;
  font-style:italic;
  font-size:clamp(22px, 3.4vw, 32px);
  color:var(--cream);
  margin-bottom:26px;
}
.hero p.sub{
  max-width:560px; margin:0 auto 40px;
  font-size:17px; color:var(--cream-dim);
}
.cta-row{display:flex; gap:18px; justify-content:center; flex-wrap:wrap;}
.btn-primary{
  background:linear-gradient(135deg, var(--gold), var(--coral));
  color:var(--midnight);
  padding:16px 36px; border-radius:40px;
  font-weight:600; letter-spacing:0.05em; font-size:14px;
  text-transform:uppercase;
  box-shadow:0 10px 30px rgba(239,125,92,0.25);
  transition:transform .2s, box-shadow .2s;
  display:inline-block;
  border:none; cursor:pointer;
}
.btn-primary:hover{transform:translateY(-2px); box-shadow:0 14px 34px rgba(239,125,92,0.35);}
.btn-ghost{
  border:1px solid rgba(250,244,234,0.35);
  color:var(--cream);
  padding:16px 32px; border-radius:40px;
  font-weight:500; letter-spacing:0.04em; font-size:14px;
  transition:border-color .2s, background .2s;
  display:inline-block;
}
.btn-ghost:hover{border-color:var(--gold); background:rgba(240,184,78,0.08);}
.scroll-hint{
  position:absolute; bottom:36px; left:50%; transform:translateX(-50%);
  font-size:11px; letter-spacing:0.3em; text-transform:uppercase; color:var(--cream-dim);
  opacity:0.6;
}

/* MAYBE YOU'VE BEEN THROUGH */
.through{
  background:var(--midnight-2);
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
}
.through h2{
  font-size:clamp(30px,4vw,44px);
  text-align:center;
  max-width:720px; margin:0 auto 50px;
  color:var(--cream);
}
.through-grid{
  display:grid; grid-template-columns:repeat(2, 1fr); gap:16px 40px;
  max-width:760px; margin:0 auto 50px;
}
.through-grid div{
  font-family:'Cormorant Garamond', serif;
  font-size:20px; color:var(--cream-dim);
  padding-left:22px; position:relative;
}
.through-grid div::before{
  content:"—"; position:absolute; left:0; color:var(--gold);
}
.through-note{
  text-align:center; max-width:600px; margin:0 auto 34px;
  font-size:16px; color:var(--cream-dim); font-style:italic;
  font-family:'Cormorant Garamond', serif;
}
.through-line{
  text-align:center;
  font-family:'Cormorant Garamond', serif;
  font-style:italic;
  font-size:clamp(24px,3vw,30px);
  color:var(--gold-soft);
}

/* FRAMEWORK */
.framework h2, .section-title{
  text-align:center; font-size:clamp(32px,4.5vw,48px); margin-bottom:14px;
}
.section-sub{
  text-align:center; color:var(--cream-dim); max-width:560px; margin:0 auto 60px; font-size:16px;
}
.fw-grid{
  display:grid; grid-template-columns:repeat(5,1fr); gap:18px;
}
.fw-card{
  background:linear-gradient(160deg, var(--midnight-3), var(--midnight-2));
  border:1px solid var(--line);
  border-radius:18px;
  padding:30px 20px;
  text-align:center;
  transition:transform .25s, border-color .25s;
  display:block;
}
.fw-card:hover{transform:translateY(-6px); border-color:var(--gold);}
.fw-icon{font-size:34px; margin-bottom:16px;}
.fw-card h3{
  font-size:20px; letter-spacing:0.08em; text-transform:uppercase;
  color:var(--gold-soft); margin-bottom:10px; font-weight:600;
}
.fw-card .fw-line{
  font-family:'Cormorant Garamond', serif; font-style:italic;
  font-size:15px; color:var(--cream); margin-bottom:12px;
}
.fw-card p{font-size:13.5px; color:var(--cream-dim); line-height:1.6;}
.fw-card .fw-more{
  display:inline-block; margin-top:14px; font-size:12px;
  letter-spacing:0.08em; text-transform:uppercase; color:var(--gold);
}
.framework-cta{text-align:center; margin-top:44px;}

/* WHAT YOU GET */
.membership{
  background:var(--midnight-2);
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
}
.mem-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:26px;
  margin-bottom:50px;
}
.mem-item{
  padding:26px 24px;
  border-left:2px solid var(--gold);
  background:rgba(240,184,78,0.04);
  border-radius:0 12px 12px 0;
}
.mem-item h3{font-size:19px; color:var(--cream); margin-bottom:8px; font-weight:600;}
.mem-item p{font-size:14px; color:var(--cream-dim);}
.mem-item a.mem-link{font-size:13px; color:var(--gold-soft); display:inline-block; margin-top:8px;}
.price-box{
  text-align:center; padding:40px; border-radius:20px;
  background:linear-gradient(135deg, rgba(240,184,78,0.1), rgba(217,84,142,0.1));
  border:1px solid var(--line);
}
.price-box .amount{
  font-family:'Cormorant Garamond', serif; font-size:56px; color:var(--gold-soft); font-weight:600;
}
.price-box .amount span{font-size:20px; color:var(--cream-dim); font-family:'Jost',sans-serif;}
.price-box .note{font-size:13px; color:var(--cream-dim); margin:10px 0 26px;}

/* WHO IT'S FOR */
.forlist{max-width:700px; margin:0 auto; display:flex; flex-direction:column; gap:20px;}
.forlist div{
  display:flex; gap:16px; align-items:flex-start;
  font-size:17px; color:var(--cream-dim);
}
.forlist .mark{color:var(--gold); font-size:20px; line-height:1.4;}

/* STORY */
.story{
  background:var(--midnight-2);
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
}
.story-inner{max-width:740px; margin:0 auto; text-align:center;}
.story blockquote{
  font-family:'Cormorant Garamond', serif; font-style:italic;
  font-size:clamp(20px,2.6vw,26px);
  color:var(--cream);
  line-height:1.6;
  margin-bottom:30px;
}
.story p.tail{color:var(--cream-dim); font-size:15px; max-width:560px; margin:0 auto;}
.founder-row{
  display:flex; justify-content:center; gap:14px; margin:40px 0 8px;
}
.founder-dot{
  width:14px; height:14px; border-radius:50%;
  background:linear-gradient(135deg, var(--gold), var(--coral));
}

/* MEET THE PHOENIX 5 */
.founders-wrap{
  margin-top:64px;
  text-align:left;
}
.founders-title{
  text-align:center;
  font-size:clamp(24px,3vw,30px);
  color:var(--cream);
  margin-bottom:12px;
}
.founders-kicker{
  text-align:center;
  font-size:14px;
  color:var(--cream-dim);
  max-width:520px;
  margin:0 auto 40px;
}
.founder-featured{
  background:linear-gradient(160deg, var(--midnight-3), var(--midnight-2));
  border:1px solid var(--line);
  border-radius:20px;
  padding:48px;
  margin-bottom:26px;
  text-align:center;
}
.founder-photo{
  width:200px;
  aspect-ratio:4/5;
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:0 18px 40px rgba(0,0,0,0.35);
  margin:0 auto 26px;
}
.founder-photo img{
  width:100%; height:100%;
  object-fit:cover;
  display:block;
}
.founder-avatar{
  width:76px; height:76px; border-radius:50%;
  background:linear-gradient(135deg, var(--gold), var(--coral));
  display:flex; align-items:center; justify-content:center;
  font-family:'Cormorant Garamond', serif;
  font-size:30px; font-weight:600; color:var(--midnight);
  margin:0 auto 26px;
}
.founder-name{
  font-family:'Cormorant Garamond', serif;
  font-size:24px; font-weight:600; color:var(--gold-soft);
}
.founder-role{
  font-family:'Cormorant Garamond', serif;
  font-style:italic;
  font-size:16px; color:var(--cream-dim);
  margin:2px 0 24px;
}
.founder-text{
  text-align:left;
  max-width:600px;
  margin:0 auto;
}
.founder-featured p{
  font-size:15px; color:var(--cream-dim);
  margin-bottom:14px; line-height:1.75;
}
.founder-quote{
  font-family:'Cormorant Garamond', serif;
  font-style:italic;
  color:var(--cream) !important;
  font-size:17px !important;
  margin-top:18px !important;
  padding-top:18px;
  border-top:1px solid var(--line);
}
.founders-mini-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
}
.founder-mini{
  background:rgba(240,184,78,0.04);
  border:1px dashed var(--line);
  border-radius:16px;
  padding:28px 18px;
  text-align:center;
}
.founder-mini .mini-avatar{
  width:42px; height:42px; border-radius:50%;
  margin:0 auto 14px;
  background:rgba(240,184,78,0.14);
  display:flex; align-items:center; justify-content:center;
  font-size:17px;
}
.founder-mini h4{
  font-size:13px; letter-spacing:0.08em; text-transform:uppercase;
  color:var(--cream-dim); margin-bottom:6px; font-weight:600;
}
.founder-mini p{
  font-size:12.5px; color:var(--cream-dim); opacity:0.7;
  font-family:'Cormorant Garamond', serif; font-style:italic;
}

/* ELEVATE / CHARITY + SPONSOR */
.elevate .eyebrow{color:var(--magenta);}
.elevate-lead{
  text-align:center; max-width:640px; margin:0 auto 56px;
  font-size:17px; color:var(--cream-dim);
}
.elevate-cards{
  display:grid; grid-template-columns:1fr 1fr; gap:26px;
}
.elev-card{
  padding:36px; border-radius:20px;
  background:linear-gradient(160deg, var(--midnight-3), var(--midnight-2));
  border:1px solid var(--line);
}
.elev-card h3{font-size:24px; margin-bottom:12px; color:var(--gold-soft); font-weight:600;}
.elev-card p{font-size:15px; color:var(--cream-dim); margin-bottom:22px;}
.elev-card.sponsor{
  border:1px solid rgba(217,84,142,0.4);
  background:linear-gradient(160deg, rgba(217,84,142,0.12), var(--midnight-2));
}
.elev-card.sponsor h3{color:var(--magenta);}

/* FINAL CTA */
.final{
  text-align:center;
}
.final h2{
  font-family:'Cormorant Garamond', serif; font-style:italic; font-weight:500;
  font-size:clamp(30px,4.5vw,46px);
  max-width:680px; margin:0 auto 40px;
  color:var(--cream);
}

footer{
  padding:50px 0 40px;
  border-top:1px solid var(--line);
  text-align:center;
  font-size:13px; color:var(--cream-dim);
}
footer .brandmark{font-size:20px; margin-bottom:14px; display:block;}
footer .foot-links{margin-top:16px; display:flex; gap:24px; justify-content:center; flex-wrap:wrap;}
footer .foot-links a{color:var(--cream-dim);}
footer .foot-links a:hover{color:var(--gold);}

/* ============================= */
/* THE RISE PATH — shared pages  */
/* ============================= */

.page-hero{
  padding-top:180px;
  text-align:center;
}
.page-hero h1{
  font-size:clamp(44px,8vw,84px);
  background:linear-gradient(120deg, var(--gold-soft) 10%, var(--coral) 50%, var(--magenta) 90%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
  line-height:1.05; margin-bottom:20px;
}
.page-hero .tagline{
  font-family:'Cormorant Garamond', serif; font-style:italic;
  font-size:clamp(18px,2.6vw,24px); color:var(--cream); margin-bottom:22px;
}
.page-hero p.sub{max-width:640px; margin:0 auto; font-size:16px; color:var(--cream-dim);}

.crumb{
  font-size:12px; letter-spacing:0.06em; text-transform:uppercase;
  color:var(--cream-dim); text-align:center; margin-bottom:14px; opacity:0.8;
}
.crumb a{color:var(--gold-soft);}
.crumb a:hover{color:var(--gold);}
.crumb .sep{margin:0 8px; opacity:0.5;}

.path-intro{
  max-width:700px; margin:0 auto 70px; text-align:center;
  font-size:16px; color:var(--cream-dim);
}
.path-intro p{margin-bottom:16px;}
.path-intro p.spiral-note{
  font-family:'Cormorant Garamond', serif; font-style:italic; color:var(--gold-soft); font-size:18px;
}

.path-grid{
  display:flex; flex-direction:column; gap:18px;
}
.path-card{
  display:grid; grid-template-columns:90px 1fr auto; gap:26px; align-items:center;
  background:linear-gradient(160deg, var(--midnight-3), var(--midnight-2));
  border:1px solid var(--line); border-radius:20px;
  padding:32px 34px;
  transition:transform .25s, border-color .25s;
}
.path-card:hover{transform:translateY(-4px); border-color:var(--gold);}
.path-card .path-icon{font-size:42px; text-align:center;}
.path-card h3{font-size:24px; color:var(--gold-soft); margin-bottom:4px;}
.path-card .path-line{
  font-family:'Cormorant Garamond', serif; font-style:italic; font-size:15px; color:var(--cream); margin-bottom:10px;
}
.path-card p{font-size:14px; color:var(--cream-dim); line-height:1.65;}
.path-card .path-go{
  font-size:12px; letter-spacing:0.08em; text-transform:uppercase; color:var(--gold);
  border:1px solid var(--line); padding:12px 22px; border-radius:30px; white-space:nowrap;
  transition:border-color .2s, background .2s;
}
.path-card:hover .path-go{border-color:var(--gold); background:rgba(240,184,78,0.08);}

.howto{
  max-width:680px; margin:80px auto 0; text-align:center;
  border-top:1px solid var(--line); padding-top:60px;
}
.howto h2{font-size:clamp(26px,3.5vw,36px); margin-bottom:20px;}
.howto p{font-size:15px; color:var(--cream-dim); margin-bottom:14px;}
.howto .promise{
  font-family:'Cormorant Garamond', serif; font-style:italic;
  color:var(--gold-soft); font-size:22px; margin-top:24px;
}

/* Stage detail pages */
.stage-hero{
  text-align:center; max-width:720px; margin:0 auto 70px;
}
.stage-hero .stage-icon{font-size:52px; margin-bottom:18px;}
.stage-hero .stage-eyebrow{
  text-transform:uppercase; letter-spacing:0.32em; font-size:12px; color:var(--gold-soft); margin-bottom:10px; display:block;
}
.stage-hero h1{
  font-size:clamp(48px,9vw,90px);
  background:linear-gradient(120deg, var(--gold-soft) 10%, var(--coral) 50%, var(--magenta) 90%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
  line-height:1; margin-bottom:16px;
}
.stage-hero .stage-line{
  font-family:'Cormorant Garamond', serif; font-style:italic;
  font-size:clamp(20px,3vw,28px); color:var(--cream); margin-bottom:24px;
}
.stage-hero p.stage-desc{font-size:16px; color:var(--cream-dim);}

.stage-section{max-width:760px; margin:0 auto 70px;}
.stage-section h2{
  font-size:clamp(26px,3.5vw,34px); margin-bottom:22px; text-align:center;
}

.practice-box{
  background:linear-gradient(135deg, rgba(240,184,78,0.1), rgba(217,84,142,0.08));
  border:1px solid var(--line); border-radius:20px;
  padding:38px 40px; text-align:center;
}
.practice-box .eyebrow{display:block;}
.practice-box p{font-size:17px; color:var(--cream); font-family:'Cormorant Garamond', serif; font-style:italic; line-height:1.6;}

.exercise-list{display:flex; flex-direction:column; gap:16px;}
.exercise-item{
  padding:24px 26px; border-left:2px solid var(--gold);
  background:rgba(240,184,78,0.04); border-radius:0 14px 14px 0;
}
.exercise-item h4{font-size:17px; color:var(--gold-soft); margin-bottom:8px; font-weight:600;}
.exercise-item p{font-size:14.5px; color:var(--cream-dim); line-height:1.7;}

.book-list{display:flex; flex-direction:column; gap:14px;}
.book-item{
  padding:22px 26px; border:1px solid var(--line); border-radius:14px;
  background:rgba(255,255,255,0.02);
}
.book-item .book-title{font-family:'Cormorant Garamond', serif; font-style:italic; font-size:18px; color:var(--cream);}
.book-item .book-author{font-size:12.5px; color:var(--gold-soft); text-transform:uppercase; letter-spacing:0.06em; margin:2px 0 8px;}
.book-item p{font-size:14px; color:var(--cream-dim); line-height:1.6;}

.larger-fire{
  border:1px solid rgba(217,84,142,0.4);
  background:linear-gradient(160deg, rgba(217,84,142,0.14), var(--midnight-2));
  border-radius:20px; padding:40px 40px; text-align:center;
}
.larger-fire .eyebrow{color:var(--magenta); display:block;}
.larger-fire .question{
  font-family:'Cormorant Garamond', serif; font-style:italic;
  font-size:clamp(20px,2.8vw,26px); color:var(--cream); margin-bottom:18px; line-height:1.5;
}
.larger-fire p{font-size:15px; color:var(--cream-dim); line-height:1.75;}

.stage-nav-links{
  display:flex; justify-content:space-between; align-items:center; gap:20px;
  max-width:900px; margin:0 auto 90px; flex-wrap:wrap;
}
.stage-nav-link{
  flex:1; min-width:220px;
  border:1px solid var(--line); border-radius:16px; padding:22px 26px;
  transition:border-color .2s, transform .2s;
}
.stage-nav-link:hover{border-color:var(--gold); transform:translateY(-3px);}
.stage-nav-link .dir{font-size:11px; text-transform:uppercase; letter-spacing:0.1em; color:var(--cream-dim); margin-bottom:6px; display:block;}
.stage-nav-link .dest{font-family:'Cormorant Garamond', serif; font-size:20px; color:var(--gold-soft);}
.stage-nav-link.next{text-align:right;}

@media (max-width:860px){
  .navlinks{display:none;}
  .fw-grid{grid-template-columns:repeat(2,1fr);}
  .mem-grid{grid-template-columns:1fr;}
  .through-grid{grid-template-columns:1fr;}
  .elevate-cards{grid-template-columns:1fr;}
  .founder-featured{padding:32px 24px;}
  .founder-photo{width:170px;}
  .founders-mini-grid{grid-template-columns:repeat(2,1fr);}
  .path-card{grid-template-columns:1fr; text-align:center;}
  .path-card .path-icon{text-align:center;}
  .stage-nav-link.next{text-align:left;}
}
