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

:root {
  --ink: #0D1117;
  --steel: #1A2332;
  --slate: #253347;
  --mid: #3D5166;
  --mist: #8FA5BB;
  --ice: #C8D8E8;
  --white: #F0F5FA;
  --accent: #00C8A0;
  --accent2: #00A882;
  --gold: #E8B84B;
  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  padding-top: var(--nav-h);
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4rem;
  background: rgba(13,17,23,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,200,160,0.15);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--accent); }

.nav-links { display: flex; gap: 2.2rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--mist);
  text-decoration: none;
  font-size: 1.35rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--accent); border-bottom-color: var(--accent); }
.nav-cta {
  background: var(--accent) !important;
  color: var(--ink) !important;
  padding: 0.45rem 1.1rem !important;
  font-weight: 500 !important;
  border-bottom: none !important;
}
.nav-cta:hover { background: var(--accent2) !important; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--ink);
  padding: 0.85rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 1.28rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--accent2); transform: translateY(-2px); }

.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(143,165,187,0.4);
  color: var(--mist);
  padding: 0.85rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.28rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ── SECTION LABELS ── */
.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 1.05rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.section-label::before { content: ''; width: 28px; height: 1px; background: var(--accent); }

.section-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 2.5rem;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--steel);
  padding: 5rem 4rem 4rem;
  border-bottom: 1px solid rgba(0,200,160,0.1);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,200,160,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,160,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-label { position: relative; }
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  position: relative;
}
.page-hero h1 em { color: var(--accent); font-style: normal; }
.page-hero p {
  color: var(--mist);
  max-width: 580px;
  font-size: 1rem;
  margin-top: 1.5rem;
  position: relative;
}

/* ── FOOTER ── */
footer {
  background: var(--steel);
  border-top: 1px solid rgba(0,200,160,0.12);
  padding: 2.5rem 4rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: var(--white);
  text-decoration: none;
}
.footer-logo span { color: var(--accent); }
.footer-links { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.footer-links a {
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-copy { font-size: 1.05rem; color: var(--mid); letter-spacing: 0.05em; }

/* ── MARQUEE ── */
.marquee-wrap { background: var(--accent); overflow: hidden; padding: 0.85rem 0; }
.marquee-track {
  display: flex; gap: 3rem;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.43rem;
  letter-spacing: 0.12em;
  color: var(--ink);
  flex-shrink: 0;
}
.marquee-dot { color: rgba(13,17,23,0.4) !important; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeLeft { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--mid); }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }
