:root {
  --brand: #5B4FE8;
  --brand-dark: #4A3FD6;
  --brand-light: #7C6CF0;
  --brand-glow: rgba(91, 79, 232, 0.38);
  --brand-tint: rgba(91, 79, 232, 0.12);
  --ink: #12101F;
  --text: #14131F;
  --muted: #667781;
  --bg: #f0f2f5;
  --bg-alt: #e9edef;
  --card: #ffffff;
  --radius: 16px;
  --shadow: 0 8px 32px rgba(11, 20, 26, 0.08);
  --content: min(1320px, 94vw);
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Inter, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--brand);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--brand);
  color: #fff;
  border-radius: 8px;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 20, 26, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-inner {
  width: var(--content);
  max-width: 100%;
  margin: 0 auto;
  padding: 12px clamp(16px, 3vw, 28px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.logo-chip {
  width: 44px;
  height: 44px;
  padding: 6px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.logo-chip img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 1.1rem;
  cursor: pointer;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.nav a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.86rem;
  border: 1px solid transparent;
  transition: background 0.15s, border-color 0.15s;
}
.nav a:hover,
.nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.12);
}
.nav a.cta {
  background: var(--brand);
  border-color: var(--brand);
}
.nav a.cta:hover {
  background: var(--brand-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #12101F 0%, #1c1838 42%, #2a2460 100%);
  color: #fff;
  padding: clamp(48px, 8vw, 88px) clamp(16px, 4vw, 40px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 20% 0%, var(--brand-glow), transparent 55%),
    radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.07), transparent 45%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  width: var(--content);
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 48px);
  align-items: center;
}

@media (min-width: 960px) {
  .hero-inner {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-lead {
  margin: 0 0 24px;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  max-width: 580px;
  opacity: 0.94;
  line-height: 1.65;
}

.hero-points {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  opacity: 0.92;
}
.hero-points li::before {
  content: "✓";
  color: var(--brand-light);
  font-weight: 800;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn:active {
  transform: scale(0.98);
}
.btn-primary {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}
.btn-primary:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.35);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}
.btn-brand {
  background: var(--brand);
  color: #fff;
}
.btn-brand:hover {
  background: var(--brand-dark);
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 32px);
  backdrop-filter: blur(10px);
}

.hero-card .logo-hero {
  width: 88px;
  height: 88px;
  margin: 0 auto 18px;
  padding: 12px;
  background: #fff;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.stat {
  text-align: center;
  padding: 14px 10px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.22);
}
.stat strong {
  display: block;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 800;
}
.stat span {
  font-size: 0.7rem;
  opacity: 0.82;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.strip {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.9);
  padding: 20px clamp(16px, 4vw, 40px);
}

.strip-inner {
  width: var(--content);
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px 40px;
  font-size: 0.9rem;
}

.strip-item strong {
  display: block;
  color: var(--brand-light);
  font-size: 1rem;
}

.wrap {
  width: var(--content);
  max-width: 100%;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 28px);
}

.products-bar {
  background: var(--card);
  border-bottom: 1px solid rgba(17, 27, 33, 0.06);
  padding: clamp(20px, 4vw, 28px) 0;
}

.products-heading {
  margin: 0 0 14px;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 800;
  color: var(--text);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.product-tile {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 16px;
  background: var(--bg);
  border-radius: 14px;
  text-decoration: none;
  color: var(--text);
  border: 1px solid rgba(17, 27, 33, 0.08);
}

.product-tile strong {
  font-size: 1rem;
  color: var(--brand);
}

.product-tile span:last-child {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}

.product-icon {
  font-size: 1.35rem;
  line-height: 1;
}

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

@media (max-width: 640px) {
  .strip-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    text-align: left;
  }
}
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--ink);
    padding: 12px 16px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav.open {
    display: flex;
  }
  .topbar-inner {
    flex-wrap: wrap;
    position: relative;
  }
  .stat-row {
    grid-template-columns: 1fr;
  }
}
