/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0c0b10;
  --surface: #161513;
  --surface2: #1e1d19;
  --accent: #d4f542;
  --accent-dim: rgba(212, 245, 66, 0.12);
  --text: #f0ede6;
  --text-muted: #8a8780;
  --text-dim: #4a4844;
  --border: rgba(212, 245, 66, 0.15);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAV === */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--text);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-right { display: flex; align-items: center; gap: 24px; }
.nav-shop-link {
  font-size: 0.85rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}
.nav-shop-link:hover { opacity: 0.75; }
.nav--landing { background: var(--bg); }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 48px 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 55%;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(212,245,66,0.02) 40px,
    rgba(212,245,66,0.02) 41px
  );
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: 50%; right: 28%;
  width: 1px;
  height: 60%;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
}
.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--text);
  margin-bottom: 32px;
}
.headline-top { font-style: italic; color: var(--text-muted); }
.headline-bottom {
  display: block;
  color: var(--accent);
  -webkit-text-stroke: 0px;
}
.hero-sub {
  max-width: 420px;
}
.hero-sub p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}
.hero-sub p:last-child { margin-bottom: 0; }
.hero-visual {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  justify-content: center;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 16px 18px;
  width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: border-color 0.3s ease;
}
.product-card:hover { border-color: rgba(212,245,66,0.4); }
.card-label {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 600;
  align-self: flex-start;
}
.card-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 0;
}
.product-svg { width: 80px; height: 100px; }
.card-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}
.card-type {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.05em;
}

/* === PRODUCTS === */
.products {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.products-header {
  max-width: 1200px;
  margin: 0 auto 60px;
}
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 4px;
}
.products-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}
.products-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.product-item {
  padding: 48px 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: background 0.3s ease;
}
.product-item:first-child { border-radius: 12px 0 0 12px; }
.product-item:last-child { border-radius: 0 12px 12px 0; }
.product-item:hover { background: var(--surface2); }
.product-icon { margin-bottom: 24px; }
.product-item h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}
.product-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* === MANIFESTO === */
.manifesto {
  padding: 100px 48px;
}
.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}
.manifesto-right p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.manifesto-right p:last-child { margin-bottom: 0; }
.manifesto-stat-row {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 48px;
}
.stat { text-align: center; flex: 1; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* === CLOSING === */
.closing {
  padding: 80px 48px 100px;
  text-align: center;
}
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 20px;
}
.closing-statement.accent { color: var(--accent); font-style: normal; font-weight: 700; }

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 16px;
}
.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  max-width: 400px;
}
.footer-legal {
  font-size: 0.7rem;
  color: var(--text-dim);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 40px; }
  .products-grid { grid-template-columns: 1fr; }
  .product-item:first-child { border-radius: 12px 12px 0 0; }
  .product-item:last-child { border-radius: 0 0 12px 12px; }
  .nav { padding: 20px 24px; }
  .hero { padding: 60px 24px 40px; }
  .products, .manifesto, .closing, .footer { padding-left: 24px; padding-right: 24px; }
  .hero-visual { gap: 12px; }
  .product-card { width: 130px; padding: 16px 12px 14px; }
  .manifesto-stat-row { flex-wrap: wrap; gap: 32px; }
  .stat-divider { display: none; }
}
@media (max-width: 480px) {
  .hero-visual { flex-wrap: wrap; }
  .product-card { width: calc(50% - 6px); }
  .hero-headline { font-size: 3rem; }
}