:root {
  --bg: #070b14;
  --bg-alt: #0e1526;
  --panel: #121b31;
  --text: #eef4ff;
  --muted: #b8c3dd;
  --primary: #58a6ff;
  --primary-2: #4de2b6;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(88, 166, 255, 0.2) 0%, transparent 36%),
    radial-gradient(circle at 80% 8%, rgba(77, 226, 182, 0.12) 0%, transparent 34%),
    var(--bg);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(7, 11, 20, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.logo span {
  color: var(--primary-2);
}

.nav nav {
  display: flex;
  gap: 18px;
}

.nav nav a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav nav a:hover {
  color: var(--text);
}

.hero {
  padding: 90px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.eyebrow,
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--primary-2);
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin: 0 0 14px;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.35rem);
  max-width: 15ch;
}

h1 span {
  color: var(--primary);
}

h2 {
  font-size: clamp(1.45rem, 4vw, 2.35rem);
}

h3 {
  font-size: 1.15rem;
}

.lead {
  color: var(--muted);
  max-width: 52ch;
}

.hero-kpis {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-kpis div {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  padding: 10px 12px;
  min-width: 150px;
}

.hero-kpis strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-kpis span {
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(120deg, var(--primary), #6a8dff);
  color: #fff;
  box-shadow: 0 12px 25px rgba(88, 166, 255, 0.3);
}

.btn-ghost {
  border-color: var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.hero-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px;
  background: linear-gradient(180deg, #111a2f, #0e1526);
  box-shadow: var(--shadow);
}

.hero-preview {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: block;
}

.hero-card-copy {
  padding: 14px 10px 8px;
}

.hero-card-copy p {
  color: var(--muted);
  margin: 0;
}

.section {
  padding: 70px 0;
}

.section-alt {
  background: var(--bg-alt);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cards,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.feature {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
}

.section-intro {
  color: var(--muted);
  max-width: 76ch;
}

.card p,
.feature p,
.reg-copy,
.cta p,
.agentic p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.checklist li {
  background: rgba(77, 226, 182, 0.08);
  border: 1px solid rgba(77, 226, 182, 0.24);
  border-radius: 12px;
  padding: 12px 14px;
}

.regulatory {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 10px;
}

.regulatory span {
  border: 1px solid var(--border);
  background: var(--panel);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  color: #d6e6ff;
}

.agentic {
  max-width: 820px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.shot {
  margin: 0;
  background: #0c1322;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}

.shot img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: transform 0.35s ease;
}

.shot:hover img {
  transform: scale(1.03);
}

.shot figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.88rem;
}

.integration-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.integration-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
}

.integration-card h3 {
  margin-bottom: 12px;
}

.integration-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.integration-card li {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 9px 10px;
}

.cta-section {
  padding-top: 24px;
}

.cta {
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 42px 24px;
  background: linear-gradient(180deg, #111a2f, #0f172b);
  box-shadow: var(--shadow);
}

.btn-large {
  margin-top: 10px;
  padding: 13px 24px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0 26px;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 14, 0.92);
  display: none;
  place-items: center;
  z-index: 60;
  padding: 22px;
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-width: min(1200px, 96vw);
  max-height: 84vh;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  border: 1px solid var(--border);
  background: #0c1427;
  color: var(--text);
  border-radius: 10px;
  padding: 8px 14px;
  cursor: pointer;
}

@media (max-width: 980px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .cards,
  .feature-grid,
  .gallery,
  .integration-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav nav {
    display: none;
  }

  .hero {
    padding-top: 62px;
  }

  .footer-wrap {
    flex-direction: column;
  }
}
