:root {
  --midnight: #05143b;
  --midnight-deep: #020a20;
  --paper: #f5f7fb;
  --ink: #0b1937;
  --muted: #64708a;
  --line: #dbe1ec;
  --cyan: #1fe0f2;
  --violet: #b94df1;
  --shell: min(1160px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: white;
  color: var(--midnight);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 10;
  width: 100%;
  padding: 28px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  width: 260px;
}

.header-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.header-link:hover,
.header-link:focus-visible {
  color: white;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  background:
    radial-gradient(circle at 83% 45%, rgba(37, 105, 255, 0.24), transparent 30%),
    linear-gradient(135deg, var(--midnight-deep) 0%, var(--midnight) 57%, #08194d 100%);
  color: white;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(31, 224, 242, 0.7), rgba(185, 77, 241, 0.65), transparent);
  content: "";
}

.hero-glow {
  position: absolute;
  right: -220px;
  bottom: -410px;
  width: 820px;
  height: 820px;
  border: 1px solid rgba(105, 150, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 180px rgba(99, 62, 225, 0.16) inset;
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
  align-items: center;
  gap: 42px;
  padding-top: 112px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 18px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(3.4rem, 6.3vw, 6.2rem);
  font-weight: 620;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.intro {
  max-width: 550px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.72;
}

.hero-mark {
  position: relative;
  align-self: end;
  filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.24));
}

.hero-mark::before {
  position: absolute;
  z-index: -1;
  inset: 22% 8% 8% 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 224, 242, 0.18), rgba(185, 77, 241, 0.08) 43%, transparent 70%);
  filter: blur(24px);
  content: "";
}

.hero-mark img {
  width: min(650px, 46vw);
  margin-inline: auto;
}

.information-section {
  padding: clamp(86px, 11vw, 150px) 0;
}

.information-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(460px, 1.3fr);
  gap: clamp(60px, 10vw, 140px);
  align-items: start;
}

.eyebrow-dark {
  margin-bottom: 18px;
  color: #7354d8;
}

h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.9rem);
  font-weight: 620;
  letter-spacing: -0.05em;
  line-height: 1;
}

.section-heading > p:last-child {
  max-width: 390px;
  margin: 26px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.company-details {
  margin: 0;
  border-top: 1px solid var(--ink);
}

.detail-row {
  display: grid;
  grid-template-columns: minmax(175px, 0.7fr) minmax(220px, 1fr);
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.detail-row dt {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.detail-row dd {
  margin: 0;
  font-weight: 640;
}

.pending {
  color: #7a8499;
  font-weight: 520;
}

.site-footer {
  padding: 42px 0;
  background: var(--midnight-deep);
  color: white;
}

.footer-inner,
.footer-brand {
  display: flex;
  align-items: center;
}

.footer-inner {
  justify-content: space-between;
  gap: 36px;
}

.footer-brand {
  gap: 14px;
  font-weight: 650;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 36px, 680px);
  }

  .brand {
    width: 210px;
  }

  .header-link {
    display: none;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 170px;
  }

  h1 {
    font-size: clamp(3.3rem, 15vw, 5.2rem);
  }

  .hero-mark {
    margin-top: -40px;
  }

  .hero-mark img {
    width: min(620px, 105vw);
    margin-right: -10vw;
  }

  .information-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-top: 22px;
  }

  .brand {
    width: 190px;
  }

  .hero-grid {
    padding-top: 146px;
  }

  .intro {
    margin-top: 28px;
  }

  .detail-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
