:root {
  --bg: #0f0f14;
  --panel: #15151d;
  --card: #1b1b25;
  --ink: #f6f7fb;
  --muted: #b8bfcb;
  --line: #2b2c38;
  --accent: #6c5ce7;
  --accent-2: #8f7bff;
  --success: #1fd6a6;
  --warning: #ffd166;
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius: 16px;
  --shadow: 0 12px 32px rgba(0, 0, 0, .35)
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Cantarell', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

a {
  color: inherit;
  text-decoration: none
}

.container {
  width: min(1200px, 100% - 48px);
  margin-inline: auto
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 1.15rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  border: none;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(108, 92, 231, .35);
  transition: transform .12s ease, box-shadow .2s ease;
  cursor: pointer
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(108, 92, 231, .42)
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink)
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .45rem .8rem;
  border-radius: 999px;
  background: #2a2a36;
  border: 1px solid var(--line);
  color: #cfd5e2;
  font-weight: 700
}

header.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 14, 20, .7);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line)
}

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0
}

.brand {
  display: flex;
  align-items: center;
  gap: .7rem
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0f0f14;
  font-weight: 900
}

.nav-links {
  display: flex;
  gap: 16px;
  align-items: center
}

.nav-links a {
  padding: .55rem .8rem;
  border-radius: 12px;
  color: var(--muted)
}

.nav-links a:hover {
  background: #232330;
  color: #fff
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #1a1a25;
  color: #fff
}

@media (max-width:900px) {
  .nav-links {
    display: none
  }

  .burger {
    display: grid;
    place-items: center
  }
}

.mobile {
  display: none;
  position: fixed;
  inset: 64px 16px auto 16px;
  background: #161620;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px;
  box-shadow: var(--shadow)
}

.mobile a {
  display: block;
  padding: 12px;
  border-radius: 10px
}

.mobile a:hover {
  background: #232336
}

.hero {
  position: relative;
  padding: 70px 0 40px;
  background: radial-gradient(1200px 400px at 80% 0%, rgba(108, 92, 231, .35), transparent 60%)
}

.hero .shell {
  background: linear-gradient(180deg, #171723, #12121a);
  border: 1px solid var(--line);
  border-bottom: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: var(--radius-xl);
  border-bottom-right-radius: var(--radius-xl);
  padding: 38px
}

.hero .grid {
  display: flex;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: center;
  justify-self:center;
}

@media (max-width:980px) {
  .hero .grid {
    grid-template-columns: 1fr
  }
}

.hero h1 {
  font-size: clamp(40px, 7vw, 72px);
  margin: 0 0 10px;
  letter-spacing: -.6px;
  font-weight: 900;
  text-align: center;
}

.hero p {
  color: var(--muted);
  max-width: 720px;
  text-align: center;
}

.hero .art {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #1b1b28, #161620)
}

.hero .art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

section {
  padding: 46px 0
}

h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  margin: 0 0 10px;
  letter-spacing: -.2px
}

h3 {
  margin: 0 0 6px
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

@media (max-width:980px) {
  .grid-3 {
    grid-template-columns: 1fr
  }
}

.card {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow)
}

.slider {
  position: relative
}

.track {
  display: flex;
  gap: 14px;
  overflow: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px
}

.track::-webkit-scrollbar {
  height: 8px
}

.track::-webkit-scrollbar-thumb {
  background: #2b2c38;
  border-radius: 999px
}

.slide {
  scroll-snap-align: start;
  min-width: 280px;
  flex: 0 0 280px
}

.star {
  color: #ffd166
}

.kard {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column
}

.kard .img {
  height: 150px;
  background: #222232;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kard .img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.kard .body {
  padding: 14px
}

.kard ul {
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--muted)
}

.kard .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid var(--line)
}

.faq .slide {
  min-width: 520px
}

.qa {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}

/* New FAQ grid layout */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

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

.curve {
  margin-top: 28px;
  background: linear-gradient(180deg, #111117, #0d0d12);
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  border: 1px solid var(--line);
  border-bottom: none
}

.partner-slider {
  overflow: hidden
}

.partner-track {
  display: flex;
  gap: 22px;
  width: max-content;
  padding: 16px;
  animation: marquee 24s linear infinite
}

.partner {
  width: 160px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #1d1d28;
  border: 1px solid var(--line);
  overflow: hidden;
}

.partner img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

footer {
  background: linear-gradient(180deg, #0d0d12, #0b0b10);
  border-top: 1px solid var(--line);
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
  padding: 34px 0
}

.foot-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start
}

.foot-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.foot-cols a {
  color: var(--muted)
}

@media (max-width:960px) {
  .foot-grid {
    grid-template-columns: 1fr
  }

  .foot-cols {
    grid-template-columns: 1fr
  }
}

.small {
  color: var(--muted);
  font-size: .95rem
}

.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #1b1b25;
  border: 1px solid #2b2c38;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .35);
  z-index: 1000;
  max-width: 400px;
  display: none;
}

.cookie-consent.show {
  display: block;
}

.cookie-consent h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.cookie-consent p {
  margin: 0 0 15px 0;
  font-size: 0.95rem;
  color: #b8bfcb;
}

.cookie-consent-buttons {
  display: flex;
  gap: 10px;
}

.cookie-consent .btn {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.cookie-consent .btn.ghost {
  background: transparent;
  border: 1px solid #2b2c38;
  color: #b8bfcb;
}

@media (max-width: 768px) {
  .cookie-consent {
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .slide {
    min-width: calc(100vw - 60px);
    flex: 0 0 calc(100vw - 60px);
  }
  
  .faq .slide {
    min-width: calc(100vw - 60px);
    flex: 0 0 calc(100vw - 60px);
  }
  
  .track {
    padding: 0 10px 6px 10px;
  }
}
