/* =========================================================
   MAGNET WOMAN — Site (faithful replica)
   Palette + typography match live musesacademy.io
   ========================================================= */

/* ---------- Fonts ---------- */
@font-face { font-family: 'Poppins'; src: url('../assets/fonts/Poppins-400-0.woff2') format('woff2'), url('../assets/fonts/Poppins-400-1.woff2') format('woff2'), url('../assets/fonts/Poppins-400-2.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('../assets/fonts/Poppins-500-0.woff2') format('woff2'), url('../assets/fonts/Poppins-500-1.woff2') format('woff2'), url('../assets/fonts/Poppins-500-2.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('../assets/fonts/Poppins-600-0.woff2') format('woff2'), url('../assets/fonts/Poppins-600-1.woff2') format('woff2'), url('../assets/fonts/Poppins-600-2.woff2') format('woff2'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('../assets/fonts/Poppins-700-0.woff2') format('woff2'), url('../assets/fonts/Poppins-700-1.woff2') format('woff2'), url('../assets/fonts/Poppins-700-2.woff2') format('woff2'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Louize'; src: url('../assets/fonts/Louize.woff2') format('woff2'); font-weight: 400 700; font-display: swap; }
@font-face { font-family: 'BeniCaps'; src: url('../assets/fonts/BeniRegular.woff2') format('woff2'); font-weight: 400; font-display: swap; }

/* ---------- Tokens (from live site) ---------- */
:root {
  --bg-base: #0a0b10;
  --bg-alt: #1c1c2c;
  --bg-elev: #141521;
  --ink: #eeebe6;
  --ink-dim: #b8b3c4;
  --ink-mute: #6f6882;

  --cta: #544ba1;
  --cta-hover: #393084;
  --cta-stroke: #785bbf;

  --gold-100: rgb(201, 166, 115);
  --gold-200: rgb(155, 124, 80);

  --tag-1: #b28ef5;
  --tag-2: #406c54;
  --tag-3: #8b5015;
  --tag-4: #9d0d40;

  --grad-title: linear-gradient(90deg, #d5bfff, #7c43e6);
  --grad-bg-1: linear-gradient(180deg, #0a0b10, rgba(10, 11, 16, 0.5) 30%, #544ba1);

  --line: rgba(238, 235, 230, 0.10);
  --card: rgba(238, 235, 230, 0.035);
  --card-hov: rgba(238, 235, 230, 0.075);

  --radius: 24px;
  --radius-sm: 14px;
  --maxw: 1240px;
  --header-h: 72px;

  --f-sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --f-display: 'Louize', Georgia, 'Times New Roman', serif;
  --f-caps: 'BeniCaps', var(--f-sans);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--f-sans);
  background: var(--bg-base);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 400; line-height: 1.1; letter-spacing: -0.01em; color: var(--ink); }
p { color: var(--ink-dim); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.eyebrow {
  display: inline-block;
  font-family: var(--f-caps);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-100);
  margin-bottom: 18px;
  font-weight: 500;
}
.gradient-tile {
  background: var(--grad-title);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.25s ease;
  white-space: nowrap;
  font-family: var(--f-sans);
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--cta);
  color: #fff;
  border: 1px solid var(--cta-stroke);
  box-shadow: 0 0 0 0 rgba(120, 91, 191, 0.5), 0 14px 38px -14px rgba(84, 75, 161, 0.75);
}
.btn-primary:hover { background: var(--cta-hover); box-shadow: 0 0 0 4px rgba(120, 91, 191, 0.18), 0 14px 38px -10px rgba(84, 75, 161, 0.9); }
.btn-secondary {
  background: rgba(238, 235, 230, 0.06);
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-secondary:hover { background: rgba(238, 235, 230, 0.12); }
.btn-lg { padding: 18px 40px; font-size: 16px; }
.btn-sm { padding: 10px 22px; font-size: 13px; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(10, 11, 16, 0.55);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.header.scrolled { background: rgba(10, 11, 16, 0.92); border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand { display: flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 500; font-family: var(--f-sans); color: var(--ink); }
.brand img { width: 40px; height: 40px; border-radius: 10px; }
.nav { display: flex; gap: 30px; align-items: center; }
.nav a { font-size: 15px; color: var(--ink); display: flex; align-items: center; gap: 9px; opacity: 0.9; font-weight: 400; }
.nav a:hover { opacity: 1; }
.nav .dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot-1 { background: var(--tag-1); }
.dot-2 { background: var(--tag-2); }
.dot-3 { background: var(--tag-3); }
.dot-4 { background: var(--tag-4); }
.header-cta { display: flex; gap: 10px; align-items: center; }
.menu-btn { display: none; padding: 10px; border-radius: 12px; }
.menu-btn svg { width: 22px; height: 22px; }

@media (max-width: 1000px) {
  .nav { display: none; }
  .header-cta .btn-login { display: none; }
  .menu-btn { display: inline-flex; }
}
@media (max-width: 640px) {
  .brand span { display: none; }
  .header-cta .btn-primary { padding: 10px 20px; font-size: 13px; }
  .container { padding: 0 18px; }
  .section { padding: 72px 0; }
}

/* ---------- Hero ---------- */
.hero {
  padding-top: calc(var(--header-h) + 80px);
  padding-bottom: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(85% 60% at 50% 0%, rgba(124, 67, 230, 0.22), transparent 60%),
    radial-gradient(45% 35% at 15% 30%, rgba(178, 142, 245, 0.14), transparent 65%),
    radial-gradient(45% 35% at 85% 20%, rgba(201, 166, 115, 0.10), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }
.hero-lotus { width: 160px; height: auto; margin: 0 auto 36px; }
.hero h1 { font-size: clamp(42px, 6.4vw, 96px); letter-spacing: -0.02em; max-width: 1000px; margin: 0 auto 28px; }
.hero .subhead { font-size: clamp(16px, 1.5vw, 19px); color: var(--ink-dim); max-width: 560px; margin: 0 auto 36px; line-height: 1.55; }
.hero .subhead .accent { color: var(--gold-100); font-weight: 500; }
.hero .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Hero video section ---------- */
.hero-video {
  position: relative;
  margin: 56px auto 0;
  max-width: 1100px;
  padding: 0 24px;
}
.hero-video-inner {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(124, 67, 230, 0.35), 0 0 0 1px rgba(120, 91, 191, 0.25);
  background: var(--bg-alt);
}
.hero-video video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.hero-video .trust-overlay {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: rgba(10, 11, 16, 0.75);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}
.trust-overlay .stars { display: inline-flex; gap: 2px; }
.trust-overlay .stars i {
  width: 16px; height: 16px;
  background: #00b67a;
  display: inline-block;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.trust-overlay .sep { opacity: 0.4; }
@media (max-width: 600px) {
  .hero-video { padding: 0 16px; }
  .hero-video .trust-overlay { bottom: 16px; padding: 10px 16px; font-size: 12px; }
  .trust-overlay .stars i { width: 13px; height: 13px; }
}

/* ---------- Section heads ---------- */
.section-head { text-align: center; max-width: 820px; margin: 0 auto 64px; }
.section-head h2 { font-size: clamp(34px, 5vw, 64px); line-height: 1.1; }
.section-head p { margin-top: 16px; font-size: 17px; color: var(--ink-dim); }

/* ---------- Pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pillar {
  background: linear-gradient(180deg, rgba(28, 28, 44, 0.6), rgba(20, 21, 33, 0.4));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: transform 0.3s ease, border-color 0.25s ease;
  text-align: center;
}
.pillar:hover { transform: translateY(-5px); border-color: rgba(178, 142, 245, 0.35); }
.pillar img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  margin: 0 auto 24px;
  filter: drop-shadow(0 20px 40px rgba(124, 67, 230, 0.35));
}
.pillar h3 { font-size: 28px; margin-bottom: 12px; }
.pillar p { font-size: 15px; color: var(--ink-dim); max-width: 300px; margin: 0 auto; }
@media (max-width: 900px) { .pillars { grid-template-columns: 1fr; gap: 16px; } .pillar { padding: 32px 24px; } }

/* ---------- Goals ---------- */
.goals-head { margin-bottom: 48px; }
.goals-head h2 { font-size: clamp(34px, 5vw, 64px); max-width: 820px; }
.goals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.goal-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  cursor: pointer;
  transition: transform 0.35s ease;
  background-color: var(--bg-alt);
}
.goal-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: var(--bg-url);
  z-index: 0;
  transition: transform 0.6s ease;
}
.goal-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(10, 11, 16, 0.2) 55%, rgba(10, 11, 16, 0.92) 100%);
  z-index: 1;
}
.goal-card > * { position: relative; z-index: 2; }
.goal-card:hover { transform: translateY(-5px); }
.goal-card:hover::before { transform: scale(1.05); }
.goal-card .badge {
  position: absolute;
  top: 22px; left: 22px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(10, 11, 16, 0.6);
  backdrop-filter: blur(8px);
  color: var(--gold-100);
  border: 1px solid rgba(201, 166, 115, 0.5);
  font-weight: 500;
}
.goal-card .badge.new { color: #b28ef5; border-color: rgba(178, 142, 245, 0.55); }
.goal-card h3 { font-size: 24px; line-height: 1.2; margin-bottom: 8px; font-family: var(--f-display); }
.goal-card .tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gold-100);
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--f-sans);
}
@media (max-width: 1000px) { .goals-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .goals-grid { grid-template-columns: 1fr; } .goal-card { min-height: 280px; } }

/* ---------- Focus picker ---------- */
.focus { padding: 110px 0; text-align: center; position: relative; overflow: hidden; }
.focus::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 50% 50%, rgba(84, 75, 161, 0.12), transparent 70%);
  pointer-events: none;
}
.focus > * { position: relative; }
.focus h2 { font-size: clamp(34px, 5vw, 60px); margin-bottom: 14px; }
.focus p { max-width: 560px; margin: 0 auto 40px; color: var(--ink-dim); }
.focus-options { display: flex; flex-direction: column; gap: 14px; max-width: 560px; margin: 0 auto; }
.focus-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  font-size: 16px;
  color: var(--ink);
  text-align: left;
  font-weight: 400;
}
.focus-option:hover { background: var(--card-hov); border-color: rgba(178, 142, 245, 0.45); transform: translateY(-2px); }
.focus-option .arrow { color: var(--tag-1); font-size: 20px; font-weight: 300; transition: transform 0.2s ease; }
.focus-option:hover .arrow { transform: translateX(4px); }

