:root {
  --halo-black: #050c16;
  --halo-deep: #0b1629;
  --halo-white: #eef6ff;
  --halo-muted: #b7c8dc;
  --halo-blue: #59b3ff;
  --halo-cyan: #7fd8ff;
  --halo-violet: #2d7dff;
  --halo-magenta: #1e4ec9;
  --halo-border: #1c365e;
  --halo-card: rgba(255, 255, 255, 0.12);
  --h1-grad-1: #eef6ff;
  --h1-grad-2: #7fd8ff;
  --h1-grad-3: #2d7dff;
  --h2-color: #7fd8ff;
  --h3-color: #c7e6ff;
  --section-bg: linear-gradient(180deg, rgba(89, 179, 255, 0.06), rgba(30, 78, 201, 0.04));
  --side-pad: 10%;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: radial-gradient(circle at top, #111933 0%, var(--halo-black) 58%);
  color: var(--halo-white);
  position: relative;
  min-height: 100vh;
}

main,
header,
section,
p,
li,
h1,
h2,
h3,
a {
  position: relative;
  z-index: 1;
}

.bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(89, 179, 255, 0.12), transparent 45%),
    linear-gradient(rgba(3, 7, 20, 0.62), rgba(3, 7, 20, 0.62));
  z-index: -1;
}

.notice {
  background: var(--halo-violet);
  color: #f8f7ff;
  text-align: center;
  font-size: 11px;
  padding: 9px 10px;
}

.page {
  width: 100%;
  margin: 0 0 76px;
  padding: 0 var(--side-pad);
}

.site-header {
  width: 100%;
  padding: 18px var(--side-pad) 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  background: #000;
  position: relative;
  z-index: 3;
}

.site-header > a[aria-label="Go to Home"] {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
}

.brand {
  color: transparent;
  text-decoration: none;
  font-size: clamp(22px, 3.2vw, 30px);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  background: linear-gradient(
    105deg,
    #b6f1ff 0%,
    #7fd8ff 26%,
    #59b3ff 52%,
    #4b7fff 74%,
    #8b5dff 100%
  );
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow:
    0 0 10px rgba(127, 216, 255, 0.45),
    0 0 22px rgba(89, 179, 255, 0.35),
    0 0 30px rgba(139, 93, 255, 0.22);
  animation: brand-shift 5s ease-in-out infinite;
}

