
:root {
  --bg: #091123;
  --bg-soft: #0f1730;
  --card: rgba(255,255,255,0.08);
  --card-strong: rgba(255,255,255,0.12);
  --line: rgba(255,255,255,0.12);
  --text: #eaf0ff;
  --muted: #aab7d6;
  --title: #ffffff;
  --blue: #4f72ff;
  --cyan: #2ad0cb;
  --pink: #ff6f91;
  --shadow: 0 24px 70px rgba(0,0,0,0.32);
  --radius: 24px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(79,114,255,0.18), transparent 28%),
    radial-gradient(circle at 80% 8%, rgba(42,208,203,0.13), transparent 24%),
    linear-gradient(180deg, #071021 0%, #0a1430 50%, #060d1a 100%);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(7, 14, 30, 0.75);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 16px 0;
}
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand img { width: 200px; height: auto; }
.brand-text { display: none; }
.menu-toggle {
  display: none; border: 1px solid rgba(255,255,255,0.16); background: rgba(255,255,255,0.06);
  color: white; border-radius: 14px; padding: 10px 14px; font-weight: 700;
}
.nav-links { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.nav-links a {
  padding: 11px 16px; border-radius: 999px; color: var(--muted);
  transition: .25s ease; font-weight: 600;
}
.nav-links a:hover, .nav-links a.active {
  color: white; background: rgba(255,255,255,0.12);
}
.page-hero { padding: 84px 0 56px; }
.hero-grid, .split-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 34px; align-items: center;
}
.hero-copy h1, .page-intro h1 {
  margin: 0 0 16px; font-size: clamp(2.5rem, 5.2vw, 4.6rem); line-height: .98;
  letter-spacing: -0.04em; color: var(--title);
}
.page-intro h1 { max-width: 780px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,0.08);
  color: #d8e1ff; border: 1px solid rgba(255,255,255,0.09); margin-bottom: 20px;
  font-size: 0.95rem; font-weight: 700;
}
.eyebrow::before {
  content: ''; width: 10px; height: 10px; border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}
