*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "SF Pro Text", "Segoe UI", sans-serif;
  background: #070816;
  color: #f9fafb;
}

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

button {
  font-family: inherit;
}

/* TYPOGRAPHY OVERRIDES */

h1,
h2,
.logo-text {
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
    "SF Pro Text", "Segoe UI", sans-serif;
}

/* GENERIC LAYOUT WRAPPERS */

.hero,
.section,
.footer {
  padding-inline: clamp(1.5rem, 7vw, 5rem);
}

/* NAV */

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(7, 8, 22, 0.94);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1.5rem, 7vw, 5rem);
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.logo {
  text-decoration: none;
  cursor: pointer;
}

.logo-mark-circle {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.logo-text {
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.nav nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  font-size: 0.9rem;
}

.nav a {
  opacity: 0.8;
}

.nav a:hover {
  opacity: 1;
}

.nav-cta {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.7);
}

/* HERO */

.hero {
  padding-block: 4.5rem 4rem;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(2.2rem, 5vw, 3.6rem);
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.7rem, 4vw, 3.7rem);
  line-height: 1.03;
  margin: 0.6rem 0 1.1rem;
  color: #f9fafb;
}

.hero-tagline {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9ca3af;
}
.hero-micro {
  margin: 0 0 0.6rem 0;
  font-size: 0.95rem;
  color: #e5e7eb;
}

.hero-body {
  max-width: 32rem;
  color: #cbd5f5;
  font-size: 0.98rem;
  margin-top: 0.15rem;
}


.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f97373, #fb7185);
  color: #0b0b10;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(248, 113, 113, 0.35);
  transform: translateY(0);
  transition: box-shadow 160ms ease, transform 160ms ease, filter 160ms ease;
}

.primary-btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 20px 50px rgba(248, 113, 113, 0.45);
}

.ghost-btn {
  padding: 0.82rem 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: transparent;
  color: #e5e7eb;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
}

.ghost-btn:hover {
  background: rgba(15, 23, 42, 0.85);
  border-color: rgba(148, 163, 184, 0.9);
}

.hero-sub {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #9ca3af;
}

/* HERO VISUAL – animated cards */

.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.photo-stack {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3 / 4;
}

.photo-card {
  position: absolute;
  inset: 0;
  border-radius: 1.4rem;
  padding: 1.4rem 1.5rem;
  color: #f9fafb;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: rgba(15, 23, 42, 0.85);
}

.chip.green {
  border-color: rgba(52, 211, 153, 0.9);
  background: rgba(6, 78, 59, 0.9);
  color: #bbf7d0;
}

.chip.purple {
  border-color: rgba(196, 181, 253, 0.9);
  background: rgba(76, 29, 149, 0.9);
  color: #e9d5ff;
}