/* ---------- Features (What's Inside) ---------- */
.inside h2 { font-size: clamp(34px, 5vw, 64px); text-align: center; margin-bottom: 72px; }
.inside h2 em { font-style: italic; color: var(--gold-100); font-family: var(--f-display); }
.features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.feature {
  padding: 32px 26px;
  background: linear-gradient(180deg, rgba(28, 28, 44, 0.55), rgba(20, 21, 33, 0.35));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.3s ease, border-color 0.25s ease;
  text-align: left;
}
.feature:hover { transform: translateY(-4px); border-color: rgba(178, 142, 245, 0.35); }
.feature img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin-bottom: 22px;
  filter: drop-shadow(0 14px 30px rgba(124, 67, 230, 0.30));
}
.feature h4 { font-size: 20px; font-family: var(--f-display); margin-bottom: 10px; }
.feature p { font-size: 14px; line-height: 1.6; color: var(--ink-dim); }
@media (max-width: 1100px) { .features { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .features { grid-template-columns: 1fr; } }

/* ---------- Reviews ---------- */
.reviews h2 { font-size: clamp(34px, 5vw, 64px); text-align: center; margin-bottom: 14px; }
.reviews .tp-top {
  text-align: center;
  margin-bottom: 56px;
  color: var(--ink-dim);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.reviews .tp-top .stars { display: inline-flex; gap: 2px; }
.reviews .tp-top .stars i {
  width: 15px; height: 15px;
  background: #00b67a;
  display: inline-block;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review {
  padding: 30px;
  background: rgba(28, 28, 44, 0.4);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
}
.review .stars { display: flex; gap: 2px; margin-bottom: 16px; }
.review .stars i {
  width: 16px; height: 16px;
  background: #00b67a;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.review p { font-size: 15px; color: var(--ink); margin-bottom: 22px; flex: 1; line-height: 1.6; }
.review .author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.review .avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tag-1), #7c43e6);
  display: grid; place-items: center;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}
.review .name { font-weight: 500; font-size: 14px; color: var(--ink); }
.review .date { font-size: 12px; color: var(--ink-mute); }
@media (max-width: 1000px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ---------- CTA Banner ---------- */
.cta-banner {
  margin: 40px 24px;
  border-radius: 32px;
  padding: 110px 40px;
  text-align: center;
  background: var(--grad-bg-1);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 100% at 50% 100%, rgba(124, 67, 230, 0.45), transparent 60%);
  pointer-events: none;
}
.cta-banner > * { position: relative; }
.cta-banner h2 { font-size: clamp(40px, 5.5vw, 72px); margin-bottom: 36px; }
.cta-banner h2 em { font-style: italic; color: var(--gold-100); }

/* ---------- FAQ ---------- */
.faq h2 { font-size: clamp(34px, 5vw, 64px); text-align: center; margin-bottom: 14px; }
.faq .sub { text-align: center; color: var(--ink-dim); margin-bottom: 56px; }
.faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: rgba(28, 28, 44, 0.5);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item:hover { border-color: rgba(178, 142, 245, 0.3); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  color: var(--ink);
  font-family: var(--f-sans);
}
.faq-q .plus {
  font-size: 22px;
  color: var(--tag-1);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  line-height: 1;
  font-weight: 300;
}
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-a { max-height: 700px; }
.faq-a-inner { padding: 0 28px 26px; color: var(--ink-dim); font-size: 15px; line-height: 1.75; }
.faq-a-inner a { color: var(--tag-1); text-decoration: underline; }

/* ---------- Footer ---------- */
.footer {
  padding: 96px 0 48px;
  border-top: 1px solid var(--line);
  margin-top: 60px;
  background: linear-gradient(180deg, transparent, rgba(28, 28, 44, 0.5));
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; font-size: 22px; font-weight: 500; margin-bottom: 18px; font-family: var(--f-sans); color: var(--ink); }
.footer-brand img { width: 44px; height: 44px; border-radius: 10px; }
.footer-col h5 {
  font-family: var(--f-caps);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-100);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: var(--ink-dim); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink-mute);
  text-align: center;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } .cta-banner { padding: 80px 24px; } .hero-lotus { width: 110px; margin-bottom: 24px; } }

/* ---------- Mobile drawer ---------- */
.drawer {
  position: fixed;
  inset: 0;
  background: rgba(10, 11, 16, 0.97);
  backdrop-filter: blur(16px);
  z-index: 200;
  display: none;
  flex-direction: column;
  padding: 24px;
}
.drawer.open { display: flex; }
.drawer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 48px; }
.drawer-top .close { font-size: 32px; width: 44px; height: 44px; display: grid; place-items: center; color: var(--ink); }
.drawer nav { display: flex; flex-direction: column; gap: 4px; }
.drawer nav a { padding: 20px 12px; font-size: 20px; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 14px; color: var(--ink); }
.drawer .drawer-cta { margin-top: auto; display: flex; flex-direction: column; gap: 12px; }

/* ---------- Accessibility ---------- */
:focus-visible { outline: 2px solid var(--tag-1); outline-offset: 3px; border-radius: 6px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  video { display: none; }
}
