:root {
  --blue: #0d7dfa;
  --blue-dark: #0b63c5;
  --blue-neon: #4ad4ff;
  --bg: #f6f8fb;
  --card: #ffffff;
  --text: #0f1b2e;
  --muted: #5c6b80;
  --border: #d9e2f0;
  --shadow: 0 16px 50px rgba(13, 125, 250, 0.18);
}

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap");

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 20%, rgba(13, 125, 250, 0.18), transparent 32%),
    radial-gradient(circle at 80% 0%, rgba(74, 212, 255, 0.15), transparent 25%),
    #eef3fb;
  line-height: 1.6;
}

a {
  color: var(--blue);
  text-decoration: none;
}

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

.topbar {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(13, 125, 250, 0.15);
  box-shadow: 0 12px 36px rgba(13, 125, 250, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  width: calc(100% - 32px);
  max-width: 1200px;
  margin: 12px auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 40px;
  height: 40px;
}

.brand-name {
  margin: 0;
  font-weight: 700;
}

.brand-sub {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  gap: 16px;
}

.nav a {
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 600;
  color: var(--text);
}

.nav a:hover {
  background: var(--bg);
  color: var(--blue);
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 32px;
  padding: 64px 32px 56px;
  align-items: center;
  background: radial-gradient(circle at 12% 20%, rgba(74, 212, 255, 0.2), transparent 38%),
    radial-gradient(circle at 85% 20%, rgba(13, 125, 250, 0.22), transparent 36%),
    linear-gradient(135deg, #0e1f44, #0a5dff 55%, #0a3ba8);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(13, 125, 250, 0.28);
  color: #eaf1ff;
  max-width: 1200px;
  margin: 12px auto 18px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto;
  height: 70%;
  background: radial-gradient(circle at 50% 50%, rgba(74, 212, 255, 0.2), transparent 55%);
  transform: rotate(-6deg);
  opacity: 0.6;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 8% 8%;
  border-radius: 18px;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.6;
  pointer-events: none;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  margin: 12px 0 16px;
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: -0.6px;
}

.lead {
  color: #cdd9ff;
  margin-bottom: 18px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(74, 212, 255, 0.35);
  color: #eaf6ff;
  font-weight: 600;
  font-size: 13px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn.primary {
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.24), transparent 38%),
    linear-gradient(90deg, var(--blue), var(--blue-dark));
  color: #fff;
  box-shadow: var(--shadow);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 48px rgba(13, 125, 250, 0.35);
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.hero .btn.ghost {
  color: #eaf1ff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.btn.block {
  width: 100%;
}

.hero-meta {
  display: grid;
  gap: 6px;
  color: #c2d3ff;
  font-size: 14px;
  margin-top: 6px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(74, 212, 255, 0.35);
  border-radius: 14px;
  padding: 12px 14px;
  color: #eaf1ff;
  box-shadow: 0 10px 28px rgba(13, 125, 250, 0.25);
}

.stat .label {
  margin: 0;
  color: #9fb9ff;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.stat .value {
  margin: 2px 0 4px;
  font-size: 22px;
  font-weight: 800;
}

.stat small {
  color: #c8d6ff;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.bubble-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 24px 50px rgba(13, 125, 250, 0.28);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
  color: #eaf1ff;
}

.bubble-card img {
  width: 96px;
  margin: 0 auto 12px;
}

.bubble-card p {
  margin: 0;
  font-weight: 800;
}

.bubble-card small {
  color: #cbd9ff;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  background: rgba(13, 125, 250, 0.12);
  color: var(--blue-dark);
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-size: 12px;
  box-shadow: inset 0 0 0 1px rgba(13, 125, 250, 0.2);
}

.section {
  padding: 34px 28px 14px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-head h2 {
  margin: 10px 0;
  font-size: 28px;
}

.section-sub {
  color: var(--muted);
  max-width: 900px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(13, 125, 250, 0.15);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 16px 36px rgba(18, 38, 63, 0.08);
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(13, 125, 250, 0.1), transparent 40%);
  opacity: 0.7;
  pointer-events: none;
}

.card h3 {
  margin-top: 0;
}

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

.alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 249, 255, 0.96));
  margin: 30px auto;
  padding: 36px 28px;
  border-block: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(18, 38, 63, 0.06);
}

.compliance {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 16px;
}

.icp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(243, 248, 255, 0.95));
  border: 1px solid rgba(13, 125, 250, 0.2);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 12px 28px rgba(18, 38, 63, 0.08);
}

.icp-code {
  font-weight: 800;
  color: var(--blue-dark);
  margin: 0;
}

.uptime {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(243, 248, 255, 0.95));
  border: 1px solid rgba(13, 125, 250, 0.2);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 12px 28px rgba(18, 38, 63, 0.08);
}

.uptime h3 {
  margin-top: 0;
}

.uptime p {
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  display: grid;
  gap: 10px;
}

.contact-list li {
  color: var(--muted);
}

.hint {
  color: var(--muted);
  margin-top: 6px;
}

.contact-form {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.96));
  border: 1px solid rgba(13, 125, 250, 0.18);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 16px 38px rgba(18, 38, 63, 0.08);
  display: grid;
  gap: 12px;
}

.contact-form label {
  font-weight: 700;
  display: grid;
  gap: 6px;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 14px;
  color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(13, 125, 250, 0.2);
  border-color: var(--blue);
}

.form-note {
  color: var(--muted);
  font-size: 12px;
  margin: 0;
}

.footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  align-items: center;
  padding: 20px 28px 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(243, 248, 255, 0.95));
  border: 1px solid rgba(13, 125, 250, 0.15);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(18, 38, 63, 0.07);
  max-width: 1200px;
  margin: 12px auto 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  width: 36px;
  height: 36px;
}

.footer-brand p {
  margin: 0;
  font-weight: 700;
}

.footer-brand small {
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer .icp {
  margin: 0;
  justify-self: end;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 40px;
  }

  .hero-visual {
    order: -1;
  }

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

  .topbar {
    flex-wrap: wrap;
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .nav a {
    flex: 1;
    text-align: center;
  }

  .hero {
    padding: 32px 20px;
  }

  .section {
    padding: 28px 20px 8px;
  }

  .footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer .icp {
    justify-self: center;
  }
}
