:root {
  --bg: #0b1220;
  --bg-alt: #111827;
  --card: #020617;
  --accent: #38bdf8;
  --accent-soft: rgba(56, 189, 248, 0.2);
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --border-subtle: #1f2937;
  --danger: #f97373;
  --success: #4ade80;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1f2937 0, #020617 55%, #000 100%);
  color: var(--text-main);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: linear-gradient(to right, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.96));
  border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 30%;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: radial-gradient(circle at 30% 20%, #38bdf8 0, #1f2937 45%, #020617 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #e0f2fe;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}

.brand-text h1 {
  font-size: 1.05rem;
  margin: 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e5e7eb;
}

.brand-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
}

nav a {
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  text-decoration: none;
  color: var(--text-muted);
  background: transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.1s;
  white-space: nowrap;
}

nav a:hover {
  color: #e5e7eb;
  border-color: var(--accent-soft);
  background: rgba(15, 23, 42, 0.9);
  transform: translateY(-1px);
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent), #0ea5e9);
  color: #0b1120;
  font-weight: 600;
  border-radius: var(--radius-pill);
  padding-inline: 1.1rem;
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.nav-cta:hover {
  color: #0b1120;
  border-color: transparent;
  background: linear-gradient(135deg, #7dd3fc, var(--accent));
}

.nav-toggle {
  display: none;
  border: none;
  background: none;
  color: var(--text-main);
  font-size: 1.4rem;
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 1rem 2.5rem;
}

.hero {
  margin-top: 1.5rem;
  margin-bottom: 1.75rem;
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.8fr);
  gap: 1.75rem;
  align-items: center;
}

.hero-card {
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), transparent 55%),
              linear-gradient(to bottom right, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.98));
  border-radius: 26px;
  padding: 1.9rem 1.8rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.3);
  position: relative;
  overflow: hidden;
}

.hero-tagline {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #a5f3fc;
  margin-bottom: 0.5rem;
}

.hero-title {
  font-size: clamp(1.6rem, 2.3vw + 1.1rem, 2.35rem);
  margin: 0 0 0.4rem;
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.badge {
  background: rgba(15, 23, 42, 0.92);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.55);
  padding: 0.18rem 0.7rem;
  font-size: 0.77rem;
  color: #cbd5f5;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.85);
}

.hero-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 0.6rem;
}

.btn-primary,
.btn-outline {
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.15rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.08s, box-shadow 0.12s, background 0.12s, border-color 0.12s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #0ea5e9);
  color: #0b1120;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.5);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.7);
  background: linear-gradient(135deg, #7dd3fc, var(--accent));
}

.btn-outline {
  background: rgba(15, 23, 42, 0.85);
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.6);
}

.btn-outline:hover {
  transform: translateY(-1px);
  background: rgba(15, 23, 42, 0.95);
  border-color: var(--accent);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.8);
}

.hero-footer-note {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero-pill {
  position: absolute;
  inset: auto -90px -110px auto;
  width: 260px;
  height: 260px;
  border-radius: 100%;
  background: conic-gradient(from 220deg, rgba(56, 189, 248, 0.28), rgba(37, 99, 235, 0.14), transparent 55%, transparent);
  opacity: 0.7;
  filter: blur(1px);
  pointer-events: none;
}

.video-card {
  background: linear-gradient(to bottom right, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.92));
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 1.1rem 1rem 1.1rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.65);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.video-header-text {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
}

.video-header-text h2 {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #bfdbfe;
}

.video-header-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.video-placeholder {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(circle at top, rgba(37, 99, 235, 0.35), rgba(15, 23, 42, 0.95));
  overflow: hidden;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e5e7eb;
  font-size: 0.9rem;
  text-align: center;
  padding: 0.7rem;
}

.play-icon {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.4rem;
  box-shadow: 0 0 32px rgba(248, 250, 252, 0.85);
  background: radial-gradient(circle at 30% 30%, #e0f2fe, #38bdf8);
}

.play-icon span {
  margin-left: 3px;
  font-size: 1.25rem;
  color: #0b1120;
}

.video-caption {
  font-size: 0.78rem;
  color: var(--text-muted);
}

section {
  margin-bottom: 1.75rem;
}

section h2 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #bfdbfe;
}

.section-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
  gap: 1.2rem;
}

.card {
  background: linear-gradient(to bottom right, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.98));
  border-radius: var(--radius-lg);
  padding: 1rem 0.95rem 1rem;
  border: 1px solid rgba(75, 85, 99, 0.7);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
  font-size: 0.9rem;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.45rem;
  font-size: 1rem;
  color: #e5e7eb;
}

.pill-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.15rem 0.65rem;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.55);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.pill-label strong {
  color: #f9fafb;
}

ul {
  padding-left: 1.2rem;
  margin: 0.4rem 0 0.2rem;
}

li {
  margin-bottom: 0.35rem;
}

.highlight-box {
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.85);
  padding: 0.7rem 0.8rem;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.highlight-box strong {
  color: #e5e7eb;
}

.highlight-good {
  border-color: rgba(74, 222, 128, 0.8);
  background: rgba(22, 163, 74, 0.14);
}

.highlight-alert {
  border-color: rgba(248, 113, 113, 0.9);
  background: rgba(185, 28, 28, 0.2);
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  margin-top: 0.4rem;
}

th, td {
  padding: 0.45rem 0.5rem;
  border-bottom: 1px solid rgba(55, 65, 81, 0.9);
  text-align: left;
}

th {
  font-weight: 600;
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.95);
}

tr:nth-child(even) td {
  background: rgba(15, 23, 42, 0.55);
}

tr:last-child td {
  border-bottom: none;
}

.percentage {
  text-align: right;
  white-space: nowrap;
}

.logo-slot {
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(148, 163, 184, 0.8);
  padding: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.83rem;
  color: var(--text-muted);
  text-align: center;
  min-height: 130px;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 0.98));
}

.logo-slot strong {
  color: #e5e7eb;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.2rem;
}

.chip {
  font-size: 0.75rem;
  padding: 0.16rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.65);
  color: var(--text-muted);
  background: rgba(15, 23, 42, 0.8);
}

.contact-list {
  list-style: none;
  padding-left: 0;
  margin-top: 0.4rem;
}

.contact-list li {
  margin-bottom: 0.35rem;
}

.contact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  display: block;
}

.small-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

footer {
  border-top: 1px solid var(--border-subtle);
  padding: 0.8rem 1rem 1.3rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  max-width: var(--max-width);
  margin: 0 auto;
}

footer a {
  font-weight: 500;
}

/* Responsive */

@media (max-width: 800px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  header {
    position: static;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 0.4rem 1rem 0.7rem;
    background: radial-gradient(circle at top, rgba(24, 37, 55, 0.98), rgba(15, 23, 42, 0.98));
    border-bottom: 1px solid var(--border-subtle);
  }

  .nav-links.open {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  nav ul {
    flex-wrap: wrap;
  }

  .hero-card {
    padding: 1.45rem 1.25rem 1.45rem;
  }

  main {
    padding-inline: 1rem;
  }

  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
