/* ascend-shared.css — used by all pages */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --r: #FF3520;
  --r2: #FF5441;
  --rd: rgba(255,53,32,0.12);
  --bg: #080808;
  --bg2: #0D0D0D;
  --s1: #111;
  --s2: #161616;
  --s3: #1C1C1C;
  --w: #F0EDE8;
  --w2: rgba(240,237,232,0.60);
  --w3: rgba(240,237,232,0.35);
  --w4: rgba(240,237,232,0.12);
  --br: rgba(255,255,255,0.07);
  --br2: rgba(255,255,255,0.12);
  --display: 'Bebas Neue', sans-serif;
  --body: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg);
  color: var(--w);
  font-family: var(--body);
  overflow-x: hidden;
  min-height: 100vh;
}

::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--r); }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: 62px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 80px);
  background: rgba(8,8,8,0.9);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--br);
  transition: background .3s;
}
.nav-logo {
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: 2px;
  color: var(--w);
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.brand-mark {
  width: 34px;
  height: 34px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  box-shadow: 0 0 24px rgba(255,53,32,0.22);
}
.brand-mark.small {
  width: 30px;
  height: 30px;
  border-radius: 9px;
}
.brand-mark.tiny {
  width: 26px;
  height: 26px;
  border-radius: 8px;
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.3px;
  color: var(--w3); text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--w); }
.nav-cta {
  background: var(--r); color: #000;
  padding: 8px 22px; border-radius: 6px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.5px;
  text-decoration: none;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--r2); transform: translateY(-1px); }
.nav-mobile-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
}
.nav-mobile-toggle span {
  display: block; width: 22px; height: 1.5px; background: var(--w2);
  transition: all .3s;
}

/* ── FOOTER ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--br);
  padding: 64px clamp(20px,5vw,80px) 36px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--display);
  font-size: 26px; letter-spacing: 2px; color: var(--w);
  display: flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
.footer-desc { font-size: 13px; color: var(--w3); line-height: 1.7; max-width: 280px; margin-bottom: 24px; }
.footer-app-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; background: var(--s1); border: 1px solid var(--br);
  border-radius: 8px; font-size: 12px; color: var(--w3);
}
.footer-app-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ADE80; }
.footer-col-title {
  font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--w3); margin-bottom: 18px;
}
.footer-col-links { display: flex; flex-direction: column; gap: 11px; }
.footer-col-links a {
  font-size: 13px; color: rgba(240,237,232,0.45); text-decoration: none;
  transition: color .2s;
}
.footer-col-links a:hover { color: var(--r); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px; border-top: 1px solid var(--br);
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: var(--w3); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: var(--w3); text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: var(--w); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--r); color: #000;
  padding: 15px 40px; border-radius: 8px;
  font-family: var(--body); font-size: 15px; font-weight: 700; letter-spacing: 0.5px;
  text-decoration: none; border: none; cursor: pointer;
  transition: background .2s, transform .15s;
  box-shadow: 0 0 40px rgba(255,53,32,0.3);
}
.btn-primary:hover { background: var(--r2); transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--w2);
  padding: 15px 40px; border-radius: 8px;
  border: 1px solid var(--br2);
  font-family: var(--body); font-size: 15px; font-weight: 600;
  text-decoration: none; cursor: pointer;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: var(--w); color: var(--w); }

/* ── SECTION HELPERS ── */
.eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--r); margin-bottom: 14px;
  display: block;
}
.section-h {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.93;
  letter-spacing: 1px;
  color: var(--w);
}
.section-h em { color: var(--r); font-style: normal; }
.divider { height: 1px; background: var(--br); margin: 0 clamp(20px,5vw,80px); }

/* ── ANIMATIONS ── */
@keyframes fadeup { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadein { from { opacity:0; } to { opacity:1; } }
@keyframes glow { 0%,100%{box-shadow:0 0 40px rgba(255,53,32,0.3)} 50%{box-shadow:0 0 70px rgba(255,53,32,0.55)} }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes scan-v { 0%,100%{top:8%;opacity:0} 10%{opacity:1} 90%{opacity:1} 99%{top:92%;opacity:0} }
@keyframes ember { 0%,100%{transform:translateY(0) scale(1);opacity:.3} 50%{transform:translateY(-12px) scale(1.15);opacity:.8} }

.reveal { opacity:0; transform:translateY(28px); transition:opacity .65s ease, transform .65s ease; }
.reveal.in { opacity:1; transform:translateY(0); }

/* ── RESPONSIVE NAV ── */
@media(max-width:768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
