*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  -webkit-font-smoothing: antialiased;
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

input,
textarea,
select {
  background: none;
}

:root {
  --bg: #080c08;
  --bg2: #0d140d;
  --bgcard: #111a11;
  --border: #1e2e1e;
  --green: #a8ff3e;
  --greenlight: #c8ff6e;
  --greendim: rgba(168, 255, 62, 0.12);
  --white: #f4f4f0;
  --greylight: #b8c4b8;
  --grey: #6a7a6a;
  --greydark: #3a4a3a;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

section {
  padding: 7rem 0;
}

.accent {
  color: var(--green);
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
  display: block;
}

.section-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.section-intro {
  color: var(--greylight);
  font-size: 1.05rem;
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--green);
  color: var(--bg);
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--greenlight);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.btn--primary:hover::before {
  transform: scaleX(1);
}

.btn--primary span,
.btn--primary svg {
  position: relative;
  z-index: 1;
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--green);
  color: var(--green);
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease);
  position: relative;
  z-index: 1;
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn--primary:focus::before,
.btn--primary:active::before {
  transform: scaleX(1);
}

.btn--ghost:focus,
.btn--ghost:active {
  border-color: var(--green);
  color: var(--green);
}

.btn:focus svg,
.btn:active svg {
  transform: translateX(4px);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.btn--large {
  padding: 1.1rem 2.5rem;
  font-size: 1rem;
}

.btn--spaced {
  margin-top: 2rem;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--greydark);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--green);
}

::selection {
  background: var(--green);
  color: var(--bg);
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: background 0.3s, padding 0.3s;
}

#navbar.scrolled {
  background: rgba(8, 12, 8, 0.92);
  backdrop-filter: blur(16px);
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
}

.nav-logo span {
  color: var(--green);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--greylight);
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--green) !important;
  color: var(--bg) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 4px;
  font-weight: 600 !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--greenlight) !important;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-burger.open span:nth-child(2) {
  opacity: 0;
}

.nav-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

#footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 4rem 0 1.5rem;
}

.footer-contact p + p {
  margin-top: 0.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.footer-brand .nav-logo {
  font-size: 1.4rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--grey);
  line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links li a {
  font-size: 0.875rem;
  color: var(--grey);
  transition: color 0.3s;
}

.footer-links li a:hover,
.footer-contact a:hover,
.footer-links li a:focus-visible,
.footer-contact a:focus-visible,
.footer-links li a:active,
.footer-contact a:active {
  color: var(--green);
}

.footer-legal a:hover,
.footer-legal a:focus-visible,
.footer-legal a:active {
  color: var(--green);
}

.footer-contact p {
  font-size: 0.875rem;
  color: var(--grey);
  margin-bottom: 0.5rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--grey);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.75rem;
  color: var(--grey);
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: var(--green);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal--right {
  transform: translateX(40px);
}

.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}

@media (max-width: 900px) {
  section {
    padding: 5rem 0;
  }

  .nav-burger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.1rem;
    background: rgba(8, 12, 8, 0.96);
    border: 1px solid var(--border);
    border-radius: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: all 0.25s var(--ease);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.25);
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.35rem 0;
  }

  .nav-cta {
    display: inline-flex;
    justify-content: center;
  }

  .section-headline {
    font-size: 2.25rem;
  }
}

@media (max-width: 640px) {
  section {
    padding: 4.5rem 0;
  }

  .section-headline {
    font-size: 2rem;
    line-height: 1.15;
  }

  .btn {
    padding: 0.8rem 1.5rem;
  }

  .btn--large {
    padding: 1rem 1.75rem;
  }
}

@media (max-width: 500px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}