:root {
  --bg: #04070d;
  --bg-2: #081120;

  --panel: rgba(8, 15, 28, 0.92);
  --panel-2: rgba(10, 19, 34, 0.95);

  --text: #f3f7ff;
  --muted: #8ca0c4;

  --blue: #0a84ff;
  --blue-2: #2f9cff;
  --blue-3: #5db8ff;

  --border: rgba(80, 140, 255, 0.22);

  --shadow:
    0 20px 60px rgba(0,0,0,0.45);

  --glow:
    0 0 24px rgba(10,132,255,0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  font-family: "Inter", sans-serif;

  background:
    radial-gradient(
      circle at top left,
      rgba(10,132,255,0.15),
      transparent 30%
    ),

    radial-gradient(
      circle at bottom right,
      rgba(0,170,255,0.08),
      transparent 35%
    ),

    linear-gradient(
      180deg,
      #04070d 0%,
      #07101d 100%
    );

  color: var(--text);

  overflow-x: hidden;
}

/* BG */

.bg-grid {
  position: fixed;
  inset: 0;

  background-image:
    linear-gradient(
      rgba(255,255,255,0.025) 1px,
      transparent 1px
    ),

    linear-gradient(
      90deg,
      rgba(255,255,255,0.025) 1px,
      transparent 1px
    );

  background-size: 40px 40px;

  opacity: 0.2;

  pointer-events: none;

  z-index: -3;
}

.bg-glow {
  position: fixed;

  width: 600px;
  height: 600px;

  border-radius: 999px;

  filter: blur(120px);

  pointer-events: none;

  z-index: -2;
}

.glow-1 {
  top: -200px;
  left: -100px;

  background:
    rgba(10,132,255,0.14);
}

.glow-2 {
  bottom: -250px;
  right: -150px;

  background:
    rgba(0,170,255,0.1);
}

/* GLOBAL */

.container {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;

  z-index: 100;

  backdrop-filter: blur(18px);

  background:
    rgba(4,7,13,0.8);

  border-bottom:
    1px solid rgba(255,255,255,0.05);
}

.nav {
  min-height: 84px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;

  gap: 14px;
}

.logo-box {
  width: 52px;
  height: 52px;

  border-radius: 14px;

  overflow: hidden;

  border:
    1px solid var(--border);

  background:
    rgba(255,255,255,0.03);

  box-shadow: var(--glow);
}

.logo-box img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text h2 {
  margin: 0;

  font-size: 18px;
}

.brand-text span {
  color: var(--muted);

  font-size: 13px;
}

nav {
  display: flex;
  align-items: center;

  gap: 26px;

  color: var(--muted);

  font-size: 14px;
}

nav a {
  transition: 0.2s ease;
}

nav a:hover {
  color: white;
}

.header-btn {
  height: 48px;

  padding: 0 22px;

  border-radius: 14px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(
      135deg,
      var(--blue),
      var(--blue-2)
    );

  border:
    1px solid rgba(93,184,255,0.25);

  box-shadow: var(--glow);

  font-weight: 700;
}

/* HERO */

.hero {
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;

  gap: 60px;

  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 40px;

  padding: 0 18px;

  border-radius: 999px;

  background:
    rgba(10,132,255,0.08);

  border:
    1px solid rgba(93,184,255,0.18);

  color: var(--blue-3);

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 1px;
}

.hero-left h1 {
  font-size: clamp(54px, 7vw, 88px);

  line-height: 0.95;

  margin-top: 24px;
  margin-bottom: 24px;

  letter-spacing: -3px;
}

.hero-left h1 span {
  color: var(--blue-2);
}

.hero-text {
  max-width: 620px;

  color: var(--muted);

  line-height: 1.7;

  font-size: 20px;
}

.hero-buttons {
  display: flex;
  gap: 16px;

  margin-top: 36px;

  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  min-height: 54px;

  padding: 0 24px;

  border-radius: 14px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;

  transition: 0.2s ease;
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px);
}

