@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --bg: #050705;
  --surface: #0D120D;
  --surface-hover: #151D15;
  --border: #1F291F;
  --border-light: #2A362A;
  --text-main: #E6E6E0;
  --text-muted: #8E968E;
  --accent: #1B4332;
  --accent-glow: #2D6A4F;
  --gold: #D4AF37;
  --gold-dim: #8C7324;
  
  --font-sans: 'Manrope', sans-serif;
  --font-serif: 'Playfair Display', serif;
  
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --container-width: 1200px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

h1 {
  font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-sans);
  font-weight: 600;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  max-width: 65ch;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s var(--ease);
}

strong {
  color: #FFFFFF;
  font-weight: 500;
}

/* Utilities */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(5, 7, 5, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
}

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

.logo {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-mark {
  width: 24px;
  height: 24px;
  background: var(--accent-glow);
  border-radius: 50%;
  position: relative;
}

.logo-mark::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40%;
  height: 40%;
  background: var(--gold);
  transform: translate(-50%, -50%);
  border-radius: 2px;
}

.main-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.main-nav a {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.main-nav a:hover, .main-nav a.active {
  color: var(--text-main);
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--border-light);
}

.btn-primary:hover {
  background: var(--accent-glow);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(45, 106, 79, 0.3);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: var(--text-main);
  background: rgba(255,255,255,0.05);
}

/* Hero Section */
.hero-section {
  padding: 180px 0 100px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

/* Subtle radial glow in background */
.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(27, 67, 50, 0.25) 0%, rgba(5, 7, 5, 0) 70%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-text .eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  background: rgba(212, 175, 55, 0.05);
}

.hero-text h1 {
  font-size: clamp(3rem, 5vw + 1rem, 5rem);
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 2.5rem;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.hero-visual {
  position: relative;
  height: 400px;
  background: linear-gradient(135deg, var(--surface) 0%, #0a0d0a 100%);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

/* Abstract UI representation in CSS */
.ui-block {
  position: absolute;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-light);
}

.ui-h1 { top: 40px; left: 40px; width: 60%; height: 40px; }
.ui-h2 { top: 120px; left: 40px; width: 40%; height: 20px; background: rgba(212, 175, 55, 0.1); }
.ui-card { top: 180px; left: 40px; width: 35%; height: 120px; background: rgba(45, 106, 79, 0.1); }
.ui-card-2 { top: 180px; right: 40px; width: 35%; height: 120px; }

/* Features Section */
.section-features {
  padding: 120px 0;
  background-color: var(--surface);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.feature-card {
  padding: 2.5rem;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--accent-glow);
  transform: translateY(-5px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

/* Stats */
.section-stats {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-row {
  display: flex;
  justify-content: space-between;
  text-align: center;
  gap: 2rem;
}

.stat-item {
  flex: 1;
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* Generic Content */
.section-content {
  padding: 120px 0;
}

.content-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.content-text h2 {
  margin-bottom: 1.5rem;
}

.lead {
  font-size: 1.25rem;
  color: var(--text-main);
  margin-bottom: 2rem;
}

/* CTA Band */
.section-cta {
  padding: 100px 0;
  text-align: center;
  background: radial-gradient(circle at center, var(--surface) 0%, var(--bg) 100%);
}

.cta-box {
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid var(--border);
  padding: 4rem 2rem;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(5px);
}

/* FAQ */
.section-faq {
  padding: 120px 0;
  background: var(--surface);
}

.faq-list {
  max-width: 800px;
  margin: 3rem auto 0;
  border-top: 1px solid var(--border);
}

.faq-item {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.faq-question {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 1rem;
}

/* Footer */
.site-footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-links li {
  list-style: none;
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-visual { display: none; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .content-layout { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header-inner { flex-direction: column; gap: 1rem; padding: 1rem 0; }
  .site-header { height: auto; position: relative; }
  .main-nav ul { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .stats-row { flex-direction: column; gap: 3rem; }
  .hero-section { padding-top: 120px; }
} body{margin:0} img,svg,video{max-width:100%;height:auto} *{box-sizing:border-box} 