:root {
  /* Keep your existing MenoBoost palette */
  --bg: #fff7f3;
  --bg-alt: #fffaf7;
  --text-main: #2f2530;
  --text-muted: #6f6474;
  --accent: #f37a7a;      /* warm coral */
  --accent-soft: #f7c5a0; /* soft peach */
  --deep-plum: #5a2a5a;
  --sand: #f4e9db;
  --border-soft: #eeded2;
  --shadow-soft: 0 18px 45px rgba(60, 24, 54, 0.08);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --max-width: 1120px;

  --section-padding: 80px 1.5rem;
}

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

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: radial-gradient(
    circle at top left,
    #ffe6de,
    #fff7f3 40%,
    #ffffff 80%
  );
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrapper {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =========================
   NAVBAR (fixed like attached CSS)
   ========================= */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 40;
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.15rem 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.8rem 0;

}

.brand-logo {
  height: 82px;      /* adjust to taste: 40–52px usually looks good */
  width: auto;
  display: block;
}


.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 40% 60% 60% 40%;
  background: radial-gradient(circle at 30% 20%, #ffe6de, var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-soft);
}

.brand-text-main {
  font-weight: 800;
  letter-spacing: 0.03em;
  font-size: 2.6rem;
  text-transform: uppercase;
  color: var(--deep-plum);
}

.brand-text-sub {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 0.95rem;   /* slightly larger nav text */
}

.nav-link {
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: color 0.25s ease;
}

.nav-link:hover {
  color: var(--deep-plum);
}

.nav-mobile-toggle {
  display: none;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(90, 42, 90, 0.18);
  padding: 0.3rem 0.7rem;
  font-size: 0.78rem;
  color: var(--deep-plum);
  background: rgba(255, 255, 255, 0.9);
}

/* =========================
   HERO (gradient + floating card feel)
   ========================= */

.hero {
  margin-top: 70px; /* space for fixed nav */
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-soft) 60%);
  color: #ffffff;
  min-height: 540px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  /* soft circles like attached CSS */
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.14),
      transparent 60%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 255, 255, 0.16),
      transparent 65%
    ),
    radial-gradient(
      circle at 90% 30%,
      rgba(255, 255, 255, 0.1),
      transparent 55%
    );
  opacity: 0.6;
}

.hero .wrapper {
  position: relative;
  z-index: 1;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 50px;
  align-items: center;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(244, 233, 219, 0.9);
  color: var(--deep-plum);
  margin-bottom: 1rem;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.hero-title {
  font-size: clamp(2.2rem, 3vw, 2.9rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.hero-highlight {
  color: #fffbf2;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
}

.hero-subtitle {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
  max-width: 34rem;
}

.hero-cta {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.btn {
  padding: 12px 26px;
  border-radius: 40px;
  border: none;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-primary {
  background: #ffffff;
  color: var(--accent);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.18);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.26);
}

.btn-ghost {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-ghost:hover {
  background: #ffffff;
  color: var(--accent);
}

.hero-note {
  font-size: 0.8rem;
  opacity: 0.9;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  opacity: 0.95;
}

.hero-meta strong {
  font-weight: 600;
}

/* Floating-style hero card */
.hero-card {
  position: relative;
  background: #ffffff;
  color: var(--text-main);
  padding: 1.5rem 1.6rem;
  border-radius: 20px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.6);
  animation: float 3s ease-in-out infinite;
}

.hero-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(243, 122, 122, 0.08);
  color: var(--deep-plum);
  font-weight: 600;
}

.hero-card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--deep-plum);
}

.checklist {
  list-style: none;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}

.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(243, 122, 122, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--accent);
  flex-shrink: 0;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.35rem;
}

.pill {
  font-size: 0.7rem;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  background: #fff7f3;
  border: 1px solid rgba(243, 122, 122, 0.2);
  color: var(--deep-plum);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* =========================
   SECTIONS
   ========================= */

section {
  padding: 2.75rem 0;
  /* padding: 90px 0; */
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--deep-plum);
  margin-bottom: 0.4rem;
}

