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

:root {
  --red: #c1281a;
  --red-dark: #961f14;
  --red-light: #e03525;
  --dark: #111418;
  --dark-2: #1c2128;
  --dark-3: #262d36;
  --mid: #4a5568;
  --white: #ffffff;
  --radius: 12px;
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAV ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17, 20, 24, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}

.logo-badge {
  display: contents;
}

.logo-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(193,40,26,0.4);
}

.logo-text { font-size: 1.05rem; letter-spacing: -0.02em; }
.logo-text strong { color: var(--red-light); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}

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

/* ── HERO ── */
.hero { padding: 80px 0 100px; }

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

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

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.62);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── HERO VIDEO ── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  flex-shrink: 0;
  box-shadow:
    0 0 0 1px rgba(193,40,26,0.3),
    0 24px 80px rgba(193,40,26,0.2),
    0 8px 24px rgba(0,0,0,0.5);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 26px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-light); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.05); }

/* ── SECTIONS ── */
.section { padding: 96px 0; }
.section-alt { background: var(--dark-2); }

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 12px;
}

.section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 48px;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-text p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
  font-size: 1rem;
}

.about-pillars { display: flex; flex-direction: column; gap: 28px; }

.pillar { display: flex; gap: 16px; align-items: flex-start; }

.pillar-icon {
  font-size: 1.3rem;
  width: 44px;
  height: 44px;
  background: var(--dark-3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(193,40,26,0.2);
}

.pillar h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.pillar p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.5; }

/* ── PRODUCTS ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px;
  text-decoration: none;
  color: var(--white);
  position: relative;
  transition: all var(--transition);
  display: block;
}

.product-card.featured { border-color: rgba(193,40,26,0.4); }
.product-card.featured:hover {
  border-color: var(--red-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(193,40,26,0.2);
}

.product-card.coming-soon { opacity: 0.6; cursor: default; }

.product-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--red);
  color: var(--white);
  margin-bottom: 20px;
}

.product-badge.muted { background: var(--dark-3); color: rgba(255,255,255,0.5); }

.product-icon { font-size: 2rem; margin-bottom: 14px; }
.product-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; }
.product-card p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 24px; }

.product-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--red-light);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── CONTACT ── */
.contact-container { text-align: center; }

.contact-sub {
  color: rgba(255,255,255,0.6);
  margin-bottom: 48px;
  font-size: 1rem;
}

.contact-methods {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 24px 32px;
  text-decoration: none;
  color: var(--white);
  transition: all var(--transition);
  min-width: 260px;
}

.contact-card:hover { border-color: var(--red-light); transform: translateY(-2px); }

.contact-icon { font-size: 1.6rem; }
.contact-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.45); margin-bottom: 4px; }
.contact-value { font-size: 0.95rem; font-weight: 600; }

/* ── FOOTER ── */
footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
}

.footer-logo-badge {
  display: contents;
}

.footer-logo-img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-video-wrapper { max-width: 400px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { gap: 20px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .contact-card { min-width: unset; width: 100%; }
}

@media (max-width: 480px) {
  .nav-links { display: none; }
  .hero { padding: 56px 0 64px; }
}
