:root {
  --deep-space: #0a0a14;
  --rocket-red: #e63946;
  --chrome: #bdc3c7;
  --gold: #d4af37;
  --white: #f8f9fa;
  --glass: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --font-header: 'Staatliches', cursive;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--deep-space);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(10, 10, 20, 0.8), transparent);
  backdrop-filter: blur(10px);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-header);
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: var(--rocket-red);
  text-decoration: none;
  font-weight: 700;
}

.logo sup {
  font-size: 0.8rem;
  margin-left: 2px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--rocket-red);
}

/* Buttons */
.btn-primary, .btn-secondary {
  padding: 0.8rem 1.8rem;
  border-radius: 4px;
  text-transform: uppercase;
  font-family: var(--font-header);
  letter-spacing: 1.5px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: var(--transition);
  display: inline-block;
}

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

.btn-primary:hover {
  background-color: #ff4d5a;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3);
}

.btn-secondary {
  border: 1px solid var(--chrome);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--deep-space);
  transform: translateY(-2px);
}

/* Hero Section */
#hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #000;
}

#hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  animation: heroZoom 20s infinite alternate;
}

.hero-content {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  padding: 4rem 6rem;
  border-radius: 8px;
  max-width: 800px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: relative;
}

h1 {
  font-family: var(--font-header);
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: 4px;
  background: linear-gradient(to bottom, #fff, #bdc3c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 1.25rem;
  letter-spacing: 6px;
  color: var(--rocket-red);
  margin-bottom: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

/* Features */
#features {
  padding: 8rem 0;
  background-color: #0f0f1d;
}

.section-title {
  font-family: var(--font-header);
  font-size: 3rem;
  text-align: center;
  margin-bottom: 4rem;
  letter-spacing: 2px;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 3rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--rocket-red);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.feature-card h3 {
  font-family: var(--font-header);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.feature-card p {
  color: #a0a0b0;
  font-size: 1.1rem;
}

/* Specs Section */
#specs {
  padding: 8rem 0;
  background: radial-gradient(circle at center, #1a1a2e, #0a0a14);
}

.specs-box {
  display: flex;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--rocket-red);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(230, 57, 70, 0.1);
}

.specs-copy {
  flex: 1;
  padding: 4rem;
}

.specs-copy h2 {
  font-family: var(--font-header);
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--white);
}

.specs-list {
  list-style: none;
}

.specs-list li {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
}

.specs-list li strong {
  color: var(--rocket-red);
  letter-spacing: 1px;
}

.specs-image-placeholder {
  flex: 0.8;
  background: linear-gradient(135deg, #1a1a2e 0%, #0a0a14 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 400px;
}

.blueprint-badge {
  padding: 1rem 2rem;
  border: 2px dashed var(--rocket-red);
  color: var(--rocket-red);
  font-family: var(--font-header);
  font-size: 1.5rem;
  transform: rotate(-15deg);
}

/* Footer */
footer {
  padding: 4rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer p {
  color: #606070;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* Animations */
@keyframes heroZoom {
  from { transform: scale(1.0); }
  to { transform: scale(1.1); }
}

.fade-in {
  animation: fadeIn 1s ease-out forwards;
}

.fade-in-delay {
  opacity: 0;
  animation: fadeIn 1s ease-out 0.5s forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-content { padding: 3rem 2rem; }
  .specs-box { flex-direction: column; }
  .specs-image-placeholder { display: none; }
  .features-grid { grid-template-columns: 1fr; }
}
