:root {
  --bg: #070a12;
  --bg-soft: #0b0f1a;
  --card: #101622;
  --text: #f3f4f6;
  --muted: #9ca3af;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #cfd8e3;
  --accent-soft: rgba(255, 255, 255, 0.12);
}

/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* HEADER */
header {
  padding: 22px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  position: sticky;
  top: 0;
  z-index: 100;

  background: rgba(7, 10, 18, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.logo img {
  height: 28px;
  display: block;
}

nav {
  display: flex;
  gap: 28px;
}

nav a {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.4px;
  transition: color 0.2s ease;
}

nav a:hover {
  color: var(--text);
}

/* HERO */
.hero {
  min-height: 86vh;
  text-align: center;
  padding: 140px 20px 120px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(to bottom, rgba(7, 10, 18, 0.72), rgba(7, 10, 18, 1)),
    url('pluto.webp');
  background-size: cover;
  background-position: center;
}

.hero-logo {
  width: 92px;
  margin-bottom: 26px;
}

.eyebrow {
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(46px, 8vw, 96px);
  letter-spacing: 4px;
  line-height: 0.95;
  margin-bottom: 24px;
}

.hero p {
  color: var(--muted);
  font-size: 18px;
  max-width: 660px;
  margin: 8px auto;
}

.sub-hero {
  color: var(--text);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;

  background: var(--text);
  color: #000;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;

  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--accent-soft);
}

/* SECTIONS */
.section {
  max-width: 1100px;
  margin: auto;
  padding: 96px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.section h2 {
  text-align: center;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 48px;
}

.section > .eyebrow {
  text-align: center;
}

/* DROP */
.drop-section {
  max-width: 1180px;
}

.featured-product {
  display: grid;
  gap: 40px;
  align-items: center;
}

.product-image {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

.product-content {
  text-align: left;
}

.product-content h3 {
  font-size: 30px;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.product-content p {
  color: var(--muted);
  margin-bottom: 18px;
}

.product-list {
  list-style: none;
  margin-bottom: 26px;
}

.product-list li {
  color: var(--muted);
  margin-bottom: 8px;
}

.product-list li::before {
  content: '— ';
  color: var(--accent);
}

/* MANIFESTO */
.manifesto {
  text-align: center;
}

.manifesto-text {
  max-width: 760px;
  margin: auto;
}

.manifesto-text p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 18px;
}

.statement {
  color: var(--text) !important;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* GRID */
.grid {
  display: grid;
  gap: 24px;
}

/* CARDS */
.card {
  background: var(--card);
  padding: 30px;
  border-radius: 18px;
  border: 1px solid var(--line);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
}

.card h3 {
  font-size: 19px;
  margin-bottom: 10px;
  letter-spacing: -0.4px;
}

.card p {
  color: var(--muted);
  font-size: 15px;
}

/* SHOP CTA */
.shop-cta {
  text-align: center;
  max-width: 820px;
}

.shop-icon {
  width: 74px;
  margin-bottom: 24px;
}

.shop-cta p {
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 18px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 56px 20px;
  color: var(--muted);
  font-size: 14px;
  border-top: 1px solid var(--line);
}

footer p {
  margin-bottom: 8px;
}

footer a {
  color: var(--muted);
}

footer a:hover {
  color: var(--text);
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-product {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  header {
    padding: 18px 22px;
  }

  nav {
    display: none;
  }

  .hero {
    padding: 120px 20px 90px;
  }

  .section {
    padding: 72px 20px;
  }

  .product-content {
    text-align: center;
  }
}
