/* ═══════════════════════════════════════
   TOKENS & RESET
═══════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  --bg:       #181818;
  --carbon:   #242424;
  --charcoal: #2E2E2E;
  --steel:    #505050;
  --muted:    #999;
  --crimson:  #C8102E;
  --rose:     #E03048;
  --white:    #F0EDE8;
  --offwhite: #C8C4BE;
  --nav-h:    72px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  min-height: 100vh;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; }

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(24,24,24,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  z-index: 100;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-text { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 0.08em; }
.nav-logo-text span { color: var(--crimson); }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--offwhite); transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--crimson); }
.nav-cta {
  background: var(--crimson); color: #fff;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; padding: 10px 22px;
  border-radius: 4px; transition: background 0.2s;
}
.nav-cta:hover { background: var(--rose); }

/* ═══════════════════════════════════════
   SHARED UTILITIES
═══════════════════════════════════════ */
.page-wrap { padding-top: var(--nav-h); min-height: 100vh; }

.eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--crimson); margin-bottom: 16px;
}
.display { font-family: 'Bebas Neue', sans-serif; line-height: 0.93; letter-spacing: 0.02em; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 4px;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.04em; transition: all 0.2s;
}
.btn-primary { background: var(--crimson); color: #fff; }
.btn-primary:hover { background: var(--rose); transform: translateY(-1px); }
.btn-outline { border: 1.5px solid var(--steel); color: var(--white); }
.btn-outline:hover { border-color: var(--crimson); color: var(--crimson); }
.btn-white { background: var(--white); color: var(--crimson); font-weight: 700; }
.btn-white:hover { background: #fff; transform: translateY(-1px); }

.divider { width: 48px; height: 3px; background: var(--crimson); margin-bottom: 28px; }

.grid-bg {
  background-image:
    linear-gradient(rgba(200,16,46,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,16,46,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* Page hero (shared across inner pages) */
.page-hero {
  padding: 80px 60px 72px;
  border-bottom: 1px solid var(--charcoal);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 400px; height: 100%;
  background: radial-gradient(ellipse at top right, rgba(200,16,46,0.07) 0%, transparent 70%);
}
.page-hero h1 { font-size: clamp(56px, 7vw, 90px); margin-bottom: 20px; }
.page-hero p {
  font-size: 17px; font-weight: 300; line-height: 1.75;
  color: var(--offwhite); max-width: 560px;
}

/* CTA Banner */
.cta-banner {
  background: var(--crimson); padding: 80px 60px;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 40px;
}
.cta-banner h2 { font-size: clamp(36px, 4vw, 56px); }
.cta-banner p { font-size: 16px; font-weight: 300; opacity: 0.9; margin-top: 10px; max-width: 540px; }

/* Tag */
.tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
  border: 1px solid var(--steel); color: var(--offwhite);
}

/* Ticker */
.ticker-bar {
  background: var(--charcoal);
  border-top: 1px solid var(--steel); border-bottom: 1px solid var(--steel);
  padding: 14px 0; overflow: hidden; white-space: nowrap;
}
.ticker-inner { display: inline-flex; animation: ticker 28s linear infinite; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 12px; padding: 0 32px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--offwhite);
}
.ticker-dot { color: var(--crimson); font-size: 18px; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Footer */
footer {
  background: var(--carbon);
  border-top: 1px solid var(--charcoal);
  padding: 56px 60px 32px;
}
.footer-top {
  display: grid; grid-template-columns: 1fr auto;
  align-items: start; gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--charcoal);
  margin-bottom: 28px;
}
.footer-brand-name { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 0.08em; margin-bottom: 10px; }
.footer-brand-name span { color: var(--crimson); }
.footer-tagline { font-size: 14px; font-weight: 300; color: var(--offwhite); max-width: 320px; line-height: 1.6; }
.footer-nav { display: flex; gap: 32px; }
.footer-nav a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--offwhite); transition: color 0.2s;
}
.footer-nav a:hover { color: var(--crimson); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 12px; color: var(--muted); }
.footer-email { font-size: 13px; font-weight: 500; color: var(--crimson); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up   { animation: fadeUp 0.6s ease both; }
.fade-up-2 { animation-delay: 0.1s; }
.fade-up-3 { animation-delay: 0.2s; }
.fade-up-4 { animation-delay: 0.3s; }
