:root {
  --bg: #06080c;
  --panel: #11161f;
  --panel-soft: #0d1219;
  --line: #1f2b3d;
  --text: #ebf4ff;
  --muted: #9fb4cf;
  --primary: #5cc5fa;
  --accent: #f4c75b;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 20px 44px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  background: radial-gradient(1100px 700px at 14% -8%, #17304a 0%, rgba(10, 14, 22, 0.08) 60%), var(--bg);
  color: var(--text);
  line-height: 1.5;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(68px);
  opacity: 0.32;
  z-index: 0;
}

.orb-1 {
  width: 360px;
  height: 360px;
  background: #1f7cab;
  top: -120px;
  right: -40px;
}

.orb-2 {
  width: 320px;
  height: 320px;
  background: #2b486f;
  bottom: -110px;
  left: -70px;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px 24px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  font-size: 1.02rem;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.site-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-header nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--primary);
  border-color: var(--primary);
  outline: none;
}

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 24px 28px;
}

.hero {
  margin-top: 8px;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(17, 26, 38, 0.95), rgba(13, 18, 25, 0.9));
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  background: rgba(92, 197, 250, 0.12);
  color: var(--primary);
  border: 1px solid rgba(92, 197, 250, 0.25);
  border-radius: 999px;
  padding: 7px 12px;
  font: 700 0.72rem "JetBrains Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.hero h1 {
  margin: 14px 0 12px;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.15;
}

.lead {
  margin: 0;
  font-size: 1.09rem;
  color: #deecfd;
}

.promo {
  margin-top: 12px;
  color: var(--muted);
}

.hero-card {
  background: linear-gradient(160deg, #141c2a, #0f151f);
  border: 1px solid rgba(92, 197, 250, 0.24);
  border-radius: var(--radius-sm);
  padding: 18px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.hero-icon {
  width: 130px;
  height: 130px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 26px rgba(0, 0, 0, 0.45);
}

.hero-card h2 {
  margin: 14px 0 8px;
}

.hero-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.cta-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 11px 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease, background 170ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.btn-primary {
  background: var(--primary);
  color: #061826;
  border: 1px solid transparent;
  box-shadow: 0 14px 24px rgba(22, 120, 171, 0.34);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #74d2fd;
}

.btn-ghost {
  border: 1px solid rgba(159, 180, 207, 0.35);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: rgba(92, 197, 250, 0.6);
}

.meta {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

code,
.site-footer p:last-child {
  font-family: "JetBrains Mono", "SF Mono", monospace;
}

.panel {
  margin-top: 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 22px;
}

.panel h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.48rem;
}

.panel h3 {
  margin-top: 18px;
  margin-bottom: 8px;
  color: #d8eafe;
}

.panel h4 {
  margin-top: 12px;
  margin-bottom: 6px;
  color: #cee4fb;
}

.panel p,
.panel li {
  color: #d7e7f7;
}

.panel ul {
  margin: 8px 0 8px 20px;
  padding: 0;
}

.panel blockquote {
  margin: 0;
  border-left: 3px solid var(--accent);
  background: rgba(244, 199, 91, 0.08);
  padding: 14px 14px 14px 16px;
  color: #fbe8b5;
  border-radius: 0 10px 10px 0;
}

.legal {
  background: linear-gradient(180deg, #121926 0%, #101722 100%);
}

.contact {
  background: linear-gradient(165deg, rgba(18, 27, 39, 0.95), rgba(15, 21, 31, 0.95));
}

a {
  color: var(--primary);
}

a:hover,
a:focus-visible {
  color: #8edcff;
}

.site-footer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px;
  color: var(--muted);
}

.site-footer p {
  margin: 0 0 7px;
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: rise 650ms cubic-bezier(0.2, 0.68, 0.2, 1) forwards;
}

main .reveal:nth-of-type(1) {
  animation-delay: 80ms;
}

main .reveal:nth-of-type(2) {
  animation-delay: 140ms;
}

main .reveal:nth-of-type(3) {
  animation-delay: 200ms;
}

main .reveal:nth-of-type(4) {
  animation-delay: 260ms;
}

main .reveal:nth-of-type(5) {
  animation-delay: 320ms;
}

main .reveal:nth-of-type(6) {
  animation-delay: 380ms;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  main,
  .site-header,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero,
  .panel {
    padding: 18px;
  }

  .hero-card {
    justify-items: flex-start;
    text-align: left;
  }

  .hero-icon {
    width: 100px;
    height: 100px;
    border-radius: 22px;
  }
}
