:root {
  --bg: #f9f5ee;
  --fg: #1a1a1a;
  --accent: #1a3c2a;
  --accent-light: #2d5c42;
  --gold: #c8860a;
  --cream-dark: #ece7db;
  --text-muted: #6b6b6b;
  --border: #ddd8ce;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

/* HERO */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 6rem 8% 4rem;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  right: -5%;
  top: 10%;
  width: 55%;
  height: 80%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.08;
}

.hero-content {
  position: relative;
  max-width: 680px;
  z-index: 1;
}

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pill {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 500;
}

/* SECTION TAG */
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* GAP */
.gap {
  background: var(--accent);
  color: #fff;
  padding: 6rem 8%;
}

.gap-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.gap-left h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #fff;
}

.gap-left p {
  font-size: 1rem;
  opacity: 0.8;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.gap-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 1rem;
}

.gap-stat {
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  opacity: 0.75;
  margin-top: 0.25rem;
  line-height: 1.5;
}

/* SYSTEM */
.system {
  padding: 6rem 8%;
  background: var(--bg);
}

.system-inner {
  max-width: 1100px;
}

.system h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--accent);
  margin-bottom: 1rem;
}

.system-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 3.5rem;
  line-height: 1.7;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.system-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.2s ease;
}

.system-card:hover {
  box-shadow: 0 8px 32px rgba(26, 60, 42, 0.1);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--cream-dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.system-card h3 {
  font-size: 1.15rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.system-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* TIERS */
.tiers {
  padding: 6rem 8%;
  background: var(--cream-dark);
}

.tiers-inner {
  max-width: 1100px;
}

.tiers h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--accent);
  margin-bottom: 1rem;
}

.tiers-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 3rem;
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.tier-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.tier-featured {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(26, 60, 42, 0.12);
}

.tier-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 0 12px 0 8px;
}

.tier-top {
  margin-bottom: 1.5rem;
}

.tier-name {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-bottom: 0.75rem;
}

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
}

.price-period {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.tier-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.tier-features li {
  font-size: 0.88rem;
  color: var(--fg);
  padding-left: 1.25rem;
  position: relative;
}

.tier-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.tiers-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

/* MANIFESTO */
.manifesto {
  padding: 6rem 8%;
  background: var(--accent);
  text-align: center;
}

.manifesto-inner {
  max-width: 720px;
  margin: 0 auto;
}

.manifesto blockquote p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-style: italic;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.manifesto-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.manifesto-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.manifesto-tags span {
  font-size: 0.8rem;
  color: var(--gold);
  opacity: 0.85;
}

/* FOOTER */
footer {
  padding: 3rem 8%;
  background: #0f2618;
  color: rgba(255,255,255,0.6);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #fff;
  display: block;
  margin-bottom: 0.35rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  max-width: 280px;
}

.footer-meta {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .gap-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .system-grid { grid-template-columns: 1fr; }
  .tiers-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 1.5rem; }
  .hero { padding: 5rem 6% 3rem; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2rem; }
  .hero { min-height: auto; padding: 4rem 5% 3rem; }
  .gap, .system, .tiers, .manifesto { padding: 4rem 5%; }
}