* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #1f1f1f;
  background: #f8f7f5;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Colors & tokens */
:root {
  --bronze-olive: #72603d;
  --gradient-start: #f7b548;
  --gradient-end: #d77b2a;
  --neutral-bg: #f8f7f5;
  --text-main: #1f1f1f;
  --text-muted: #4a4a4a;
  --phoenix-bronze: #b37c58;
  --white: #ffffff;
}

/* Header */
header {
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--bronze-olive);
}

.logo span {
  color: var(--phoenix-bronze);
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

nav a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  font-size: 14px;
}

nav a:hover {
  color: var(--phoenix-bronze);
}

.nav-cta {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-weight: 600;
}

/* Mobile nav */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text-main);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Hamburger -> X animation */
.mobile-menu-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-overlay {
    pointer-events: none;
}

.nav-overlay.active {
    pointer-events: auto;
}


/* Hero */
.hero {
  padding: 80px 0 60px;
  background: radial-gradient(circle at top left, #fff4e3, var(--neutral-bg));
}

.hero h1 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero .highlight {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 18px;
  max-width: 640px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.credibility-line {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 720px;
  margin-bottom: 24px;
}

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

.cta-button {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.cta-button.primary {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: var(--white);
  border: none;
}

.cta-button.primary:hover {
  opacity: 0.9;
}

.cta-button.secondary {
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--text-main);
  background: var(--white);
}

/* Trust Band */
.trust-band {
  padding: 32px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  background: var(--white);
}

.trust-caption {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 16px;
}

.trust-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.trust-logo {
  font-size: 18px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.55);
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}

.trust-logo:hover {
  color: var(--phoenix-bronze);
  border-color: rgba(179, 124, 88, 0.4);
}

/* Sections */
section {
  padding: 72px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: var(--bronze-olive);
}

.section-intro {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 15px;
}

/* ASCENDS - FORCED 3-ROW LAYOUT */
.ascends-section {
  background: var(--neutral-bg);
}

.ascends-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ascends-card {
  background: var(--white);
  border-radius: 12px;
  padding: 22px 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}

.ascends-card .letter {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 10px;
}

.ascends-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--bronze-olive);
}

.ascends-card p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Scale card spans all 3 columns in row 3 */
.ascends-card.scale-card {
  grid-column: 1 / -1;
}

/* LEAP */
.leap-section {
  background: var(--white);
}

