:root {
  --obsidian: #0d0c0a;
  --charcoal: #17140f;
  --espresso: #231c13;
  --gold: #c7a051;
  --gold-soft: #e5cc8d;
  --gold-bright: #f0d9a7;
  --ivory: #f5eedf;
  --stone: #c7c1b4;
  --ink-soft: #ddd0b8;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ivory);
  background:
    radial-gradient(circle at 12% 0%, rgba(70, 51, 24, 0.58) 0%, transparent 36%),
    radial-gradient(circle at 90% 12%, rgba(88, 63, 23, 0.42) 0%, transparent 30%),
    linear-gradient(160deg, #070604 0%, #120f0a 45%, #0d0b08 100%);
}

.page-shell {
  overflow: clip;
}

.hero {
  position: relative;
  padding: 2rem clamp(1rem, 4vw, 3rem) 2.4rem;
  background:
    linear-gradient(105deg, rgba(8, 7, 5, 0.92) 12%, rgba(18, 14, 8, 0.72) 54%, rgba(18, 14, 8, 0.38) 100%),
    url("https://freedomescapexcelerator.com/hosted/images/ae/7b043b7ef847c1b167e8e46297faf3/9.5.png") 86% 12% / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.08) 0 20%, transparent 20% 44%, rgba(255, 255, 255, 0.04) 44% 68%, transparent 68% 100%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 260px;
  background: linear-gradient(to top, rgba(13, 12, 10, 0.98), rgba(13, 12, 10, 0));
}

.nav,
.hero-grid,
.hero-trust,
.metrics,
.value-stack,
.roadmap,
.inside,
.mentor,
.final-cta,
.footer {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(0.76rem, 2vw, 0.95rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--obsidian);
  background: linear-gradient(120deg, var(--gold-soft), var(--gold));
  padding: 0.78rem 1rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero-grid {
  margin-top: clamp(2.8rem, 9vh, 6rem);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 420px);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: center;
}

.kicker,
.section-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 800;
  color: var(--gold-soft);
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cinzel", serif;
  line-height: 1.12;
}

h1 {
  margin-top: 1rem;
  max-width: 860px;
  font-size: clamp(2.2rem, 5.2vw, 4.7rem);
  text-wrap: balance;
}

h1 span,
.metric-value,
.value-index,
.roadmap-step,
.vault-badge,
.curriculum-label {
  color: var(--gold-soft);
}

.subtext,
.section-copy {
  max-width: 760px;
  margin-top: 1rem;
  color: #efe4cf;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.08rem, 2.1vw, 1.32rem);
  line-height: 1.6;
  font-weight: 600;
}

.hero-list {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.72rem;
  max-width: 720px;
}

.hero-list p {
  margin: 0;
  padding: 0.92rem 1rem;
  border-radius: 1rem;
  background: rgba(12, 10, 7, 0.56);
  border: 1px solid rgba(229, 204, 141, 0.24);
  color: #efe4cf;
  line-height: 1.5;
}

