/* ============================================================
   99AIClub — Shared Stylesheet (Updated)
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Poppins:wght@700;800;900&display=swap");

:root {
  --forest:        #08261d;
  --forest-mid:    #0f3529;
  --accent-green:  #1a5540;
  --lime:          #00e676;
  --mint:          #e8f5f1;

  --fire:          #ff4500;
  --warm-orange:   #ff6b35;
  --gold:          #ffb800;
  --amber:         #ffa726;

  --electric-teal: #00bfa5;

  --charcoal:      #1a2420;
  --text-dark:     #141f18;
  --text-mid:      #3a4f42;
  --text-muted:    #6b8072;
  --off-white:     #f7faf8;
  --pure-white:    #ffffff;
  --light-gray:    #eef2f0;
  --border:        #dde8e2;

  --danger:        #dc2626;

  --font-display:  'Poppins', sans-serif;
  --font-body:     'Inter', sans-serif;

  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     30px;
  --radius-pill:   999px;

  --shadow-sm:     0 2px 12px rgba(8,38,29,0.06);
  --shadow-md:     0 6px 30px rgba(8,38,29,0.10);
  --shadow-lg:     0 18px 54px rgba(8,38,29,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--pure-white);
  line-height: 1.68;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.75rem;
  width: 100%;
}

/* ============================================================
   NAVBAR
============================================================ */
.site-nav {
  background: var(--pure-white);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 16px rgba(8,38,29,0.07);
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--forest);
  white-space: nowrap;
  letter-spacing: -0.02em;
}
.nav-brand span { color: var(--fire); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.93rem;
  color: var(--text-mid);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--mint);
  color: var(--forest);
}
.nav-links a.nav-cta {
  background: var(--fire);
  color: #fff !important;
  padding: 0.52rem 1.35rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  transition: background 0.15s, transform 0.15s;
}
.nav-links a.nav-cta:hover {
  background: var(--warm-orange);
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.86rem 2rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s, background 0.15s;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn-primary {
  background: var(--fire);
  color: #fff;
  box-shadow: 0 4px 18px rgba(255,69,0,0.28);
}
.btn-primary:hover {
  background: #e03d00;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,69,0,0.38);
  color: #fff;
}
.btn-club {
  background: linear-gradient(135deg, var(--fire), var(--amber));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(255,107,53,0.26);
}
.btn-club:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,107,53,0.40);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  background: var(--mint);
  border-color: var(--accent-green);
  transform: translateY(-1px);
}
.btn-white {
  background: #fff;
  color: var(--fire);
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(0,0,0,0.14);
}
.btn-white:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  color: var(--fire);
}
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.32);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-1px);
  color: #fff;
}
.btn-lg  { font-size: 1.06rem; padding: 1rem 2.3rem; }
.btn-sm  { font-size: 0.86rem; padding: 0.52rem 1.2rem; }

