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

:root {
  --bg: #09090f;
  --bg-card: #101018;
  --bg-section: #0d0d16;
  --accent: #6c63ff;
  --accent-light: #9d97ff;
  --text: #e2e2ee;
  --text-muted: #7878a0;
  --border: #1a1a2e;
  --radius: 14px;
  --max-w: 1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero logo */
.logo-hero {
  height: 140px;
  width: auto;
  opacity: 0.95;
  margin-bottom: 32px;
}

.logo-img-sm {
  height: 28px;
  opacity: 0.5;
}

/* Hero */
.hero {
  padding: 48px 0 100px;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(108, 99, 255, 0.12), transparent),
    var(--bg);
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 22px;
}

.eyebrow-sm {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 14px 34px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.1s;
}

.btn-primary:hover { background: var(--accent-light); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  color: var(--accent-light);
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--accent);
  transition: background 0.2s, color 0.2s;
  margin-top: 8px;
}

.btn-outline:hover { background: rgba(108, 99, 255, 0.12); color: #fff; }

/* Services */
.services {
  padding: 100px 0;
  background: var(--bg);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--text-muted);
  margin-bottom: 56px;
  font-size: 1rem;
}

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

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color 0.2s;
}

.card:hover { border-color: var(--accent); }

.card-icon {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent-light);
  margin-bottom: 18px;
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* About */
.about {
  padding: 100px 0;
  background: var(--bg-section);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

.about-text h2 { margin-bottom: 24px; }

.about-highlight {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 44px 36px;
}

blockquote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Contact */
.contact {
  padding: 100px 0;
  text-align: center;
  background: var(--bg);
}

.contact .section-sub { margin-bottom: 36px; }

/* Footer */
footer {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 800px) {
  .product-inner,
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .grid { grid-template-columns: 1fr; }
  .hero { padding: 80px 0 70px; }
  .footer-inner { flex-direction: column; gap: 10px; text-align: center; }
}