.card-1 {
  background: radial-gradient(circle at top left, #22c55e, #0f172a 55%, #020617 100%);
  transform: translate(-14%, -10%) rotate(-7deg);
  animation: floatOne 9s ease-in-out infinite;
}

.card-2 {
  background: radial-gradient(circle at top right, #f97316, #0f172a 55%, #020617 100%);
  transform: translate(12%, 8%) rotate(6deg);
  animation: floatTwo 10s ease-in-out infinite;
}

.card-3 {
  background: radial-gradient(circle at bottom, #6366f1, #0f172a 55%, #020617 100%);
  transform: translate(-4%, 18%) rotate(-3deg);
  animation: floatThree 11s ease-in-out infinite;
}

.score {
  font-size: 1.6rem;
  font-weight: 700;
}

.big-number {
  font-size: 2.4rem;
  font-weight: 700;
}

.meta {
  font-size: 0.85rem;
  color: #e5e7eb;
}

/* floating animations */

@keyframes floatOne {
  0% {
    transform: translate(-14%, -10%) rotate(-7deg);
  }
  50% {
    transform: translate(-10%, -3%) rotate(-5deg);
  }
  100% {
    transform: translate(-14%, -10%) rotate(-7deg);
  }
}

@keyframes floatTwo {
  0% {
    transform: translate(12%, 8%) rotate(6deg);
  }
  50% {
    transform: translate(16%, 3%) rotate(4deg);
  }
  100% {
    transform: translate(12%, 8%) rotate(6deg);
  }
}

@keyframes floatThree {
  0% {
    transform: translate(-4%, 18%) rotate(-3deg);
  }
  50% {
    transform: translate(-1%, 10%) rotate(-1deg);
  }
  100% {
    transform: translate(-4%, 18%) rotate(-3deg);
  }
}

/* SECTIONS */

.section {
  padding-block: 4rem;
  background: #070816;
}

.section.alt {
  background: #050716;
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  border-bottom: 1px solid rgba(31, 41, 55, 0.9);
}

.section-header {
  max-width: 780px;
  margin: 0 auto 2rem auto;
  text-align: left;
}

.section-header.narrow {
  max-width: 520px;
}

/* Centered header option for sections */
.section-header.center {
  text-align: center;
}

.section-header.center .section-sub {
  margin-left: auto;
  margin-right: auto;
}


.section h2 {
  font-size: 1.9rem;
  margin-bottom: 0.75rem;
  color: #f9fafb;
}

.section-sub {
  font-size: 0.98rem;
  color: #9ca3af;
}

/* EXPLAINER */

/* SIMPLE EXPLAINER SECTION */
.explainer {
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-top: 1px solid rgba(31, 41, 55, 0.9);
}

/* Align explainer like hero */
.explainer .section-header {
  max-width: 1120px; 
  margin: 0 auto;
  text-align: left;
  padding-left: 0; /* optional if needed */
}

.explainer .section-header h2 {
  font-size: 2.2rem;
}

.explainer .section-header .section-sub {
  max-width: 640px;
  line-height: 1.6;
}


/* HOW IT WORKS */

.steps {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.6rem;
}

.step {
  background: #020617;
  border-radius: 1.25rem;
  padding: 1.6rem;
  border: 1px solid rgba(55, 65, 81, 0.8);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.7);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.step:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.9);
  border-color: rgba(148, 163, 184, 0.9);
}

.step h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: #f9fafb;
}

.step p {
  margin: 0;
  color: #cbd5f5;
}

/* ABOUT / WHY SECTION */

.about-text {
  max-width: 640px;
  margin: 0 auto;
  color: #e5e7eb;
  line-height: 1.7;
  text-align: center; /* <— ADD THIS */
}

/* WHAT CHERI SCORES */

.score-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.score-item {
  background: #020617;
  border-radius: 1.25rem;
  padding: 1.5rem 1.6rem;
  border: 1px solid rgba(55, 65, 81, 0.8);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.7);
}

.score-item h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  color: #f9fafb;
}

.score-item p {
  margin: 0;
  color: #cbd5f5;
}

/* FEATURES */

.features-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.feature {
  background: #020617;
  border-radius: 1.25rem;
  padding: 1.6rem;
  border: 1px solid rgba(55, 65, 81, 0.8);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.7);
}

.feature-icon {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

.feature h3 {
  margin: 0 0 0.4rem 0;
}

.feature p {
  margin: 0;
  color: #cbd5f5;
}

/* SOCIAL PROOF */

.quotes {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.quote-card {
  background: #020617;
  border-radius: 1.25rem;
  padding: 1.7rem 1.8rem;
  border: 1px solid rgba(55, 65, 81, 0.9);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.7);
}

.quote-text {
  margin: 0 0 0.8rem 0;
  color: #e5e7eb;
}

.quote-name {
  margin: 0;
  font-size: 0.9rem;
  color: #9ca3af;
}

/* FAQ */

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  background: #020617;
  border-radius: 1rem;
  padding: 1.3rem 1.4rem;
  border: 1px solid rgba(55, 65, 81, 0.9);
}

.faq-item h3 {
  margin: 0 0 0.4rem 0;
}

.faq-item p {
  margin: 0;
  color: #cbd5f5;
}