.leap-definition {
  margin-top: 10px;
  font-size: 14px;
  color: var(--text-muted);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.leap-quadrants {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin: 32px auto 16px;
}

.quadrant {
  padding: 18px 18px 20px;
  border-radius: 10px;
  background: #fdfaf5;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.quadrant.top-left {
  background: #fff6e5;
}

.quadrant.top-right {
  background: #ecf9f0;
}

.quadrant.bottom-left {
  background: #ffecec;
}

.quadrant.bottom-right {
  background: #e8f3ff;
}

.quadrant h4 {
  font-size: 16px;
  margin-bottom: 2px;
  color: var(--bronze-olive);
}

.quadrant-subtitle {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.quadrant-desc {
  font-size: 13px;
  color: var(--text-muted);
}

.leap-axes {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.leap-cta-stack {
  text-align: center;
}

.leap-cta-stack .secondary-links {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.leap-cta-stack .secondary-links a {
  color: var(--phoenix-bronze);
  text-decoration: none;
}

.leap-cta-stack .secondary-links span {
  margin: 0 4px;
}

/* Offers */
.offers-section {
  background: var(--neutral-bg);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.offer-card {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}

.offer-card.featured {
  border-color: rgba(183, 119, 54, 0.7);
}

.offer-header {
  padding: 18px 18px 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.offer-header h3 {
  font-size: 18px;
  margin-bottom: 4px;
  color: var(--bronze-olive);
}

.offer-header .duration {
  font-size: 13px;
  color: var(--text-muted);
}

.offer-price {
  margin-top: 8px;
  font-weight: 600;
  color: var(--phoenix-bronze);
  font-size: 16px;
}

.offer-commitment {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

.offer-body {
  padding: 16px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.offer-purpose {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.offer-features {
  list-style: none;
  font-size: 13px;
  color: var(--text-main);
  margin-bottom: 14px;
}

.offer-features li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
}

.offer-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--phoenix-bronze);
  font-size: 12px;
}

.engagement-levels {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.offer-cta {
  margin-top: auto;
  align-self: flex-start;
  font-size: 13px;
  text-decoration: none;
  color: var(--white);
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
}

/* Founder */
.founder-section {
  background: var(--white);
}

.founder-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 32px;
  align-items: flex-start;
}

.founder-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-initials {
  width: 140px;
  height: 140px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 36px;
}

.founder-bio h3 {
  font-size: 22px;
  margin-bottom: 4px;
}

.founder-title {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.founder-summary p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.founder-story h4 {
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 4px;
  color: var(--bronze-olive);
}

.founder-story p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.founder-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.highlight-item .strengths-list {
    margin: 0.25rem 0 0;
    padding-left: 1.1rem; /* keeps default bullets, but tight */
}

.highlight-item .strengths-list li {
    margin-bottom: 0.15rem;
}

.highlight-item {
  background: #f5efe5;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
}

.highlight-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--bronze-olive);
}

.highlight-item p {
  color: var(--text-muted);
}

/* Final CTA */
.final-cta {
  background: radial-gradient(circle at top left, #ffe7bd, #f5d1a0);
  text-align: center;
  padding: 60px 0;
}

.final-cta h2 {
  font-size: 26px;
  margin-bottom: 8px;
}

.final-cta p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.final-cta .cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.final-cta .cta-button.secondary {
  background: var(--white);
}

/* Spam honeypot field (hidden off-screen) */
.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Contact */
.contact-section {
  background: var(--white);
}

.contact-form-wrapper {
  max-width: 640px;
  margin: 0 auto;
}

.contact-form {
  background: var(--neutral-bg);
  padding: 20px 18px 22px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.form-group {
  margin-bottom: 12px;
}

label {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}

input,
select,
textarea {
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-family: inherit;
  font-size: 13px;
  background: var(--white);
}

textarea {
  resize: vertical;
}

button[type='submit'] {
  border: none;
}

/* Footer */
footer {
  background: #19130a;
  color: rgba(255, 255, 255, 0.86);
  padding: 32px 0 18px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-column h4 {
  font-size: 13px;
  margin-bottom: 6px;
}

.footer-column a {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  margin-bottom: 4px;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 10px;
  text-align: center;
}

.footer-legal p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}

.trademark-notice {
  margin-top: 4px;
}

/* =========================================================
   SCHEDULE PAGE — BACK BUTTON STYLING
   ========================================================= */

.schedule-back-wrapper {
  text-align: right;
  margin-bottom: 30px;
}

.schedule-back-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid rgba(0,0,0,0.12);
  background: var(--white);
  color: var(--text-main);
  transition: all .2s ease;
}

.schedule-back-btn:hover {
  border-color: rgba(0,0,0,0.3);
  color: var(--bronze-olive);
}

/* ===========================================
   MOBILE NAV — UPDATED
   ===========================================*/

@media (max-width: 768px) {

  /* NAV WRAPPER — define a stacking context */
  nav {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--white);

    display: flex;
    flex-direction: column;
    gap: 14px;

    padding: 16px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);

    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-15px);
    transition: max-height 0.35s ease, opacity 0.3s ease, transform 0.3s ease;

    z-index: 9999;   /* ensure above overlay */
  }

  /* BODY triggers open state */
  body.nav-open nav {
    max-height: 360px;
    opacity: 1;
    transform: translateY(0);
  }

  /* Hamburger Visible */
  .mobile-menu-toggle {
    display: flex;
    z-index: 10000; /* always above overlay */
    position: relative;
  }

  /* BACKDROP OVERLAY */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);

    opacity: 0;
    pointer-events: none;  /* OFF by default */
    transition: opacity 0.3s ease;

    z-index: 900; /* BELOW nav */
  }

  .nav-overlay.active {
    opacity: 1;
    pointer-events: auto; /* enable only when active */
  }
}


  /* EXISTING MOBILE LAYOUT RULES */
  .hero {
    padding-top: 60px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .trust-logos {
    gap: 18px;
  }

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

  .ascends-card.scale-card {
    grid-column: 1;
  }

  .founder-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-links {
    justify-content: space-between;
  }
  
  
  
}