.section-title {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  background: linear-gradient(135deg, var(--accent), var(--deep-plum));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 32rem;
  margin: 0 auto;
}

/* Problem / Solution two-column cards */

#why {
  background: #ffffff;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: flex-start;
}

.card {
  /* background: var(--bg-alt); */
  background: #ffffff;
  border-radius: 20px;
  padding: 1.7rem 1.6rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.card-title {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: var(--deep-plum);
}

.card-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.bullet-list {
  list-style: none;
  font-size: 0.88rem;
  color: var(--text-muted);
  display: grid;
  gap: 0.35rem;
}

.bullet-list li::before {
  content: "•";
  margin-right: 0.4rem;
  color: var(--accent);
}

/* Features grid (similar to "about" & "services" cards in attached CSS) */

#features {
  background: var(--bg-alt);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.7rem;
}

.feature-card {
  /* background: var(--bg-alt); */
   background: #ffffff;
  border-radius: 20px;
  padding: 1.4rem 1.3rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: left;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

.feature-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--deep-plum);
  margin-bottom: 0.4rem;
}

.feature-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.feature-body {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.feature-meta {
  font-size: 0.78rem;
  color: var(--deep-plum);
  font-weight: 500;
}

/* How it works steps (like tips cards) */

#how {
  background: #ffffff;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.step {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 1.4rem 1.3rem;
  border: 1px dashed rgba(243, 122, 122, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(243, 122, 122, 0.95),
    rgba(247, 197, 160, 0.95)
  );
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  box-shadow: 0 4px 15px rgba(243, 122, 122, 0.45);
}

.step-title {
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.step-body {
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* Founder story (gradient panel, like contact / result card) */

#story {
  background: var(--bg-alt);
}

.founder {
  /* background: linear-gradient(135deg, #fffaf7, #ffe6de); */
  background: #3e2b22;
  border-radius: 22px;
  padding: 1.9rem 1.6rem;
  border: 1px solid rgba(243, 122, 122, 0.22);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.8rem;
  align-items: center;
}

.founder-label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--deep-plum);
  margin-bottom: 0.5rem;
}

.quote-mark {
  font-size: 2.6rem;
  line-height: 1;
  color: rgba(90, 42, 90, 0.36);
  margin-bottom: -0.4rem;
}

.founder-body {
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 0.6rem;
}

.founder-body span {
  font-weight: 600;
}

.founder-name {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.founder-side {
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* CTA / Waitlist (like calculator card/result card layout) */

#waitlist {
  background: #ffffff;
}

.cta {
  background: #ffffff;
  border-radius: 22px;
  padding: 1.9rem 1.6rem;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-soft);
  text-align: center;
}

.cta-title {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.cta-subtitle {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}

.cta-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 0.7rem;
}

.input {
  min-width: 230px;
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 2px solid var(--sand);
  font-size: 0.9rem;
  outline: none;
  background: #fffaf7;
}

.input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(243, 122, 122, 0.2);
  background: #ffffff;
}

.cta-note {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* FOOTER (darker band like attached CSS) */

.footer {
  background: #1f2937;
  color: #ffffff;
  padding: 1.8rem 0 1.4rem;
  font-size: 0.8rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-links button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.footer-links button:hover {
  color: #ffffff;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 90px;
  }

  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }

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

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

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

@media (max-width: 700px) {
  /* Stack nav content and keep links visible */
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.85rem;
  }

  .nav-mobile-toggle {
    display: none; /* hide the "Early access" pill, not needed now */
  }

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

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

  .hero-card {
    margin-top: 0.5rem;
  }

  .brand-logo {
  height: 60px;
}

.brand-text-main {
  font-size: 2rem;
}

.brand-text-sub {
  font-size: 1rem;
}
}


/* @media (max-width: 480px) {
  .hero-title {
    font-size: 1.9rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
} */


@media (max-width: 480px) {
  .nav-inner {
    padding: 0.7rem 1rem;
  }

  .wrapper {
    padding: 0 1rem;
  }

  .hero {
    padding: 2.5rem 0 2.2rem;
  }

  .hero-title {
    font-size: 1.9rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-card {
    margin-top: 1.2rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }
}
