:root {
  --bg-deep: #0f0c1f;
  --bg-mid: #2a1f4a;
  --bg-soft: #493a7a;
  --text-main: #ffffff;
  --text-dim: #cfcafc;
  --text-accent: #f2d68f;
  --border-card: rgba(255,255,255,0.18);
  --bg-card: rgba(15,12,31,0.5);
  --btn-border: rgba(255,255,255,0.3);
}

/* RESET */
body {
  margin: 0;
  background: radial-gradient(circle at 20% 20%, var(--bg-soft) 0%, var(--bg-mid) 40%, var(--bg-deep) 80%);
  color: var(--text-main);
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Poppins", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  padding-bottom: 4rem;
}

/* HERO */
.hero {
  padding: 2.5rem 1.5rem 3rem;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

@media(min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr auto;
    text-align: left;
  }
}

.hero-left {
  max-width: 600px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(1.9rem, 1vw + 1.2rem, 2.4rem);
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.25;
  margin: 0 0 1rem 0;
  text-shadow: 0 20px 60px rgba(0,0,0,.9);
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-main);
  opacity: .9;
  line-height: 1.5;
  margin: 0 0 1rem 0;
  text-shadow: 0 30px 80px rgba(0,0,0,.8);
}

.accent {
  color: var(--text-accent);
  font-weight: 500;
}

.hero-bullets {
  list-style: none;
  margin: 0 0 1.5rem 0;
  padding: 0;
  color: var(--text-main);
  font-size: .9rem;
  line-height: 1.5;
  opacity: .85;
  text-align: left;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.hero-bullets li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: .5rem;
}

.hero-bullets li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  font-size: .8rem;
  color: var(--text-accent);
  line-height: 1;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .75rem;
}

@media(min-width: 900px) {
  .hero-buttons {
    justify-content: flex-start;
  }
}

.btn-glow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-main);
  background: rgba(15,12,31,0.4);
  border: 1px solid var(--btn-border);
  border-radius: .75rem;
  padding: .9rem 1.25rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all .18s ease;
}

.btn-glow:hover {
  box-shadow: 0 40px 100px rgba(0,0,0,0.9), 0 0 24px rgba(242,214,143,0.4);
  border-color: var(--text-accent);
  color: var(--text-accent);
}

.sparkles {
  font-size: 1.1rem;
  line-height: 1;
}

.btn-booknow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--bg-deep);
  background: linear-gradient(90deg, #fff0c9 0%, #f2d68f 100%);
  border-radius: .75rem;
  padding: .9rem 1rem;
  min-width: 170px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.8),
    0 0 24px rgba(242,214,143,0.5);
  transition: all .18s ease;
  border: 1px solid rgba(242,214,143,.6);
}

.btn-booknow:hover {
  box-shadow:
    0 40px 100px rgba(0,0,0,0.9),
    0 0 32px rgba(242,214,143,0.7);
  filter: brightness(1.05);
}

.btn-booknow.big {
  font-size: 1rem;
  padding: 1rem 1.25rem;
  min-width: 220px;
}

.hero-urgency {
  font-size: .9rem;
  line-height: 1.5;
  color: var(--text-main);
  opacity: .7;
  margin: 1rem 0 0 0;
  text-shadow: 0 30px 80px rgba(0,0,0,.8);
  max-width: 40ch;
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media(min-width: 900px) {
  .hero-right {
    align-items: flex-end;
    text-align: right;
  }
}

.photo-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15) 0%, rgba(0,0,0,0) 70%);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.9),
    0 0 40px rgba(242,214,143,0.28);
  border: 2px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: .75rem;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-id {
  font-size: .8rem;
  line-height: 1.4;
  color: var(--text-main);
  opacity: .8;
  text-shadow: 0 30px 80px rgba(0,0,0,.8);
}

.hero-name-main {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-main);
}

.hero-cred {
  color: var(--text-accent);
  font-weight: 500;
  font-size: .8rem;
}

.hero-tag {
  font-size: .75rem;
  opacity: .7;
}

/* BOOKING STRIP */
.booking-strip {
  padding: 1rem 1.5rem 2rem;
}

