/* ══════════════════════════════════════════════════════════════
   ACQUIR — Global Stylesheet
   ══════════════════════════════════════════════════════════════ */

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

:root {
  --void: #080A0F;
  --depth: #1A1F2B;
  --accelerate: #00E5BE;
  --signal: #F4F5F0;
  --stealth: #5A6478;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Mono', monospace;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; overflow-x: hidden; }

body {
  background: var(--void);
  color: var(--signal);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--accelerate); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.8; }
img { max-width: 100%; display: block; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

.section-tag {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accelerate);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 42px;
  line-height: 1.15;
  color: var(--signal);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 14px;
  color: var(--stealth);
  max-width: 640px;
  line-height: 1.8;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: 4px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn-primary { background: var(--accelerate); color: var(--void); }
.btn-primary:hover {
  background: #00c9a7; color: var(--void); opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0, 229, 190, 0.25);
}
.btn-ghost { background: transparent; color: var(--signal); border: 1px solid var(--stealth); }
.btn-ghost:hover { border-color: var(--accelerate); color: var(--accelerate); opacity: 1; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 40px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(8, 10, 15, 0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(90, 100, 120, 0.15);
}
.nav-logo {
  font-family: var(--font-display); font-weight: 800; font-size: 22px;
  color: var(--signal); letter-spacing: 3px; text-decoration: none;
}
.nav-logo span { color: var(--accelerate); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-family: var(--font-body); font-size: 13px; color: var(--stealth);
  letter-spacing: 0.5px; text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--signal); opacity: 1; }
.nav-links a.active { color: var(--signal); }
.nav-cta {
  font-family: var(--font-body); font-weight: 500; font-size: 13px;
  padding: 10px 24px; border-radius: 4px;
  background: var(--accelerate); color: var(--void) !important;
  text-decoration: none; transition: all 0.25s ease;
}
.nav-cta:hover { background: #00c9a7; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0, 229, 190, 0.25); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--signal); transition: all 0.3s ease; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: var(--void); border-bottom: 1px solid rgba(90, 100, 120, 0.15);
  padding: 24px 40px 32px; flex-direction: column; gap: 20px; z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-body); font-size: 15px; color: var(--stealth); text-decoration: none; padding: 8px 0; }
.mobile-menu a:hover { color: var(--signal); }
.mobile-menu .nav-cta { display: inline-block; width: fit-content; margin-top: 8px; font-size: 13px; padding: 12px 28px; }

/* ── CTA BANNER ── */
.cta-banner {
  padding: 80px 0; background: var(--depth);
  border-top: 1px solid rgba(90, 100, 120, 0.12);
  border-bottom: 1px solid rgba(90, 100, 120, 0.12);
  text-align: center;
}
.cta-banner h2 { font-family: var(--font-display); font-weight: 800; font-size: 36px; color: var(--signal); margin-bottom: 16px; }
.cta-banner p { font-size: 13px; color: var(--stealth); margin-bottom: 32px; }

/* ── FOOTER ── */
.footer { border-top: 1px solid rgba(90, 100, 120, 0.12); padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .nav-logo { margin-bottom: 16px; display: inline-block; }
.footer-brand p { font-size: 13px; color: var(--stealth); line-height: 1.8; max-width: 280px; }
.footer-col h4 { font-family: var(--font-body); font-weight: 500; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--signal); margin-bottom: 20px; }
.footer-col a { display: block; font-size: 13px; color: var(--stealth); margin-bottom: 10px; transition: color 0.2s; text-decoration: none; }
.footer-col a:hover { color: var(--signal); opacity: 1; }
.footer-bottom { border-top: 1px solid rgba(90, 100, 120, 0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12px; color: var(--stealth); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: var(--stealth); text-decoration: none; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .section-title { font-size: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .navbar { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { padding: 24px 24px 32px; }
  .section-title { font-size: clamp(26px, 7vw, 32px); word-break: break-word; overflow-wrap: break-word; }
  .section-subtitle { font-size: 13px; }
  .cta-banner { padding: 50px 0; }
  .cta-banner h2 { font-size: clamp(22px, 6vw, 28px); }
  .cta-banner p { font-size: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 420px) {
  .container { padding: 0 16px; }
}