/* ============================================================
   LAYOUT & SECTIONS
============================================================ */
.section    { padding: 5.5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-bg { background: var(--off-white); }
.text-center { text-align: center; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 0.65rem;
  line-height: 1.08;
}
.section-sub {
  font-size: 1.06rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 2.8rem;
  line-height: 1.76;
}

/* ── Eyebrow ── */
.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.28rem 0.88rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.95rem;
}
.eyebrow-orange { background: rgba(255,69,0,0.08);    color: var(--fire);          border: 1px solid rgba(255,69,0,0.18); }
.eyebrow-green  { background: rgba(26,85,64,0.08);    color: var(--accent-green);  border: 1px solid rgba(26,85,64,0.18); }
.eyebrow-teal   { background: rgba(0,191,165,0.08);   color: var(--electric-teal); border: 1px solid rgba(0,191,165,0.18); }
.eyebrow-gold   { background: rgba(255,184,0,0.10);   color: #8a6000;              border: 1px solid rgba(255,184,0,0.22); }
.eyebrow-white  { background: rgba(255,255,255,0.12); color: #fff;                 border: 1px solid rgba(255,255,255,0.28); }

/* ── Gradient highlight text ── */
.hl-orange {
  background: linear-gradient(135deg, var(--fire), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hl-green {
  background: linear-gradient(135deg, var(--electric-teal), var(--accent-green));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── CTA microcopy ── */
.cta-micro       { font-size: 0.78rem; color: var(--text-muted);          margin-top: 0.5rem; line-height: 1.55; }
.cta-micro-light { font-size: 0.78rem; color: rgba(255,255,255,0.5);       margin-top: 0.5rem; line-height: 1.55; }

/* ============================================================
   FAQ
============================================================ */
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 0.65rem;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item.open {
  border-color: var(--accent-green);
  box-shadow: 0 3px 14px rgba(26,85,64,0.08);
}
.faq-q {
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--text-dark);
  background: var(--pure-white);
  user-select: none;
  transition: background 0.15s;
  gap: 1rem;
  line-height: 1.5;
}
.faq-q:hover { background: var(--off-white); }
.faq-q .arrow { font-size: 0.75rem; color: var(--text-muted); transition: transform 0.28s; flex-shrink: 0; }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.34s ease, padding 0.2s;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.78;
  background: var(--off-white);
  padding: 0 1.5rem;
}
.faq-item.open .faq-a { max-height: 400px; padding: 1rem 1.5rem 1.1rem; }

/* ============================================================
   PRICING CARDS
============================================================ */
/* .pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  
  margin: 0 auto;
} */


.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}


/* .price-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
} */

.price-card {


  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;



  background: var(--pure-white);
  border-radius: var(--radius-lg);
  padding: 2.3rem 1.9rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.price-card .btn {
  margin-top: auto;
}
.plan-features {
  min-height: 140px;
}



.price-card:hover   { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.price-card.featured { border-color: var(--fire); box-shadow: 0 8px 38px rgba(255,69,0,0.13); }
.price-card .ribbon {
  position: absolute;
  top: -1px; right: 18px;
  background: var(--fire);
  color: #fff;
  font-size: 0.67rem;
  font-weight: 800;
  padding: 0.2rem 0.7rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.price-card .plan-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}
.price-card .plan-amount {
  font-family: var(--font-display);
  font-size: 3.3rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  letter-spacing: -0.03em;
}
.price-card .plan-amount sup { font-size: 1.3rem; vertical-align: super; font-weight: 700; }
.price-card .plan-period { font-size: 0.8rem; color: var(--text-muted); margin: 0.22rem 0 1.3rem; }
.price-card .plan-features { text-align: left; margin-bottom: 1.5rem; }
.price-card .plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--light-gray);
  line-height: 1.55;
}
.price-card .plan-features li:last-child { border-bottom: none; }
.price-card .plan-features li i { color: var(--electric-teal); flex-shrink: 0; margin-top: 0.15rem; }

/* Pricing card extras */
.pricing-evolve-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: -0.6rem;
  margin-bottom: 0.5rem;
  font-style: italic;
}
.plan-entry-note {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-green);
  margin: 0.3rem 0 0.1rem;
}
.plan-renew-note {
  font-size: 0.74rem;
  color: var(--text-muted);
  margin: 0 0 0.9rem;
  font-style: italic;
}
.price-lock-badge {
  display: inline-block;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.18rem 0.6rem;
  border-radius: var(--radius-pill);
  background: rgba(0,191,165,0.1);
  color: #007a6b;
  border: 1px solid rgba(0,191,165,0.22);
  vertical-align: middle;
  margin-left: 0.35rem;
  line-height: 1.6;
}
.price-lock-badge-best {
  background: rgba(255,184,0,0.12);
  color: #7a5a00;
  border-color: rgba(255,184,0,0.28);
}
.plan-lock-note {
  font-size: 0.78rem;
  color: #007a6b;
  font-weight: 600;
  margin: 0.3rem 0 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.plan-lock-note::before { content: '🔒'; font-size: 0.7rem; }
.plan-early-note {
  font-size: 0.74rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.6rem;
  font-style: italic;
}
.price-card-lock {
  border-color: rgba(0,191,165,0.28);
  box-shadow: 0 6px 30px rgba(0,191,165,0.07), 0 2px 8px rgba(8,38,29,0.06);
}
.price-card-lock:hover {
  box-shadow: 0 16px 44px rgba(0,191,165,0.12), 0 4px 16px rgba(8,38,29,0.08);
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.78);
  padding: 4rem 0 1.75rem;
  font-size: 0.91rem;
}
.site-footer h6 {
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.site-footer a { color: rgba(255,255,255,0.5); transition: color 0.15s; }
.site-footer a:hover { color: var(--lime); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 2.2rem 0 1.2rem; }
.footer-copy { color: rgba(255,255,255,0.3); font-size: 0.77rem; text-align: center; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--pure-white);
    padding: 1.2rem 1.5rem 1.8rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 26px rgba(0,0,0,0.08);
    gap: 0.3rem;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .site-nav { position: relative; }

  .section    { padding: 3.5rem 0; }
  .section-sm { padding: 2.5rem 0; }
  .container  { padding: 0 1.25rem; }

  .btn-lg { font-size: 0.97rem; padding: 0.9rem 1.85rem; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 1.8rem !important; }
  .section-sub { margin-bottom: 2rem; }
  .section-title { font-size: clamp(1.6rem, 5vw, 2.4rem); }
}

@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr !important; }
  body { font-size: 15px; }
  .btn { white-space: normal; text-align: center; }
}

/* ============================================================
   MISC UTILITIES
============================================================ */
.feature-subtext {
  display: block;
  font-size: 12px;
  opacity: 0.8;
  margin-top: 0.2rem;
}

/* Anchor offset for sticky nav */
[id] { scroll-margin-top: 84px; }



.why-matters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

@media (max-width: 768px) {
  .why-matters-grid {
    grid-template-columns: 1fr;
  }
}

.why-matters-grid div {
  transition: transform 0.2s ease;
}