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

* {
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ivory);
  background:
    radial-gradient(circle at 15% 0%, #2f2619 0%, transparent 45%),
    radial-gradient(circle at 90% 10%, #3b2b14 0%, transparent 40%),
    linear-gradient(165deg, #090806 0%, #15110b 50%, #120e08 100%);
}

img {
  max-width: 100%;
}

.page-shell {
  overflow: clip;
}

.hero {
  position: relative;
  padding: 2rem clamp(1rem, 4vw, 3rem) 2.2rem;
  background:
    linear-gradient(120deg, rgba(7, 6, 4, 0.84), rgba(19, 14, 7, 0.6)),
    url("https://freedomescapexcelerator.com/hosted/images/ae/7b043b7ef847c1b167e8e46297faf3/9.5.png") 84% 12% / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.08) 0 24%, transparent 24% 48%, rgba(255, 255, 255, 0.05) 48% 72%, transparent 72% 100%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

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

.nav,
.hero-content,
.hero-trust,
.metrics,
.training,
.host,
.final-cta,
.footer {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin-inline: auto;
}

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

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

.nav-cta {
  text-decoration: none;
  color: var(--obsidian);
  background: linear-gradient(120deg, var(--gold-soft), var(--gold));
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-content {
  margin-top: clamp(4rem, 11vh, 8rem);
}

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

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

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

h1 span {
  color: var(--gold-soft);
}

.subtext {
  margin-top: 1rem;
  max-width: 760px;
  color: #efe5cf;
  font-size: clamp(1rem, 2.1vw, 1.24rem);
  line-height: 1.65;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

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

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

.btn:hover,
.nav-cta: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-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

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

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

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

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

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

.metric-card {
  background: linear-gradient(165deg, rgba(18, 14, 9, 0.96), rgba(29, 22, 13, 0.96));
  border: 1px solid rgba(199, 160, 81, 0.42);
  border-radius: 1.2rem;
  padding: 1.3rem;
  text-align: center;
}

.metric-value {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  color: var(--gold-soft);
}

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

.training,
.host,
.final-cta {
  margin-top: 4rem;
}

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

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

.feature-grid {
  margin-top: 1.9rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
  background: linear-gradient(170deg, rgba(30, 22, 13, 0.95), rgba(18, 14, 9, 0.94));
  border: 1px solid rgba(199, 160, 81, 0.35);
  border-radius: 1.2rem;
  padding: 1.3rem;
}

.feature-card .icon {
  margin: 0;
  width: 2.1rem;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: linear-gradient(130deg, #f0d9a7, #c49040);
  color: #1f180f;
  font-family: "Cinzel", serif;
  font-size: 0.88rem;
  display: grid;
  place-items: center;
}

.feature-card h3 {
  margin-top: 0.9rem;
  font-size: 1.08rem;
}

.feature-card p {
  margin-top: 0.8rem;
  color: #ddd1bd;
  line-height: 1.6;
  font-size: 0.95rem;
}

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

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

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

.host-copy h2 {
  margin-top: 0.8rem;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
}

.host-copy p {
  color: #ddd0b8;
  line-height: 1.7;
  margin-top: 0.95rem;
}

.host-copy .btn {
  margin-top: 1.1rem;
}

.final-cta {
  padding: 3rem 0 1rem;
}

.final-card {
  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.45);
  border-radius: 1.4rem;
  padding: clamp(1.4rem, 4vw, 3rem);
  text-align: center;
}

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

.final-card p {
  margin: 1rem auto 0;
  color: #ddd0b8;
  max-width: 760px;
  line-height: 1.7;
}

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

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

.footer p {
  margin: 0.3rem auto 0;
  max-width: 760px;
}

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

.social-proof {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: min(92vw, 320px);
  background: rgba(18, 14, 9, 0.95);
  border: 1px solid rgba(199, 160, 81, 0.48);
  border-radius: 1rem;
  backdrop-filter: blur(8px);
  z-index: 40;
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.45);
}

.proof-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border-bottom: 1px solid rgba(199, 160, 81, 0.28);
  padding: 0.7rem 0.9rem;
}

.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;
}

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

.proof-status {
  margin-left: auto;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b5aa96;
}

.proof-minimize {
  border: none;
  background: transparent;
  color: #d8c9aa;
  font-size: 1.1rem;
  cursor: pointer;
}

.proof-preview {
  display: none;
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  padding: 0.82rem 0.9rem 0.92rem;
  cursor: pointer;
}

.proof-preview-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.24rem 0.48rem;
  background: rgba(229, 204, 141, 0.13);
  border: 1px solid rgba(229, 204, 141, 0.2);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.proof-preview-text {
  display: block;
  margin-top: 0.58rem;
  color: #efe4cf;
  line-height: 1.45;
  font-size: 0.88rem;
}

.proof-body {
  padding: 0.9rem;
  display: grid;
  gap: 0.72rem;
}

.proof-topline {
  display: flex;
  align-items: center;
  gap: 0.72rem;
}

.proof-avatar {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #120f0a;
  background: linear-gradient(145deg, #f2dca9, #bf8d3b);
}

.proof-meta {
  min-width: 0;
}

.proof-badge,
.proof-source {
  margin: 0;
}

.proof-badge {
  color: var(--gold-soft);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.proof-source {
  margin-top: 0.2rem;
  font-size: 0.73rem;
  color: #9d917d;
}

.proof-message {
  margin: 0;
  font-size: 0.92rem;
  color: #efe4cf;
  line-height: 1.45;
}

.proof-footer {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
}

.proof-time,
.proof-summary {
  margin: 0;
  font-size: 0.76rem;
  color: #a99d89;
}

.proof-summary {
  text-align: right;
}

.proof-cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  color: var(--obsidian);
  background: linear-gradient(100deg, #f2daa3 0%, #e0c27a 45%, #bf8d3b 100%);
}

.proof-progress {
  height: 0.24rem;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(229, 204, 141, 0.12);
}

.proof-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #f0d9a7, #c49040);
  transform-origin: left center;
}

.social-proof.minimized .proof-body,
.social-proof.minimized .proof-status {
  display: none;
}

.social-proof.minimized .proof-preview {
  display: block;
}

.reveal {
  opacity: 1;
  transform: none;
}

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

  70% {
    box-shadow: 0 0 0 0.6rem rgba(103, 208, 140, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(103, 208, 140, 0);
  }
}

@keyframes timer {
  from {
    transform: scaleX(1);
  }

  to {
    transform: scaleX(0);
  }
}

@media (max-width: 980px) {
  .feature-grid,
  .metrics,
  .hero-trust {
    grid-template-columns: 1fr;
  }

  .host {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero {
    background-position: 72% 18%;
    padding-bottom: 2.6rem;
  }

  .nav {
    flex-wrap: wrap;
  }

  .hero-content {
    margin-top: 3.5rem;
  }

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

  .cta-row .btn {
    width: 100%;
  }

  .social-proof {
    left: 1rem;
    right: 1rem;
    width: auto;
    bottom: 5rem;
  }

  .proof-preview {
    display: block;
  }

  .social-proof:not(.minimized) .proof-preview {
    display: none;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    display: block;
    z-index: 38;
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .mobile-sticky-cta .btn {
    width: 100%;
  }

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