:root {
  --green:      #1d5c3a;
  --green-dark: #164a2e;
  --green-lite: #e8f4ed;
  --green-mid:  #a8d4b8;
  --ink:        #1a1a18;
  --ink2:       #2e2e2c;
  --ink3:       #5a5a58;
  --ink4:       #9a9a98;
  --bg:         #f7f5f0;
  --surface:    #ffffff;
  --border:     #e0ddd8;
  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans:  'DM Sans', sans-serif;
  --font-mono:  'DM Mono', monospace;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--ink); font-family: var(--font-sans); font-size: 16px; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* NAV */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(26,26,24,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.08); }
.nav-inner { max-width: 1160px; margin: 0 auto; padding: 0 40px; height: 84px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 72px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.6); transition: color 0.15s; }
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-cta { font-size: 13px; font-weight: 600; color: #fff; background: var(--green); padding: 9px 22px; border-radius: 6px; transition: background 0.15s; }
.nav-cta:hover { background: var(--green-dark); }
.nav-mobile-toggle { display: none; background: none; border: none; color: #fff; font-size: 22px; cursor: pointer; }
.nav-mobile-menu { display: none; flex-direction: column; padding: 16px 40px 24px; gap: 16px; border-top: 1px solid rgba(255,255,255,0.08); }
.nav-mobile-menu.open { display: flex; }
.nav-mobile-link { color: rgba(255,255,255,0.7); font-size: 15px; font-weight: 500; }
.nav-mobile-cta { color: #6ee7a0; font-size: 15px; font-weight: 600; }

/* CARD ICONS */
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--green-lite);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-icon-dark {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(110,231,160,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.card-icon-dark svg {
  width: 22px;
  height: 22px;
  stroke: #6ee7a0;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* HERO */
.hero { background: var(--ink); padding: 100px 40px 80px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(29,92,58,0.15) 0%, transparent 70%); pointer-events: none; }
.hero-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-kicker { font-family: var(--font-mono); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: #6ee7a0; margin-bottom: 20px; }
.hero-title { font-family: var(--font-serif); font-size: clamp(40px, 5vw, 68px); font-weight: 700; line-height: 1.05; letter-spacing: -2px; color: #fff; margin-bottom: 24px; }
.hero-title em { font-style: italic; color: #6ee7a0; }
.hero-desc { font-size: 17px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary { display: inline-block; background: var(--green); color: #fff; font-weight: 600; font-size: 15px; padding: 14px 28px; border-radius: 8px; transition: background 0.15s, transform 0.15s; }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-ghost { display: inline-block; color: rgba(255,255,255,0.7); font-weight: 500; font-size: 15px; padding: 14px 28px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.15); transition: all 0.15s; }
.btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.35); }

/* HERO CARD */
.hero-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 32px; }
.hero-card-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: #6ee7a0; margin-bottom: 12px; }
.hero-card-title { font-family: var(--font-serif); font-size: 22px; font-weight: 600; color: #fff; line-height: 1.3; margin-bottom: 24px; letter-spacing: -0.5px; }
.hero-card-items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.hero-card-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.7); }
.hero-card-item svg { width: 16px; height: 16px; stroke: #6ee7a0; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.hero-card-meta { font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,0.35); letter-spacing: 1px; margin-bottom: 20px; }
.hero-card-btn { display: block; background: var(--green); color: #fff; text-align: center; font-weight: 600; font-size: 14px; padding: 12px 24px; border-radius: 8px; transition: background 0.15s; }
.hero-card-btn:hover { background: var(--green-dark); }

/* CONTAINER */
.container { max-width: 1160px; margin: 0 auto; padding: 0 40px; }

/* SECTIONS */
.section-light { background: var(--bg); padding: 96px 40px; }
.section-dark  { background: var(--ink); padding: 96px 40px; }
.section-green { background: var(--green); padding: 96px 40px; }
.section-white { background: var(--surface); padding: 96px 40px; }
.section-header { text-align: center; margin-bottom: 64px; max-width: 680px; margin-left: auto; margin-right: auto; }
.section-kicker { font-family: var(--font-mono); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--green); margin-bottom: 16px; }
.section-title { font-family: var(--font-serif); font-size: clamp(28px, 4vw, 44px); font-weight: 700; letter-spacing: -1.5px; line-height: 1.1; color: var(--ink); margin-bottom: 16px; }
.section-desc { font-size: 17px; color: var(--ink3); line-height: 1.7; }

/* PROBLEMS */
.problems-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.problem-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 28px 24px; transition: border-color 0.2s, transform 0.2s; }
.problem-card:hover { border-color: var(--green-mid); transform: translateY(-2px); }
.problem-title { font-weight: 700; font-size: 16px; color: var(--ink); margin-bottom: 10px; }
.problem-desc { font-size: 14px; color: var(--ink3); line-height: 1.6; }

/* PRODUCTS */
.products-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 20px; }
.product-card { border-radius: 14px; padding: 32px; position: relative; }
.product-card-featured { background: rgba(255,255,255,0.06); border: 1px solid rgba(110,231,160,0.3); }
.product-card-coming { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); }
.product-badge { display: inline-block; font-family: var(--font-mono); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: #6ee7a0; background: rgba(110,231,160,0.15); border: 1px solid rgba(110,231,160,0.3); padding: 4px 10px; border-radius: 4px; margin-bottom: 20px; }
.product-badge-soon { color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }
.product-name { font-family: var(--font-serif); font-size: 22px; font-weight: 600; color: #fff; margin-bottom: 12px; letter-spacing: -0.5px; }
.product-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.65; margin-bottom: 24px; }
.product-link { font-size: 14px; font-weight: 600; color: #6ee7a0; transition: opacity 0.15s; }
.product-link:hover { opacity: 0.7; }
.product-link-muted { color: rgba(255,255,255,0.25); cursor: default; }

/* CTA */
.cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.cta-kicker { font-family: var(--font-mono); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.cta-title { font-family: var(--font-serif); font-size: clamp(28px, 3.5vw, 42px); font-weight: 700; color: #fff; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 16px; }
.cta-desc { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 24px; }
.cta-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.cta-list li { font-size: 14px; color: rgba(255,255,255,0.75); padding-left: 20px; position: relative; }
.cta-list li::before { content: '→'; position: absolute; left: 0; color: rgba(255,255,255,0.4); }
.cta-card { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 14px; padding: 36px; }
.cta-card-title { font-family: var(--font-serif); font-size: 26px; font-weight: 700; color: #fff; margin-bottom: 8px; letter-spacing: -0.5px; }
.cta-card-desc { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 24px; }
.cta-btn { display: block; background: #fff; color: var(--green); text-align: center; font-weight: 700; font-size: 15px; padding: 14px 24px; border-radius: 8px; margin-bottom: 16px; transition: opacity 0.15s; }
.cta-btn:hover { opacity: 0.9; }
.cta-card-note { font-family: var(--font-mono); font-size: 10px; letter-spacing: 1px; text-align: center; color: rgba(255,255,255,0.4); }

/* FOOTER */
.footer { background: var(--ink2); padding: 64px 40px 32px; }
.footer-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr; gap: 80px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 32px; }
.footer-logo { height: 72px; width: auto; margin-bottom: 16px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; max-width: 280px; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
.footer-col-title { font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 16px; }
.footer-link { display: block; font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 10px; transition: color 0.15s; }
.footer-link:hover { color: #fff; }
.footer-address { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.7; margin-top: 4px; }
.footer-bottom { max-width: 1160px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.25); font-family: var(--font-mono); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-link { color: rgba(255,255,255,0.25); transition: color 0.15s; }
.footer-bottom-link:hover { color: rgba(255,255,255,0.5); }

/* ABOUT */
.page-hero { background: var(--ink); padding: 80px 40px; }
.page-hero-inner { max-width: 800px; margin: 0 auto; }
.page-kicker { font-family: var(--font-mono); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: #6ee7a0; margin-bottom: 20px; }
.page-title { font-family: var(--font-serif); font-size: clamp(36px, 5vw, 60px); font-weight: 700; color: #fff; line-height: 1.05; letter-spacing: -2px; margin-bottom: 24px; }
.page-title em { font-style: italic; color: #6ee7a0; }
.page-desc { font-size: 18px; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 600px; }
.about-body { max-width: 800px; margin: 0 auto; padding: 80px 40px; }
.about-section { margin-bottom: 56px; }
.about-section-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--green); margin-bottom: 16px; }
.about-section h2 { font-family: var(--font-serif); font-size: 30px; font-weight: 700; letter-spacing: -1px; color: var(--ink); margin-bottom: 16px; line-height: 1.2; }
.about-section p { font-size: 16px; color: var(--ink3); line-height: 1.8; margin-bottom: 16px; }
.about-section p strong { color: var(--ink); font-weight: 600; }
.about-divider { border: none; border-top: 1px solid var(--border); margin: 48px 0; }

/* NEWSLETTER */
.newsletter-hero { background: var(--ink); padding: 80px 40px; text-align: center; }
.newsletter-hero-inner { max-width: 720px; margin: 0 auto; }
.newsletter-pillars { background: var(--surface); padding: 80px 40px; }
.pillars-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; max-width: 1160px; margin: 0 auto; }
.pillars-header { text-align: center; margin-bottom: 48px; max-width: 680px; margin-left: auto; margin-right: auto; }
.pillar-card { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 28px 22px; transition: border-color 0.2s; }
.pillar-card:hover { border-color: var(--green-mid); }
.pillar-name { font-weight: 700; font-size: 15px; color: var(--ink); margin-bottom: 8px; }
.pillar-desc { font-size: 13px; color: var(--ink3); line-height: 1.6; }
.newsletter-form-section { background: var(--bg); padding: 80px 40px; }
.newsletter-form-inner { max-width: 860px; margin: 0 auto; }
.newsletter-form-header { text-align: center; margin-bottom: 48px; }
.newsletter-embed { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 40px; overflow: hidden; }
.newsletter-provinces { background: var(--ink); padding: 80px 40px; }
.provinces-inner { max-width: 1160px; margin: 0 auto; }
.provinces-header { margin-bottom: 40px; }
.provinces-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.province-pill { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 12px 16px; font-size: 13px; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 8px; }
.province-pill.active { border-color: rgba(110,231,160,0.3); color: rgba(255,255,255,0.85); }
.province-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.2); flex-shrink: 0; }
.province-pill.active .province-dot { background: #6ee7a0; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .hero { padding: 60px 20px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .section-light, .section-dark, .section-green, .section-white { padding: 64px 20px; }
  .container { padding: 0 20px; }
  .problems-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .about-body { padding: 48px 20px; }
  .page-hero, .newsletter-hero { padding: 60px 20px; }
  .newsletter-form-section, .newsletter-provinces, .newsletter-pillars { padding: 60px 20px; }
  .newsletter-embed { padding: 20px; }
}

@media (max-width: 600px) {
  .problems-grid, .pillars-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .nav-inner { padding: 0 20px; }
}

/* DEFINITION */
.definition-block {
  max-width: 780px;
  margin: 0 auto;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.definition-term {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}

.definition-pos {
  font-family: var(--font-mono);
  font-size: 14px;
  color: #6ee7a0;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.definition-text {
  font-size: clamp(14px, 1.5vw, 17px);
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  max-width: 600px;
  font-style: italic;
}
