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

:root {
  --cream: #FAF7F2;
  --cream-dark: #F0EBE1;
  --green: #1E3D32;
  --green-light: #2C5244;
  --amber: #C89B3F;
  --amber-light: #D4B05A;
  --text: #1A1A18;
  --text-muted: #6B6860;
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--cream);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAV === */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  border-bottom: 1px solid rgba(30,61,50,0.08);
}

.nav__brand { display: flex; align-items: center; gap: 10px; }

.nav__logo-mark {
  width: 28px;
  height: 28px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: 14px;
  font-weight: 700;
}

.nav__brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.3px;
}

.nav__tagline {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* === HERO === */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: calc(100vh - 69px);
  overflow: hidden;
}

.hero__text {
  padding: 80px 60px 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}

.hero__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 900;
  line-height: 1.0;
  color: var(--green);
  margin-bottom: 28px;
  letter-spacing: -2px;
}

.hero__headline em {
  font-style: italic;
  color: var(--amber);
}

.hero__sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 400px;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero__pulse {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__pulse-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.4);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.hero__pulse-label {
  font-size: 12px;
  font-weight: 500;
  color: #16a34a;
  letter-spacing: 0.3px;
}

.hero__visual {
  background: var(--green);
  padding: 60px 60px 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.hero__visual::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(200,155,63,0.08);
  border-radius: 50%;
}

.hero__product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero__product-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(4px);
  transition: transform 0.3s ease;
}

.hero__product-card:hover { transform: translateY(-4px); }

.hero__product-card--1 { background: rgba(200,155,63,0.15); border-color: rgba(200,155,63,0.25); }
.hero__product-card--4 { grid-column: span 2; background: rgba(34,197,94,0.12); border-color: rgba(34,197,94,0.25); }

.hero__card-inner { display: flex; flex-direction: column; gap: 8px; }

.hero__card-icon { width: 40px; height: 40px; }

.hero__card-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero__card-stat {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}

.hero__card-badge {
  display: inline-block;
  background: rgba(34,197,94,0.2);
  color: #4ade80;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  width: fit-content;
}

/* Trend bar */
.hero__trend-bar { background: rgba(255,255,255,0.04); border-radius: 12px; padding: 20px; }

.hero__trend-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}

.hero__bars { display: flex; flex-direction: column; gap: 10px; }

.hero__bar-row { display: flex; align-items: center; gap: 12px; }

.hero__bar-cat {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  width: 120px;
  flex-shrink: 0;
}

.hero__bar-track {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}

.hero__bar-fill {
  height: 100%;
  background: var(--amber);
  border-radius: 2px;
  transition: width 1s ease;
}

/* === MANIFESTO === */
.manifesto {
  background: var(--cream-dark);
  padding: 80px 60px;
}

.manifesto__inner { max-width: 800px; margin: 0 auto; text-align: center; }

.manifesto__rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  margin: 32px 0;
  opacity: 0.2;
}

.manifesto__quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--green);
  font-style: italic;
}

.manifesto__quote strong { font-weight: 700; font-style: normal; color: var(--amber); }

/* === CATEGORIES === */
.categories {
  padding: 100px 60px;
  background: var(--cream);
}

.categories__header { text-align: center; margin-bottom: 64px; }

.categories__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.categories__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--green);
  line-height: 1.1;
  margin-bottom: 16px;
}

.categories__subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.categories__card {
  border-radius: 20px;
  padding: 40px 36px;
  border: 1px solid rgba(30,61,50,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.categories__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.categories__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(30,61,50,0.1);
}

.categories__card--beauty { background: #FDF8F3; }
.categories__card--beauty::before { background: var(--amber); }

.categories__card--home { background: #F3F7F5; }
.categories__card--home::before { background: var(--green); }

.categories__card--tech { background: #F5F3F9; }
.categories__card--tech::before { background: #8B5CF6; }

.categories__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.categories__card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(30,61,50,0.08);
  color: var(--green);
}

.categories__card--beauty .categories__card-tag { background: rgba(200,155,63,0.15); color: var(--amber); }
.categories__card--tech .categories__card-tag { background: rgba(139,92,246,0.15); color: #7C3AED; }

.categories__card-pct {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--green);
}

.categories__card-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 12px;
  line-height: 1.2;
}

.categories__card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.categories__card-list {
  list-style: none;
  margin-bottom: 24px;
}

.categories__card-list li {
  font-size: 13px;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 1px solid rgba(30,61,50,0.06);
  display: flex;
  align-items: center;
  gap: 8px;
}

.categories__card-list li::before {
  content: '+';
  color: var(--amber);
  font-weight: 700;
  font-size: 12px;
}

.categories__card-viral {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 10px 14px;
  background: rgba(30,61,50,0.04);
  border-radius: 8px;
}

.categories__viral-dot {
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-ring 2s infinite;
}

/* === CLOSING === */
.closing {
  padding: 100px 60px;
  background: var(--green);
  position: relative;
  overflow: hidden;
}

.closing__inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 2; }

.closing__pulse-ring {
  position: absolute;
  right: -60px;
  top: -60px;
  width: 300px;
  height: 300px;
}

.closing__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200,155,63,0.15);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.closing__ring--1 { width: 200px; height: 200px; animation: ring-pulse 3s ease-in-out infinite; }
.closing__ring--2 { width: 280px; height: 280px; animation: ring-pulse 3s ease-in-out infinite 0.5s; }
.closing__ring--3 { width: 360px; height: 360px; animation: ring-pulse 3s ease-in-out infinite 1s; }

@keyframes ring-pulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.08; transform: translate(-50%, -50%) scale(1.05); }
}

.closing__content { position: relative; z-index: 2; }

.closing__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.closing__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 56px;
}

.closing__meta {
  display: flex;
  align-items: center;
  gap: 40px;
}

.closing__meta-item { display: flex; flex-direction: column; gap: 4px; }

.closing__meta-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}

.closing__meta-label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
}

.closing__meta-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
}

/* === FOOTER === */
.footer {
  padding: 40px 60px;
  border-top: 1px solid rgba(30,61,50,0.08);
  background: var(--cream);
}

.footer__inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 12px; }

.footer__brand { display: flex; align-items: center; gap: 8px; }

.footer__logo-mark {
  width: 22px;
  height: 22px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: 10px;
}

.footer__brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
}

.footer__tagline {
  font-size: 13px;
  color: var(--text-muted);
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(30,61,50,0.3);
}

.footer__sep { opacity: 0.4; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__text { padding: 60px 24px 40px; }
  .hero__visual { padding: 40px 24px; }
  .categories__grid { grid-template-columns: 1fr; }
  .categories, .manifesto, .closing { padding: 60px 24px; }
  .closing__meta { flex-wrap: wrap; gap: 24px; }
  .footer { padding: 32px 24px; }
}