@keyframes brand-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.brand-logo {
  height: clamp(42px, 7vw, 68px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.block {
  padding: 42px 0;
}

h1,
h2,
h3 {
  margin-top: 0;
}

h1 {
  font-size: clamp(33px, 5.2vw, 45px);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  line-height: 1.16;
  background: linear-gradient(90deg, var(--h1-grad-1) 0%, var(--h1-grad-2) 42%, var(--h1-grad-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  font-size: clamp(30px, 4vw, 36px);
  margin-bottom: 10px;
  line-height: 1.2;
  color: var(--h2-color);
  text-shadow: 0 0 8px rgba(92, 203, 255, 0.12);
}

h3 {
  font-size: 20px;
  margin: 20px 0 10px;
  line-height: 1.25;
  color: var(--h3-color);
}

.label {
  margin: 0 0 10px;
  color: var(--halo-cyan);
  font-size: 15.6px;
  font-weight: 700;
}

.label-strong {
  font-weight: 700;
  color: var(--halo-white);
}

.text {
  margin: 0;
  color: var(--halo-muted);
  line-height: 1.8;
  font-size: 15px;
  font-weight: 700;
}

.text + .text {
  margin-top: 10px;
}

.text strong {
  color: var(--halo-white);
  font-weight: 700;
}

.text-list {
  margin: 10px 0 0;
  padding-left: 20px;
  color: var(--halo-muted);
  line-height: 1.8;
  font-size: 15px;
  font-weight: 700;
}

.value-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
  border: 2px solid rgba(127, 216, 255, 0.62);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(6, 22, 48, 0.84), rgba(4, 13, 30, 0.8));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 38px rgba(63, 215, 255, 0.24),
    0 20px 40px rgba(0, 0, 0, 0.45);
}

.value-card {
  border: 2px solid rgba(127, 216, 255, 0.75);
  border-radius: 12px;
  padding: 18px 12px 10px;
  color: #eef6ff;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  position: relative;
  min-height: 0;
  background: linear-gradient(
    160deg,
    rgba(92, 203, 255, 0.26) 0%,
    rgba(45, 125, 255, 0.22) 48%,
    rgba(214, 91, 255, 0.24) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 0 1px rgba(127, 216, 255, 0.35),
    0 0 30px rgba(63, 215, 255, 0.32),
    0 22px 32px rgba(0, 0, 0, 0.42);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.value-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(90deg, #7fd8ff 0%, #2d7dff 50%, #8b5dff 100%);
  opacity: 0.95;
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 235, 255, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 0 0 1px rgba(127, 216, 255, 0.45),
    0 0 38px rgba(63, 215, 255, 0.4),
    0 24px 36px rgba(0, 0, 0, 0.5);
}

.value-grid + .text {
  margin-top: 24px;
}

.cta-line {
  margin: 14px 0 0;
  font-size: clamp(33px, 5.2vw, 45px);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, var(--h1-grad-1) 0%, var(--h1-grad-2) 42%, var(--h1-grad-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.social-line {
  margin: 14px 0 0;
  font-size: 18.4px;
  font-weight: 700;
  color: var(--halo-white);
}

.btn {
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
  border-radius: 4px;
  padding: 11px 16px;
  color: var(--halo-white);
  background: linear-gradient(135deg, var(--halo-violet) 0%, var(--halo-magenta) 100%);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.35),
    0 0 16px rgba(126, 77, 255, 0.2);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.4),
    0 0 18px rgba(126, 77, 255, 0.24);
}

.hero-copy .text:first-of-type {
  color: #c6dcff;
}

#services,
.value-grid,
.text-list {
  filter: saturate(1.05);
}

.block {
  background: var(--section-bg);
  border-radius: 10px;
  padding-left: 18px;
  padding-right: 18px;
}


.btn.ghost {
  background: linear-gradient(135deg, var(--halo-violet) 0%, var(--halo-magenta) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

hr {
  border: 0;
  border-top: 1px solid var(--halo-border);
  margin: 0;
  opacity: 0.95;
}

.disclaimer {
  margin-top: 22px;
  font-size: 12px;
  color: var(--halo-muted);
  line-height: 1.7;
  font-weight: 700;
}

.legal-links {
  margin: 12px auto 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  width: fit-content;
  border-bottom: 1px solid rgba(127, 216, 255, 0.35);
  padding-bottom: 3px;
}

.legal-links a {
  color: var(--halo-cyan);
  font-size: 12px;
  text-decoration: none;
}

.legal-links a + a::before {
  content: "·";
  margin-right: 12px;
  color: var(--halo-muted);
}

.icon-links {
  margin: 18px 0 0;
  font-size: 13px;
}

.icon-links a {
  color: var(--halo-muted);
  margin: 0 10px;
  text-decoration: none;
}

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-buttons .btn {
  margin-top: 0;
}

.hero-cta-group {
  text-align: center;
  margin-top: 6px;
  margin-top: auto;
  transform: translateY(240%);
}

.hero-cta-group .social-buttons {
  justify-content: center;
}

.hero-block {
  display: block;
  align-items: start;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(860px, 62vw, 1200px);
  padding-top: 0;
  margin-left: calc(-1 * var(--side-pad));
  margin-right: calc(-1 * var(--side-pad));
  padding-left: var(--side-pad);
  padding-right: var(--side-pad);
  background: transparent;
  border-radius: 0;
}

.hero-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./halo-collage.png") center top / contain no-repeat;
  opacity: 0.7;
  z-index: 0;
}

.hero-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(3, 7, 20, 0.48) 0%,
    rgba(3, 7, 20, 0.08) 38%,
    rgba(3, 7, 20, 0.08) 62%,
    rgba(3, 7, 20, 0.5) 100%
  );
  z-index: 0;
}

.hero-copy {
  padding-top: 14px;
  padding-bottom: 24px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.hero-intro {
  transform: none;
}

@media (max-width: 1024px) {
  .hero-block {
    min-height: clamp(760px, 74vw, 980px);
  }

  .hero-copy {
    padding-top: 18px;
    padding-bottom: 20px;
  }

  .hero-cta-group {
    margin-top: auto;
    transform: translateY(122%);
  }
}

@media (max-width: 768px) {
  .hero-block::before {
    background-size: contain;
    background-position: center 55%;
    background-repeat: no-repeat;
  }

  .hero-block {
    min-height: auto;
  }

  .hero-copy {
    padding-top: 18px;
    padding-bottom: 0;
    min-height: 100%;
  }

  .hero-cta-group {
    margin-top: auto;
    transform: translateY(12%);
    margin-bottom: 0;
  }

  .hero-intro {
    transform: translateY(-20%);
  }

  .cta-line {
    font-size: clamp(30px, 8vw, 40px);
  }

  .social-buttons {
    justify-content: center;
  }

  .social-buttons .btn {
    min-width: 132px;
    text-align: center;
  }

  h1 {
    font-size: clamp(30px, 8vw, 40px);
  }

  h2 {
    font-size: clamp(25px, 6vw, 32px);
  }

  .hero-block + hr + .block {
    padding-top: 4px;
  }
}

@media (max-width: 700px) {
  .hero-block::before {
    background-size: contain;
    background-position: center 55%;
    background-repeat: no-repeat;
  }

  :root {
    --side-pad: 6%;
  }

  .page {
    width: 100%;
    margin-top: 20px;
  }

  .block {
    padding: 36px 0;
  }

  .hero-block {
    min-height: auto;
  }

  .hero-copy {
    padding-top: 16px;
    padding-bottom: 0;
    min-height: 100%;
  }

  .hero-cta-group {
    margin-top: auto;
    transform: translateY(10%);
    margin-bottom: 0;
  }

  .hero-intro {
    transform: translateY(-18%);
  }

  .value-grid {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .legal-links {
    width: 100%;
    border-bottom: 0;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-block::before {
    background-size: contain;
    background-position: center 55%;
    background-repeat: no-repeat;
  }

  :root {
    --side-pad: 5%;
  }

  .site-header {
    gap: 10px;
    padding-top: 14px;
  }

  .brand {
    letter-spacing: 0;
  }

  .btn {
    padding: 10px 12px;
    font-size: 12px;
  }

  .social-buttons .btn {
    width: auto;
    min-width: 120px;
  }

  .text,
  .text-list {
    font-size: 14px;
  }

  .value-card {
    min-height: 0;
    padding: 28px 12px 10px;
  }

  .hero-cta-group {
    transform: translateY(8%);
    margin-bottom: 0;
  }

  .hero-intro {
    transform: translateY(-16%);
  }
}
