:root {
  --bg: #0E0E0E;
  --bg-card: #171717;
  --chartreuse: #C8F225;
  --white: #FAFAF7;
  --gray: #9A9A94;
  --line: #2A2A2A;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
}

body, a, button, .btn {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath d='M3 16 Q10 8 18 10 Q24 11 26 16 Q24 21 18 22 Q10 24 3 16 Z' fill='%23C8F225' stroke='%23141414' stroke-width='1.5'/%3E%3Cpath d='M26 16 L31 10 Q32 16 31 22 Z' fill='%23C8F225' stroke='%23141414' stroke-width='1.5'/%3E%3Ccircle cx='9' cy='14' r='1.6' fill='%23141414'/%3E%3C/svg%3E") 3 16, auto;
}

h1, h2, .logo {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 6vw;
  background: rgba(14, 14, 14, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.logo {
  font-size: 26px;
  color: var(--white);
  text-decoration: none;
}

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

.nav-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-left: 28px;
  transition: color 0.15s;
}

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

.hero {
  padding: 12vh 6vw 14vh;
  max-width: 1100px;
  margin: 0 auto;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 11px,
    rgba(200, 242, 37, 0.04) 11px,
    rgba(200, 242, 37, 0.04) 12px
  );
}

.hero-kicker {
  color: var(--chartreuse);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(44px, 7.5vw, 88px);
  line-height: 0.95;
  margin-bottom: 24px;
}

.accent { color: var(--chartreuse); }

.hero-sub {
  color: var(--gray);
  font-size: 18px;
  max-width: 560px;
  margin-bottom: 36px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  transition: transform 0.15s, background 0.15s;
}

.btn-primary {
  background: var(--chartreuse);
  color: #141400;
}

.btn-primary:hover {
  background: #D9FA4A;
  transform: translateY(-1px);
}

main section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 6vw;
}

h2 {
  font-size: clamp(36px, 5vw, 52px);
  margin-bottom: 36px;
}

h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  background: var(--chartreuse);
  margin-top: 10px;
}

.lure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, border-color 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--chartreuse);
}

.card.flagship { border-color: rgba(200, 242, 37, 0.5); }

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--chartreuse);
  color: #141400;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}

.card-art {
  background: #101208;
  border-radius: 6px;
  margin-bottom: 18px;
}

.card-art svg { display: block; width: 100%; height: auto; }

.card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.card p {
  color: var(--gray);
  font-size: 14px;
  flex: 1;
}

.card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.price {
  font-size: 22px;
  font-weight: 700;
  color: var(--chartreuse);
}

.why { border-top: 1px solid var(--line); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.why-item h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--chartreuse);
}

.why-item p {
  color: var(--gray);
  font-size: 15px;
}

.story {
  border-top: 1px solid var(--line);
}

.story p {
  color: var(--gray);
  font-size: 17px;
  max-width: 680px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 48px 6vw;
  text-align: center;
}

.footer .logo { font-size: 22px; }

.footer p { margin-bottom: 8px; }

.footer a { color: var(--chartreuse); }

.footer .fine {
  color: var(--gray);
  font-size: 13px;
  margin-top: 16px;
}

@media (max-width: 600px) {
  .nav-links a { margin-left: 16px; }
  .hero { padding-top: 8vh; }
}
