﻿:root {
  --primary: #4f46e5;
  --primary-2: #5c55ff;
  --bg: #040a1a;
  --bg-2: #061026;
  --surface: #07142e;
  --surface-2: #091938;
  --text: #f1f2f6;
  --muted: #9aa3b8;
  --border: rgba(176, 191, 227, 0.18);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  font-size: 14px;
}
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Manrope", sans-serif;
  line-height: 1.5;
}

h1, h2, h3, h4 {
  margin: 0;
  letter-spacing: -0.02em;
  font-family: "Space Grotesk", sans-serif;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1280px, calc(100% - 3rem));
  margin-inline: auto;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  border-top: 1px solid #4e46db;
  border-bottom: 1px solid var(--border);
  background: rgba(4, 10, 26, 0.94);
  backdrop-filter: blur(8px);
}

.nav {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, #1e2d8f 0%, #4f46e5 100%);
}

.brand-name {
  font-size: 2rem;
  font-weight: 700;
}

.menu {
  display: flex;
  align-items: center;
  gap: 2.85rem;
  color: var(--muted);
  font-size: 1rem;
}

.menu a {
  transition: color 0.2s ease;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.65rem;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 1rem;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn-primary {
  color: #fff;
  background: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-2);
}

.btn-ghost {
  border-color: var(--border);
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.04);
}

.hero {
  min-height: 100svh;
  padding-top: 136px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(60% 65% at 66% 44%, rgba(23, 51, 141, 0.34), transparent 60%),
    radial-gradient(40% 45% at 14% 12%, rgba(79, 70, 229, 0.1), transparent 70%),
    var(--bg);
}

.hero-grid {
  min-height: calc(100svh - 136px);
  display: grid;
  align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.25rem;
}

.eyebrow {
  margin-bottom: 1.1rem;
  color: #5452ff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.11em;
}

.hero-copy h1 {
  max-width: 620px;
  margin-bottom: 1.1rem;
  font-size: clamp(2.8rem, 4.2vw, 5rem);
  line-height: 1.08;
}

.hero-subtitle {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions {
  margin-top: 1.75rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 1.7rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.hero-visual {
  display: grid;
  place-items: center;
}

.laptop-wrap {
  width: 100%;
  max-width: 700px;
}

.mockup-frame {
  width: 100%;
  border-radius: 20px 20px 10px 10px;
  border: 2px solid rgba(212, 222, 255, 0.5);
  background: linear-gradient(165deg, #050a17 0%, #0a1a3d 55%, #06142f 100%);
  box-shadow:
    inset 0 0 120px rgba(55, 88, 176, 0.3),
    0 18px 40px rgba(0, 0, 0, 0.45);
  padding: 0.9rem 1.05rem 1rem;
}

.mockup-camera {
  width: 7px;
  height: 7px;
  margin: 0 auto 0.65rem;
  border-radius: 999px;
  background: #1f2434;
  border: 1px solid #626c85;
}

.mockup-screen {
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(166, 186, 239, 0.28);
  background: #060f25;
  aspect-ratio: 1895 / 872;
  padding: 1.8%;
}

.dashboard-img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
}

.mock-base {
  width: 112%;
  height: 20px;
  margin: -1px 0 0 -6%;
  border-radius: 0 0 22px 22px;
  border: 1px solid rgba(151, 162, 186, 0.7);
  background: linear-gradient(180deg, #c3cad7 0%, #8f99ad 34%, #7b869d 100%);
  position: relative;
}

.mock-base::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 50%;
  width: 22%;
  height: 6px;
  transform: translateX(-50%);
  border-radius: 0 0 999px 999px;
  background: #a6afc2;
}

.stats {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.stats strong {
  display: block;
  color: #5554ff;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1;
}

.stats p {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.section {
  padding: 5rem 0;
}

.alt {
  background: var(--bg-2);
  border-block: 1px solid var(--border);
}

.section h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3.6vw, 3.15rem);
}

.section-subtitle {
  max-width: 720px;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.cards-grid,
.product-grid,
.security-grid {
  display: grid;
  gap: 1.35rem;
}

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

.product-grid,
.security-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.product-card,
.security-card {
  padding: 1.8rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.icon-box {
  width: 58px;
  height: 58px;
  margin-bottom: 1.1rem;
  border-radius: 14px;
  color: #4f46e5;
  background: rgba(79, 70, 229, 0.15);
  display: grid;
  place-items: center;
}

.icon-box svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3,
.product-card h3,
.security-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.25rem;
}

.feature-card p,
.product-card p,
.security-card p {
  color: var(--muted);
  font-size: 1rem;
}

.reports-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.reports-copy p {
  max-width: 560px;
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.reports-figure {
  margin: 0;
  justify-self: end;
  width: min(100%, 420px);
  border-radius: 14px;
  border: 1px solid #2b39a2;
  background: var(--surface-2);
  overflow: hidden;
}

.reports-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.testimonial {
  border-block: 1px solid var(--border);
  background: var(--bg-2);
}

.testimonial-box {
  max-width: 900px;
  text-align: center;
}

.stars {
  margin-bottom: 1.2rem;
  letter-spacing: 0.24em;
  color: #4f46e5;
}

.testimonial blockquote {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.25;
}

.author {
  margin-top: 1.6rem;
  font-size: 1.85rem;
  font-weight: 700;
}

.role {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.cta {
  border-bottom: 1px solid var(--border);
}

.cta-box {
  text-align: center;
}

.cta-box h2 {
  max-width: 980px;
  margin-inline: auto;
}

.cta-box p {
  margin: 0 0 1.4rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.footer {
  background: var(--bg-2);
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer h4 {
  margin-bottom: 0.9rem;
  font-size: 1.35rem;
}

.footer p,
.footer a {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--muted);
  font-size: 1rem;
}

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(2px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (max-width: 1200px) {
  .container { width: min(1200px, calc(100% - 2rem)); }
  .nav { height: 82px; }
  .brand-mark { width: 38px; height: 38px; font-size: 1rem; }
  .brand-name { font-size: 1.55rem; }
  .menu { gap: 1.5rem; font-size: 1rem; }
  .btn { font-size: 0.98rem; padding: 0.78rem 1.25rem; border-radius: 11px; }

  .hero { padding-top: 126px; }
  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 2.4rem;
    padding-bottom: 2.8rem;
  }

  .eyebrow { font-size: 0.85rem; }

  .hero-subtitle,
  .section-subtitle,
  .stats p,
  .reports-copy p,
  .cta-box p,
  .footer p,
  .footer a,
  .feature-card p,
  .product-card p,
  .security-card p,
  .role { font-size: 0.98rem; }

  .cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reports-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .author { font-size: 1.5rem; }
}

@media (max-width: 760px) {
  .menu { display: none; }
  .btn { width: 100%; }
  .hero-actions { width: 100%; }
  .stats-grid,
  .cards-grid,
  .product-grid,
  .security-grid { grid-template-columns: 1fr; }
  .section { padding: 4.2rem 0; }
}
