/* ─── FONTS ─────────────────────────────────────────────────── */
@font-face {
  font-family: 'Zalando Sans';
  src: url('../assets/fonts/ZalandoSans-Variable.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-stretch: 75% 125%;
  font-display: swap;
}
@font-face {
  font-family: 'Zalando Sans';
  src: url('../assets/fonts/ZalandoSans-Italic-Variable.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-stretch: 75% 125%;
  font-display: swap;
}

/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: #080808;
  color: rgba(255,255,255,0.88);
  font-family: 'Zalando Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── VARIABLES ─────────────────────────────────────────────── */
:root {
  --lime: #e6fd53;
  --lime-dim: rgba(230,253,83,0.12);
  --lime-border: rgba(230,253,83,0.25);
  --bg: #080808;
  --bg-card: rgba(255,255,255,0.03);
  --bg-card-hover: rgba(255,255,255,0.055);
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(255,255,255,0.14);
  --text: rgba(255,255,255,0.88);
  --muted: rgba(255,255,255,0.45);
  --muted-2: rgba(255,255,255,0.25);
  --max: 1160px;
  --nav-h: 64px;
  --r: 16px;
}

/* ─── TYPOGRAPHY ────────────────────────────────────────────── */
.display {
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 800;
  font-stretch: 125%;
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.display em {
  font-style: italic;
  font-weight: 400;
  color: var(--muted);
}
h2.section-title {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 700;
  font-stretch: 112.5%;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
h3 { font-size: 1.05rem; font-weight: 600; line-height: 1.35; }
p { line-height: 1.75; }
.label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
}
.muted { color: var(--muted); }

/* ─── NAV ───────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(8,8,8,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border);
}
.nav-logo {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  white-space: nowrap;
}
.nav-logo span { color: var(--lime); }
.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  display: inline-flex; align-items: center;
  background: var(--lime);
  color: #080808;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  transition: opacity 0.2s, transform 0.2s;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }
.hamburger {
  display: none;
  width: 36px; height: 36px;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px;
}
.hamburger span {
  display: block; width: 20px; height: 1.5px;
  background: rgba(255,255,255,0.7);
  transition: all 0.25s;
  border-radius: 2px;
}
.mobile-menu {
  display: none;
  position: fixed; inset: 0; top: var(--nav-h); z-index: 190;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(20px);
  flex-direction: column; padding: 2rem 1.5rem;
  gap: 0.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.15rem; font-weight: 600;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.mobile-menu .nav-cta {
  margin-top: 1rem;
  justify-content: center; padding: 1rem;
  border-radius: var(--r);
}

/* ─── LAYOUT ────────────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
section { padding: 7rem 0; }
.section-head { margin-bottom: 4rem; }
.section-head .label { margin-bottom: 0.9rem; }

/* ─── BADGE ─────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--lime-dim);
  border: 1px solid var(--lime-border);
  color: var(--lime);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--lime); border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

/* ─── CLAIM WIDGET ───────────────────────────────────────────── */
.claim {
  display: flex; align-items: stretch;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  max-width: 460px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.claim:focus-within {
  border-color: var(--lime-border);
  box-shadow: 0 0 0 3px var(--lime-dim);
}
.claim-prefix {
  display: flex; align-items: center;
  padding: 0 0.25rem 0 1.1rem;
  font-size: 0.9rem; font-weight: 500;
  color: var(--muted); white-space: nowrap;
  flex-shrink: 0;
}
.claim input {
  flex: 1; min-width: 0;
  background: none; border: none; outline: none;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem; font-weight: 600;
  padding: 0.95rem 0.5rem;
}
.claim input::placeholder { color: var(--muted-2); font-weight: 400; }
.claim-btn {
  display: flex; align-items: center;
  background: var(--lime);
  color: #080808;
  font-size: 0.875rem; font-weight: 700;
  padding: 0 1.4rem;
  white-space: nowrap;
  border-radius: 0 12px 12px 0;
  transition: background 0.15s, opacity 0.15s;
  flex-shrink: 0;
}
.claim-btn:hover { background: #d4e84b; }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: inherit; font-weight: 700; cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-primary {
  background: var(--lime); color: #080808;
  padding: 0.85rem 2rem; border-radius: 999px; font-size: 0.95rem;
}
.btn-primary:hover { background: #d4e84b; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(230,253,83,0.25); }
.btn-ghost {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text); padding: 0.85rem 2rem;
  border-radius: 999px; font-size: 0.95rem;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--border-hover); transform: translateY(-2px); }
.btn-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  color: var(--lime); font-size: 0.9rem; font-weight: 600;
}
.btn-link .arrow { transition: transform 0.2s; }
.btn-link:hover .arrow { transform: translateX(4px); }

/* ─── CARDS ─────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: background 0.2s, border-color 0.2s, transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s;
}
.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

/* ─── DIVIDER ────────────────────────────────────────────────── */
.divider { width: 100%; height: 1px; background: var(--border); }

/* ─── SCROLL REVEAL ──────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
[data-reveal].visible { opacity: 1; transform: none; }
[data-reveal][data-d="1"] { transition-delay: 0.08s; }
[data-reveal][data-d="2"] { transition-delay: 0.16s; }
[data-reveal][data-d="3"] { transition-delay: 0.24s; }
[data-reveal][data-d="4"] { transition-delay: 0.32s; }
[data-reveal][data-d="5"] { transition-delay: 0.40s; }
[data-reveal][data-d="6"] { transition-delay: 0.48s; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem clamp(1.25rem,4vw,2.5rem) 2rem;
}
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 2rem;
  padding-bottom: 2.5rem; margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand p { font-size: 0.875rem; color: var(--muted); margin-top: 0.75rem; line-height: 1.65; max-width: 220px; }
.footer-logo { font-size: 1.1rem; font-weight: 800; letter-spacing: -0.02em; }
.footer-logo span { color: var(--lime); }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; color: var(--muted-2); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 0.875rem; color: var(--muted); padding: 0.3rem 0; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: var(--muted-2); }

/* ─── MARQUEE ────────────────────────────────────────────────── */
.marquee-track {
  overflow: hidden; -webkit-mask: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-inner {
  display: flex; gap: 1rem;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee-inner:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── PAGE HEADER (inner pages) ─────────────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-h) + 5rem);
  padding-bottom: 5rem;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  section { padding: 5rem 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 640px) {
  section { padding: 4rem 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .claim { max-width: 100%; flex-wrap: wrap; border-radius: 14px; }
  .claim-btn { width: 100%; justify-content: center; padding: 0.9rem; border-radius: 0 0 12px 12px; }
  .claim input { padding-bottom: 0.25rem; }
}
