:root{
  --bg:#edf3fb;
  --surface:#fffdf8;
  --surface-soft:#fbf8f1;
  --text:#16315d;
  --muted:#5d6d89;
  --line:#d8e4f5;
  --blue:#2d5ee8;
  --navy:#1c2f63;
  --green:#1f8b57;
  --yellow:#ffc53a;
  --shadow:0 18px 40px rgba(16,38,77,.08);
  --radius:22px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:linear-gradient(180deg,#edf2f7 0%,#f7f3eb 100%);
  color:var(--text);
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  line-height:1.7;
}

a{color:var(--blue);text-decoration:none}
a:hover{text-decoration:underline}
img{display:block;max-width:100%}

.path-inner{
  width:min(1120px,calc(100% - 32px));
  margin:0 auto;
}

.path-shell{
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter:blur(12px);
  background:rgba(247,243,235,.92);
  border-bottom:1px solid rgba(226,218,201,.92);
}

.path-shell-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.path-brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--text);
  text-decoration:none;
}

.path-brand:hover{text-decoration:none}

.path-brand img{
  width:42px;
  height:42px;
  border-radius:12px;
  box-shadow:0 10px 22px rgba(21,47,98,.18);
}

.path-brand span{
  display:grid;
  gap:2px;
}

.path-brand strong{
  font-size:1rem;
  line-height:1.1;
}

.path-brand small{
  color:var(--muted);
  font-size:.84rem;
  line-height:1.2;
}

.path-nav{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
}

.path-nav a{
  color:var(--navy);
  font-weight:700;
}

.path-hero-band{
  background:
    radial-gradient(circle at 84% 18%,rgba(255,197,58,.12),transparent 18%),
    linear-gradient(180deg,#1a2d50 0%,#233c68 68%,#edf2f7 68%,#edf2f7 100%);
  color:#fff;
}

.path-hero{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(320px,.8fr);
  gap:30px;
  align-items:center;
  padding:56px 0 50px;
}

.path-eyebrow,
.path-section-kicker,
.path-card-kicker,
.path-visual-label{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:34px;
  padding:0 14px;
  border-radius:999px;
  font-size:.8rem;
  font-weight:900;
  letter-spacing:.05em;
  text-transform:uppercase;
}

.path-eyebrow{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
}

.path-hero-copy h1{
  margin:16px 0 14px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(2.2rem,4.6vw,4.2rem);
  font-weight:700;
  line-height:1;
  letter-spacing:0;
}

.path-lede{
  margin:0;
  max-width:700px;
  color:rgba(255,255,255,.9);
  font-size:1.1rem;
}

.path-note{
  margin:16px 0 0;
  max-width:690px;
  color:rgba(255,255,255,.76);
}

.path-cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.path-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 24px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:900;
  font-size:1rem;
  text-decoration:none;
  transition:transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.path-btn:hover{
  transform:translateY(-1px);
  text-decoration:none;
}

.path-btn-primary{
  background:var(--yellow);
  color:var(--navy);
  box-shadow:0 14px 30px rgba(255,197,58,.24);
}

.path-btn-secondary{
  background:rgba(255,255,255,.1);
  color:#fff;
  border-color:rgba(255,255,255,.24);
}

.path-meta-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.path-meta-row span{
  display:inline-flex;
  align-items:center;
  min-height:auto;
  padding:0 0 0 14px;
  border-radius:0;
  background:transparent;
  border:0;
  color:rgba(255,255,255,.84);
  font-size:.9rem;
  position:relative;
}

.path-meta-row span::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  width:7px;
  height:7px;
  border-radius:999px;
  background:rgba(255,197,58,.95);
  transform:translateY(-50%);
}

.path-hero-aside{
  display:grid;
}

