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

:root {
  --cream: #f5f0e8;
  --dark-green: #1a3a2a;
  --mid-green: #2d5a3d;
  --amber: #e8923a;
  --amber-light: #f5b97a;
  --sage: #7a8c7a;
  --sage-light: #a8b8a8;
  --near-black: #1a1a1a;
  --charcoal: #2a2a2a;
  --off-white: #faf8f4;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--near-black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === HERO === */
.hero {
  background: var(--dark-green);
  color: var(--off-white);
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.accent-bar {
  width: 48px;
  height: 4px;
  background: var(--amber);
  margin-bottom: 32px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--off-white);
  margin-bottom: 28px;
}

.hero-lede {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--sage-light);
  line-height: 1.7;
  max-width: 440px;
}

/* Hero right — product panel */
.product-panel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 32px;
  backdrop-filter: blur(8px);
}

.panel-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 24px;
}

.panel-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.panel-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--off-white);
  font-weight: 300;
}

.panel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

.panel-tag {
  font-size: 0.8rem;
  color: var(--sage);
  font-style: italic;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}

/* Hero background shapes */
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.shape-circle {
  position: absolute;
  right: -120px;
  bottom: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(232, 146, 58, 0.08);
}

.shape-line {
  position: absolute;
  left: 0;
  top: 60%;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(232,146,58,0.2) 0%, transparent 60%);
}

/* === FEATURES === */
.features {
  background: var(--cream);
  padding: 100px 0;
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.features-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--near-black);
  margin-bottom: 12px;
  max-width: 600px;
  line-height: 1.15;
}

.features-sub {
  font-size: 1rem;
  color: var(--sage);
  margin-bottom: 64px;
  font-weight: 300;
}

.features-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid rgba(122, 140, 122, 0.2);
}

.feature-row:last-child {
  border-bottom: none;
}

.feature-icon {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4px;
}

.feature-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--near-black);
  margin-bottom: 10px;
}

.feature-content p {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.7;
  font-weight: 300;
  max-width: 520px;
}

/* === PHILOSOPHY === */
.philosophy {
  background: var(--off-white);
  padding: 100px 0;
  border-top: 1px solid rgba(122,140,122,0.15);
}

.philosophy-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.philosophy-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(232, 146, 58, 0.15);
  line-height: 1;
  margin-bottom: 20px;
}

.philosophy-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--near-black);
  margin-bottom: 16px;
  line-height: 1.2;
}

.philosophy-content p {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.7;
  font-weight: 300;
}

.philosophy-divider {
  display: none;
}

/* === MANIFESTO === */
.manifesto {
  background: var(--dark-green);
  color: var(--off-white);
  padding: 100px 0;
}

.manifesto::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.manifesto blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.9rem);
  font-weight: 400;
  font-style: italic;
  color: var(--off-white);
  line-height: 1.6;
  margin-bottom: 32px;
  border-left: 3px solid var(--amber);
  padding-left: 32px;
  text-align: left;
}

.manifesto-attribution {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--amber-light);
  margin-bottom: 48px;
}

.manifesto-rule {
  width: 60px;
  height: 2px;
  background: var(--amber);
  margin: 0 auto 40px;
}

.manifesto-tagline {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--sage-light);
  line-height: 1.6;
}

/* === CLOSING === */
.closing {
  background: var(--cream);
  padding: 100px 0;
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--near-black);
  line-height: 1.1;
  margin-bottom: 20px;
}

.closing-sub {
  font-size: 1.1rem;
  color: var(--charcoal);
  font-weight: 300;
  max-width: 560px;
  line-height: 1.7;
}

/* === FOOTER === */
.footer {
  background: var(--near-black);
  padding: 48px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--off-white);
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--sage);
  font-weight: 300;
}

.footer-meta {
  font-size: 0.75rem;
  color: var(--sage);
  font-weight: 300;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 24px;
  }

  .hero {
    padding: 60px 0 80px;
  }

  .features-inner,
  .closing-inner {
    padding: 0 24px;
  }

  .philosophy-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 24px;
  }

  .manifesto-inner {
    padding: 0 24px;
  }

  .footer-inner {
    padding: 0 24px;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .features {
    padding: 64px 0;
  }

  .philosophy {
    padding: 64px 0;
  }

  .manifesto {
    padding: 64px 0;
  }

  .closing {
    padding: 64px 0;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-icon {
    justify-content: flex-start;
  }
}

/* === SCROLL ANIMATIONS === */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}