@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Rajdhani:wght@300;400;500;600;700&family=Share+Tech+Mono&display=swap');

:root {
  --red: #C0181F;
  --red-dark: #8B0000;
  --red-glow: rgba(192,24,31,0.3);
  --black: #080A0C;
  --dark: #0E1114;
  --darker: #0A0C0F;
  --steel: #1A1E24;
  --steel-mid: #252B34;
  --steel-light: #3A424E;
  --text: #D4D8DD;
  --text-dim: #7A8490;
  --text-bright: #F0F2F4;
  --white: #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Rajdhani', sans-serif;
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 80px;
  background: rgba(8,10,12,0.95);
  border-bottom: 1px solid rgba(192,24,31,0.2);
  backdrop-filter: blur(12px);
  transition: all 0.3s;
}
nav.scrolled {
  height: 64px;
  border-bottom-color: rgba(192,24,31,0.4);
}
.nav-logo img { height: 48px; }
.nav-logo-text {
  display: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--white);
  text-decoration: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red-dark) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: rgba(8,10,12,0.98);
  border-bottom: 1px solid rgba(192,24,31,0.3);
  padding: 24px 30px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--white); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding-top: 80px;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background: var(--darker);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(192,24,31,0.08) 0%, transparent 60%);
  z-index: 1;
}
.page-hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--darker);
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}
.page-eyebrow {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-eyebrow::before { content: ''; display: inline-block; width: 30px; height: 1px; background: var(--red); }
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  color: var(--white);
  letter-spacing: 2px;
  line-height: 0.95;
}
.page-hero h1 .accent { color: var(--red); }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--text-dim);
}
.breadcrumb a { color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { color: var(--red); }

/* ── SHARED LAYOUT ── */
.section-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
}
.section-tag {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-tag::before { content: ''; display: inline-block; width: 30px; height: 1px; background: var(--red); }
h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1;
}
h3 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1.5px;
}
.red-divider { height: 4px; background: linear-gradient(to right, transparent, var(--red), transparent); opacity: 0.5; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text);
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 32px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--red); color: var(--white); }

/* ── IMAGE PLACEHOLDER ── */
.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px dashed rgba(192,24,31,0.4);
  border-radius: 4px;
  padding: 30px 40px;
  text-align: center;
  background: rgba(192,24,31,0.04);
  width: 100%;
}
.img-placeholder svg { width: 48px; height: 48px; color: var(--red); opacity: 0.6; }
.img-placeholder .img-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--red);
  opacity: 0.8;
  text-transform: uppercase;
}
.img-placeholder .img-desc { font-size: 13px; color: var(--text-dim); max-width: 320px; line-height: 1.5; }

/* ── TICKER ── */
.ticker-wrap { background: var(--red); padding: 14px 0; overflow: hidden; }
.ticker {
  display: flex;
  animation: ticker 35s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 40px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
}
.ticker-dot { width: 4px; height: 4px; background: rgba(255,255,255,0.5); border-radius: 50%; flex-shrink: 0; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── CTA BAND ── */
.cta-band {
  background: var(--red);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: 'CONTACT';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 200px;
  color: rgba(0,0,0,0.1);
  letter-spacing: 10px;
  white-space: nowrap;
  pointer-events: none;
}
.cta-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.8); font-size: 17px; max-width: 480px; }
.cta-band-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--red);
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: opacity 0.2s;
  border: none;
  cursor: pointer;
}
.btn-white:hover { opacity: 0.9; }
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: border-color 0.2s;
}
.btn-outline-white:hover { border-color: var(--white); }

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(192,24,31,0.2);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand img { height: 52px; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; color: var(--text-dim); line-height: 1.7; margin-bottom: 24px; max-width: 280px; }
.footer-mono { font-family: 'Share Tech Mono', monospace; font-size: 10px; letter-spacing: 2px; color: var(--text-dim); }
.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(192,24,31,0.3);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before { content: '▸'; color: var(--red); font-size: 10px; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-family: 'Share Tech Mono', monospace; font-size: 11px; letter-spacing: 1.5px; color: var(--text-dim); }
.footer-bottom a { color: var(--red); text-decoration: none; }

/* ── FORM SHARED ── */
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-family: 'Share Tech Mono', monospace; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-bright);
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  padding: 14px 16px;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group select option { background: var(--dark); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.urgency-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(192,24,31,0.1);
  border: 1px solid rgba(192,24,31,0.3);
  padding: 14px 18px;
  margin-bottom: 24px;
}
.urgency-dot { width: 8px; height: 8px; background: var(--red); border-radius: 50%; animation: pulse 1.5s infinite; flex-shrink: 0; }
.urgency-note span { font-family: 'Share Tech Mono', monospace; font-size: 11px; letter-spacing: 1.5px; color: var(--red); text-transform: uppercase; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.8); } }

/* ── PILLAR / CARD SHARED ── */
.pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--steel);
  border-left: 3px solid var(--red);
}
.pillar-icon { width: 36px; height: 36px; background: rgba(192,24,31,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pillar-icon svg { width: 18px; height: 18px; color: var(--red); }
.pillar-text { font-weight: 600; font-size: 14px; color: var(--text-bright); letter-spacing: 0.5px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.animate-up { animation: fadeUp 0.8s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav { padding: 0 30px; }
  .section-inner { padding: 0 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero-content { padding: 40px 30px; }
  .cta-band-inner { flex-direction: column; text-align: center; }
}