.path-visual-card{
  background:linear-gradient(180deg,#fffdf8 0%,#f8f3ea 100%);
  color:var(--text);
  border:1px solid #e1d8c7;
  border-radius:28px;
  box-shadow:0 22px 42px rgba(17,29,53,.12);
  padding:22px;
}

.path-visual-label{
  background:#f5efe0;
  border:1px solid #e6d5b2;
  color:#8a5b09;
}

.path-visual-card img{
  margin:18px auto 16px;
  height:auto;
  max-height:360px;
  object-fit:contain;
  width:min(100%,300px);
  filter:drop-shadow(0 18px 26px rgba(17,38,78,.18));
}

.path-visual-card h2{
  margin:0 0 8px;
  font-family:Georgia,"Times New Roman",serif;
  color:var(--navy);
  font-size:1.14rem;
  font-weight:700;
  line-height:1.3;
}

.path-visual-card p{
  margin:0;
  color:var(--muted);
}

.path-section{
  padding:28px 0;
}

.path-intro-grid,
.path-card-grid,
.path-unlock-grid,
.path-related-grid{
  display:grid;
  gap:18px;
}

.path-intro-grid{
  grid-template-columns:repeat(2,minmax(0,1fr));
}

.path-card-grid{
  grid-template-columns:repeat(2,minmax(0,1fr));
}

.path-unlock-grid{
  grid-template-columns:repeat(2,minmax(0,1fr));
}

.path-related-grid{
  grid-template-columns:repeat(3,minmax(0,1fr));
}

.path-section-head{
  margin-bottom:18px;
}

.path-section-kicker{
  background:#edf3ff;
  border:1px solid #cfe0ff;
  color:var(--blue);
}

.path-section-head h2{
  margin:14px 0 8px;
  font-family:Georgia,"Times New Roman",serif;
  color:var(--navy);
  font-size:clamp(1.6rem,2.3vw,2.2rem);
  font-weight:700;
  line-height:1.1;
}

.path-section-head p{
  margin:0;
  max-width:760px;
  color:var(--muted);
}

.path-card{
  background:linear-gradient(180deg,#fffdf8 0%,#fbf6ee 100%);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:24px;
}

.path-card-accent{
  background:linear-gradient(180deg,#fffdf8 0%,#f7f3eb 100%);
  border-color:#e2d7c2;
}

.path-card-kicker{
  background:#eef6f0;
  border:1px solid #bfd7c5;
  color:var(--green);
}

.path-card h2,
.path-card h3{
  margin:14px 0 10px;
  font-family:Georgia,"Times New Roman",serif;
  color:var(--navy);
  font-weight:700;
  line-height:1.2;
}

.path-card p{
  margin:0;
  color:var(--muted);
}

.path-offer-quote{
  color:var(--navy)!important;
  font-weight:800;
  font-size:1.02rem;
}

.path-bullet-list{
  margin:12px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}

.path-bullet-list li{
  position:relative;
  padding-left:18px;
  color:var(--text);
}

.path-bullet-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.72em;
  width:8px;
  height:8px;
  border-radius:999px;
  background:var(--green);
  transform:translateY(-50%);
}

.path-step-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}

.path-step-card{
  background:linear-gradient(180deg,#fffdf8 0%,#faf5ec 100%);
  border:1px solid var(--line);
  border-radius:20px;
  box-shadow:var(--shadow);
  padding:20px;
}

.path-step-card span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:14px;
  background:#f5efe0;
  color:#8a5b09;
  font-weight:900;
}

.path-step-card h3{
  margin:14px 0 8px;
  font-family:Georgia,"Times New Roman",serif;
  color:var(--navy);
  font-size:1.05rem;
  font-weight:700;
  line-height:1.2;
}

.path-step-card p{
  margin:0;
  color:var(--muted);
}

.path-unlock-card{
  display:grid;
  grid-template-columns:180px minmax(0,1fr);
  gap:18px;
  align-items:center;
}

.path-unlock-media{
  background:linear-gradient(180deg,#fbf8f1 0%,#f3ede1 100%);
  border:1px solid #dbe7f8;
  border-radius:18px;
  padding:12px;
}

.path-unlock-media img{
  margin:0 auto;
  max-height:220px;
  object-fit:contain;
}

.path-bonus-media{
  background:linear-gradient(180deg,#f8fbf6 0%,#eef6ef 100%);
  border-color:#d5eadc;
}

.path-related-card{
  display:flex;
  flex-direction:column;
  gap:10px;
  background:linear-gradient(180deg,#fffdf8 0%,#faf5ec 100%);
  border:1px solid var(--line);
  border-radius:14px;
  box-shadow:0 12px 24px rgba(17,29,53,.05);
  padding:22px;
  color:var(--text);
  text-decoration:none;
}

.path-related-card:hover{
  text-decoration:none;
  transform:translateY(-1px);
}

.path-related-card strong{
  font-family:Georgia,"Times New Roman",serif;
  color:var(--navy);
  font-size:1.04rem;
  font-weight:700;
  line-height:1.25;
}

.path-related-card p{
  margin:0;
  color:var(--muted);
  flex:1;
}

.path-related-card span{
  color:var(--blue);
  font-weight:800;
}

.path-faq-stack{
  display:grid;
  gap:12px;
}

.path-faq-item{
  background:linear-gradient(180deg,#fffdf8 0%,#faf5ec 100%);
  border:1px solid var(--line);
  border-radius:12px;
  box-shadow:0 10px 20px rgba(17,29,53,.04);
  overflow:hidden;
}

.path-faq-item summary{
  cursor:pointer;
  list-style:none;
  padding:18px 22px;
  color:var(--navy);
  font-weight:800;
}

.path-faq-item summary::-webkit-details-marker{display:none}

.path-faq-item p{
  margin:0;
  padding:0 22px 20px;
  color:var(--muted);
}

.path-cta-panel{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  background:linear-gradient(180deg,#fffaf3 0%,#f4ede1 100%);
  border:1px solid #e1d5be;
  border-radius:16px;
  box-shadow:0 14px 26px rgba(17,29,53,.05);
  padding:28px;
}

.path-cta-panel h2{
  margin:12px 0 8px;
  font-family:Georgia,"Times New Roman",serif;
  color:var(--navy);
  font-weight:700;
  line-height:1.1;
}

.path-cta-panel p{
  margin:0;
  max-width:720px;
  color:var(--muted);
}

.path-cta-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.path-footer{
  padding:0 0 42px;
}

.path-footer-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding-top:6px;
}

.path-footer-row p{
  margin:0;
  color:var(--muted);
  max-width:780px;
}

.path-footer-row a{
  color:var(--navy);
  font-weight:800;
}

@media (max-width: 960px){
  .path-hero,
  .path-intro-grid,
  .path-card-grid,
  .path-unlock-grid,
  .path-related-grid,
  .path-step-grid,
  .path-cta-panel{
    grid-template-columns:1fr;
  }

  .path-hero{
    padding:44px 0 40px;
  }

  .path-cta-panel{
    display:grid;
  }
}

@media (max-width: 720px){
  .path-inner{
    width:min(100% - 20px,1120px);
  }

  .path-shell-row,
  .path-footer-row{
    flex-direction:column;
    align-items:flex-start;
  }

  .path-nav{
    gap:12px;
  }

  .path-hero-copy h1{
    font-size:clamp(2rem,12vw,3.2rem);
  }

  .path-unlock-card{
    grid-template-columns:1fr;
  }

  .path-btn{
    width:100%;
  }

  .path-cta-actions{
    width:100%;
  }
}
