@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800&family=Teko:wght@500;600;700&display=swap');

:root {
  --bg: #0a0c10;
  --bg-soft: #12161e;
  --surface: #161b24;
  --border: rgba(255, 255, 255, 0.12);
  --text: #f2f2f0;
  --muted: #9aa3b2;
  --green: #3ecf6a;
  --green-soft: #2a8f4a;
  --fn-yellow: #f5c518;
  --fn-blue: #1493ff;
  --fn-cyan: #1493ff;
  --accent: var(--fn-yellow);
  --accent-2: var(--fn-blue);
  --radius: 10px;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  position: relative;
  isolation: isolate;
  background-color: var(--bg);
  background-image:
    linear-gradient(180deg, #10141c 0%, var(--bg) 38%, #07090d 100%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 22px,
      rgba(245, 197, 24, 0.015) 22px,
      rgba(245, 197, 24, 0.015) 23px
    );
}

main,
.site-header,
.site-footer,
.section,
.hero,
.ff-hero,
.legal-hero {
  position: relative;
  z-index: 2;
}

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

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

.container {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10, 12, 16, 0.94);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand span {
  font-family: 'Teko', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand .at {
  color: var(--fn-yellow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border-radius: 6px;
  background: var(--fn-yellow);
  color: #121212 !important;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.88rem;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 8px;
  padding: 0.55rem 0.8rem;
  cursor: pointer;
}

.site-footer {
  margin-top: 5rem;
  border-top: 1px solid var(--border);
  background: #07090d;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.5rem 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-brand img {
  width: 40px;
  height: 40px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  color: var(--muted);
}

.footer-copy {
  width: 100%;
  color: var(--muted);
  font-size: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.2rem;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--fn-yellow);
  color: #121212;
}

.btn-primary:hover {
  background: #ffd84a;
}

.btn-secondary {
  background: transparent;
  border-color: rgba(245, 197, 24, 0.55);
  color: #ffe9a0;
}

.section {
  padding: 4.5rem 0;
}

.eyebrow {
  color: var(--fn-yellow);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 0.8rem;
}

h1,
h2,
h3 {
  font-family: 'Teko', sans-serif;
  line-height: 1.05;
  margin: 0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    background: rgba(10, 12, 16, 0.98);
    border-bottom: 1px solid var(--border);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 0.9rem 0.4rem;
  }
}