.booking-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 1rem;
  box-shadow:
    0 40px 120px rgba(0,0,0,.8),
    0 4px 16px rgba(0,0,0,.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.25rem 1rem 1.25rem 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media(min-width: 700px) {
  .booking-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 1.25rem 1.5rem;
  }
}

.booking-head {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: .4rem;
}

.booking-copy {
  font-size: .9rem;
  color: var(--text-main);
  opacity: .7;
  line-height: 1.5;
  max-width: 45ch;
}

.btn-intakeq-img img {
  display: block;
  width: 162px;
  height: 45px;
  border-radius: .5rem;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.9),
    0 0 24px rgba(242,214,143,0.4);
  border: 1px solid rgba(242,214,143,.5);
  background-color: rgba(15,12,31,0.4);
}

/* ABOUT */
.about {
  padding: 2rem 1.5rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.surface-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 1rem;
  padding: 1.5rem 1.25rem 2rem;
  box-shadow:
    0 40px 120px rgba(0,0,0,.8),
    0 4px 16px rgba(0,0,0,.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  max-width: 900px;
  margin: 0 auto;
}

.section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-main);
  margin: 0 0 1rem 0;
  text-shadow: 0 30px 80px rgba(0,0,0,.8);
}

.about-text {
  font-size: .95rem;
  color: var(--text-main);
  opacity: .85;
  line-height: 1.6;
  margin: 0 0 1rem 0;
}

.about-list {
  list-style: none;
  padding: 1rem 1rem 1rem 1.25rem;
  margin: 1rem 0 1.5rem 0;
  border-radius: .75rem;
  border: 1px solid rgba(242,214,143,.4);
  background: rgba(242,214,143,.07);
  color: var(--text-main);
  font-size: .9rem;
  line-height: 1.5;
  box-shadow:
    0 30px 80px rgba(0,0,0,.8),
    0 2px 8px rgba(0,0,0,.6);
}

.about-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: .6rem;
}

.about-list li:last-child {
  margin-bottom: 0;
}

.about-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1;
  font-size: .8rem;
  color: var(--text-accent);
  font-weight: 600;
}

.about-bottom {
  font-size: .95rem;
  color: var(--text-accent);
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}

/* SOCIAL PROOF */
.social-proof {
  padding: 1rem 1.5rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.proof-card {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(15,12,31,0.4);
  border: 1px solid rgba(242,214,143,.4);
  border-radius: 1rem;
  box-shadow:
    0 40px 120px rgba(0,0,0,.9),
    0 4px 16px rgba(0,0,0,.7),
    0 0 30px rgba(242,214,143,.2);
  padding: 1.5rem 1.25rem;
  text-align: center;
}

.quote-text {
  font-size: .95rem;
  line-height: 1.6;
  color: var(--text-main);
  opacity: .9;
  font-style: italic;
  margin: 0 0 .75rem 0;
}

.quote-source {
  color: var(--text-accent);
  font-size: .8rem;
  font-weight: 500;
}

/* PLANS */
.plans {
  padding: 2rem 1.5rem 4rem;
  max-width: 1300px;
  margin: 0 auto;
  color: var(--text-main);
}

.plans-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem auto;
}

