:root {
  --bg: #04101f;
  --bg-soft: #0b1d31;
  --card: rgba(6, 20, 36, 0.84);
  --text: #f4fbff;
  --muted: #b8cadb;
  --line: rgba(145, 220, 255, 0.18);
  --accent: #8de8ff;
  --accent-strong: #59d4ff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, #020914 0%, #071321 42%, #0d2337 100%);
}

.hero-shell {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.hero {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
  padding: 48px 0;
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(89, 212, 255, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(2, 9, 20, 0.82) 0%, rgba(5, 16, 31, 0.74) 42%, rgba(7, 21, 34, 0.88) 100%);
}

.hero__content,
.services-card {
  position: relative;
  z-index: 2;
  backdrop-filter: blur(16px);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero__content {
  padding: 56px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.brand-lockup__logo {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(141, 232, 255, 0.22);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}

.brand-lockup__tag {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.eyebrow,
.services-card__label {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 0.95;
}

.lead {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
}

.status-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(141, 232, 255, 0.06);
}

.status-card p {
  margin: 0;
  font-weight: 700;
}

.status-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 0 16px rgba(62, 207, 142, 0.8);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.button--primary {
  color: #062035;
  background: linear-gradient(135deg, var(--accent) 0%, #d7f7ff 100%);
}

.button--secondary {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(141, 232, 255, 0.04);
}

.services-card {
  padding: 36px 32px;
}

.services-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-list li {
  padding: 16px 0;
  font-size: 1.05rem;
  font-weight: 700;
  border-bottom: 1px solid var(--line);
}

.services-list li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  box-shadow: 0 0 14px rgba(89, 212, 255, 0.5);
}

.services-list li:last-child {
  border-bottom: 0;
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 28px 0;
  }

  .hero__content,
  .services-card {
    padding: 28px;
  }

  .brand-lockup {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .hero {
    width: min(100% - 24px, 1180px);
  }

  h1 {
    line-height: 1;
  }

  .brand-lockup {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
