:root {
  --bg: #050505;
  --bg-soft: #0d0d0d;
  --panel: rgba(255,255,255,0.04);
  --panel-strong: rgba(255,255,255,0.07);
  --text: #f5f5f5;
  --muted: #b4b4b4;
  --red: #c1121f;
  --red-soft: #7a0b12;
  --line: rgba(255,255,255,0.10);
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(193,18,31,0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top center, rgba(193,18,31,0.18), transparent 38%),
    linear-gradient(180deg, #020202 0%, #090909 55%, #040404 100%);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 84px 0; }
.section-label, .eyebrow {
  color: #ff5a66;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.8rem;
  margin: 0 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(0,0,0,0.76);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 94px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}
.brand-logo { width: 42px; height: 42px; }

.menu-toggle {
  width: 76px;
  height: 76px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.02);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}
.menu-toggle span {
  width: 10px;
  height: 3px;
  border-radius: 999px;
  background: var(--white);
  display: block;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  padding: 16px 20px 22px;
  background: rgba(8,8,8,0.98);
}
.mobile-menu.open { display: grid; gap: 14px; }
.mobile-menu a { color: var(--muted); }
.mobile-menu a:hover { color: var(--white); }

.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.03));
  pointer-events: none;
}
.hero-inner {
  padding: 92px 0 110px;
  max-width: 860px;
}
.hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  margin: 0 0 24px;
  font-weight: 900;
}
.hero-copy {
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1.75;
  color: #d1d1d1;
  max-width: 780px;
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  transition: 0.25s ease;
}
.btn-primary {
  background: linear-gradient(135deg, #ff3b45, #b90011);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-secondary {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  color: var(--white);
}
.small-btn { min-height: 46px; padding: 0 18px; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 42px;
}
.two-col h2, .section h2, .page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin: 0;
}
.two-col p, .contact-box p, .page-hero p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.85;
}

.dark-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.card-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.info-card, .article-card, .ecosystem-card, .contact-box {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
}
.info-card {
  padding: 24px;
}
.info-card h3, .article-card h3, .ecosystem-card h3 {
  margin: 0 0 12px;
  font-size: 1.22rem;
}
.info-card p, .article-card p, .ecosystem-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
.text-link {
  color: #ff6973;
  font-weight: 700;
}
.article-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.article-card {
  padding: 26px;
  transition: 0.25s ease;
}
.article-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.18);
  box-shadow: var(--shadow);
}
.meta {
  display: inline-block;
  color: #ff6d77;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  margin-bottom: 16px;
}

.ecosystem-band {
  background: linear-gradient(180deg, rgba(193,18,31,0.09), rgba(0,0,0,0));
}
.ecosystem-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 70px 1fr 70px 1fr;
  gap: 12px;
  align-items: center;
}
.ecosystem-card {
  padding: 28px;
  min-height: 180px;
}
.accent-red { border-color: rgba(255,60,71,0.30); }
.accent-white { border-color: rgba(255,255,255,0.18); }
.ecosystem-arrow {
  text-align: center;
  font-size: 2rem;
  color: #ff6a74;
  font-weight: 900;
}
.ecosystem-note {
  margin-top: 20px;
  color: #d6d6d6;
}

.contact-box {
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.page-shell { min-height: 100vh; }
.page-hero { padding-bottom: 28px; }
.compact-header .nav-wrap { min-height: 86px; }

.article-template {
  padding: 64px 0 84px;
}
.article-template .container { max-width: 860px; }
.article-template h1 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin: 0 0 18px;
}
.article-template .lead {
  color: #d0d0d0;
  font-size: 1.15rem;
  line-height: 1.85;
  margin-bottom: 34px;
}
.article-section {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.article-section h2 {
  font-size: 1.4rem;
  margin: 0 0 12px;
}
.article-section p, .article-section li {
  color: var(--muted);
  line-height: 1.85;
  font-size: 1.04rem;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 22px 0 40px;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #9d9d9d;
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .two-col,
  .card-grid,
  .article-list,
  .ecosystem-grid,
  .contact-box,
  .footer-wrap {
    grid-template-columns: 1fr;
    display: grid;
  }
  .ecosystem-arrow { display: none; }
  .contact-box { align-items: start; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 32px, 1120px); }
  .nav-wrap { min-height: 84px; }
  .menu-toggle { width: 68px; height: 68px; border-radius: 22px; }
  .hero-inner { padding: 72px 0 90px; }
  .hero { min-height: auto; }
  .hero h1 { font-size: 3.8rem; }
  .hero-copy { font-size: 1rem; }
  .btn { width: 100%; }
  .hero-actions { gap: 12px; }
  .section { padding: 68px 0; }
  .brand span { display: none; }
}
background: radial-gradient(circle at top, rgba(229,9,20,0.25), #050505 70%);
background-image: url('noise.png');
opacity: 0.05;

h1 {
  font-size: 52px;
  line-height: 1.15;
  letter-spacing: -1px;
}
h1 {
  text-shadow: 0 0 30px rgba(229,9,20,0.2);
}
.logo {
  box-shadow: 0 0 20px rgba(229,9,20,0.3);
}
.menu {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius: 12px;
}
.hero {
  animation: fadeUp 1s ease;
}

@keyframes fadeUp {
  from {
    opacity:0;
    transform: translateY(20px);
  }
  to {
    opacity:1;
    transform: translateY(0);
  }
}
.tag {
  letter-spacing: 4px;
  font-size: 12px;
  color: #E50914;
  text-transform: uppercase;
}
/* FEATURED SECTION */
.featured {
  padding:60px 20px;
}

.featured-inner {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  align-items:center;
}

.featured-image img {
  width:100%;
  border-radius:12px;
}

.featured-text h2 {
  font-size:32px;
}

/* HUB PAGE */
.hub-hero {
  padding:60px 20px;
}

.hub-hero h1 {
  font-size:42px;
}

.hub-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
  padding:20px;
}

.card {
  background:#111;
  padding:20px;
  border-radius:10px;
  text-decoration:none;
  color:#fff;
  transition:0.3s;
}

.card:hover {
  transform:translateY(-5px);
  box-shadow:0 0 20px rgba(229,9,20,0.3);
}

.card img {
  width:100%;
  border-radius:8px;
  margin-bottom:10px;
}