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

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: #000;
  color: #fff;
  -webkit-font-smoothing: antialiased;
}

/* ── Nav ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.logo {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span { font-size: 18px; }

nav a {
  font-size: 13px;
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}

nav a:hover { color: #fff; }

/* ── Hero ── */
.hero {
  padding: 160px 24px 80px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: #888;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 24px;
}

h1 {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 600;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}

h1 .gold {
  background: linear-gradient(135deg, #FFD700, #FFF5B0, #D4A017);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 17px;
  color: #888;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 36px;
}

.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-primary {
  background: #fff;
  color: #000;
}

.btn-primary:hover {
  background: #e0e0e0;
}

.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
}

/* ── Screenshots ── */
.screenshots {
  padding: 40px 0 80px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.screenshots-inner {
  display: flex;
  gap: 16px;
  padding: 0 24px;
  margin: 0 auto;
  width: max-content;
  max-width: 100%;
  justify-content: center;
}

.screenshots img {
  height: 520px;
  border-radius: 12px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.screenshots img:hover {
  transform: scale(1.02);
}

/* ── Divider ── */
.divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Features ── */
.features {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 24px;
}

.features h2 {
  font-size: 13px;
  font-weight: 500;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 40px;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
}

.feature {
  padding: 32px;
  background: #000;
}

.feature:last-child:nth-child(3n - 1) {
  grid-column: span 1;
}

.features-grid {
  content: '';
  background: #000;
}

.feature .icon {
  font-size: 24px;
  margin-bottom: 16px;
}

.feature h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.feature p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* ── Sticker Showcase ── */
.sticker-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}

.sticker-section h2 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}

.sticker-section h2 .green {
  color: #4ADE80;
}

.sticker-section > p {
  font-size: 15px;
  color: #666;
  margin-bottom: 40px;
}

.sticker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
}

.sticker-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.2s;
}

.sticker-grid img:hover {
  transform: scale(1.04) rotate(-1deg);
}

/* ── CTA ── */
.cta-section {
  text-align: center;
  padding: 80px 24px 100px;
}

.cta-section h2 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}

.cta-section p {
  color: #666;
  font-size: 15px;
  margin-bottom: 32px;
}

/* ── Footer ── */
footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 16px;
}

footer .left {
  font-size: 13px;
  color: #444;
}

footer .links {
  display: flex;
  gap: 24px;
}

footer a {
  font-size: 13px;
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover { color: #fff; }

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .screenshots img { height: 400px; }
  footer { flex-direction: column; align-items: flex-start; }
}
