@charset "UTF-8";
:root {
  --bg: #030303;
  --surface: rgba(15, 15, 15, 0.7);
  --surface-hover: rgba(25, 25, 25, 0.9);
  --ink: #FFFFFF;
  --ink-soft: #A3A3A3;
  --ink-muted: #737373;
  --line: rgba(255, 255, 255, 0.1);
  --accent-primary: #E5E5E5;
  --accent-gold: #D4AF37;
  --font-sans: 'DM Sans', sans-serif;
  --font-display: 'Newsreader', serif;
}

/* Reset and Globals */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background-color: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); color: var(--ink); line-height: 1.1; font-weight: 400; }
p { margin: 0; color: var(--ink-soft); }
ul { list-style: none; padding: 0; margin: 0; }
button { border: none; background: none; font-family: inherit; color: inherit; cursor: pointer; }

::selection { background: rgba(255, 255, 255, 0.2); color: #fff; }

/* Subtle Background Noise / Gradient */
.glow-bg {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: -1;
  pointer-events: none;
  background: 
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.03), transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.04), transparent 50%);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Navigation - Ultra Minimal */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px;
  margin-top: 24px;
  background: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 99px;
  position: sticky;
  top: 24px;
  z-index: 100;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.nav-links { display: flex; gap: 40px; font-weight: 500; font-size: 0.95rem; }
.nav-link { color: var(--ink-muted); transition: color 0.3s ease; }
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--ink); }

.nav-actions { display: flex; align-items: center; gap: 16px; }

/* Buttons */
.btn {
  display: inline-flex; justify-content: center; align-items: center;
  padding: 14px 32px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary {
  background: var(--ink);
  color: #000;
  border: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--ink);
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
}

.btn-ghost { color: var(--ink-soft); padding: 14px 0; }
.btn-ghost:hover { color: var(--ink); }

/* Typography Scale */
.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 20px;
}
.display-title { font-size: clamp(3.5rem, 8vw, 6.5rem); letter-spacing: -0.04em; margin-bottom: 24px; text-wrap: balance; line-height: 1.05; }
.page-title { font-size: clamp(2.8rem, 6vw, 5rem); letter-spacing: -0.03em; margin-bottom: 24px; text-wrap: balance; }
.section-title { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.03em; margin-bottom: 40px; text-wrap: balance; }

.lead { font-size: 1.35rem; color: var(--ink-soft); max-width: 600px; line-height: 1.5; margin-bottom: 40px; font-weight: 300; }

/* Sections */
.section { padding: 120px 0; }
.tight { padding-top: 40px; }

/* Hero Layout */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
  transition: filter 0.5s ease;
}
.hero-image-wrapper:hover img {
  filter: grayscale(20%) contrast(1.1);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, transparent 40%);
  pointer-events: none;
}

/* Impact Points List */
.impact-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 64px;
  border-top: 1px solid var(--line);
  padding-top: 48px;
}
.impact-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  align-items: start;
}
.impact-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent-gold);
  font-style: italic;
}
.impact-text {
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.5;
}

/* Panels / Cards */
.pillars-grid { display: grid; gap: 32px; grid-template-columns: repeat(2, 1fr); margin-top: 64px; }
.grid-2 { display: grid; gap: 32px; grid-template-columns: repeat(2, 1fr); }
.grid-3 { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.glass-panel {
  display: flex; flex-direction: column;
  background: rgba(15, 15, 15, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 48px;
  border-radius: 0px; /* Sharp corners for premium feel */
  transition: all 0.4s ease;
  position: relative;
}
.glass-panel:hover {
  background: rgba(25, 25, 25, 0.6);
  border-color: rgba(255, 255, 255, 0.15);
}

.glass-panel h3 { font-size: 2rem; margin-bottom: 16px; letter-spacing: -0.02em; }
.glass-panel p { color: var(--ink-soft); flex-grow: 1; font-size: 1.05rem; }
.glass-panel .eyebrow { margin-top: 40px; margin-bottom: 0; }

/* Animation Utils */
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.animate { animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0; }
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* Lists */
.proof-list { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.proof-list li {
  position: relative; padding-left: 32px; color: var(--ink-soft); font-size: 1.05rem;
}
.proof-list li::before {
  content: "—"; position: absolute; left: 0; top: 0; color: var(--accent-gold);
}

/* Secondary Pages Stats Row & Hero */
.hero { display: flex; flex-direction: column; justify-content: center; padding-top: 80px; padding-bottom: 40px; }
.stats-row {
  display: flex; gap: 80px; flex-wrap: wrap; margin: 40px 0 80px 0; 
  border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); 
  padding: 60px 0;
}
.stat-item { flex: 1; min-width: 150px; }
.stat-number { font-size: 2.5rem; font-family: var(--font-display); color: var(--ink); margin-bottom: 8px; font-weight: 500;}
.stat-label { color: var(--ink-muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700;}


/* Footer */
.footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 80px 0;
  margin-top: 80px;
}
.footer-cta {
  display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 64px;
}
.footer-title { font-family: var(--font-display); font-size: 2.5rem; margin-bottom: 12px; }
.footer-copy { max-width: 400px; color: var(--ink-muted); font-size: 1.1rem; }
.footer-links { display: flex; gap: 32px; font-weight: 500; }
.footer-links a { color: var(--ink-muted); transition: color 0.3s; }
.footer-links a:hover { color: var(--ink); }

@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; gap: 40px; padding-top: 40px; }
  .hero-image-wrapper { aspect-ratio: 16/9; }
}

@media (max-width: 768px) {
  .display-title { font-size: 3rem; }
  .section-title { font-size: 2.5rem; }
  .pillars-grid, .grid-2 { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-actions .btn-primary { display: none; }
  .glass-panel { padding: 32px; }
}
