@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,700;1,300&family=DM+Mono:wght@400;500&display=swap');

:root {
  --black: #0a0a0a;
  --off-black: #111111;
  --dark: #1a1a1a;
  --mid: #2a2a2a;
  --border: #2e2e2e;
  --muted: #555;
  --body: #aaaaaa;
  --light: #e8e8e8;
  --white: #f5f5f5;
  --accent: #e8ff00;
  --accent-dim: #c8dd00;
  --red: #ff3333;
  --nav-height: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--body);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.05;
}
h1 { font-size: clamp(3rem, 8vw, 7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1.2rem; color: var(--body); }
p:last-child { margin-bottom: 0; }

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--white); }

strong { color: var(--light); font-weight: 500; }

.mono {
  font-family: 'DM Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── LAYOUT ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 6rem 0; }
section + section { border-top: 1px solid var(--border); }

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

@media (max-width: 900px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .grid-4 { grid-template-columns: 1fr; }
  .container, .container--narrow { padding: 0 1.25rem; }
  section { padding: 4rem 0; }
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--accent); }

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

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  display: block;
  padding: 0 1.1rem;
  height: var(--nav-height);
  line-height: var(--nav-height);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--body);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--accent); }

/* dropdown */
.nav-links .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--off-black);
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: all 0.2s;
  list-style: none;
}
.nav-links li:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 0.75rem 1.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--body);
  border-bottom: 1px solid var(--border);
  transition: all 0.15s;
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { color: var(--accent); background: var(--dark); padding-left: 1.5rem; }

.nav-cta {
  background: var(--accent);
  color: var(--black) !important;
  padding: 0.5rem 1.25rem !important;
  height: auto !important;
  line-height: normal !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em;
}
.nav-cta:hover { background: var(--white) !important; color: var(--black) !important; }

/* hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--off-black);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1rem 0 2rem;
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a { height: auto; line-height: 1; padding: 0.9rem 2rem; }
  .nav-links .dropdown {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    border: none;
    border-top: none;
    border-left: 2px solid var(--accent);
    margin-left: 2rem;
    display: none;
  }
  .nav-links li.open .dropdown { display: block; }
  .nav-cta { margin: 0.5rem 2rem; }
}

/* ── PAGE HEADER ── */
.page-header {
  padding-top: calc(var(--nav-height) + 5rem);
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 80px,
    rgba(255,255,255,0.015) 80px,
    rgba(255,255,255,0.015) 81px
  );
  pointer-events: none;
}
.page-header .mono { margin-bottom: 1rem; color: var(--accent); }
.page-header p {
  font-size: 1.15rem;
  max-width: 600px;
  margin-top: 1.5rem;
}

/* ── HERO (homepage) ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(232,255,0,0.04) 0%, transparent 70%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 120px,
      rgba(255,255,255,0.012) 120px,
      rgba(255,255,255,0.012) 121px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 120px,
      rgba(255,255,255,0.012) 120px,
      rgba(255,255,255,0.012) 121px
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: var(--nav-height);
}

.hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.hero h1 { margin-bottom: 2rem; }
.hero h1 em { color: var(--accent); font-style: normal; }

.hero-sub {
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 3rem;
  color: var(--body);
}

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

.hero-stat-row {
  display: flex;
  gap: 3rem;
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero-stat .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--white);
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--accent);
  color: var(--black);
}
.btn-primary:hover { background: var(--white); color: var(--black); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ── CARDS ── */
.card {
  background: var(--off-black);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: var(--accent); transform: translateY(-2px); }
.card .card-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.card h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.card p { font-size: 0.9rem; }
.card .card-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.card .card-link::after { content: ' →'; }

/* service card variant */
.service-card {
  background: var(--off-black);
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--accent);
  transition: height 0.3s;
}
.service-card:hover { border-color: var(--border); }
.service-card:hover::before { height: 100%; }
.service-card h3 { margin-bottom: 1rem; }
.service-card .tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  background: var(--dark);
  border: 1px solid var(--border);
  color: var(--muted);
}

/* ── TEAM GRID ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}
.team-card {
  background: var(--off-black);
  border: 1px solid var(--border);
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.2s;
}
.team-card:hover { border-color: var(--accent); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--dark);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--accent);
  border: 2px solid var(--border);
  overflow: hidden;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-size: 1rem; color: var(--white); margin-bottom: 0.25rem; }
.team-card .role { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.06em; }
.team-card .email { font-size: 0.7rem; color: var(--accent); margin-top: 0.5rem; font-family: 'DM Mono', monospace; }

/* ── DIVIDERS & LABELS ── */
.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
  max-width: 60px;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: calc(var(--nav-height) + 1.5rem) 0 0;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: 'DM Mono', monospace;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); margin: 0 0.5rem; }

/* ── FOOTER ── */
footer {
  background: var(--off-black);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.footer-brand .logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-brand .logo span { color: var(--accent); }
.footer-brand p { font-size: 0.875rem; }
.footer-col h5 {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: var(--body); font-size: 0.875rem; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--muted);
}
.social-links { display: flex; gap: 1rem; }
.social-links a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.8rem;
  transition: all 0.2s;
  text-decoration: none;
}
.social-links a:hover { border-color: var(--accent); color: var(--accent); }

/* ── COMING SOON STUB ── */
.stub-section {
  padding: 5rem 0;
  text-align: center;
}
.stub-section .stub-badge {
  display: inline-block;
  background: var(--dark);
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}
.stub-section h2 { margin-bottom: 1rem; }
.stub-section p { max-width: 500px; margin: 0 auto 2rem; }

/* ── UTILITY ── */
.text-accent { color: var(--accent); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── HORIZONTAL RULE ── */
hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 3rem 0;
}

/* ── BLOCKQUOTE / PULL QUOTE ── */
blockquote {
  border-left: 3px solid var(--accent);
  padding: 1rem 2rem;
  margin: 2rem 0;
  background: var(--off-black);
}
blockquote p { color: var(--light); font-size: 1.05rem; font-style: italic; }

/* ── LOGO IMAGE ── */
.nav-logo {
  display: flex;
  align-items: center;
  padding: 0;
}
.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
}
.footer-brand .logo img {
  height: 68px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
}

