*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  scroll-behavior:smooth;
}

:root{
  --red:#d92c2c;
  --bg:#050505;
  --card:#101010;
  --text:#f5f5f5;
  --muted:#999;
  --line:rgba(255,255,255,0.08);
}

body{
  font-family:'Inter',sans-serif;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  background:
  radial-gradient(circle at top right, rgba(217,44,44,0.15), transparent 30%),
  radial-gradient(circle at bottom left, rgba(217,44,44,0.08), transparent 35%);
  z-index:-1;
}

header{
  width:100%;
  position:fixed;
  top:0;
  left:0;
  z-index:1000;
  backdrop-filter:blur(18px);
  background:rgba(5,5,5,0.78);
  border-bottom:1px solid var(--line);
}

.nav{
  width:92%;
  max-width:1400px;
  margin:auto;
  height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  font-size:1.8rem;
  font-weight:800;
  letter-spacing:2px;
}

.logo span{
  color:var(--red);
}

nav{
  display:flex;
  align-items:center;
  gap:42px;
}

nav a{
  text-decoration:none;
  color:var(--text);
  font-size:0.95rem;
  opacity:0.82;
  transition:0.3s ease;
  font-weight:500;
}

nav a:hover{
  color:var(--red);
  opacity:1;
}

.hero{
  min-height:100vh;
  width:100%;
  position:relative;
  display:flex;
  align-items:center;
  padding:130px 8% 80px;
  overflow:hidden;
}

.hero-bg{
  position:absolute;
  inset:0;
  background:url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?q=80&w=2000&auto=format&fit=crop') center/cover;
  opacity:0.18;
  transform:scale(1.05);
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(5,5,5,1));
}

.hero-content{
  position:relative;
  max-width:850px;
  z-index:5;
}

.eyebrow{
  color:var(--red);
  font-size:0.95rem;
  font-weight:700;
  letter-spacing:3px;
  margin-bottom:24px;
  text-transform:uppercase;
}

.hero h1{
  font-size:5.5rem;
  line-height:0.95;
  margin-bottom:28px;
  font-weight:800;
}

.hero h1 span{
  color:var(--red);
}

.hero p{
  font-size:1.1rem;
  color:#cfcfcf;
  max-width:700px;
  line-height:1.8;
  margin-bottom:40px;
}

.hero-buttons{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.btn{
  padding:16px 28px;
  border-radius:60px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s ease;
  border:1px solid transparent;
}

.btn-primary{
  background:var(--red);
  color:white;
}

.btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 35px rgba(217,44,44,0.4);
}

.btn-secondary{
  border:1px solid var(--line);
  color:white;
  background:rgba(255,255,255,0.03);
}

.btn-secondary:hover{
  border-color:var(--red);
  color:var(--red);
}

section{
  width:92%;
  max-width:1350px;
  margin:auto;
  padding:120px 0;
}

.section-header{
  margin-bottom:70px;
}

.section-header span{
  color:var(--red);
  font-size:0.9rem;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  display:block;
  margin-bottom:18px;
}

.section-header h2{
  font-size:3.4rem;
  max-width:750px;
  line-height:1.1;
  margin-bottom:20px;
}

.section-header p{
  color:#a6a6a6;
  max-width:760px;
  line-height:1.8;
}

.timeline{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:26px;
}

.timeline-card{
  background:linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border:1px solid var(--line);
  border-radius:28px;
  padding:38px;
  transition:0.35s ease;
}

.timeline-card:hover{
  transform:translateY(-10px);
  border-color:rgba(217,44,44,0.35);
}

.year{
  font-size:2.5rem;
  color:var(--red);
  font-weight:800;
  margin-bottom:22px;
}

.timeline-card h3{
  font-size:1.45rem;
  margin-bottom:16px;
}

.timeline-card p{
  color:#b3b3b3;
  line-height:1.8;
}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.split img{
  width:100%;
  border-radius:32px;
  border:1px solid var(--line);
}

.content-box h2{
  font-size:3.3rem;
  margin-bottom:24px;
}

.content-box h2 span{
  color:var(--red);
}

.content-box p{
  color:#b8b8b8;
  line-height:1.9;
  margin-bottom:22px;
}

.stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:40px;
}

.stat{
  background:var(--card);
  border:1px solid var(--line);
  padding:28px;
  border-radius:24px;
}

.stat h3{
  font-size:2rem;
  color:var(--red);
  margin-bottom:10px;
}

.stat p{
  margin:0;
}

.achievements{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:28px;
}

.achievement-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:28px;
  overflow:hidden;
  transition:0.35s ease;
}

.achievement-card:hover{
  transform:translateY(-10px);
  border-color:rgba(217,44,44,0.35);
}

.achievement-card img{
  width:100%;
  height:240px;
  object-fit:cover;
}

.achievement-content{
  padding:32px;
}

.achievement-content h3{
  margin-bottom:18px;
  font-size:1.5rem;
}

.achievement-content p{
  color:#b0b0b0;
  line-height:1.8;
}

.quote-section{
  text-align:center;
  padding:140px 8%;
}

.quote{
  max-width:980px;
  margin:auto;
  font-size:3rem;
  line-height:1.3;
  font-weight:700;
}

.quote span{
  color:var(--red);
}

footer{
  border-top:1px solid var(--line);
  padding:50px 8%;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:20px;
}

footer p{
  color:#8f8f8f;
}

@media(max-width:1050px){

  .hero h1{
    font-size:4.2rem;
  }

  .split{
    grid-template-columns:1fr;
  }

  .stats{
    grid-template-columns:1fr;
  }
}

@media(max-width:700px){

  nav{
    display:none;
  }

  .hero h1{
    font-size:3.2rem;
  }

  .section-header h2,
  .content-box h2,
  .quote{
    font-size:2.3rem;
  }

  section{
    padding:90px 0;
  }
}