.primary-btn {
  background:
    linear-gradient(
      135deg,
      var(--blue),
      var(--blue-2)
    );

  border:
    1px solid rgba(93,184,255,0.22);

  box-shadow: var(--glow);
}

.secondary-btn {
  background:
    rgba(255,255,255,0.03);

  border:
    1px solid rgba(255,255,255,0.08);
}

.hero-points {
  margin-top: 28px;

  display: flex;
  gap: 24px;

  flex-wrap: wrap;

  color: var(--muted);

  font-size: 14px;
}

/* DASHBOARD */

.dashboard-card {
  background:
    linear-gradient(
      180deg,
      rgba(11,19,34,0.98),
      rgba(5,10,18,0.98)
    );

  border:
    1px solid var(--border);

  border-radius: 24px;

  padding: 22px;

  box-shadow: var(--shadow);
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 18px;
}

.dash-brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.small-logo {
  width: 40px;
  height: 40px;

  border-radius: 10px;

  background:
    linear-gradient(
      135deg,
      var(--blue),
      var(--blue-2)
    );

  box-shadow: var(--glow);
}

.dash-brand strong {
  display: block;

  font-size: 14px;
}

.dash-brand span {
  display: block;

  margin-top: 4px;

  color: var(--muted);

  font-size: 12px;
}

.close-btn {
  width: 32px;
  height: 32px;

  border-radius: 10px;

  border: none;

  background:
    rgba(255,255,255,0.04);

  color: white;

  cursor: pointer;
}

/* TABS */

.tabs {
  display: flex;
  gap: 10px;

  overflow-x: auto;

  padding-bottom: 4px;

  margin-bottom: 22px;
}

.tab {
  min-width: fit-content;

  height: 40px;

  padding: 0 16px;

  border-radius: 12px;

  border:
    1px solid rgba(255,255,255,0.08);

  background:
    rgba(255,255,255,0.03);

  color: white;

  cursor: pointer;

  font-weight: 600;
}

.tab.active {
  background:
    linear-gradient(
      135deg,
      var(--blue),
      var(--blue-2)
    );

  border:
    1px solid rgba(93,184,255,0.22);

  box-shadow: var(--glow);
}

/* STATUS */

.status-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 14px;
}

.status-box,
.mini-box {
  min-height: 92px;

  border-radius: 16px;

  background:
    rgba(255,255,255,0.025);

  border:
    1px solid rgba(255,255,255,0.07);

  padding: 16px;
}

.status-box span,
.mini-box span {
  display: block;

  color: var(--muted);

  font-size: 13px;

  margin-bottom: 10px;
}

.status-box strong,
.mini-box strong {
  font-size: 22px;
}

/* ACTIONS */

.dash-actions {
  margin-top: 20px;

  display: flex;
  flex-direction: column;

  gap: 12px;
}

.blue-action,
.dark-action,
.red-action {
  min-height: 50px;

  border-radius: 14px;

  border: none;

  font-weight: 700;

  cursor: pointer;

  color: white;
}

.blue-action {
  background:
    linear-gradient(
      135deg,
      var(--blue),
      var(--blue-2)
    );
}

.dark-action {
  background:
    rgba(255,255,255,0.05);

  border:
    1px solid rgba(255,255,255,0.08);
}

.red-action {
  background:
    linear-gradient(
      135deg,
      #841827,
      #b12539
    );
}

.mini-dashboard {
  margin-top: 22px;

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 14px;
}

/* SECTIONS */

.features-section,
.how-section,
.privacy-section,
.cta-section {
  padding: 90px 0;
}

.section-heading {
  text-align: center;

  margin-bottom: 52px;
}

.section-heading span {
  color: var(--blue-3);

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 1px;
}

.section-heading h2 {
  margin-top: 16px;
  margin-bottom: 12px;

  font-size: clamp(38px, 4vw, 58px);
}

.section-heading p {
  color: var(--muted);

  font-size: 18px;
}

