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

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

:root {
  --bg: #0A0A0A;
  --bg2: #141414;
  --bg3: #1C1C1C;
  --text: #FFFFFF;
  --muted: #888888;
  --border: #242424;
  --accent: #CAFF00;
  --accent-dark: #9ECC00;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  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: 0 40px;
  height: 64px;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--text);
  text-decoration: none;
}

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

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

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

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

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  font-size: 13px;
}

.lang-toggle button {
  background: none;
  border: none;
  color: var(--muted);
  padding: 5px 12px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}

.lang-toggle button.active {
  background: var(--accent);
  color: #000;
}

/* ── Page wrapper ── */
main { padding-top: 64px; }

/* ── Sections ── */
.section { padding: 100px 40px; max-width: 1100px; margin: 0 auto; }
.section-sm { padding: 60px 40px; max-width: 1100px; margin: 0 auto; }

/* ── Typography ── */
.display {
  font-family: var(--font-display);
  font-size: clamp(72px, 10vw, 130px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

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

h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
}

h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

p { color: #CCCCCC; line-height: 1.75; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: 4px;
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
  border: none;
}

.btn-accent {
  background: var(--accent);
  color: #000;
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(202,255,0,0.25);
}

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

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── Divider ── */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── Tag / pill ── */
.tag {
  display: inline-block;
  background: var(--bg3);
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  border: 1px solid var(--border);
}

.tag-accent {
  background: rgba(202,255,0,0.1);
  color: var(--accent);
  border-color: rgba(202,255,0,0.3);
}

/* ── Cards ── */
.card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  transition: border-color 0.2s;
}

.card:hover { border-color: #444; }

/* ── Grid ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 16px;
}

footer p { font-size: 13px; color: var(--muted); margin: 0; }
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--accent); }

/* ── Accent line ── */
.accent-line {
  display: inline-block;
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 24px;
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-2 { animation: fadeUp 0.6s 0.15s ease both; }
.fade-up-3 { animation: fadeUp 0.6s 0.3s ease both; }
.fade-up-4 { animation: fadeUp 0.6s 0.45s ease both; }

/* ── Responsive ── */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .section, .section-sm { padding: 60px 20px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  footer { padding: 32px 20px; }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 13px; }
}

@media (max-width: 540px) {
  .nav-links { display: none; }
}

/* ── Lang hidden ── */
[data-lang] { display: none; }
[data-lang].lang-active { display: block; }
.inline-lang { display: none; }
.inline-lang.lang-active { display: inline; }
