@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;700;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #111318;
  --surface: #1a1d24;
  --surface-2: #22262e;
  --orange: #e8712a;
  --orange-dark: #c45e1f;
  --orange-glow: rgba(232, 113, 42, 0.12);
  --white: #f0f1f3;
  --grey: #8c919a;
  --border: #2a2e36;
  --heading: 'Barlow Condensed', Impact, sans-serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-dark); }

img { max-width: 100%; height: auto; display: block; }

/* ---- HEADER ---- */
header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--heading);
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.brand svg { flex-shrink: 0; }
.brand:hover { color: var(--orange); }

nav { display: flex; gap: 28px; }
nav a {
  font-size: 12px;
  font-weight: 700;
  color: var(--grey);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}
nav a:hover { color: var(--orange); }

/* ---- HERO ---- */
.hero {
  padding: 80px 24px 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  left: -15%;
  top: 10%;
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--heading);
  font-size: 72px;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 12ch;
}
.hero h1 span { color: var(--orange); }
.hero .sub {
  font-size: 17px;
  color: var(--grey);
  max-width: 52ch;
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-main {
  display: inline-block;
  background: var(--orange);
  color: var(--bg);
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-main:hover { background: var(--orange-dark); color: var(--bg); }
.btn-ghost {
  display: inline-block;
  border: 1px solid var(--grey);
  color: var(--white);
  padding: 13px 26px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

/* ---- HERO IMAGE ---- */
.hero-img {
  width: 100%;
  max-width: 1100px;
  height: 400px;
  object-fit: cover;
  margin: 0 auto;
  display: block;
  border: 1px solid var(--border);
}

/* ---- STATS ---- */
.stats-bar {
  background: var(--orange);
  color: var(--bg);
  padding: 28px 0;
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stats-bar strong {
  display: block;
  font-family: var(--heading);
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.stats-bar span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.8;
}

/* ---- SECTION ---- */
section { padding: 72px 0; }
.section-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--heading);
  font-size: 40px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.section-desc {
  font-size: 16px;
  color: var(--grey);
  max-width: 56ch;
  margin-bottom: 40px;
}

/* ---- PRODUCT GRID ---- */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.prod-card {
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.prod-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.prod-card img { width: 100%; height: 220px; object-fit: cover; }
.prod-card .body { padding: 24px; }
.prod-card h3 {
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.prod-card p { font-size: 14px; color: var(--grey); margin-bottom: 12px; }
.prod-card .price { font-weight: 800; color: var(--orange); font-size: 15px; }

/* ---- FEATURE SPLIT ---- */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.feature-split img { width: 100%; height: 380px; object-fit: cover; border: 1px solid var(--border); }
.feature-split h2 {
  font-family: var(--heading);
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.feature-split p { color: var(--grey); margin-bottom: 14px; }

/* ---- REVIEWS ---- */
.reviews-band {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.review-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.review {
  background: var(--bg);
  border-left: 3px solid var(--orange);
  padding: 24px;
}
.review blockquote { font-size: 14px; color: var(--white); line-height: 1.7; margin-bottom: 12px; font-style: italic; }
.review cite { font-style: normal; font-size: 12px; color: var(--grey); font-weight: 600; }

/* ---- ARTICLE ---- */
article.page-content {
  max-width: 740px;
  margin: 0 auto;
  padding: 56px 24px 72px;
}
article.page-content h1 {
  font-family: var(--heading);
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
article.page-content .meta { font-size: 12px; color: var(--grey); margin-bottom: 28px; letter-spacing: 0.06em; }
article.page-content h2 {
  font-family: var(--heading);
  font-size: 26px;
  font-weight: 900;
  color: var(--orange);
  text-transform: uppercase;
  margin-top: 36px;
  margin-bottom: 12px;
}
article.page-content p { margin-bottom: 16px; color: var(--grey); line-height: 1.75; }
article.page-content strong { color: var(--white); }
article.page-content img { margin: 24px 0; border: 1px solid var(--border); }
article.page-content ul, article.page-content ol { margin-bottom: 16px; padding-left: 24px; color: var(--grey); }
article.page-content li { margin-bottom: 8px; }

/* ---- PAGE HERO ---- */
.page-hero {
  padding: 56px 24px 40px;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-family: var(--heading);
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.page-hero p { font-size: 17px; color: var(--grey); max-width: 52ch; }

/* ---- FOOTER ---- */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 36px 0;
  color: var(--grey);
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand {
  font-family: var(--heading);
  font-size: 16px;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: var(--grey); font-size: 13px; text-decoration: none; }
.footer-links a:hover { color: var(--orange); }
footer .copy { font-size: 12px; color: var(--grey); }
footer .copy a { color: var(--grey); }

/* ---- RESPONSIVE ---- */
@media (max-width: 800px) {
  .hero h1 { font-size: 42px; }
  .page-hero h1 { font-size: 32px; }
  .stats-bar .container { grid-template-columns: 1fr 1fr; gap: 16px; }
  .prod-grid { grid-template-columns: 1fr; }
  .feature-split { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  nav { gap: 14px; }
  nav a { font-size: 11px; }
  .hero-img { height: 240px; }
  article.page-content h1 { font-size: 32px; }
  section { padding: 48px 0; }
}

.brand-icon { width: 24px; height: 24px; flex-shrink: 0; vertical-align: middle; margin-right: 6px; }