/* FEATURES */

.features-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 24px;
}

.feature-card {
  background:
    rgba(255,255,255,0.025);

  border:
    1px solid rgba(255,255,255,0.07);

  border-radius: 24px;

  padding: 28px;

  transition: 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);

  border-color:
    rgba(93,184,255,0.18);

  box-shadow:
    0 18px 50px rgba(0,0,0,0.35),
    0 0 22px rgba(10,132,255,0.08);
}

.icon {
  width: 56px;
  height: 56px;

  border-radius: 16px;

  background:
    linear-gradient(
      135deg,
      rgba(10,132,255,0.16),
      rgba(93,184,255,0.08)
    );

  border:
    1px solid rgba(93,184,255,0.12);

  margin-bottom: 24px;
}

.feature-card p {
  color: var(--muted);

  line-height: 1.7;
}

/* STEPS */

.steps-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 20px;
}

.step-card {
  background:
    rgba(255,255,255,0.025);

  border:
    1px solid rgba(255,255,255,0.07);

  border-radius: 24px;

  padding: 26px;
}

.step-number {
  width: 52px;
  height: 52px;

  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 22px;

  background:
    linear-gradient(
      135deg,
      var(--blue),
      var(--blue-2)
    );

  box-shadow: var(--glow);

  font-weight: 800;
}

.step-card p {
  color: var(--muted);

  line-height: 1.7;
}

/* PRIVACY */

.privacy-card {
  display: grid;

  grid-template-columns:
    240px 1fr 1fr;

  gap: 36px;

  align-items: center;

  background:
    rgba(255,255,255,0.025);

  border:
    1px solid rgba(255,255,255,0.07);

  border-radius: 30px;

  padding: 36px;
}

.shield-glow {
  width: 180px;
  height: 180px;

  border-radius: 999px;

  background:
    radial-gradient(
      circle,
      rgba(10,132,255,0.6),
      transparent 65%
    );

  margin: auto;

  filter: blur(10px);
}

.privacy-center span {
  color: var(--blue-3);

  font-size: 12px;
  font-weight: 800;
}

.privacy-center p {
  color: var(--muted);

  line-height: 1.7;
}

.privacy-right {
  display: flex;
  flex-direction: column;

  gap: 16px;

  color: var(--muted);
}

/* CTA */

.cta-card {
  text-align: center;

  padding: 80px 30px;

  border-radius: 30px;

  background:
    linear-gradient(
      180deg,
      rgba(10,132,255,0.08),
      rgba(255,255,255,0.02)
    );

  border:
    1px solid rgba(93,184,255,0.12);
}

.cta-card p {
  color: var(--muted);

  margin-bottom: 34px;
}

.cta-btn {
  min-height: 58px;

  padding: 0 30px;

  border-radius: 16px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(
      135deg,
      var(--blue),
      var(--blue-2)
    );

  font-weight: 700;

  box-shadow: var(--glow);
}

/* FOOTER */

.footer {
  padding: 40px 0;

  border-top:
    1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;

  gap: 14px;
}

.footer-logo {
  width: 48px;
  height: 48px;

  border-radius: 14px;

  background:
    linear-gradient(
      135deg,
      var(--blue),
      var(--blue-2)
    );

  box-shadow: var(--glow);
}

.footer-brand strong {
  display: block;
}

.footer-brand span {
  color: var(--muted);

  font-size: 13px;
}

.footer-links,
.footer-socials {
  display: flex;
  gap: 20px;

  color: var(--muted);
}

/* RESPONSIVE */

@media (max-width: 1200px) {

  .hero-grid,
  .privacy-card {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .status-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mini-dashboard {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 800px) {

  nav {
    display: none;
  }

  .hero-left h1 {
    font-size: 52px;
  }

  .features-grid,
  .steps-grid,
  .status-grid,
  .mini-dashboard {
    grid-template-columns: 1fr;
  }

  .hero-points {
    flex-direction: column;
    gap: 12px;
  }
}