:root {
  --bg: #ffffff;
  --text: #0a0a0a;
  --muted: #6b7280;
  --border: #e5e7eb;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: clip;
}

* {
  box-sizing: border-box;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* ✅ HERO */

.hero {
  position: relative;
  min-height: 100svh;
  width: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(255,255,255,1));
}

.hero-content {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 0 0;
  color: white;
  text-align: center;
}

.hero h1 { font-size: 56px; margin-bottom: 10px; }
.hero h2 { font-size: 32px; font-weight: 400; margin-bottom: 24px; }

.hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.hero-micro {
  margin-top: 16px;
  font-size: 14px;
  opacity: 0.85;
}

/* ✅ CTA */

.cta-row {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

button {
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: black;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

button.secondary {
  background: white;
  color: black;
}

/* ✅ CONTAINER */

.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ✅ LIGHT SECTIONS */

.light {
  background: #f9fafb;
  padding: 100px 0;
}

/* ✅ TYPOGRAPHY */

h1, h2 { letter-spacing: -0.02em; }
h2 { font-size: 32px; margin-bottom: 24px; }

p { font-size: 18px; max-width: 760px; }

ul { padding-left: 20px; }
li { margin-bottom: 10px; font-size: 18px; }

.muted { color: var(--muted); }

/* ✅ PARTNERS */

.platform-block {
  margin-top: 64px;
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fafafa;
  max-width: 820px;
}

.platform-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.platform-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  margin-bottom: 12px;
}

.platform-list i {
  font-size: 20px;
  color: #9ca3af;
  width: 24px;
  text-align: center;
}

/* ✅ JOIN */

.join { text-align: center; }

/* ✅ FOOTER */

footer {
  border-top: 1px solid var(--border);
  padding: 60px 20px;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

footer p {
  margin: 0;
  text-align: center; 
  font-size: 14px;
  max-width: 720px;
}

/* ✅ SWOOSH */

.swoosh-section { overflow: hidden; }

.swoosh-rail-wrapper {
  margin-top: 48px;
  width: 100%;
  overflow: hidden;
}

.swoosh-rail {
  display: flex;
  gap: 24px;
  animation: swooshScroll 40s linear infinite;
  will-change: transform;
}

.swoosh-rail:hover { animation-play-state: paused; }

.swoosh-card {
  min-width: 300px;
  max-width: 320px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  text-decoration: none;
  color: var(--text);
}

@keyframes swooshScroll {
  0% { transform: translate3d(0,0,0); }
  100% { transform: translate3d(-50%,0,0); }
}

/* ✅ MOBILE */

@media (max-width: 768px) {
  .hero h1 { font-size: 36px; }
  .hero h2 { font-size: 20px; }
  .hero p { font-size: 16px; }
  .swoosh-card { min-width: 260px; }
}