* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #070b14;
  --bg-soft: rgba(255, 255, 255, 0.03);
  --card: rgba(18, 25, 40, 0.82);
  --border: rgba(255, 255, 255, 0.08);
  --text: #eef4ff;
  --muted: #a0b0cd;
  --accent: #4da3ff;
  --accent-2: #7a5cff;
  --accent-3: #00d0ff;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(77, 163, 255, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(122, 92, 255, 0.08), transparent 28%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

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

.bg-orb {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  top: -80px;
  left: -80px;
  background: rgba(77, 163, 255, 0.45);
}

.orb-2 {
  right: -80px;
  bottom: -80px;
  background: rgba(122, 92, 255, 0.4);
}

.top-strip {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
}

.top-strip-track {
  white-space: nowrap;
  display: inline-block;
  padding: 12px 0;
  animation: tickerMove 22s linear infinite;
}

.top-strip-track span {
  display: inline-block;
  margin-right: 40px;
  color: var(--accent-3);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@keyframes tickerMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

.site-header {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--text);
}

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

.hero {
  min-height: 84vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: center;
  padding: 30px 0 70px;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.02;
  margin-bottom: 18px;
  max-width: 760px;
}

.hero-text {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.08rem;
  max-width: 700px;
  margin-bottom: 22px;
}

.rotating-box {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

.rotating-label {
  color: var(--muted);
  font-weight: 700;
}

.rotating-text {
  color: var(--text);
  font-weight: 800;
  transition: opacity 0.25s ease;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  box-shadow: 0 10px 28px rgba(77, 163, 255, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.contact-inline {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
}

.stats-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 720px;
}

.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow);
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 6px;
}

.stat-label {
  color: var(--muted);
  font-size: 0.95rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero-right h3 {
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.hero-right ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.hero-right li {
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--bg-soft);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--muted);
}

.mini-screen-top {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.mini-screen-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.section {
  padding: 85px 0;
}

.section-header {
  margin-bottom: 26px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
}

.grid {
  display: grid;
  gap: 18px;
}

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

.four-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-card h3,
.card h3 {
  margin-bottom: 12px;
}

.card p {
  color: var(--muted);
  line-height: 1.7;
}

.tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(77, 163, 255, 0.12);
  color: var(--accent-3);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.final-cta {
  text-align: center;
  padding: 36px;
}

.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
  margin-bottom: 16px;
}

.final-cta-text {
  max-width: 700px;
  margin: 0 auto 22px;
}

.contact-card {
  max-width: 760px;
}

.contact-card p {
  margin-bottom: 12px;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 42px;
  color: var(--muted);
}

.floating {
  animation: floatCard 5s ease-in-out infinite;
}

.lift-card {
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.lift-card:hover {
  transform: translateY(-6px);
  border-color: rgba(77, 163, 255, 0.25);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

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

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

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

  .three-grid,
  .stats-grid,
  .four-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding-top: 20px;
  }

  .rotating-box {
    border-radius: 18px;
  }

  .final-cta {
    text-align: left;
  }

  .final-cta-text {
    margin-left: 0;
    margin-right: 0;
  }
}