.lead { font-size: 1.12rem; line-height: 1.75; color: var(--muted); margin: 0 0 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 20px; border-radius: 999px; font-weight: 700; transition: .25s ease;
  border: 1px solid transparent;
}
.btn-primary { background: linear-gradient(135deg, var(--blue), #7392ff); color: white; box-shadow: var(--shadow); }
.btn-primary:hover { transform: translateY(-2px); }
.btn-secondary { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.12); color: white; }
.btn-secondary:hover { background: rgba(255,255,255,0.12); }
.hero-card, .glass-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 28px; box-shadow: var(--shadow);
}
.hero-visual { overflow: hidden; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual .visual-stack { display: grid; gap: 16px; padding: 18px; }
.stacked-media { position: relative; overflow: hidden; min-height: 480px; }
.stacked-media > img:first-child { aspect-ratio: 4/5; object-fit: cover; border-radius: 24px; }
.float-card {
  position: absolute; right: 24px; bottom: 24px; width: min(56%, 300px); padding: 16px;
  background: rgba(9,18,35,0.84); border: 1px solid rgba(255,255,255,0.12); border-radius: 22px;
  box-shadow: 0 16px 30px rgba(0,0,0,.35);
}
.float-card img { border-radius: 16px; aspect-ratio: 4/5; object-fit: cover; margin-bottom: 12px; }
.float-card h3, .mini-card h3, .section-heading h2 { margin: 0 0 10px; }
.float-card p { margin: 0; color: #ccd7f0; line-height: 1.55; font-size: .95rem; }
.stat-grid, .feature-grid, .gallery-grid, .download-grid, .partner-grid, .value-grid, .flow-grid {
  display: grid; gap: 18px;
}
.stat-grid { grid-template-columns: repeat(3, 1fr); margin-top: 28px; }
.feature-grid { grid-template-columns: repeat(3, 1fr); }
.gallery-grid { grid-template-columns: repeat(4, 1fr); }
.value-grid, .partner-grid { grid-template-columns: repeat(2, 1fr); }
.download-grid { grid-template-columns: repeat(3, 1fr); }
.flow-grid { grid-template-columns: repeat(3, 1fr); }
section { padding: 34px 0 72px; }
.section-heading { max-width: 760px; margin-bottom: 22px; }
.section-heading h2 { font-size: clamp(1.85rem, 3vw, 2.9rem); line-height: 1.08; }
.section-heading p { margin: 0; color: var(--muted); line-height: 1.72; }
.card {
  padding: 24px; border-radius: 24px; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.09); box-shadow: var(--shadow);
}
.card h3 { margin: 0 0 12px; font-size: 1.2rem; }
.card p, .card li { color: var(--muted); line-height: 1.72; }
.card ul { padding-left: 20px; margin: 12px 0 0; }
.mini-card { padding: 22px; border-radius: 22px; background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.1); }
.media-card { overflow: hidden; padding: 0; }
.media-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.media-card .media-body { padding: 18px 18px 20px; }
.media-card .tag { display: inline-flex; margin-bottom: 10px; font-size: 0.78rem; font-weight: 800; color: #dfe6ff; letter-spacing: .04em; text-transform: uppercase; }
.mock-wide img { aspect-ratio: 16/10; object-fit: cover; }
.timeline { display: grid; gap: 16px; }
.timeline .step {
  position: relative; padding: 18px 18px 18px 64px; border-radius: 22px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.09);
}
.step-number {
  position: absolute; left: 18px; top: 18px; width: 34px; height: 34px; border-radius: 50%;
  display: inline-grid; place-items: center; background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: white; font-weight: 800;
}
.list-clean { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.list-clean li {
  padding: 14px 16px; border-radius: 18px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08); color: var(--muted);
}
.quote-box {
  padding: 28px; border-radius: 28px; background: linear-gradient(135deg, rgba(79,114,255,0.15), rgba(42,208,203,0.08));
  border: 1px solid rgba(255,255,255,0.08); box-shadow: var(--shadow);
}
.quote-box p { margin: 0; font-size: 1.08rem; line-height: 1.8; color: #dfe7ff; }
.cta-strip {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding: 26px 28px; border-radius: 28px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.09);
}
.cta-strip h3 { margin: 0 0 8px; font-size: 1.35rem; }
.cta-strip p { margin: 0; color: var(--muted); }
.disabled-link { opacity: .5; pointer-events: none; }
.contact-card {
  max-width: 640px; padding: 36px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 30px; box-shadow: var(--shadow);
}
.contact-card h2 { margin: 0 0 18px; font-size: 2rem; }
.contact-card p { margin: 0 0 12px; color: var(--muted); line-height: 1.8; }
.site-footer {
  padding: 28px 0 50px; color: var(--muted); border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-row {
  display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap;
}
.badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.08); color: #d9e4ff; font-size: .85rem; font-weight: 700; border: 1px solid rgba(255,255,255,0.08);
}
.hero-note { margin-top: 16px; color: #c3cde7; font-size: 0.92rem; }
.small-note { font-size: 0.92rem; color: #c1cbe7; margin-top: 10px; }
@media (max-width: 1024px) {
  .hero-grid, .split-grid, .download-grid, .gallery-grid, .feature-grid, .value-grid, .partner-grid, .flow-grid, .stat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-grid, .split-grid { grid-template-columns: 1fr; }
  .page-hero { padding-top: 68px; }
}
@media (max-width: 760px) {
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; left: 16px; right: 16px; top: calc(100% + 10px);
    background: rgba(8, 16, 33, 0.98); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px; padding: 12px; flex-direction: column; align-items: stretch; display: none;
  }
  .nav-links.show { display: flex; }
  .nav-links a { border-radius: 14px; }
  .stat-grid, .feature-grid, .gallery-grid, .download-grid, .partner-grid, .value-grid, .flow-grid { grid-template-columns: 1fr; }
  .brand img { width: 178px; }
  .page-hero { padding: 58px 0 42px; }
  section { padding: 26px 0 54px; }
  .contact-card { padding: 28px; }
}