.plans-tag {
  font-size: .95rem;
  color: var(--text-main);
  opacity: .7;
  line-height: 1.5;
  max-width: 600px;
  margin: 0.5rem auto 0;
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media(min-width: 900px) {
  .plans-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow:
    0 40px 120px rgba(0,0,0,.8),
    0 4px 16px rgba(0,0,0,.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
}

.plan-featured {
  border: 1px solid rgba(242,214,143,.6);
  box-shadow:
    0 50px 140px rgba(0,0,0,.9),
    0 6px 24px rgba(0,0,0,.7),
    0 0 30px rgba(242,214,143,.25);
}

.plan-badge {
  display: inline-block;
  border-radius: 999px;
  background: rgba(242,214,143,.12);
  border: 1px solid rgba(242,214,143,.5);
  color: var(--text-accent);
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: .4rem .6rem;
  margin-bottom: .75rem;
}

.plan-title {
  color: var(--text-main);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 .4rem 0;
}

.plan-price {
  background: linear-gradient(90deg, #fff, #f2d68f 60%);
  -webkit-background-clip: text;
  color: transparent;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 .5rem 0;
}

.sep {
  color: var(--text-main);
  opacity: .6;
}

.plan-blurb {
  font-size: .9rem;
  color: var(--text-main);
  opacity: .8;
  line-height: 1.4;
  margin: 0 0 1rem 0;
  min-height: 3.6em;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  color: var(--text-main);
  font-size: .85rem;
  line-height: 1.5;
}

.plan-features li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: .6rem;
}

.plan-features li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1;
  font-size: .8rem;
  color: var(--text-accent);
  font-weight: 600;
}

.feature-note {
  display: block;
  color: var(--text-dim);
  font-size: .75rem;
  line-height: 1.4;
  margin-top: .25rem;
}

.value-pill {
  color: var(--text-accent);
  font-weight: 600;
}

.plan-cta {
  text-decoration: none;
  text-align: center;
  background: rgba(15,12,31,0.4);
  border: 1px solid var(--btn-border);
  border-radius: .75rem;
  padding: .8rem 1rem;
  color: var(--text-main);
  font-size: .9rem;
  font-weight: 500;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all .18s ease;
}

.plan-cta:hover {
  border-color: var(--text-accent);
  box-shadow: 0 40px 100px rgba(0,0,0,0.9), 0 0 24px rgba(242,214,143,0.4);
  color: var(--text-accent);
}

.plan-cta-featured {
  border-color: rgba(242,214,143,.6);
  color: var(--text-accent);
}

.limit-note {
  font-size: .75rem;
  line-height: 1.4;
  margin-top: 1rem;
  color: var(--text-dim);
}

/* BOOTCAMP */
.bootcamp-wrap {
  max-width: 900px;
  margin: 0 auto 2rem auto;
}

.bootcamp-card .bootcamp-title {
  color: var(--text-main);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 .5rem 0;
}

.bootcamp-card .bootcamp-price {
  background: linear-gradient(90deg, #fff, #f2d68f 60%);
  -webkit-background-clip: text;
  color: transparent;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.bootcamp-card .bootcamp-desc {
  font-size: .9rem;
  color: var(--text-main);
  opacity: .8;
  line-height: 1.5;
  margin: 0 0 1rem 0;
}

.bootcamp-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: .5rem;
  font-size: .85rem;
  color: var(--text-main);
  line-height: 1.5;
}

@media(min-width: 600px) {
  .bootcamp-list {
    grid-template-columns: 1fr 1fr;
  }
}

.bootcamp-list li {
  position: relative;
  padding-left: 1.25rem;
}

.bootcamp-list li::before {
  content: "➤";
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1;
  font-size: .8rem;
  color: var(--text-accent);
  font-weight: 600;
}

.bootcamp-bonus {
  font-size: .8rem;
  line-height: 1.4;
  color: var(--text-accent);
  background: rgba(242,214,143,.07);
  border: 1px solid rgba(242,214,143,.4);
  border-radius: .75rem;
  padding: .75rem 1rem;
  margin: 0 0 1.25rem 0;
  box-shadow:
    0 30px 80px rgba(0,0,0,.8),
    0 2px 8px rgba(0,0,0,.6);
}

/* FINAL CTA STRIP */
.final-cta-strip {
  padding: 2rem 1.5rem 2rem;
}

.final-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: rgba(15,12,31,0.4);
  border: 1px solid rgba(242,214,143,.4);
  border-radius: 1rem;
  box-shadow:
    0 40px 120px rgba(0,0,0,.9),
    0 4px 16px rgba(0,0,0,.7),
    0 0 30px rgba(242,214,143,.2);
  padding: 2rem 1.25rem;
}

.final-cta-headline {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-accent);
  margin: 0 0 .75rem 0;
  text-shadow: 0 30px 80px rgba(0,0,0,.8);
}

.final-cta-copy {
  font-size: .9rem;
  line-height: 1.5;
  color: var(--text-main);
  opacity: .8;
  margin: 0 auto 1.5rem auto;
  max-width: 45ch;
}

.closing-note {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-main);
  padding-top: 1rem;
}

.closing-copy {
  font-size: .85rem;
  color: var(--text-main);
  opacity: .6;
  line-height: 1.4;
  margin: 0;
}
