/* ============================================================
   renewalQ — Base Stylesheet
   Shared across all pages: variables, reset, nav, footer,
   typography, feather icons, animations, reveal utility
   ============================================================ */

/* ── Variables ── */
:root {
  --navy:   #0a0d1a;
  --navy2:  #111524;
  --navy3:  #1a1f35;
  --navy4:  #242945;
  --lime:   #c6f135;
  --lime-d: #aad61e;
  --lime-t: rgba(198,241,53,0.1);
  --bg:     #f6f7ff;
  --card:   #ffffff;
  --border: #e4e6f2;
  --t1:     #0d0f20;
  --t2:     #4a5070;
  --t3:     #9096b8;
  --safe:   #10B981;
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Base ── */
html { scroll-behavior: smooth; scroll-padding-top: 66px; }
body {
  font-family: var(--font-body);
  background: #fff;
  color: var(--t1);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.display { font-family: var(--font-display); }
.mono    { font-family: var(--font-mono); }

/* ── Feather Icons ── */
.fi    { display:inline-block; width:14px; height:14px; stroke:currentColor; stroke-width:2.5; fill:none; vertical-align:-2px;  flex-shrink:0; }
.fi-xs { display:inline-block; width:10px; height:10px; stroke:currentColor; stroke-width:2.5; fill:none; vertical-align:-1px;  flex-shrink:0; }
.fi-sm { display:inline-block; width:12px; height:12px; stroke:currentColor; stroke-width:2.5; fill:none; vertical-align:-1px;  flex-shrink:0; }
.fi-lg { display:inline-block; width:20px; height:20px; stroke:currentColor; stroke-width:2;   fill:none; vertical-align:-5px;  flex-shrink:0; }

/* ── Animations ── */
@keyframes fade-up   { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:none; } }
@keyframes blob      { 0%,100%{transform:translate(0,0) scale(1)} 40%{transform:translate(28px,-22px) scale(1.07)} 70%{transform:translate(-18px,14px) scale(0.95)} }
@keyframes lime-glow { 0%,100%{opacity:.6} 50%{opacity:1} }

/* ── Reveal on scroll ── */
.reveal { opacity:0; transform:translateY(24px); transition:opacity .58s cubic-bezier(.22,1,.36,1), transform .58s cubic-bezier(.22,1,.36,1); }
.reveal.visible { opacity:1; transform:none; }
.d1 { transition-delay:.08s; }
.d2 { transition-delay:.16s; }
.d3 { transition-delay:.24s; }

/* ── Navigation ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 66px; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,.5); }

.nav-logo { display:flex; align-items:center; gap:10px; text-decoration:none; }
.nav-logo-mark {
  width:34px; height:34px; border-radius:9px;
  background:var(--lime); display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-size:16px; font-weight:900; color:var(--navy);
}
.nav-logo-text {
  font-family:var(--font-display); font-size:17px; font-weight:800;
  color:#fff; letter-spacing:-.02em;
}
.nav-links { display:flex; align-items:center; gap:2px; }
.nav-links a {
  padding:7px 15px; border-radius:8px; font-size:14px; font-weight:500;
  color:rgba(255,255,255,.6); text-decoration:none;
  transition:color .2s, background .2s;
}
.nav-links a:hover  { color:#fff; background:rgba(255,255,255,.07); }
.nav-links a.active { color:var(--lime); background:rgba(198,241,53,.08); }
.nav-cta { display:flex; align-items:center; gap:10px; }

.btn-ghost-nav {
  padding:8px 18px; border-radius:9px; font-size:14px; font-weight:600;
  color:rgba(255,255,255,.65); text-decoration:none;
  border:1px solid rgba(255,255,255,.14); transition:all .2s;
}
.btn-ghost-nav:hover { color:#fff; border-color:rgba(255,255,255,.3); background:rgba(255,255,255,.07); }

.btn-lime-nav {
  padding:8px 20px; border-radius:9px; font-size:14px; font-weight:700;
  background:var(--lime); color:var(--navy); text-decoration:none;
  transition:background .2s, transform .15s, box-shadow .2s;
  box-shadow:0 4px 16px rgba(198,241,53,.22);
}
.btn-lime-nav:hover { background:var(--lime-d); transform:translateY(-1px); box-shadow:0 6px 24px rgba(198,241,53,.32); }

/* ── Section utilities (shared across multiple pages) ── */
section { padding:100px 48px; position:relative; overflow:hidden; }
.section-inner { max-width:1220px; margin:0 auto; }
.section-pill {
  display:inline-flex; align-items:center; gap:6px;
  font-size:11px; font-weight:700; letter-spacing:.07em; text-transform:uppercase;
  color:var(--navy); background:var(--lime); border-radius:20px;
  padding:4px 13px; margin-bottom:18px;
}
.section-title {
  font-family:var(--font-display);
  font-size:clamp(32px,3.4vw,52px); font-weight:900;
  letter-spacing:-.035em; line-height:1.08; margin-bottom:16px;
}
.section-sub  { font-size:16.5px; color:var(--t2); max-width:520px; line-height:1.78; font-weight:400; }
.centered     { text-align:center; }
.centered .section-sub { margin:0 auto; }

/* ── CTA buttons (shared) ── */
.btn-cta-lime {
  padding:15px 32px; border-radius:12px; font-size:15px; font-weight:700;
  background:var(--lime); color:var(--navy); text-decoration:none;
  box-shadow:0 8px 26px rgba(198,241,53,.22);
  transition:transform .2s, box-shadow .2s;
  display:inline-flex; align-items:center; gap:8px;
}
.btn-cta-lime:hover  { transform:translateY(-2px); box-shadow:0 14px 34px rgba(198,241,53,.34); }
.btn-cta-ghost {
  padding:15px 32px; border-radius:12px; font-size:15px; font-weight:600;
  color:rgba(255,255,255,.7); text-decoration:none;
  border:1.5px solid rgba(255,255,255,.16); transition:all .2s;
}
.btn-cta-ghost:hover { border-color:rgba(255,255,255,.38); background:rgba(255,255,255,.06); color:#fff; }

/* ── Footer ── */
footer {
  padding:52px 48px 36px;
  background:var(--navy);
  border-top:1px solid rgba(255,255,255,.06);
}
.footer-inner {
  max-width:1100px; margin:0 auto;
  display:grid; grid-template-columns:260px 1fr; gap:64px;
}
.footer-brand p {
  font-size:13px; color:rgba(255,255,255,.3);
  margin-top:12px; line-height:1.7; max-width:210px;
}
.footer-links { display:grid; grid-template-columns:repeat(3,1fr); gap:32px; }
.footer-col h4 {
  font-family:var(--font-display); font-size:11px; font-weight:700;
  margin-bottom:14px; color:rgba(255,255,255,.5);
  letter-spacing:.07em; text-transform:uppercase;
}
.footer-col a {
  display:block; font-size:13px; color:rgba(255,255,255,.3);
  text-decoration:none; margin-bottom:9px; transition:color .2s;
}
.footer-col a:hover { color:var(--lime); }
.footer-bottom {
  max-width:1100px; margin:32px auto 0;
  padding-top:22px; border-top:1px solid rgba(255,255,255,.06);
  display:flex; justify-content:space-between; align-items:center;
  font-size:12px; color:rgba(255,255,255,.24);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  nav { padding:0 20px; }
  .nav-links { display:none; }
  section { padding:68px 24px; }
  footer { padding:48px 24px 32px; }
  .footer-inner { grid-template-columns:1fr; gap:36px; }
  .footer-links { grid-template-columns:repeat(2,1fr); }
  .footer-bottom { flex-direction:column; gap:8px; text-align:center; }
}
@media (max-width: 480px) {
  .footer-links { grid-template-columns:1fr; }
}
