:root {
  --bg: #140d08;
  --bg-soft: #24130f;
  --surface: rgba(255, 255, 255, 0.1);
  --surface-strong: rgba(255, 255, 255, 0.16);
  --text: #fff8ef;
  --muted: #f0d5b8;
  --accent: #d9a24d;
  --accent-2: #7a3412;
  --border: rgba(255, 255, 255, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: linear-gradient(135deg, rgba(20, 13, 8, 0.95), rgba(44, 20, 13, 0.92)), url('wallpaper.png') center/cover fixed;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(217, 162, 77, 0.25), transparent 28%);
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  padding-bottom: 4rem;
  position: relative;
  isolation: isolate;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 1.05rem;
}

.brand-logo {
  width: 64px;
  height: 64px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  padding: 0;
  border: 2px solid rgba(217, 162, 77, 0.35);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  color: var(--muted);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - 84px);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

h1,
h2,
h3 {
  line-height: 1.1;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 4.5rem);
}

h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
}

.hero-text,
.section-heading p,
.story-grid p,
.card p,
.footer p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fffaf2;
  box-shadow: 0 15px 35px rgba(217, 162, 77, 0.2);
}

.btn-secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.25rem;
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
  color: var(--muted);
}

.hero-points li::before {
  content: '•';
  color: var(--accent);
  margin-right: 0.45rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.product-card {
  width: min(100%, 460px);
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.05));
  box-shadow: 0 20px 70px rgba(3, 4, 6, 0.45);
  backdrop-filter: blur(16px);
}

.product-card-inner {
  min-height: 360px;
  border-radius: 1.1rem;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(20, 13, 8, 0.86), rgba(122, 52, 18, 0.72)), url('wallpaper.png') center/cover;
}

.hero-logo {
  width: 140px;
  height: 140px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  padding: 0;
  margin-bottom: 1rem;
  border: 2px solid rgba(217, 162, 77, 0.35);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.section {
  padding: 5rem 0;
}

.alt-section {
  background: rgba(255,255,255,0.04);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.card,
.launch-card,
.stat {
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  background: var(--surface);
  backdrop-filter: blur(14px);
}

.card {
  padding: 1.4rem;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.stats {
  display: grid;
  gap: 0.9rem;
}

.stat {
  padding: 1rem 1.1rem;
}

.stat strong {
  display: block;
  font-size: 1.4rem;
}

.stat span {
  color: var(--muted);
}

.launch-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
}

.footer {
  padding: 1.2rem 0 2rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
}

@media (max-width: 820px) {
  .hero-grid,
  .story-grid,
  .cards,
  .launch-card {
    grid-template-columns: 1fr;
    display: grid;
  }

  .launch-card {
    justify-content: start;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.6rem;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding-bottom: 2rem;
  }

  .section {
    padding: 4rem 0;
  }
}
