:root {
  --bg: #0a0a0c;
  --bg-elevated: #111114;
  --bg-card: #16161a;
  --fg: #e8e6e3;
  --fg-muted: #8a8a8e;
  --accent: #ff4d2e;
  --accent-glow: rgba(255, 77, 46, 0.15);
  --faith-accent: #c8a44e;
  --faith-glow: rgba(200, 164, 78, 0.12);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --max-width: 1100px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero-tag {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--fg);
}

.accent-dot {
  color: var(--accent);
}

.hero-sub {
  max-width: 480px;
  margin-top: 2.5rem;
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.8;
}

.hero-accent-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  opacity: 0.4;
}

/* === PHILOSOPHY === */
.philosophy {
  padding: 8rem 2rem;
  background: var(--bg-elevated);
}

.philosophy-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.philosophy-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.philosophy h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.2;
  max-width: 700px;
  margin-bottom: 2rem;
}

.philosophy h2 em {
  font-style: italic;
  color: var(--accent);
}

.philosophy p {
  max-width: 600px;
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.9;
}

.philosophy p strong {
  color: var(--fg);
  font-weight: 600;
}

/* === FEATURES === */
.features {
  padding: 8rem 2rem;
}

.features-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  transition: border-color 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(255, 77, 46, 0.2);
}

.feature-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--fg);
}

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

/* === PATHS === */
.paths {
  padding: 8rem 2rem;
  background: var(--bg-elevated);
}

.paths-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.paths h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 0.5rem;
}

.paths-intro {
  text-align: center;
  color: var(--fg-muted);
  font-size: 1.1rem;
  margin-bottom: 3.5rem;
}

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

.path-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  text-align: center;
}

.path-card:hover {
  border-color: rgba(255, 77, 46, 0.2);
}

.path-faith:hover {
  border-color: rgba(200, 164, 78, 0.3);
}

.path-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.path-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--fg);
}

.path-faith h3 {
  color: var(--faith-accent);
}

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

/* === CLOSING === */
.closing {
  padding: 10rem 2rem;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.closing h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.closing-big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.15;
  color: var(--fg);
}

/* === FOOTER === */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
}

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

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero {
    padding: 4rem 1.5rem 3rem;
    min-height: 80vh;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 15vw, 6rem);
  }

  .philosophy,
  .features,
  .paths {
    padding: 5rem 1.5rem;
  }

  .features-inner {
    grid-template-columns: 1fr;
  }

  .paths-grid {
    grid-template-columns: 1fr;
  }

  .closing {
    padding: 6rem 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* === CTA BUTTON === */
.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: opacity 0.2s, transform 0.1s;
}
.cta-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}