:root {
  --bg: #0B0B0B;
  --fg: #F2EDE4;
  --fg-dim: #8A8680;
  --accent: #C8B89A;
  --surface: #141414;
  --surface-2: #1E1E1E;
  --border: #252525;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAVBAR ───────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  mix-blend-mode: difference;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  color: var(--fg);
}

.nav-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

/* ── HERO ─────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 48px;
  padding-top: 90px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

/* Subtle warm gradient panel behind the image side */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(160deg, #161310 0%, #0B0B0B 70%);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Left column ── */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-drop-label {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  display: inline-block;
  padding: 5px 12px;
  width: fit-content;
}

/* nvrland — the centrepiece */
.hero-drop-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5.5rem, 13vw, 11rem);
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: var(--fg);
  text-transform: lowercase;
}

.hero-product-callout {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hero-product-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: var(--fg);
  text-transform: uppercase;
}

.hero-product-sep {
  color: var(--fg-dim);
  font-size: 1rem;
}

.hero-product-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--accent);
}

.hero-brand-line {
  font-size: 0.95rem;
  color: var(--fg-dim);
  line-height: 1.6;
  max-width: 380px;
}

/* Wider waitlist button for the hero CTA */
.hero-waitlist {
  max-width: 480px;
}

.hero-waitlist .waitlist-btn {
  font-size: 0.7rem;
  padding: 12px 18px;
  white-space: nowrap;
}

.hero-shop-link {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-dim);
  text-decoration: none;
  transition: color 0.2s ease;
  width: fit-content;
}

.hero-shop-link:hover {
  color: var(--accent);
}

/* ── Right column — product image ── */
.hero-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-product-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  /* Subtle border to ground it against the dark bg */
  border: 1px solid var(--border);
}

.hero-img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--fg-dim);
  background: rgba(11, 11, 11, 0.85);
  border: 1px solid var(--border);
  padding: 5px 10px;
  backdrop-filter: blur(4px);
}

/* ── MANIFESTO ────────────────────────────────── */
.manifesto {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 48px;
}

.manifesto-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 60px;
  align-items: start;
}

.manifesto-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: var(--surface-2);
  line-height: 1;
  padding-top: 8px;
}

.manifesto-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--fg);
  margin-bottom: 28px;
}

.manifesto-body {
  font-size: 1.15rem;
  color: var(--fg-dim);
  max-width: 620px;
  line-height: 1.8;
}

/* ── PRODUCTS ──────────────────────────────────── */
.products {
  padding: 100px 48px;
  max-width: 1280px;
  margin: 0 auto;
}

.products-header {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}

.products-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: var(--surface-2);
  line-height: 1;
}

.products-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--fg);
}

.products-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2px;
}

.product-card {
  background: var(--surface);
  padding: 48px 40px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: background 0.3s ease;
}

.product-card:hover {
  background: var(--surface-2);
}

.product-card--primary {
  background: var(--surface-2);
  border-color: var(--accent);
}

.product-card--primary::before {
  content: 'FLAGSHIP';
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 10px;
}

.product-icon {
  opacity: 0.7;
}

.product-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  color: var(--fg);
}

.product-desc {
  font-size: 0.9rem;
  color: var(--fg-dim);
  line-height: 1.7;
  flex: 1;
}

.product-status {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── MATERIALS ────────────────────────────────── */
.materials {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 48px;
}

.materials-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.materials-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.materials-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: var(--surface-2);
  line-height: 1;
}

.materials-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
  color: var(--fg);
}

.materials-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 16px;
}

.material-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.material-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 8px;
}

.material-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--fg);
  margin-bottom: 6px;
}

.material-detail {
  font-size: 0.85rem;
  color: var(--fg-dim);
  line-height: 1.6;
}

/* ── CLOSING ──────────────────────────────────── */
.closing {
  padding: 140px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,184,154,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.closing-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
}

.closing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.05;
  color: var(--fg);
}

.closing-body {
  font-size: 1rem;
  color: var(--fg-dim);
  max-width: 500px;
  line-height: 1.8;
}

.closing-mark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.5em;
  color: var(--accent);
  margin-top: 16px;
}

/* ── FOOTER ───────────────────────────────────── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px;
}

.footer-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  color: var(--fg);
}

.footer-sub {
  font-size: 0.75rem;
  color: var(--fg-dim);
  letter-spacing: 0.1em;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--fg-dim);
}

.footer-note {
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.1em;
}

/* ── WAITLIST FORM (shared, used on landing + store pages) ─── */
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 420px;
}

.waitlist-input-row {
  display: flex;
  gap: 0;
}

.waitlist-input {
  flex: 1;
  background: transparent;
  border: 1px solid var(--border);
  border-right: none;
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s ease;
  min-width: 0;
}

.waitlist-input::placeholder {
  color: var(--fg-dim);
}

.waitlist-input:focus {
  border-color: var(--accent);
}

.waitlist-btn {
  background: var(--accent);
  color: var(--bg);
  border: 1px solid var(--accent);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 12px 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

.waitlist-btn:hover {
  opacity: 0.85;
}

.waitlist-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.waitlist-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.waitlist-msg {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  padding: 8px 0;
}

.waitlist-msg--ok {
  color: var(--accent);
}

.waitlist-msg--err {
  color: #e07070;
}

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 900px) {
  .navbar { padding: 16px 24px; }
  /* Hero — stack on mobile */
  .hero { padding: 80px 24px 60px; }
  .hero::before { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  /* Image first on mobile so product is immediately visible */
  .hero-right { order: -1; justify-content: flex-start; }
  .hero-image-wrap { max-width: 100%; }
  .hero-drop-name { font-size: clamp(4rem, 18vw, 6rem); }
  .hero-waitlist { max-width: 100%; }
  /* Rest */
  .manifesto { padding: 60px 24px; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 24px; }
  .manifesto-number { display: none; }
  .products { padding: 60px 24px; }
  .products-header { grid-template-columns: 1fr; gap: 16px; }
  .products-number { display: none; }
  .products-title { font-size: 3rem; }
  .products-grid { grid-template-columns: 1fr; gap: 2px; }
  .materials { padding: 60px 24px; }
  .materials-inner { grid-template-columns: 1fr; gap: 40px; }
  .materials-number { display: none; }
  .closing { padding: 80px 24px; }
  .footer { padding: 32px 24px; }
  .footer-top { flex-direction: column; gap: 8px; }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-drop-name { font-size: 4rem; }
  .hero-waitlist .waitlist-btn { font-size: 0.65rem; padding: 11px 12px; }
  .manifesto-title { font-size: 2.8rem; }
  .products-title { font-size: 2.4rem; }
  .materials-title { font-size: 2.2rem; }
  .closing-headline { font-size: 2.4rem; }
}
