:root {
  --bg-dark: #0b0c12;
  --bg-mid: #121726;
  --bg-light: #f4f0e8;
  --ink: #12131a;
  --ink-muted: #5d6470;
  --text-light: #f7f5f2;
  --accent: #2ad1b3;
  --accent-2: #f5b74c;
  --accent-3: #ef6a5b;
  --surface: rgba(255, 255, 255, 0.12);
  --surface-strong: rgba(255, 255, 255, 0.2);
  --shadow: 0 30px 80px rgba(7, 10, 20, 0.35);
  --radius: 26px;
  --max-width: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background: var(--bg-light);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  z-index: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(42, 209, 179, 0.15), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(245, 183, 76, 0.2), transparent 50%),
    radial-gradient(circle at 40% 85%, rgba(239, 106, 91, 0.12), transparent 60%);
  pointer-events: none;
  z-index: -2;
}

img,
video {
  max-width: 100%;
  display: block;
}

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

.site-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-nav.is-scrolled {
  background: rgba(12, 14, 20, 0.85);
  box-shadow: 0 10px 30px rgba(5, 8, 15, 0.3);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
}

.brand-mark {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0b0c12;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
  padding: 8px 12px;
  border-radius: 999px;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.brand-title {
  display: block;
  font-weight: 600;
  font-family: "Space Grotesk", sans-serif;
}

.brand-subtitle {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.nav-links {
  display: flex;
  gap: 18px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.nav-links a {
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 14px 26px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-small {
  padding: 10px 18px;
  font-size: 0.85rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0b0c12;
  box-shadow: 0 12px 30px rgba(42, 209, 179, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover {
  transform: translateY(-2px);
}

.cta .btn-ghost {
  color: var(--ink);
  border-color: rgba(18, 19, 26, 0.18);
  background: rgba(18, 19, 26, 0.04);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--text-light);
  background: var(--bg-dark);
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(10, 12, 18, 0.9), rgba(10, 12, 18, 0.5)),
    radial-gradient(circle at 20% 20%, rgba(42, 209, 179, 0.25), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(245, 183, 76, 0.2), transparent 45%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.6rem, 3.5vw, 4.2rem);
  line-height: 1.05;
  margin: 18px 0 20px;
}

.hero-copy p {
  font-size: 1.05rem;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 28px 0 32px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
  margin-top: 10px;
}

.stat {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-value {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.hero-portrait {
  display: grid;
  gap: 20px;
}

.portrait-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
}

.portrait-frame {
  border-radius: 999px;
  padding: 10px;
  background: linear-gradient(135deg, rgba(42, 209, 179, 0.7), rgba(245, 183, 76, 0.5));
  width: fit-content;
  margin: 0 auto 16px;
}

.portrait-frame img {
  width: 220px;
  height: 220px;
  border-radius: 999px;
  object-fit: cover;
  border: 6px solid rgba(10, 12, 18, 0.9);
}

.portrait-meta {
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

.meta-emphasis {
  display: block;
  margin-top: 6px;
  color: var(--accent-2);
  font-weight: 600;
}

.signal-card {
  background: rgba(12, 16, 24, 0.65);
  border-radius: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.signal-title {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.55);
}

.signal-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.signal-badge {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: var(--accent);
}