/* Align FAQ header with FAQ cards */
#faq .section-header {
  max-width: 780px;     /* same as .faq-list */
  margin: 0 auto 2rem auto;
  text-align: left;     /* left-align the title */
}


/* WAITLIST */

.waitlist-form {
  max-width: 480px;
  margin: 1.2rem auto 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.waitlist-form input {
  flex: 1 1 200px;
  padding: 0.85rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: #020617;
  color: #f9fafb;
  outline: none;
}

.waitlist-form input::placeholder {
  color: #9ca3af;
}

.waitlist-form button {
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #f97373, #fb7185);
  color: #0b0b10;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 14px 35px rgba(248, 113, 113, 0.4);
  transition: box-shadow 160ms ease, transform 160ms ease, filter 160ms ease;
}

.waitlist-form button:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 18px 45px rgba(248, 113, 113, 0.5);
}

.small {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-top: 0.75rem;
  text-align: center;
}

/* FOOTER */

.footer {
  padding-block: 2rem 3rem;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #9ca3af;
  border-top: 1px solid rgba(31, 41, 55, 0.9);
}

.footer-main {
  max-width: 640px;      /* a bit wider for the 3 lines */
  margin: 0 auto;        /* center this block inside the footer */
  text-align: center;    /* center all the text inside */
}

.footer-tagline {
  margin: 0 0 0.3rem 0;
}

.footer-meta {
  margin: 0;
}

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

.footer a {
  opacity: 0.8;
}

.footer a:hover {
  opacity: 1;
}

.footer-muted {
  opacity: 0.6;
}

/* RESPONSIVE */

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

  .hero-visual {
    order: -1;
    margin-bottom: 1.25rem;
  }

  .photo-stack {
    max-width: 320px;
  }
}

@media (max-width: 640px) {
  .nav nav {
    display: none;
  }

  .hero,
  .section,
  .footer {
    padding-inline: 1.5rem;
  }
}

/* HERO MICRO DISCLOSURE */
.hero-micro {
  margin: 0 0 0.6rem 0;
  font-size: 0.95rem;
  color: #e5e7eb;
}

.hero-disclosure {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: #6b7280;
  max-width: 32rem;
}

/* FOOTER AFFILIATE NOTE */
.footer-affiliate-note {
  margin-top: 0.6rem;
}

/* GENERIC PAGE LAYOUTS FOR SUBPAGES */

.page-shell {
  min-height: 100vh;
  background: #070816;
}

/* Main wrapper for subpages */
.page-main {
  padding: 4.5rem clamp(1.5rem, 7vw, 5rem) 5rem;
  max-width: 1040px;
  margin: 0 auto;
}

/* Top "hero" area on subpages */
.page-title {
  font-size: 2.2rem;
  margin-bottom: 0.4rem;
}

.page-intro {
  font-size: 0.98rem;
  color: #9ca3af;
  max-width: 640px;
  margin-bottom: 2.4rem;
}

/* Card-like sections */
.page-section {
  margin-bottom: 1.8rem;
  padding: 1.6rem 1.8rem;
  border-radius: 1.25rem;
  background: radial-gradient(circle at top left, #111827 0%, #020617 55%, #020617 100%);
  border: 1px solid rgba(55, 65, 81, 0.85);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
}

/* Slightly lighter first section to feel like a “feature” block */
.page-section:first-of-type {
  background: radial-gradient(circle at top left, #111827 0%, #030712 55%, #020617 100%);
}

/* Section headings & text */
.page-section h2 {
  font-size: 1.3rem;
  margin: 0 0 0.4rem 0;
  color: #f9fafb;
}

.page-section h3 {
  font-size: 1.02rem;
  margin: 1rem 0 0.35rem 0;
  color: #e5e7eb;
}

.page-section p,
.page-section li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #cbd5f5;
}

.page-section ul {
  padding-left: 1.2rem;
  margin: 0.3rem 0 0.8rem 0;
}

/* Small muted notes at the bottom of a page */
.page-muted {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 2rem;
  max-width: 640px;
}