/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #000000;
  --lime: #ccfe06;
  --white: #ffffff;
  --grey-dark: #111111;
  --grey-mid: #1a1a1a;
  --grey-text: #888888;
  --font: 'Inter', system-ui, sans-serif;
  --font-display: 'Anton', 'Inter', sans-serif;
  --radius: 4px;
  --max-w: 1200px;
  --nav-h: 72px;
}

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

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

/* ── Utilities ────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

.accent { color: var(--lime); }
.accent-bg { background: var(--lime); color: var(--black); }

.label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-text);
  margin-bottom: 16px;
}
.label.accent { color: var(--lime); }

.section { padding: 100px 0; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--grey-text);
  max-width: 560px;
  margin-bottom: 56px;
  line-height: 1.7;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: var(--lime);
  color: var(--black);
  border-color: var(--lime);
}
.btn--primary:hover { background: #b8e205; border-color: #b8e205; }

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

.btn--outline {
  background: transparent;
  color: var(--lime);
  border-color: var(--lime);
}
.btn--outline:hover { background: var(--lime); color: var(--black); }

.btn--full { width: 100%; }

/* ── Nav ──────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav__logo { display: flex; align-items: center; }

.nav__logo-img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer__logo-img {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0 auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav__links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--white); }
.nav__cta {
  background: var(--lime) !important;
  color: var(--black) !important;
  padding: 10px 20px;
  border-radius: var(--radius);
}
.nav__cta:hover { background: #b8e205 !important; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img-placeholder {
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1574629810360-7efbbe195018?w=1920&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center 30%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.88) 40%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--nav-h) 24px 0;
}
.hero__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--lime);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--lime);
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 28px;
  text-align: left;
}
.hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 44px;
  line-height: 1.7;
}
.hero__sub strong { color: var(--white); }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll-hint span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  position: relative;
}
.hero__scroll-hint span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--lime);
  border-radius: 2px;
  animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot {
  0% { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 20px; }
}

/* ── Vision ───────────────────────────────────────────────── */
.vision { background: var(--grey-dark); }
.vision__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.vision__block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.05;
  letter-spacing: 0.01em;
}
.vision__block p { color: rgba(255,255,255,0.65); line-height: 1.8; }
.vision__block { padding-right: 24px; }
.vision__block + .vision__block {
  padding-left: 24px;
  padding-right: 0;
  border-left: 1px solid rgba(255,255,255,0.1);
}

/* ── Why ──────────────────────────────────────────────────── */
.why {
  position: relative;
  background-color: var(--black);
  background-image: url('https://images.unsplash.com/photo-1517466787929-bc90951d0974?w=1920&q=75&auto=format&fit=crop');
  background-size: cover;
  background-position: center 35%;
  background-attachment: scroll;
}
.why::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 0;
}
.why .container { position: relative; z-index: 1; }
.why__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 16px;
}
.pillar {
  padding: 36px 32px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  transition: border-color 0.3s, transform 0.3s;
}
.pillar:hover {
  border-color: var(--lime);
  transform: translateY(-4px);
}
.pillar__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
}
.pillar__icon svg { width: 100%; height: 100%; }
.pillar h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pillar p { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.7; }

/* ── Services ─────────────────────────────────────────────── */
.services { background: var(--grey-dark); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  overflow: hidden;
}
.service-card {
  background: var(--grey-dark);
  padding: 48px 40px;
  position: relative;
  transition: background 0.3s;
}
.service-card:hover { background: #141414; }
.service-card:hover .service-card__num { color: var(--lime); }
.service-card__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.2);
  margin-bottom: 20px;
  transition: color 0.3s;
}
.service-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  color: var(--lime);
}
.service-card__icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.service-card p { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.7; }

/* ── Who We Work With ─────────────────────────────────────── */
.who { background: var(--black); }
.who__split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: 16px;
}
.who__col {
  padding: 48px 40px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
}
.who__col--player { border-color: var(--lime); }
.who__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--grey-text);
  margin-bottom: 24px;
}
.who__tag.accent-bg { border-color: var(--lime); color: var(--black); }
.who__col h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.3;
}
.who__col ul {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.who__col li {
  padding-left: 20px;
  position: relative;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}
.who__col li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--lime);
  font-size: 12px;
  top: 2px;
}
.who__divider {
  width: 1px;
  background: rgba(255,255,255,0.08);
  margin: 0 32px;
  align-self: stretch;
}

/* ── Stats Strip ──────────────────────────────────────────── */
.stats {
  background: var(--lime);
  padding: 56px 0;
}
.stats__inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
}
.stat { text-align: center; }
.stat__num {
  display: block;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--black) !important;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.stat__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
}

/* ── Contact ──────────────────────────────────────────────── */
.contact { background: var(--grey-dark); }
.contact__form {
  max-width: 680px;
  margin-top: 8px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form__group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.form__group input,
.form__group select,
.form__group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  padding: 14px 16px;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form__group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23888' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}
.form__group select option { background: #1a1a1a; }
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--lime);
}
.form__group textarea { resize: vertical; }
.form__group input::placeholder,
.form__group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form__note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--grey-text);
  line-height: 1.6;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.footer__brand p {
  font-size: 13px;
  color: var(--grey-text);
  margin-top: 8px;
}
.footer__socials {
  display: flex;
  gap: 20px;
}
.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: rgba(255,255,255,0.5);
  transition: border-color 0.2s, color 0.2s;
}
.social-link:hover { border-color: var(--lime); color: var(--lime); }
.social-link svg { width: 18px; height: 18px; }
.footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* ── Scroll Animations ────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .vision__grid { grid-template-columns: 1fr; gap: 40px; }
  .vision__block + .vision__block { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 40px; }
  .why__pillars { grid-template-columns: 1fr; gap: 20px; }
  .services__grid { grid-template-columns: 1fr; }
  .who__split { grid-template-columns: 1fr; }
  .who__divider { display: none; }
  .who__col { padding: 36px 28px; }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(0,0,0,0.97);
    flex-direction: column;
    align-items: center;
    padding: 32px 24px 40px;
    gap: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav__links.open { display: flex; }
  .nav__burger { display: flex; }

  .section { padding: 72px 0; }
  .form__row { grid-template-columns: 1fr; }
  .hero__headline { font-size: clamp(2.2rem, 10vw, 3.5rem); }
}