.cta-row {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.98rem 1.5rem;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  color: var(--obsidian);
  background: linear-gradient(100deg, #f2daa3 0%, #e0c27a 45%, #bf8d3b 100%);
  box-shadow: 0 10px 30px rgba(201, 155, 74, 0.28);
}

.btn-gold::after {
  content: "";
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  pointer-events: none;
}

.btn-ghost {
  color: var(--ivory);
  border: 1px solid rgba(229, 204, 141, 0.54);
  background: rgba(9, 8, 6, 0.34);
}

.micro-proof {
  margin: 1rem 0 0;
  color: #d6c7aa;
  font-size: 0.86rem;
  line-height: 1.5;
  max-width: 640px;
}

.vault-card {
  position: relative;
  padding: 1.1rem;
  border-radius: 1.4rem;
  background:
    linear-gradient(160deg, rgba(14, 11, 8, 0.98), rgba(27, 20, 12, 0.94)),
    url("https://freedomescapexcelerator.com/hosted/images/ae/34b3c227ed48a1885dc5ce2d98e311/White-tear2.png") center / cover;
  border: 1px solid rgba(199, 160, 81, 0.4);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.vault-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.vault-topbar {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(229, 204, 141, 0.2);
}

.dot {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: #67d08c;
  box-shadow: 0 0 0 0 rgba(103, 208, 140, 0.7);
  animation: pulse 1.9s infinite;
}

.vault-topbar p {
  margin: 0;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
}

.vault-badge {
  margin: 0;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.vault-card h2 {
  margin-top: 0.7rem;
  font-size: clamp(1.5rem, 3.1vw, 2.1rem);
}

.vault-copy {
  margin: 0.88rem 0 0;
  color: #e7dcc7;
  line-height: 1.62;
}

.vault-points {
  list-style: none;
  padding: 0;
  margin: 1.05rem 0 0;
  display: grid;
  gap: 0.6rem;
}

.vault-points li {
  position: relative;
  padding: 0.82rem 0.9rem 0.82rem 2.4rem;
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(229, 204, 141, 0.16);
  color: #efe4cf;
}

.vault-points li::before {
  content: "";
  position: absolute;
  left: 0.95rem;
  top: 50%;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  transform: translateY(-50%);
  background: linear-gradient(145deg, var(--gold-bright), var(--gold));
  box-shadow: 0 0 0 5px rgba(229, 204, 141, 0.08);
}

.vault-meta {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #aa9f8b;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-trust {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.trust-pill {
  padding: 0.82rem 0.95rem;
  text-align: center;
  border-radius: 999px;
  background: rgba(13, 12, 10, 0.68);
  border: 1px solid rgba(229, 204, 141, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.78rem;
}

main {
  padding: 0 clamp(1rem, 4vw, 3rem) 3rem;
}

.metrics {
  margin-top: -1.15rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.metric-card,
.value-card,
.roadmap-card,
.curriculum-group {
  background: linear-gradient(165deg, rgba(18, 14, 9, 0.98), rgba(29, 22, 13, 0.94));
  border: 1px solid rgba(199, 160, 81, 0.34);
  border-radius: 1.25rem;
}

.metric-card {
  padding: 1.3rem;
  text-align: center;
}

.metric-value {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
}

.metric-label {
  margin: 0.55rem 0 0;
  color: var(--stone);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  line-height: 1.5;
}

.metrics-note {
  max-width: var(--max);
  margin: 0.9rem auto 0;
  text-align: center;
  color: #998e7b;
  font-size: 0.78rem;
}

.value-stack,
.roadmap,
.inside,
.mentor,
.final-cta {
  margin-top: 4.2rem;
}

.section-head {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.section-head h2 {
  margin-top: 0.85rem;
  font-size: clamp(1.72rem, 4vw, 2.95rem);
}

.value-grid,
.roadmap-grid {
  margin-top: 1.9rem;
  display: grid;
  gap: 1rem;
}

.value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.value-card,
.roadmap-card,
.curriculum-group {
  padding: 1.3rem;
}

.value-index,
.roadmap-step {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.value-card h3,
.roadmap-card h3 {
  margin-top: 0.8rem;
  font-size: 1.08rem;
}

.value-card p:not(.value-index),
.roadmap-card li,
.curriculum-group li,
.mentor-copy p:not(.section-kicker),
.inside-copy p:not(.section-kicker),
.final-card p:not(.section-kicker):not(.final-note) {
  color: var(--ink-soft);
  line-height: 1.65;
}

.value-card ul,
.roadmap-card ul,
.curriculum-group ul {
  list-style: none;
  padding: 0;
  margin: 0.9rem 0 0;
  display: grid;
  gap: 0.62rem;
}

.value-card li,
.roadmap-card li,
.curriculum-group li {
  position: relative;
  padding-left: 1.25rem;
}

.value-card li::before,
.roadmap-card li::before,
.curriculum-group li::before,
.benefit-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-bright), var(--gold));
  transform: translateY(-50%);
}

.inside {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.2rem;
  align-items: start;
}

.inside-copy {
  padding-right: clamp(0rem, 2vw, 1rem);
}

.inside-actions {
  margin-top: 1.5rem;
}

.curriculum-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.curriculum-label {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mentor {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 1.4rem;
  align-items: center;
}

.mentor-image-wrap {
  padding: 0.5rem;
  border-radius: 1.3rem;
  border: 1px solid rgba(199, 160, 81, 0.45);
  background: linear-gradient(160deg, rgba(14, 11, 8, 0.96), rgba(27, 20, 12, 0.94));
}

.mentor-image-wrap img {
  display: block;
  width: 100%;
  border-radius: 1rem;
}

.mentor-copy h2 {
  margin-top: 0.8rem;
  font-size: clamp(1.7rem, 4vw, 2.85rem);
}

.benefit-list {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.8rem;
}

.benefit-item {
  position: relative;
  padding: 0.95rem 1rem 0.95rem 1.45rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(229, 204, 141, 0.16);
  color: #efe4cf;
}

.benefit-item::before {
  left: 0.72rem;
}

.final-card {
  padding: clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  border-radius: 1.45rem;
  background:
    linear-gradient(135deg, rgba(22, 17, 10, 0.97), rgba(9, 8, 6, 0.98)),
    url("https://freedomescapexcelerator.com/hosted/images/ae/34b3c227ed48a1885dc5ce2d98e311/White-tear2.png") center / cover;
  border: 1px solid rgba(199, 160, 81, 0.4);
}

.final-card h2 {
  margin-top: 0.85rem;
  font-size: clamp(1.8rem, 4.2vw, 3rem);
}

.final-card > p {
  max-width: 760px;
  margin: 1rem auto 0;
}

.final-benefits {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.final-benefits p {
  margin: 0;
  padding: 0.82rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(229, 204, 141, 0.18);
  color: #efe4cf;
}

.btn-xl {
  margin-top: 1.6rem;
  width: min(100%, 480px);
}

.final-note {
  margin: 0.9rem auto 0;
  color: #aa9e8a;
  font-size: 0.82rem;
}

.footer {
  margin-top: 2.5rem;
  margin-bottom: 3rem;
  padding: 0 1rem;
  text-align: center;
  color: #9f9685;
  font-size: 0.78rem;
  line-height: 1.7;
}

.mobile-sticky-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: rise 700ms ease forwards;
}

.reveal:nth-child(2) { animation-delay: 90ms; }
.reveal:nth-child(3) { animation-delay: 160ms; }

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(103, 208, 140, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(103, 208, 140, 0); }
  100% { box-shadow: 0 0 0 0 rgba(103, 208, 140, 0); }
}

@media (max-width: 1080px) {
  .hero {
    background:
      linear-gradient(108deg, rgba(8, 7, 5, 0.92) 10%, rgba(18, 14, 8, 0.75) 58%, rgba(18, 14, 8, 0.45) 100%),
      url("https://freedomescapexcelerator.com/hosted/images/ae/7b043b7ef847c1b167e8e46297faf3/9.5.png") 74% 12% / cover no-repeat;
  }

  .hero-grid,
  .inside,
  .mentor {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  body {
    padding-bottom: calc(84px + env(safe-area-inset-bottom));
  }

  .hero {
    padding-bottom: 2.35rem;
    background:
      linear-gradient(108deg, rgba(8, 7, 5, 0.92) 8%, rgba(18, 14, 8, 0.78) 66%, rgba(18, 14, 8, 0.5) 100%),
      url("https://freedomescapexcelerator.com/hosted/images/ae/7b043b7ef847c1b167e8e46297faf3/9.5.png") 68% 10% / cover no-repeat;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-grid {
    margin-top: 2.5rem;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.3rem);
  }

  .subtext,
  .section-copy {
    font-size: 1rem;
    line-height: 1.5;
  }

  .curriculum-panel,
  .metrics,
  .hero-trust,
  .value-grid,
  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .cta-row {
    flex-direction: column;
  }

  .hero-trust {
    margin-top: 1.2rem;
    gap: 0.65rem;
  }

  .metrics {
    margin-top: -0.5rem;
    gap: 0.75rem;
  }

  .btn,
  .nav-cta,
  .btn-xl {
    width: 100%;
  }

  .mobile-sticky-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    padding: 0.55rem 0.75rem calc(0.55rem + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(229, 204, 141, 0.26);
    background: linear-gradient(to top, rgba(9, 8, 6, 0.98), rgba(9, 8, 6, 0.84));
    backdrop-filter: blur(8px);
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .mobile-sticky-cta.is-hidden {
    transform: translateY(120%);
    opacity: 0;
    pointer-events: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dot,
  .reveal {
    animation: none !important;
  }
}
