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

:root {
  --purple: #5b5fef;
  --purple-light: #eeedfe;
  --red: #e53935;
  --text: #0a0a0a;
  --text-muted: #666;
  --text-faint: #999;
  --border: #e5e5e5;
  --bg: #fff;
  --bg-soft: #f7f7f7;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    'Inter',
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

ol {
  list-style-position: inside;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2.5rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
}

.nav-logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.3px;
  text-decoration: none;
}

.nav-logo span {
  color: var(--purple);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}

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

.nav-cta {
  background: var(--purple);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600;
  transition: opacity 0.15s;
}

.nav-cta:hover {
  opacity: 0.88;
}

/* HERO */
.hero {
  padding: 6rem 2.5rem 5rem;
  max-width: 800px;
  animation: fadeUp 0.6s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--purple);
  background: var(--purple-light);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 1.75rem;
  letter-spacing: 0.2px;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 60px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--purple);
}

.hero p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--purple);
  color: #fff;
  border: none;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition:
    opacity 0.15s,
    transform 0.1s;
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--text-muted);
  font-size: 15px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.15s;
}

.btn-secondary:hover {
  color: var(--text);
}

/* DIVIDER */
.divider {
  height: 0.5px;
  background: var(--border);
}

/* PRODUCTS */
.products {
  padding: 5rem 2.5rem;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-faint);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.8px;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 2.75rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.product-card {
  border: 0.5px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
  background: var(--bg);
  position: relative;
  transition:
    border-color 0.2s,
    transform 0.2s;
}

.product-card:hover {
  transform: translateY(-3px);
}

.product-card.featured {
  border-color: var(--purple);
  border-width: 1.5px;
}

.product-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}

.badge-live {
  background: #eaf3de;
  color: #3b6d11;
}

.badge-soon {
  background: #faeeda;
  color: #854f0b;
}

.product-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.icon-chekly {
  background: var(--purple-light);
}

.icon-np {
  background: #fff0f0;
  overflow: hidden;
}

.product-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
}

.product-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.35rem;
  letter-spacing: -0.3px;
}

.product-tag {
  font-size: 12px;
  color: var(--text-faint);
  margin-bottom: 0.75rem;
}

.product-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.product-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--purple);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: opacity 0.15s;
}

.product-link.red {
  color: var(--red);
}

.product-link:hover {
  opacity: 0.72;
}

/* STATS */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
}

.stat {
  padding: 1.5rem;
  background: var(--bg-soft);
  border-radius: 14px;
}

.stat-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -1px;
}

.stat-label {
  font-size: 13px;
  color: #777;
  margin-top: 3px;
}

/* ABOUT */
.about {
  padding: 5rem 2.5rem;
  background: var(--bg-soft);
}

.about-inner {
  max-width: 620px;
}

.about-text {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--text);
  letter-spacing: -0.4px;
  margin-bottom: 1rem;
}

.about-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.about-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--purple);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: opacity 0.15s;
}

.about-link:hover {
  opacity: 0.72;
}

/* AGENCY STRIP */
.agency-strip {
  padding: 3rem 2.5rem;
  border-top: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.agency-left {
  max-width: 480px;
}

.agency-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-faint);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.agency-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.3px;
  margin-bottom: 0.4rem;
}

.agency-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.agency-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--purple);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transition: opacity 0.15s;
}

.agency-link:hover {
  opacity: 0.72;
}

/* FOOTER */
.footer {
  padding: 1.75rem 2.5rem;
  border-top: 0.5px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.footer-logo span {
  color: var(--purple);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 13px;
  color: #aaa;
  text-decoration: none;
  transition: color 0.15s;
}

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

.footer-copy {
  font-size: 13px;
  color: #bbb;
}

/* LEGAL PAGES */
.legal {
  padding: 4rem 2.5rem 5rem;
  margin-inline: auto;
  max-width: 720px;
}

.legal h1 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.8px;
  margin-bottom: 0.5rem;
}

.legal .legal-updated {
  font-size: 13px;
  color: var(--text-faint);
  margin-bottom: 2.5rem;
}

.legal h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin: 2.25rem 0 0.75rem;
}

.legal p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal ul {
  margin: 0 0 1rem 1.25rem;
}

.legal li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.4rem;
}

.legal a {
  color: var(--purple);
  text-decoration: none;
}

.legal a:hover {
  opacity: 0.72;
}

/* RESPONSIVE */
@media (max-width: 640px) {
  .nav {
    padding: 1rem 1.25rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .hero {
    padding: 3.5rem 1.25rem 3rem;
  }

  .products,
  .about {
    padding: 3.5rem 1.25rem;
  }

  .legal {
    padding: 3rem 1.25rem 3.5rem;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .agency-strip {
    padding: 2rem 1.25rem;
  }

  .footer {
    padding: 1.25rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 1rem;
  }
}
