* {
  box-sizing: border-box;
}

:root {
  --bg: #020617;
  --panel: #0f172a;
  --panel-2: #111827;
  --muted: #94a3b8;
  --text: #f8fafc;
  --cyan: #22d3ee;
  --blue: #2563eb;
  --border: rgba(255, 255, 255, 0.10);
  --soft: rgba(255, 255, 255, 0.04);
  --shadow: 0 30px 80px rgba(8, 145, 178, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(2, 6, 23, 0.78);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}

.brand img {
  width: 280px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #cbd5e1;
  font-size: 14px;
}

.nav-links a:hover {
  color: white;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--cyan);
  color: #06101f;
  font-weight: 800;
  padding: 13px 22px;
  box-shadow: 0 16px 40px rgba(34, 211, 238, 0.18);
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: #67e8f9;
}

.btn-outline {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  box-shadow: none;
}

.btn-small {
  padding: 10px 16px;
  font-size: 14px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 90px;
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.55;
}

.glow-one {
  width: 450px;
  height: 450px;
  top: -160px;
  left: 40%;
  background: rgba(34, 211, 238, 0.24);
}

.glow-two {
  width: 420px;
  height: 420px;
  right: -170px;
  bottom: 0;
  background: rgba(37, 99, 235, 0.22);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 800;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  max-width: 820px;
  font-size: clamp(46px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.2;
}

.lead {
  max-width: 720px;
  color: #cbd5e1;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 32px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  color: #cbd5e1;
  font-size: 14px;
}

.trust-row span::before {
  content: "✓";
  margin-right: 8px;
  color: var(--cyan);
}

.status-card,
.panel,
.card,
.contact-card {
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.62));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.status-card {
  border-radius: 32px;
  padding: 28px;
}

.status-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.status-top p,
.status-list span,
.card p,
.panel p,
.section-heading p,
.contact-card p {
  color: #cbd5e1;
}

.status-top h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.pill {
  align-self: flex-start;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  color: #86efac;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 700;
}

.status-list {
  display: grid;
  gap: 14px;
}

.status-list article {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--soft);
  padding: 18px;
}

.status-list strong,
.status-list span {
  display: block;
}

.section {
  padding: 94px 0;
}

.section-muted {
  border-block: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 46px;
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.cards.three {
  max-width: 980px;
  margin: 0 auto;
}

.card {
  border-radius: 26px;
  padding: 28px;
}

.card h3::before {
  content: "";
  display: block;
  width: 46px;
  height: 4px;
  border-radius: 999px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.split > div > p {
  color: #cbd5e1;
  font-size: 17px;
}

.check-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  color: #dbeafe;
}

.check-list li {
  margin: 12px 0;
}

.check-list li::before {
  content: "✓";
  margin-right: 12px;
  color: var(--cyan);
  font-weight: 900;
}

.panel {
  border-radius: 32px;
  padding: 34px;
}

.service-list,
.feature-grid,
.tag-grid {
  display: grid;
  gap: 12px;
}

.service-list span,
.feature-grid span,
.tag-grid span {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(2, 6, 23, 0.45);
  color: #dbeafe;
  padding: 13px 15px;
}

.feature-grid {
  grid-template-columns: repeat(2, 1fr);
}

.tag-grid {
  grid-template-columns: repeat(3, 1fr);
}

.contact-section {
  padding-bottom: 100px;
}

.contact-card {
  border-radius: 36px;
  padding: 58px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(34, 211, 238, 0.16), transparent 48%),
    linear-gradient(145deg, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.72));
}

.contact-card p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.contact-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.small-note {
  margin-top: 18px;
  color: var(--muted) !important;
  font-size: 13px;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  background: rgba(2, 6, 23, 0.85);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.footer img {
  width: 220px;
}

@media (max-width: 980px) {
  .nav-links,
  .nav .btn {
    display: none;
  }

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

  .cards,
  .tag-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .brand img {
    width: 230px;
  }

  .hero {
    padding-top: 70px;
  }

  .cards,
  .tag-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 34px 22px;
  }
}
