:root {
  --bg: #F8F6F0;
  --fg: #1A1A1A;
  --muted: #6B7280;
  --accent: #1B4332;
  --accent-mid: #2D6A4F;
  --accent-light: #40916C;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --surface: #FFFFFF;
  --border: #E5E2D9;
  --hero-bg: #0F2318;
  --hero-fg: #F8F6F0;
}

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

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

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 35, 24, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.3px;
}
.nav-tagline {
  font-size: 13px;
  color: rgba(248,246,240,0.55);
  font-weight: 300;
}

/* HERO */
.hero {
  background: var(--hero-bg);
  color: var(--hero-fg);
  padding: 80px 24px 100px;
  position: relative;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(64,145,108,0.12) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(201,168,76,0.07) 0%, transparent 50%),
    repeating-linear-gradient(0deg, transparent, transparent 48px, rgba(255,255,255,0.015) 48px, rgba(255,255,255,0.015) 49px),
    repeating-linear-gradient(90deg, transparent, transparent 48px, rgba(255,255,255,0.015) 48px, rgba(255,255,255,0.015) 49px);
}
.hero-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: rgba(248,246,240,0.75);
  max-width: 580px;
  margin: 0 auto 56px;
  font-weight: 300;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  overflow: hidden;
}
.hero-stat {
  padding: 24px 40px;
  text-align: center;
}
.hero-stat-value {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.hero-stat-label {
  display: block;
  font-size: 12px;
  color: rgba(248,246,240,0.5);
  font-weight: 300;
  max-width: 160px;
  line-height: 1.4;
}
.hero-stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.1);
}

/* SECTION LABELS */
.section-label {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--fg);
  margin-bottom: 48px;
}

/* HOW */
.how { padding: 96px 24px; }
.how-inner { max-width: 1100px; margin: 0 auto; }
.how-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.how-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  transition: transform 0.2s ease;
}
.how-card:hover { transform: translateY(-4px); }
.how-card-icon {
  width: 52px;
  height: 52px;
  background: var(--accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin-bottom: 24px;
}
.how-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}
.how-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* SECURITY */
.security {
  background: var(--accent);
  color: var(--hero-fg);
  padding: 96px 24px;
}
.security-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.security-text .section-label { color: var(--gold-light); }
.security-text .section-headline { color: #fff; }
.security-body {
  font-size: 16px;
  color: rgba(248,246,240,0.7);
  line-height: 1.75;
  margin-bottom: 32px;
}
.security-features { display: flex; flex-direction: column; gap: 14px; }
.security-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(248,246,240,0.85);
}
.security-check {
  width: 24px;
  height: 24px;
  background: rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
}
.security-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.security-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
}
.security-card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.security-card-big {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.security-card-sub {
  font-size: 13px;
  color: rgba(248,246,240,0.55);
  line-height: 1.5;
}

/* DIFFERENCE */
.difference { padding: 96px 24px; background: var(--bg); }
.difference-inner { max-width: 1100px; margin: 0 auto; }
.comparison-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.comparison-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.comparison-col {
  padding: 18px 24px;
  text-align: center;
  border-left: 1px solid rgba(255,255,255,0.1);
}
.comparison-col-blank { padding: 18px 24px; }
.comparison-col-active {
  background: rgba(201,168,76,0.15);
  color: var(--gold-light);
}
.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-top: 1px solid var(--border);
  font-size: 14px;
}
.comparison-row-label {
  padding: 16px 24px;
  font-weight: 500;
  color: var(--fg);
  align-self: center;
}
.comparison-cell {
  padding: 16px 24px;
  text-align: center;
  color: var(--muted);
  align-self: center;
  border-left: 1px solid var(--border);
}
.comparison-cell-active { color: var(--fg); font-weight: 600; }
.comparison-cell-check { color: var(--accent); }
.comparison-cell-check.comparison-cell-active { color: var(--accent); }

/* CLOSING */
.closing {
  background: var(--hero-bg);
  color: var(--hero-fg);
  padding: 96px 24px;
}
.closing-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.closing .section-label { color: var(--gold); }
.closing-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 32px;
}
.closing-body {
  font-size: 17px;
  color: rgba(248,246,240,0.7);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* FOOTER */
.footer {
  background: #0A1A0F;
  color: rgba(248,246,240,0.4);
  padding: 48px 24px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}
.footer-sub {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: rgba(248,246,240,0.4);
}
.footer-legal {
  font-size: 12px;
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto;
  color: rgba(248,246,240,0.25);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-stats {
    flex-direction: column;
    gap: 0;
  }
  .hero-stat-divider { width: 80%; height: 1px; }
  .how-cards { grid-template-columns: 1fr; }
  .security-inner { grid-template-columns: 1fr; gap: 48px; }
  .security-visual { grid-template-columns: 1fr; }
  .comparison-table { overflow-x: auto; }
  .comparison-header, .comparison-row {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    min-width: 600px;
  }
  .nav-tagline { display: none; }
}
@media (max-width: 480px) {
  .hero { padding: 60px 20px 80px; }
  .hero-stat { padding: 20px 24px; }
  .hero-stat-value { font-size: 26px; }
}