/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* === TOKENS === */
:root {
  --bg: #f4f0e8;
  --surface: #ffffff;
  --dark: #1a1a1a;
  --green: #2d5a3d;
  --green-light: #3d7a52;
  --green-muted: #4a8c62;
  --orange: #e8600a;
  --text: #1a1a1a;
  --text-muted: #6b6b6b;
  --text-light: #9a9a9a;
  --border: #e0dbd3;
  --border-dark: #c8c3bb;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

html { scroll-behavior: smooth; }

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 { font-family: 'Syne', sans-serif; font-weight: 700; line-height: 1.15; }

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}
.section-label.centered { text-align: center; }

/* === MANIFESTO (HERO) === */
.manifesto {
  padding: 80px 0 64px;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

.manifesto-inner { max-width: 860px; }

.manifesto-badge {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 28px;
}

.manifesto-headline {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 28px;
  line-height: 1.1;
}

.manifesto-headline em {
  font-style: normal;
  color: var(--green);
}

.manifesto-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.manifesto-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}

.stat { padding: 0 48px 0 0; }
.stat:first-child { padding-left: 0; }

.stat-value {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border-dark);
  margin-right: 48px;
  flex-shrink: 0;
}

/* === PROBLEM === */
.problem {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 40px;
}

.problem-inner { max-width: 1200px; margin: 0 auto; }

.problem-statement {
  font-size: 20px;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.problem-card {
  padding: 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.problem-icon {
  width: 48px;
  height: 48px;
  background: var(--green);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.problem-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Syne', sans-serif;
}

.problem-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* === SOLUTION === */
.solution {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.solution-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.solution-headline {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  font-family: 'Syne', sans-serif;
}

.solution-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* === SCAN CARD (mockup) === */
.scan-card {
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: 28px;
  color: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.scan-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.scan-dot {
  width: 10px;
  height: 10px;
  background: var(--green-muted);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.scan-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.scan-results { display: flex; flex-direction: column; gap: 0; }

.scan-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.scan-row.total { border-bottom: none; padding-top: 16px; }

.scan-material {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-family: 'DM Sans', sans-serif;
}

.scan-value {
  font-size: 13px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  color: rgba(255,255,255,0.9);
}

.scan-value.green { color: #6ee7a0; }
.scan-value.orange { color: #f4a261; }
.scan-value.bold { color: #fff; font-size: 15px; font-weight: 700; }

.scan-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 4px 0; }

.scan-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
}

/* === FEATURES === */
.features {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 40px;
}

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.feature-card {
  padding: 40px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--green);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: 'Syne', sans-serif;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* === PROCESS === */
.process { padding: 80px 40px; max-width: 1200px; margin: 0 auto; }

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 8px;
}

.step { flex: 1; }

.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--green);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: 'Syne', sans-serif;
}

.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.step-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 32px;
  color: var(--green);
  padding-top: 48px;
}

/* === MANIFESTO 2 (QUOTE) === */
.manifesto2 {
  background: var(--dark);
  padding: 80px 40px;
}

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

.quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 32px;
  font-style: italic;
}

.meta-name {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 4px;
}

.meta-title {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}

/* === CLOSING === */
.closing {
  background: var(--bg);
  padding: 100px 40px;
  text-align: center;
}

.closing-inner { max-width: 700px; margin: 0 auto; }

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* === FOOTER === */
.footer {
  background: var(--dark);
  padding: 56px 40px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-name {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  max-width: 280px;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  padding-top: 8px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: #fff; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  line-height: 1.5;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .problem-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .solution-inner { grid-template-columns: 1fr; gap: 48px; }
  .process-steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); padding: 16px 0; }
  .manifesto-stats { flex-direction: column; gap: 24px; }
  .stat-divider { display: none; }
  .stat { padding: 0; }
  .footer-inner { flex-direction: column; gap: 24px; }
}

@media (max-width: 600px) {
  .manifesto, .problem, .solution, .features, .process, .manifesto2, .closing, .footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .manifesto { padding-top: 56px; padding-bottom: 48px; }
  .feature-card { padding: 28px; }
  .scan-card { padding: 20px; }
}