:root {
  --bg: #0a0d14;
  --bg-soft: #0f1420;
  --text: #edf2ff;
  --muted: #a7b0c4;
  --accent: #7aa3ff;
  --accent-2: #64e0ff;
  --card: #111827;
  --border: rgba(122, 163, 255, 0.18);
  --success: #5fe3b4;
  --shadow: 0 18px 40px rgba(5, 9, 20, 0.35);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

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

html {
  color-scheme: dark;
}

body {
  font-family: "Inter", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #0b1020 0%, #0a0d14 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a,
button {
  touch-action: manipulation;
}

:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(10, 13, 20, 0.78);
  border-bottom: 1px solid rgba(122, 163, 255, 0.12);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.1rem;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #0b0f1a;
}

.nav-links {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

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

.hero {
  padding: 80px 0 60px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  overflow: hidden;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent-2);
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin: 18px 0;
}

h1,
h2 {
  text-wrap: balance;
}

h2,
h3 {
  scroll-margin-top: 90px;
}

.hero p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 28px;
}

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

.btn {
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #071018;
  box-shadow: var(--shadow);
}

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

.btn-secondary {
  border-color: var(--border);
  color: var(--text);
  background: rgba(17, 24, 39, 0.7);
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(122, 163, 255, 0.2);
  overflow: hidden;
  background: #0d1220;
  box-shadow: 0 20px 50px rgba(6, 9, 18, 0.45);
  aspect-ratio: 16 / 10;
  max-height: 520px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}

.hero-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(11, 16, 28, 0.72);
  border: 1px solid rgba(122, 163, 255, 0.2);
  box-shadow: 0 12px 30px rgba(4, 7, 16, 0.35);
  backdrop-filter: blur(12px);
}

.hero-overlay h3 {
  margin-top: 12px;
  margin-bottom: 10px;
}

.hero-overlay ul {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.section {
  padding: 60px 0;
}

.media-strip {
  padding-top: 10px;
}

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

.media-grid img {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid rgba(122, 163, 255, 0.2);
  box-shadow: 0 16px 32px rgba(6, 9, 18, 0.35);
  background: #0d1220;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}

.section h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 20px;
}

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

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: 0 10px 24px rgba(6, 9, 18, 0.25);
}

.card h3 {
  margin-bottom: 10px;
}

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

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(95, 227, 180, 0.15);
  color: var(--success);
  font-size: 0.85rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    gap: 12px 16px;
  }

  .hero-visual {
    max-height: 360px;
  }

  .hero-visual img {
    border-radius: var(--radius-md);
  }

  .hero-overlay {
    position: static;
    margin-top: 14px;
  }

  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1120px, 90%);
  }

  header {
    position: static;
  }

  .hero {
    padding: 60px 0 40px;
  }

  .section {
    padding: 40px 0;
  }

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

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

footer {
  padding: 40px 0 60px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}

footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

.page-hero {
  padding: 60px 0 30px;
}

.page-hero h1 {
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.list-item {
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(15, 21, 36, 0.7);
}

.note {
  background: rgba(56, 212, 255, 0.1);
  border: 1px solid rgba(56, 212, 255, 0.35);
  padding: 18px;
  border-radius: var(--radius-sm);
  margin-top: 20px;
}
