:root {
  --bg-color: #020617;
  --overlay-color: rgba(3, 7, 18, 0.72);
  --primary: #1d4ed8;
  --primary-soft: rgba(37, 99, 235, 0.7);
  --accent: #facc15;
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --border-soft: rgba(148, 163, 184, 0.22);
  --card-bg: rgba(15, 23, 42, 0.82);
  --blur-strong: 26px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  color: var(--text-main);
  background: radial-gradient(circle at top, #020617 0, #020617 45%, #000 100%);
}

body {
  -webkit-font-smoothing: antialiased;
}

.page {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: saturate(1.1) contrast(1.05) brightness(0.9);
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.08), transparent),
    radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.18), transparent),
    linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(3, 7, 18, 0.92));
  backdrop-filter: blur(var(--blur-strong));
}

.header {
  position: relative;
  z-index: 1;
  padding: 2.2rem 5vw 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  border: none;
  pointer-events: auto;
}

.logo-wrapper {
  width: 120px;
  height: 120px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #020617;
  box-shadow:
    0 0 0 2px rgba(15, 23, 42, 0.95),
    0 0 0 4px rgba(37, 99, 235, 0.8),
    0 10px 25px rgba(15, 23, 42, 0.9);
}

.logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e5e7eb;
}

.brand-subtitle {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem 3rem;
}

.content-inner {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 2.4rem 2.2rem 2.4rem;
  border-radius: 28px;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.88));
  box-shadow:
    0 24px 80px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(148, 163, 184, 0.35);
  backdrop-filter: blur(28px);
  border: 1px solid rgba(37, 99, 235, 0.35);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.85rem;
  border-radius: 999px;
  background: radial-gradient(
    circle at top left,
    rgba(129, 140, 248, 0.55),
    rgba(59, 130, 246, 0.9)
  );
  color: #0f172a;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 1.4rem;
}

.eyebrow::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #fbbf24;
  box-shadow:
    0 0 0 4px rgba(250, 204, 21, 0.24),
    0 0 0 9px rgba(37, 99, 235, 0.55);
}

.headline {
  font-size: clamp(1.9rem, 3vw, 2.45rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin: 0 0 0.9rem;
}

.lead {
  margin: 0 0 1.9rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 38rem;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 1.8rem;
}

.info-card {
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.45), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow:
    0 14px 38px rgba(15, 23, 42, 0.8),
    0 0 0 1px rgba(15, 23, 42, 0.8);
}

.info-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.7);
  margin-bottom: 0.25rem;
}

.info-value {
  font-size: 0.88rem;
  font-weight: 500;
}

.contact {
  border-radius: 18px;
  padding: 1.1rem 1rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px dashed rgba(148, 163, 184, 0.6);
}

.contact-label {
  margin: 0 0 0.4rem;
  font-size: 0.87rem;
  color: rgba(226, 232, 240, 0.9);
}

.contact-note {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer {
  position: relative;
  z-index: 1;
  padding: 0.8rem 5vw 1.3rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  justify-content: center;
}

.footer-text {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.94);
  border: 1px solid rgba(30, 64, 175, 0.7);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(15, 23, 42, 0.9);
}

.video-page .overlay {
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), transparent),
    radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.24), transparent),
    linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(3, 7, 18, 0.98));
}

.video-content {
  padding-top: 1.5rem;
  padding-bottom: 2.4rem;
}

.video-shell {
  width: min(1080px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 2.2rem;
  padding: 2.3rem 2.1rem;
  border-radius: 30px;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.9));
  box-shadow:
    0 26px 90px rgba(15, 23, 42, 0.95),
    0 0 0 1px rgba(30, 64, 175, 0.7);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(37, 99, 235, 0.55);
}

.video-meta .headline {
  margin-bottom: 1rem;
}

.video-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.video-badge {
  font-size: 0.75rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.4), rgba(15, 23, 42, 0.96));
}

.video-frame-inner {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 24px 80px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(15, 23, 42, 0.9);
  max-width: 480px;
  margin: 0 auto;
}

.video-main-player {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-note {
  margin-top: 0.7rem;
  margin-bottom: 0.3rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.video-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.2rem;
  font-size: 0.8rem;
  color: var(--text-main);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.video-back-link:hover {
  opacity: 1;
  transform: translateX(-2px);
}

.video-link-inline {
  color: #bfdbfe;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(191, 219, 254, 0.6);
}

.video-link-inline:hover {
  border-bottom-color: rgba(191, 219, 254, 1);
}

/* Responsive */
@media (max-width: 768px) {
  .header {
    padding-top: 1.1rem;
  }

  .content {
    padding: 2rem 1.25rem 2.6rem;
  }

  .content-inner {
    padding: 1.8rem 1.45rem 1.9rem;
    border-radius: 22px;
  }

  .video-shell {
    grid-template-columns: 1fr;
    padding: 1.7rem 1.5rem;
    border-radius: 24px;
  }

  .lead {
    font-size: 0.95rem;
  }

  .info-cards {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bg-video {
    display: none;
  }

  .overlay {
    background: radial-gradient(circle at top, #020617, #020617 45%, #000 100%);
  }
}


