﻿:root {
  color-scheme: dark;
  --bg: #0b0d10;
  --bg-soft: #101318;
  --panel: #151b21;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f5f7f5;
  --muted: #b0bac4;
  --accent: #79f08a;
  --accent-strong: #42c55a;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Outfit", "Avenir Next", sans-serif;
  background: radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.06), transparent 55%),
    linear-gradient(180deg, #0b0d10 0%, #0d1014 40%, #0a0c0f 100%);
  color: var(--text);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
  line-height: 1.05;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

h3 {
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

p {
  margin: 0 0 16px;
  line-height: 1.6;
  color: var(--muted);
}

.noise {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 0);
  background-size: 3px 3px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(14px);
  background: rgba(11, 13, 16, 0.86);
  border-bottom: 1px solid var(--line);
  z-index: 5;
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.brand-mark {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: var(--text);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
}

.brand-name {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 247, 245, 0.7);
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 90px 24px 70px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  gap: 28px;
  align-items: center;
  position: relative;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: rgba(245, 247, 245, 0.7);
}

.accent {
  color: var(--accent);
}

.lead {
  font-size: 1.1rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #08110b;
}

.btn.ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--text);
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-links {
  margin-top: 24px;
}

.text-link {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 247, 245, 0.75);
}

.hero-media {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: clamp(320px, 36vw, 460px);
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  align-self: center;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.4) 38%, rgba(0, 0, 0, 0.1) 70%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-copy {
  max-width: 640px;
  position: relative;
  z-index: 2;
  margin-right: -180px;
  transform: none;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 70px 24px;
}

.section-header {
  max-width: 560px;
  margin-bottom: 32px;
}

.asset-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.asset-column {
  padding: 28px;
  border-radius: 22px;
  background: rgba(18, 23, 28, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.asset-column h3 {
  margin-bottom: 24px;
  font-size: 1rem;
}

.asset-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.asset-item {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(11, 15, 19, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.asset-image {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  object-fit: cover;
}

.asset-image-link {
  display: block;
  border-radius: 14px;
  overflow: hidden;
}

.asset-item:first-of-type {
  border-top: none;
}

.asset-name {
  display: block;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 500;
}

.asset-type {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 247, 245, 0.55);
  margin-bottom: 10px;
}

.asset-link {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.cap-card {
  padding: 24px;
  border-radius: 22px;
  background: rgba(18, 23, 28, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.pipeline-list {
  display: grid;
  gap: 18px;
}

.pipeline-list span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: rgba(245, 247, 245, 0.65);
  margin-bottom: 8px;
}

.cta {
  border-radius: 28px;
  padding: 60px 48px;
  background: rgba(18, 23, 28, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.site-footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 30px 24px 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 247, 245, 0.5);
}

.footer-links {
  display: flex;
  gap: 16px;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .cta {
    padding: 50px 32px;
  }

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

  .hero-copy {
    margin-right: 0;
    transform: none;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 70px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
