:root {
  --bg: #050807;
  --bg-2: #0a1009;
  --surface: #111a11;
  --fg: #e8f5e9;
  --fg-muted: #7a9e7a;
  --accent: #b4ff4f;
  --accent-2: #4fffb0;
  --border: rgba(180, 255, 79, 0.12);
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  backdrop-filter: blur(12px);
  background: rgba(5, 8, 7, 0.7);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.03em;
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 2rem 3rem;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, rgba(0,0,0,0.6) 0%, transparent 100%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--accent);
  border-radius: 100px;
}
.hero-headline {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1.75rem;
  letter-spacing: -0.03em;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
}
.hero-cta-row {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  background: var(--accent);
  color: #050807;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-primary:hover { background: #c8ff6a; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.75rem;
  color: var(--fg-muted);
  font-size: 0.9rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ── STATS ── */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  gap: 0;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 2rem;
}
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── SECTION TAG ── */
.section-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* ── SERVICES ── */
.services {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.services-header {
  margin-bottom: 3.5rem;
}
.services-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--fg);
  max-width: 480px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.service-card {
  background: var(--bg);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.3s;
}
.service-card:hover { background: var(--bg-2); }
.service-num {
  font-size: 0.7rem;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.service-icon-wrap {
  color: var(--accent);
  margin-bottom: 1rem;
}
.service-name {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.service-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.service-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--accent);
  border-radius: 100px;
}

/* ── SHOWCASE ── */
.showcase {
  padding: 6rem 2rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.showcase-header {
  max-width: 1100px;
  margin: 0 auto 3rem;
}
.showcase-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--fg);
}
.showcase-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.showcase-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
  transition: border-color 0.3s, transform 0.3s;
}
.showcase-item:hover { border-color: rgba(180,255,79,0.35); transform: translateY(-4px); }
.showcase-visual {
  position: relative;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.showcase-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  filter: blur(50px);
}
.showcase-wordmark {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.15);
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
}
.showcase-wordmark-sub {
  font-family: 'Fraunces', serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,0.08);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(12px);
  letter-spacing: 0.05em;
}
.showcase-info {
  padding: 1.25rem 1.5rem;
}
.showcase-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 0.35rem;
}
.showcase-desc {
  font-size: 0.75rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ── PROCESS ── */
.process {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.process-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 3rem;
  margin-top: 0.5rem;
  max-width: 440px;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.process-step {
  display: flex;
  gap: 2.5rem;
  padding: 2rem 2.5rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.process-step:last-child { border-bottom: none; }
.process-step:hover { background: var(--bg-2); }
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.5;
  min-width: 48px;
  line-height: 1.3;
}
.step-content h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.step-content p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 600px;
}

/* ── CLOSING ── */
.closing {
  background: linear-gradient(135deg, var(--bg-2) 0%, #0a1a0b 100%);
  border-top: 1px solid var(--border);
  padding: 8rem 2rem;
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}
.closing-headline {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.closing-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  background: var(--bg);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}
.footer-tagline {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 0.25rem;
}
.footer-links {
  display: flex;
  gap: 1.75rem;
}
.footer-links a {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--fg); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { padding: 3rem 1.25rem 2rem; min-height: 85vh; }
  .hero-headline { font-size: 2.8rem; }
  .stats-inner { flex-direction: column; gap: 1.5rem; }
  .stat-divider { width: 60px; height: 1px; }
  .services-grid { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: 1fr; }
  .process-step { flex-direction: column; gap: 0.5rem; }
  .step-num { font-size: 1.2rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .nav-links { gap: 1.25rem; }
  .hero-cta-row { flex-direction: column; }
}
@media (max-width: 480px) {
  .nav-links a { font-size: 0.8rem; }
  .nav { padding: 1rem 1.25rem; }
}