@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

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

:root {
  --bg: #000000;
  --surface: #0a0a0a;
  --border: #1a1a1a;
  --border-light: #2a2a2a;
  --white: #ffffff;
  --off-white: #e8e8e8;
  --muted: #666666;
  --accent: #ffffff;
  --font-sans: 'Space Grotesk', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-logo {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  text-decoration: none;
}

.nav-logo span {
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-cta {
  font-family: var(--font-mono);
  font-size: 13px !important;
  color: var(--white) !important;
  border: 1px solid var(--border-light) !important;
  padding: 10px 20px;
  transition: border-color 0.2s ease, background 0.2s ease !important;
}

.nav-cta:hover {
  background: var(--white) !important;
  color: var(--bg) !important;
  border-color: var(--white) !important;
}

/* ─── LAYOUT ─── */
main {
  padding-top: 89px;
}

section {
  padding: 120px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.full-bleed {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

/* ─── HERO ─── */
.hero {
  padding-top: 140px;
  padding-bottom: 120px;
  border-bottom: 1px solid var(--border);
}

.hero-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--muted);
}

.hero h1 {
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.04em;
  max-width: 880px;
  margin-bottom: 40px;
}

.hero h1 em {
  font-style: normal;
  color: var(--muted);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 16px 32px;
  border: 1px solid var(--white);
  color: var(--bg);
  background: var(--white);
  transition: background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  background: transparent;
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--border-light);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: transparent;
  color: var(--white);
}

/* ─── STATS ─── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.stat-item {
  padding: 48px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-number {
  font-family: var(--font-mono);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-mono);
}

/* ─── SECTION HEADER ─── */
.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 80px;
  gap: 40px;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 6px;
  white-space: nowrap;
}

.section-header h2 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 600px;
}

/* ─── SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.service-card {
  padding: 56px 48px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.service-card:hover::after {
  transform: scaleX(1);
}

.service-index {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.12em;
  margin-bottom: 32px;
}

.service-card h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.service-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 340px;
}

/* ─── DIVIDER ─── */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0 48px;
}

/* ─── CTA BAND ─── */
.cta-band {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cta-band h2 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 540px;
}

/* ─── ABOUT ─── */
.about-hero {
  padding-top: 140px;
  padding-bottom: 100px;
  border-bottom: 1px solid var(--border);
}

.about-hero h1 {
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  max-width: 800px;
  margin-bottom: 40px;
}

.about-hero h1 em {
  font-style: normal;
  color: var(--muted);
}

.about-bio {
  font-size: 20px;
  color: var(--off-white);
  line-height: 1.75;
  max-width: 720px;
}

.about-body {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
}

.about-sidebar {
  padding: 80px 48px;
  border-right: 1px solid var(--border);
}

.about-sidebar p {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}

.about-sidebar ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-sidebar li {
  font-size: 16px;
  color: var(--off-white);
  padding-left: 16px;
  border-left: 1px solid var(--border-light);
}

.about-content {
  padding: 80px 64px;
}

.about-content p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.about-content strong {
  color: var(--white);
  font-weight: 500;
}

/* ─── CONTACT ─── */
.contact-hero {
  padding-top: 140px;
  padding-bottom: 100px;
  border-bottom: 1px solid var(--border);
}

.contact-hero h1 {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 24px;
}

.contact-hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
}

.contact-info {
  padding: 80px 48px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.contact-block p:first-child {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.contact-email {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
  display: inline-block;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 4px;
}

.contact-email:hover {
  color: var(--off-white);
  border-bottom-color: var(--white);
}

.contact-detail {
  font-size: 17px;
  color: var(--off-white);
  line-height: 1.6;
}

.contact-right {
  padding: 80px 64px;
}

.contact-right h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.contact-right p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 40px;
}

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

.footer-logo span {
  color: var(--muted);
}

.footer-copy {
  font-size: 13px;
  color: var(--muted);
  font-family: var(--font-mono);
}

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  font-family: var(--font-mono);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

/* ─── TICKER ─── */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  background: var(--bg);
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 48px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}

.ticker-dot {
  width: 4px;
  height: 4px;
  background: var(--muted);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav {
    padding: 20px 24px;
  }

  section {
    padding: 80px 24px;
  }

  .hero {
    padding: 100px 24px 80px;
  }

  .stats-bar {
    grid-template-columns: 1fr;
  }

  .stat-item {
    padding: 36px 24px;
  }

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

  .service-card {
    padding: 40px 24px;
  }

  .section-header {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px;
    gap: 32px;
  }

  .about-body {
    grid-template-columns: 1fr;
  }

  .about-sidebar {
    padding: 48px 24px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .about-content {
    padding: 48px 24px;
  }

  .about-hero {
    padding: 100px 24px 80px;
  }

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

  .contact-info {
    padding: 48px 24px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .contact-right {
    padding: 48px 24px;
  }

  .contact-hero {
    padding: 100px 24px 80px;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 40px 24px;
  }

  .divider {
    margin: 0 24px;
  }

  .nav-links {
    display: none;
  }
}
