:root {
  --bg: #0c0c14;
  --bg-alt: #10101c;
  --surface: #16162a;
  --surface-raised: #1e1e36;
  --fg: #f0ede8;
  --fg-muted: #9b9590;
  --accent: #c8a97a;
  --accent-dim: rgba(200, 169, 122, 0.12);
  --accent-border: rgba(200, 169, 122, 0.25);
  --border: rgba(255,255,255,0.07);
  --radius: 6px;
  --radius-lg: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  background: rgba(12,12,20,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--fg);
  text-decoration: none;
}

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

.site-header nav {
  display: flex;
  gap: 36px;
}

.site-header nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.site-header nav a:hover { color: var(--fg); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 48px 100px;
  position: relative;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,169,122,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,122,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.7) 30%, transparent 80%);
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(200,169,122,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 32px;
  max-width: 800px;
}

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.hero-accordion {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.accordion-pill {
  padding: 8px 18px;
  border: 1px solid var(--accent-border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
}

/* CAPABILITIES */
.capabilities {
  padding: 120px 48px;
  background: var(--bg-alt);
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 72px;
  max-width: 700px;
}

.cap-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cap-card {
  background: var(--surface);
  padding: 48px 40px;
  transition: background 0.25s;
}

.cap-card:hover { background: var(--surface-raised); }

.cap-icon {
  color: var(--accent);
  margin-bottom: 24px;
  opacity: 0.85;
}

.cap-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.cap-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* FUNNEL */
.funnel {
  padding: 120px 48px;
  background: var(--bg);
}

.funnel-stages {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.stage {
  padding: 48px 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  position: relative;
}

.stage-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.stage h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 20px;
}

.stage ul {
  list-style: none;
  margin-bottom: 24px;
}

.stage ul li {
  font-size: 14px;
  color: var(--fg-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

.stage ul li:last-child { border-bottom: none; }

.stage-langs {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  margin-top: auto;
}

/* MARKETS */
.markets {
  padding: 120px 48px;
  background: var(--bg-alt);
}

.market-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.market {
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.market-flag {
  margin-bottom: 20px;
}

.market-flag svg {
  border-radius: 3px;
  overflow: hidden;
}

.market h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.market p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* APPROACH */
.approach {
  padding: 120px 48px;
  background: var(--bg);
}

.approach-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-top: 64px;
}

.approach-item { }

.approach-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
}

.approach-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}

.approach-item p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* CLOSING */
.closing {
  padding: 140px 48px;
  background: var(--bg-alt);
  text-align: center;
}

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

.closing-rule {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 48px;
  opacity: 0.6;
}

.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}

.closing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

/* FOOTER */
.site-footer {
  padding: 64px 48px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

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

.footer-brand .logo {
  display: block;
  font-size: 20px;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--fg-muted);
}

.footer-meta p {
  font-size: 13px;
  color: var(--fg-muted);
}

.footer-copy {
  margin-top: 8px;
  opacity: 0.5;
  font-size: 12px !important;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .site-header { padding: 0 24px; }
  .hero { padding: 120px 24px 80px; }
  .capabilities, .funnel, .markets, .approach { padding: 80px 24px; }
  .cap-grid { grid-template-columns: 1fr; }
  .funnel-stages { grid-template-columns: 1fr; }
  .market-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .section-headline { max-width: 100%; }
  .site-header nav { display: none; }
}