﻿@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600;700&family=Unbounded:wght@400;600;700&display=swap');

:root {
  --bg: #0b0f14;
  --bg-soft: #121822;
  --bg-alt: #0f141c;
  --text: #e6e9ef;
  --muted: #a8b0bf;
  --accent: #4cd2ff;
  --accent-2: #65ffb1;
  --stroke: rgba(255, 255, 255, 0.08);
  --glow: rgba(76, 210, 255, 0.25);
}

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

body {
  min-height: 100vh;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 400px at 10% -10%, rgba(76, 210, 255, 0.25), transparent 70%),
    radial-gradient(800px 400px at 90% 10%, rgba(101, 255, 177, 0.2), transparent 70%),
    radial-gradient(600px 300px at 50% 100%, rgba(255, 180, 90, 0.1), transparent 70%),
    linear-gradient(180deg, #0b0f14 0%, #0d121a 50%, #0b0f14 100%);
}

.ambient::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at 50% 10%, rgba(0, 0, 0, 0.7), transparent 60%);
  opacity: 0.3;
}

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

.container {
  width: min(1150px, 92vw);
  margin: 0 auto;
}

.hero {
  padding: 60px 0 80px;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.brand-name {
  font-family: 'Unbounded', sans-serif;
  font-size: 24px;
  letter-spacing: 1px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  padding: 14px 20px;
  background: rgba(18, 24, 34, 0.8);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  margin: 0 auto 40px;
  width: fit-content;
  backdrop-filter: blur(10px);
}

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

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

.nav-cta {
  color: var(--text);
  font-weight: 600;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero-text h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-text p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 24px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.cta-row.center {
  justify-content: center;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #071118;
  box-shadow: 0 12px 30px rgba(76, 210, 255, 0.25);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(101, 255, 177, 0.25);
}

.btn.ghost {
  border: 1px solid var(--stroke);
  color: var(--text);
  background: rgba(18, 24, 34, 0.6);
}

.btn.ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn.full {
  width: 100%;
}

.hero-metrics {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.metric {
  font-family: 'Unbounded', sans-serif;
  font-size: 20px;
}

.metric-label {
  color: var(--muted);
  font-size: 12px;
}

.hero-card {
  position: relative;
  padding: 32px;
  background: rgba(18, 24, 34, 0.85);
  border: 1px solid var(--stroke);
  border-radius: 24px;
  overflow: hidden;
}

.hero-card h3 {
  font-family: 'Unbounded', sans-serif;
  margin-bottom: 16px;
}

.hero-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-card li::before {
  content: '•';
  color: var(--accent);
  margin-right: 8px;
}

.card-glow {
  position: absolute;
  inset: -60% 20% 40% 20%;
  background: radial-gradient(circle, rgba(76, 210, 255, 0.35), transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}

.section {
  padding: 80px 0;
}

.section.alt {
  background: rgba(10, 14, 20, 0.6);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  margin-bottom: 10px;
}

.section-header p {
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.card {
  padding: 24px;
  background: rgba(18, 24, 34, 0.8);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  min-height: 180px;
}

.card h3 {
  margin-bottom: 10px;
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
}

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature {
  padding: 20px;
  border-radius: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  background: rgba(12, 16, 23, 0.6);
}

.feature-title {
  font-family: 'Unbounded', sans-serif;
  margin-bottom: 8px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.step {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--stroke);
  background: rgba(18, 24, 34, 0.7);
}

.step-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  color: var(--accent);
}

.step h3 {
  margin: 10px 0 8px;
}

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

.faq-item {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(15, 20, 28, 0.7);
}

.faq-item h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 16px;
  margin-bottom: 8px;
}

.footer {
  padding: 40px 0 60px;
  border-top: 1px solid var(--stroke);
  background: rgba(8, 12, 18, 0.8);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-note {
  color: var(--muted);
  margin-top: 8px;
}

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

  .nav {
    border-radius: 20px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 40px 0 60px;
  }

  .btn {
    width: 100%;
  }

  .cta-row {
    width: 100%;
  }

  .hero-metrics {
    flex-direction: column;
    gap: 12px;
  }
}
