:root {
  --bg: #070b12;
  --bg-soft: #0e1622;
  --card: #121d2d;
  --line: #24344d;
  --text: #eaf2ff;
  --muted: #a9bdd9;
  --accent: #4fa2ff;
  --accent-2: #7ad7ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Inter", "Arial", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 80% -10%, rgba(79, 162, 255, 0.18), transparent 40%),
    radial-gradient(circle at 0% 120%, rgba(122, 215, 255, 0.16), transparent 35%),
    var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5vw;
  background: rgba(7, 11, 18, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(36, 52, 77, 0.7);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(122, 215, 255, 0.4);
}

.topbar nav {
  display: inline-flex;
  gap: 1rem;
}

.topbar nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.94rem;
}

main {
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: 2.8rem 0 4rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.eyebrow {
  margin: 0;
  color: var(--accent-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  margin: 0.5rem 0 1rem;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.hero-copy p {
  color: var(--muted);
  max-width: 62ch;
}

.cta-row {
  margin-top: 1.4rem;
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.92rem;
}

.btn.primary {
  background: linear-gradient(100deg, var(--accent), var(--accent-2));
  color: #0b1420;
}

.btn.ghost {
  border-color: var(--line);
  color: var(--text);
}

.hero-panel {
  background: linear-gradient(165deg, rgba(18, 29, 45, 0.95), rgba(9, 14, 22, 0.98));
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.hero-panel img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.hero-panel ul {
  margin: 0;
  padding: 1rem 1.2rem 1.25rem;
  color: var(--muted);
}

.hero-panel li + li {
  margin-top: 0.5rem;
}

.grid-two {
  margin-top: 2.6rem;
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-two article,
.timeline,
.entity,
.contact {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem 1.3rem;
}

.checks {
  margin: 0.5rem 0 0;
  padding-left: 1rem;
}

.checks li + li {
  margin-top: 0.35rem;
}

.timeline {
  margin-top: 1.1rem;
}

.steps {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.steps article {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.9rem;
  background: rgba(7, 11, 18, 0.55);
}

.steps h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
}

.steps p {
  margin: 0;
  color: var(--muted);
}

.entity {
  margin-top: 1.1rem;
}

.entity dl {
  margin: 0.8rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.entity dt {
  color: var(--accent-2);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.entity dd {
  margin: 0.2rem 0 0;
  color: var(--muted);
}

.contact {
  margin-top: 1.1rem;
}

.contact a {
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 600;
}

footer {
  width: min(1180px, 92vw);
  margin: 0 auto 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links svg {
  width: 18px;
  height: 18px;
  fill: var(--muted);
  display: block;
}

@media (max-width: 900px) {
  .hero,
  .grid-two,
  .steps {
    grid-template-columns: 1fr;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

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