
:root {
  --bg: #05060a;
  --bg-alt: #0b0d13;
  --primary: #1f7cff;
  --secondary: #ff7b39;
  --accent: #10d38d;
  --text: #f0f3ff;
  --muted: rgba(240,243,255,0.7);
  --radius: 1.5rem;
  --font: 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: var(--font);
  background: radial-gradient(circle at top, #0d111a, #05060a 45%, #05060a);
  color: var(--text);
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5,6,10,0.6);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
}
.logo {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}
.logo span {
  color: var(--primary);
}
.main-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.main-nav a {
  font-size: 0.95rem;
  opacity: .7;
  transition: .2s ease;
}
.main-nav a:hover,
.main-nav .active {
  opacity: 1;
}
.btn-nav {
  padding: .4rem .9rem;
  background: rgba(31,124,255,.08);
  border: 1px solid rgba(31,124,255,.25);
  border-radius: 999px;
  opacity: 1 !important;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin-bottom: 4px;
}
.hero {
  padding: 5rem 0 3.5rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2.5rem;
  align-items: center;
}
.badge {
  display: inline-block;
  background: rgba(16,211,141,0.1);
  border: 1px solid rgba(16,211,141,0.25);
  color: #fff;
  padding: .4rem .8rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(2.5rem,4vw,3.3rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.lead {
  max-width: 520px;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.btn-primary {
  background: linear-gradient(135deg, #1f7cff, #10d38d);
  padding: .7rem 1.5rem;
  border-radius: .9rem;
  border: none;
  font-weight: 600;
  color: #05060a;
  display: inline-block;
}
.btn-secondary {
  border: 1px solid rgba(255,255,255,.15);
  padding: .7rem 1.3rem;
  border-radius: .9rem;
  background: rgba(5,6,10,0.25);
  color: #fff;
  display: inline-block;
}
.trust-strip {
  display: flex;
  gap: 1rem;
  align-items: center;
  color: var(--muted);
}
.trust-logos {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.trust-logos span {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.02);
  border-radius: 999px;
  padding: .4rem .8rem;
  font-size: .65rem;
}
.hero-card {
  background: radial-gradient(circle at top, rgba(31,124,255,0.15), rgba(5,6,10,0.4));
  border: 1px solid rgba(255,255,255,.03);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.hero-card h2 {
  margin-top: 0;
  margin-bottom: 1rem;
}
.hero-card ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}
.hero-card .fullwidth {
  width: 100%;
  text-align: center;
}
.section {
  padding: 3.5rem 0;
}
.section.dark {
  background: radial-gradient(circle at top, rgba(31,124,255,0.08), #05060a 35%, #05060a);
}
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-header h2 {
  font-size: 2rem;
  margin-bottom: .5rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
}
.card {
  background: rgba(255,255,255,0.018);
  border: 1px solid rgba(255,255,255,0.02);
  border-radius: 1.3rem;
  padding: 1.4rem;
}
.card h3, .card h2 {
  margin-top: 0;
}
.link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  color: #fff;
  opacity: .7;
}
.timeline {
  display: grid;
  gap: .8rem;
}
.timeline-item {
  background: rgba(5,6,10,0.4);
  border: 1px solid rgba(255,255,255,0.02);
  border-radius: 1rem;
  padding: .9rem 1.2rem;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.page-hero {
  padding: 4rem 0 2.5rem;
  background: radial-gradient(circle at top, rgba(16,211,141,0.05), rgba(5,6,10,0) 60%);
}
.page-hero h1 {
  margin-bottom: .4rem;
  font-size: clamp(2.1rem, 3.3vw, 2.8rem);
}
.cta-box {
  background: linear-gradient(150deg, rgba(31,124,255,.35), rgba(5,6,10,0.1));
  border: 1px solid rgba(255,255,255,0.02);
  border-radius: 1.3rem;
  padding: 1.7rem 1.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .6fr .6fr;
  gap: 1rem;
  padding: 2.5rem 0 1.5rem;
}
.site-footer {
  background: #040507;
  border-top: 1px solid rgba(255,255,255,0.03);
  margin-top: 3rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: .4rem;
}
.footer-bottom {
  text-align: center;
  padding: 1rem 0 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.03);
  font-size: .75rem;
  color: rgba(240,243,255,0.35);
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
}
.case-card {
  background: rgba(255,255,255,0.018);
  border: 1px solid rgba(255,255,255,0.01);
  border-radius: 1.3rem;
  padding: 1.4rem;
}
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1.5rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: .6rem .7rem;
  background: rgba(255,255,255,0.01);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: .7rem;
  color: #fff;
  margin-bottom: .9rem;
  font-family: var(--font);
}
.contact-form label {
  font-weight: 500;
  margin-bottom: .3rem;
  display: block;
}
.form-note {
  font-size: .75rem;
  color: rgba(240,243,255,0.45);
}
.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.blog-card {
  background: rgba(255,255,255,0.018);
  border: 1px solid rgba(255,255,255,0.01);
  border-radius: 1.1rem;
  padding: 1.1rem;
}
.blog-card .tag {
  font-size: .6rem;
  background: rgba(16,211,141,0.2);
  border-radius: 999px;
  padding: .35rem .6rem;
}
.legal {
  max-width: 720px;
  line-height: 1.7;
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.checklist li {
  padding-left: 1.4rem;
  position: relative;
  margin-bottom: .4rem;
}
.checklist li::before {
  content: "•";
  position: absolute;
  left: .2rem;
  color: var(--accent);
}
@media (max-width: 900px) {
  .hero-grid,
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
  .main-nav {
    position: absolute;
    inset: 68px 0 auto;
    background: rgba(5,6,10,.96);
    flex-direction: column;
    padding: 1rem 1.3rem 1.3rem;
    opacity: 0;
    pointer-events: none;
    transition: .2s ease;
  }
  .main-nav.open {
    opacity: 1;
    pointer-events: all;
  }
  .menu-toggle {
    display: block;
  }
  .hero {
    padding-top: 4.3rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
