:root {
  --bg: #12121A;
  --bg-light: #FAFAF8;
  --fg: #F2F0EB;
  --fg-dark: #1A1A2E;
  --accent: #F59E0B;
  --accent-2: #10B981;
  --accent-3: #6366F1;
  --muted: rgba(242, 240, 235, 0.45);
  --border: rgba(242, 240, 235, 0.1);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Figtree', sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 48px;
  padding-right: 48px;
}

/* ── NAV ── */
.nav {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  text-decoration: none;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--fg); }
.nav-cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid rgba(245,158,11,0.3);
  padding: 8px 16px;
  border-radius: 8px;
  transition: background 0.2s;
}
.nav-cta:hover { background: rgba(245,158,11,0.08); }

/* ── HERO ── */
.hero {
  padding: 80px 0 100px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 420px;
}
.hero-cta-row {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.btn-ghost {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--fg); }

/* Product cards grid */
.product-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
}
.product-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color 0.2s;
  min-height: 110px;
}
.product-card:hover { border-color: rgba(245,158,11,0.3); }
.product-card-link { text-decoration: none; color: inherit; display: block; }
.card-tall { grid-row: span 2; min-height: 230px; justify-content: flex-end; }
.card-label {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.card-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
}
.card-desc {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.4;
}
.card-price {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: auto;
}

/* ── CATEGORIES ── */
.categories { background: var(--bg-light); color: var(--fg-dark); padding: 100px 0; }
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
  font-weight: 600;
  margin-bottom: 20px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--fg-dark);
  margin-bottom: 56px;
}
.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 64px;
}
.category-card {
  background: #fff;
  border: 1px solid #E8E6E0;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cat-icon { width: 40px; }
.cat-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fg-dark);
}
.cat-desc { font-size: 0.9rem; color: #555; line-height: 1.6; }
.cat-meta {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: #888;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid #E8E6E0;
}

/* Proof row */
.proof-row {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 32px 0;
  border-top: 1px solid #E8E6E0;
}
.proof-stat { display: flex; flex-direction: column; gap: 4px; }
.proof-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--fg-dark);
}
.proof-label { font-size: 0.78rem; color: #888; }
.proof-divider { width: 1px; height: 48px; background: #E8E6E0; }

/* ── MANIFESTO ── */
.manifesto { background: var(--bg); color: var(--fg); padding: 100px 0; }
.manifesto-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}
.manifesto-body { font-size: 0.95rem; color: var(--muted); line-height: 1.75; margin-bottom: 20px; }
.manifesto-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 16px;
}
.mco-text { font-size: 0.95rem; color: var(--fg); line-height: 1.65; font-style: italic; margin-bottom: 12px; }
.mco-emoji { margin-bottom: 12px; }
.mco-attr { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; }

/* ── CLOSING ── */
.closing { background: var(--bg); padding: 0 0 120px; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--fg);
  text-align: center;
  margin-bottom: 24px;
}
.closing-sub { font-size: 0.95rem; color: var(--muted); text-align: center; line-height: 1.7; }

/* ── FOOTER ── */
.footer { border-top: 1px solid var(--border); padding: 32px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-logo { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--fg); }
.footer-slug { font-size: 0.75rem; color: var(--muted); }
.footer-note { font-size: 0.8rem; color: var(--muted); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .container { padding-left: 32px; padding-right: 32px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 48px; }
  .proof-row { flex-direction: column; align-items: flex-start; gap: 24px; }
  .proof-divider { display: none; }
}

@media (max-width: 768px) {
  .container { padding-left: 24px; padding-right: 24px; }
  .category-grid { grid-template-columns: 1fr; }
  .product-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .container { padding-left: 20px; padding-right: 20px; }
  .nav-logo { font-size: 1rem; }
  .hero-headline { font-size: 2.4rem; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .category-card { padding: 24px; }
  .footer-inner { flex-direction: column; gap: 12px; align-items: flex-start; }
  .product-cards { grid-template-columns: 1fr; }
  .manifesto-cards { display: none; }
}

/* ── CATALOG PAGE ── */
.catalog-page { padding: 80px 0 120px; }
.catalog-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.catalog-header { margin-bottom: 64px; }
.catalog-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 20px;
}
.catalog-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.catalog-card { border-radius: 16px; overflow: hidden; }
.catalog-card-inner {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  transition: border-color 0.2s, background 0.2s;
}
.catalog-card-inner:hover {
  border-color: rgba(245,158,11,0.3);
  background: rgba(255,255,255,0.06);
}
.catalog-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.catalog-badge {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 4px;
  padding: 3px 8px;
}
.catalog-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}
.catalog-preview {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}
.catalog-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.catalog-preview-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(245,158,11,0.06) 0%, rgba(245,158,11,0.02) 60%, rgba(245,158,11,0.08) 100%);
  position: relative;
  overflow: hidden;
}
.catalog-preview-placeholder::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.catalog-preview-placeholder::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.catalog-info { flex: 1; }
.catalog-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
  margin-bottom: 8px;
}
.catalog-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}
.catalog-cta {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.3);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.catalog-cta:hover { background: rgba(245,158,11,0.25); }

@media (max-width: 1024px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .catalog-grid { grid-template-columns: 1fr; }
  .catalog-inner { padding: 0 20px; }
  .catalog-page { padding: 60px 0 80px; }
}