/* Variables (modernized) */
:root {
  --color-primary: #0B5FFF;
  --color-accent: #FF6A00;
  --color-bg: #F8FAFC;
  --color-surface: #0F1724;
  --color-muted: #64748B;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: var(--color-surface);
  background: var(--color-bg);
  margin: 0;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem;
}

/* Header */
.site-header {
  background: #fff;
  border-bottom: 1px solid rgba(11, 95, 255, 0.06);
  position: sticky;
  top: 0;
  z-index: 40;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--color-surface);
}

.logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-title {
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  font-size: 1.15rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav a {
  color: var(--color-muted);
  text-decoration: none;
  font-weight: 600;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
}

.site-nav a:hover {
  color: var(--color-surface);
  background: rgba(11, 95, 255, 0.04);
}

.btn-cta {
  background: var(--color-primary);
  color: white;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(11, 95, 255, 0.12);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  align-items: center;
  padding: 3rem 0;
}

.hero .left {
  padding-right: 1rem;
}

.hero h1 {
  font-family: "Poppins", sans-serif;
  font-size: 2.2rem;
  margin: 0 0 0.6rem 0;
  color: var(--color-surface);
  line-height: 1.05;
}

.hero p {
  color: var(--color-muted);
  margin: 0.6rem 0 1.2rem 0;
  font-size: 1.05rem;
}

.hero .cta-group {
  display: flex;
  gap: 0.8rem;
}

.hero .hero-media {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 23, 36, 0.06);
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.card {
  background: white;
  border-radius: 12px;
  padding: 1rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 6px 18px rgba(11, 95, 255, 0.04);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(11, 95, 255, 0.08);
}

.card h3, .card h4 {
  margin: 0 0 0.5rem 0;
}

/* Featured video card sizing */
.card iframe {
  border-radius: 8px;
}

/* Footer */
.site-footer {
  background: #fff;
  border-top: 1px solid rgba(11, 95, 255, 0.04);
  padding: 1rem 0;
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 18px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.12);
  padding: 0.75rem;
  z-index: 9999;
}

.cookie-banner p {
  margin: 0;
}

/* Store badge */
.store-badge {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  text-decoration: none;
  padding: 0.45rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 36, 0.04);
  background: white;
  color: var(--color-surface);
  font-weight: 600;
}

.store-badge .store-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.store-badge .store-label {
  font-size: 0.95rem;
}

.store-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.06);
}

@media (min-width: 768px) {
  .hero {
    grid-template-columns: 1fr 480px;
  }
  .hero h1 {
    font-size: 2.6rem;
  }
  .nav-toggle {
    display: none;
  }
}
@media (max-width: 767px) {
  .site-nav {
    position: absolute;
    right: 1.5rem;
    top: 72px;
    background: white;
    flex-direction: column;
    padding: 0.75rem;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(2, 6, 23, 0.08);
    display: none;
  }
  .site-nav.open {
    display: flex;
  }
  .nav-toggle {
    display: flex;
  }
}

/*# sourceMappingURL=style.css.map */