* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: #eaf0ff;
  background: radial-gradient(1200px 600px at 15% 0%, rgba(103, 123, 255, 0.35), transparent 60%), radial-gradient(900px 500px at 85% 10%, rgba(0, 220, 255, 0.25), transparent 55%), #0b1220;
  line-height: 1.55;
}

a {
  color: #cfe0ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 20px;
  top: 20px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  background: #fff;
  color: #000;
  border-radius: 10px;
  z-index: 9999;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(11, 18, 32, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(175, 210, 255, 0.85));
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.nav-links {
  display: flex;
  gap: 16px;
  font-size: 14px;
}

.nav-links a {
  opacity: 0.9;
}

.nav-links a:hover {
  opacity: 1;
}

main {
  padding: 56px 0 72px;
}

.hero {
  padding: 56px 0 30px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: stretch;
}

.hero h1 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  margin: 0 0 14px;
  letter-spacing: -0.6px;
}

.hero p {
  margin: 0 0 22px;
  color: #b9c4e3;
  font-size: clamp(16px, 1.5vw, 18px);
  max-width: 60ch;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #eaf0ff;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.26);
}

.btn.primary {
  background: #ffffff;
  color: #0b1220;
  border-color: transparent;
}

.btn.primary:hover {
  background: rgba(255, 255, 255, 0.92);
}

.badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: #b9c4e3;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 18px;
  width: fit-content;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 255, 180, 0.9);
  box-shadow: 0 0 0 4px rgba(0, 255, 180, 0.15);
}

.card {
  background: rgba(15, 26, 48, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.hero-card {
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}

.hero-card h3 {
  margin: 0;
  font-size: 16px;
}

.hero-card p {
  margin: 0;
  color: #b9c4e3;
  font-size: 14px;
}

.hero-card .meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  color: #b9c4e3;
}

.section {
  padding: 28px 0;
}

.section h2 {
  font-size: clamp(22px, 2.3vw, 28px);
  margin: 0 0 10px;
  letter-spacing: -0.2px;
}

.section p {
  margin: 0;
  color: #b9c4e3;
  max-width: 78ch;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 14px;
}

.panel {
  padding: 22px;
}

.panel h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.panel p {
  margin: 0;
  color: #b9c4e3;
}

.panel .actions {
  margin-top: 14px;
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 22px 0;
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 26px 0;
  color: #b9c4e3;
  font-size: 13px;
  background: rgba(11, 18, 32, 0.35);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
}

/*# sourceMappingURL=styles.css.map */
