:root {
  --bg: #0a0a0f;
  --bg-subtle: #12121a;
  --bg-card: #1a1a25;
  --fg: #e8e4df;
  --fg-muted: #8a8580;
  --fg-dim: #5a5650;
  --accent: #c9a96e;
  --accent-glow: rgba(201, 169, 110, 0.15);
  --accent-bright: #e0c48a;
  --earth: #8b6914;
  --earth-subtle: rgba(139, 105, 20, 0.1);
  --radius: 12px;
  --radius-sm: 6px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, .hero-badge, .section-tag, .fig-name, .method-num, .stat-number, .footer-brand {
  font-family: 'Syne', sans-serif;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 80px 24px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
}

.dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle 1.5px, var(--fg-dim) 0.5px, transparent 0.5px);
  background-size: 48px 48px;
  opacity: 0.12;
}

.hero-content {
  position: relative;
  max-width: 680px;
  text-align: center;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(201, 169, 110, 0.3);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--fg) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.hero-figure {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.25;
  z-index: 1;
}

.geomantic-dots {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.geomantic-dots .dot-row {
  display: flex;
  gap: 20px;
}

.geomantic-dots .dot {
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
  display: block;
}

.figure-label {
  text-align: center;
  margin-top: 12px;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .hero-figure {
    display: none;
  }
}

/* ========== WHAT SECTION ========== */
.what {
  padding: 120px 24px;
  background: var(--bg-subtle);
}

.what-inner {
  max-width: 800px;
  margin: 0 auto;
}

.section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.what h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--fg);
}

.what p {
  color: var(--fg-muted);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.what-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(201, 169, 110, 0.12);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-dim);
  line-height: 1.4;
}

@media (max-width: 600px) {
  .what-stats {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
}

/* ========== FIGURES SECTION ========== */
.figures {
  padding: 120px 24px;
  background: var(--bg);
}

.figures-inner {
  max-width: 960px;
  margin: 0 auto;
}

.figures h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 48px;
  color: var(--fg);
}

.figure-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.fig-card {
  background: var(--bg-card);
  border: 1px solid rgba(201, 169, 110, 0.08);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.fig-card:hover {
  border-color: rgba(201, 169, 110, 0.25);
  transform: translateY(-2px);
}

.fig-dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  min-height: 68px;
  justify-content: center;
}

.fig-dots .dr {
  display: flex;
  gap: 10px;
}

.fig-dots .d {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  display: block;
}

.fig-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--fg);
  margin-bottom: 4px;
}

.fig-meaning {
  font-size: 0.78rem;
  color: var(--fg-dim);
  font-style: italic;
}

.figures-note {
  color: var(--fg-dim);
  font-size: 0.9rem;
  font-style: italic;
}

@media (max-width: 768px) {
  .figure-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 400px) {
  .figure-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .fig-card {
    padding: 20px 12px;
  }
}

/* ========== METHOD SECTION ========== */
.method {
  padding: 120px 24px;
  background: var(--bg-subtle);
}

.method-inner {
  max-width: 960px;
  margin: 0 auto;
}

.method h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 48px;
  color: var(--fg);
}

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

.method-card {
  background: var(--bg-card);
  border: 1px solid rgba(201, 169, 110, 0.08);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: border-color 0.3s ease;
}

.method-card:hover {
  border-color: rgba(201, 169, 110, 0.2);
}

.method-num {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.method-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}

.method-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .method-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== CLOSING ========== */
.closing {
  padding: 120px 24px;
  background: var(--bg);
  text-align: center;
  position: relative;
}

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

.closing-dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  opacity: 0.4;
}

.closing-dots .dot-row {
  display: flex;
  gap: 12px;
}

.closing-dots .dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: block;
}

.closing h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 24px;
  color: var(--fg);
}

.closing-text {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ========== FOOTER ========== */
.site-footer {
  padding: 48px 24px;
  background: var(--bg);
  border-top: 1px solid rgba(201, 169, 110, 0.08);
}

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

.footer-brand {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
  letter-spacing: 1px;
}

.footer-text {
  color: var(--fg-dim);
  font-size: 0.85rem;
}

@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}