:root {
  --bg: #0b0b0d;
  --bg-alt: #111117;
  --card: rgba(255, 255, 255, 0.03);
  --yellow: #f6c90e;
  --yellow-strong: #ffd029;
  --text: #f4f4f6;
  --muted: #c6c7d0;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

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

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 20%, rgba(246, 201, 14, 0.12), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(246, 201, 14, 0.08), transparent 28%),
    var(--bg);
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  margin: 0 0 12px;
  letter-spacing: -0.4px;
}

.brand-name {
  font-family: "Lora", "Times New Roman", serif;
  font-style: italic;
  text-transform: lowercase;
  letter-spacing: 0.3px;
}

p {
  margin: 0 0 18px;
  color: var(--muted);
}

a {
  color: var(--text);
  text-decoration: none;
}

.page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 24px 80px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  margin-bottom: 24px;
  background: rgba(11, 11, 13, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.logo {
  font-family: "Lora", "Times New Roman", serif;
  font-weight: 600;
  font-style: italic;
  font-size: 20px;
  letter-spacing: 0.3px;
  color: var(--yellow);
}

.nav-links {
  display: flex;
  gap: 16px;
  font-size: 14px;
}

.nav-links a {
  padding: 9px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  font-weight: 600;
  letter-spacing: 0.1px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.nav-links a:hover {
  background: rgba(246, 201, 14, 0.14);
  color: var(--yellow-strong);
  border-color: rgba(246, 201, 14, 0.35);
  box-shadow: 0 10px 24px rgba(246, 201, 14, 0.15);
}

.actions {
  display: flex;
  gap: 10px;
}

.btn {
  border: none;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--yellow), var(--yellow-strong));
  color: #0b0b0d;
  box-shadow: 0 10px 30px rgba(246, 201, 14, 0.35);
}

.btn.ghost {
  position: relative;
}

.badge-soon {
  position: absolute;
  top: -6px;
  right: -6px;
  background: rgba(0, 0, 0, 0.9);
  color: var(--yellow);
  font-size: 9px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 8px;
  border: 1px solid var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

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

.btn:active {
  transform: translateY(0);
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: #000;
  min-height: 520px;
  margin-bottom: 48px;
  box-shadow: var(--shadow);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url("./background.jpg") center/cover no-repeat;
  filter: saturate(0.7);
  opacity: 0.2;
}

.hero__animation {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.animated-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    rgba(246, 201, 14, 0.45) 0%,
    rgba(0, 0, 0, 0.6) 25%,
    rgba(246, 201, 14, 0.35) 50%,
    rgba(0, 0, 0, 0.7) 75%,
    rgba(246, 201, 14, 0.45) 100%
  );
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--yellow-strong);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--yellow-strong), 0 0 30px var(--yellow-strong), 0 0 45px rgba(246, 201, 14, 0.6);
  animation: float 20s infinite ease-in-out;
  opacity: 0.95;
}

.particle:nth-child(1) {
  left: 10%;
  top: 20%;
  animation-delay: 0s;
  animation-duration: 18s;
}

.particle:nth-child(2) {
  left: 30%;
  top: 60%;
  animation-delay: 2s;
  animation-duration: 22s;
}

.particle:nth-child(3) {
  left: 50%;
  top: 10%;
  animation-delay: 4s;
  animation-duration: 20s;
}

.particle:nth-child(4) {
  left: 70%;
  top: 40%;
  animation-delay: 1s;
  animation-duration: 19s;
}

.particle:nth-child(5) {
  left: 85%;
  top: 70%;
  animation-delay: 3s;
  animation-duration: 21s;
}

.particle:nth-child(6) {
  left: 15%;
  top: 80%;
  animation-delay: 5s;
  animation-duration: 23s;
}

.particle:nth-child(7) {
  left: 60%;
  top: 30%;
  animation-delay: 2.5s;
  animation-duration: 17s;
}

.particle:nth-child(8) {
  left: 90%;
  top: 50%;
  animation-delay: 4.5s;
  animation-duration: 24s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.95;
  }
  25% {
    transform: translate(30px, -50px) scale(1.2);
    opacity: 1;
  }
  50% {
    transform: translate(-20px, -100px) scale(0.9);
    opacity: 0.85;
  }
  75% {
    transform: translate(40px, -30px) scale(1.1);
    opacity: 0.98;
  }
}

.floating-shapes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.6;
  animation: shapeFloat 25s infinite ease-in-out;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--yellow-strong), rgba(246, 201, 14, 0.4), transparent);
  left: -100px;
  top: -100px;
  animation-duration: 20s;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--yellow-strong), rgba(246, 201, 14, 0.5), transparent);
  right: -150px;
  bottom: -150px;
  animation-duration: 30s;
  animation-delay: 5s;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--yellow-strong), rgba(246, 201, 14, 0.6), transparent);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation-duration: 25s;
  animation-delay: 10s;
}

@keyframes shapeFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(50px, -80px) scale(1.1);
  }
  66% {
    transform: translate(-30px, 60px) scale(0.9);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.4), rgba(11, 11, 13, 0.3)),
    radial-gradient(circle at 20% 20%, rgba(246, 201, 14, 0.15), transparent 35%),
    radial-gradient(circle at 80% 10%, rgba(246, 201, 14, 0.12), transparent 40%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 58px 52px;
  max-width: 680px;
}

.hero h1 {
  font-size: clamp(32px, 6vw, 48px);
  margin-bottom: 12px;
}

.accent {
  color: var(--yellow);
}

.lead {
  max-width: 560px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.6);
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 16px;
}

.hero__cta {
  display: flex;
  gap: 12px;
  margin: 22px 0 12px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.stat {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border);
}

.stat .label {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.stat .value {
  font-size: 20px;
  font-weight: 700;
  color: var(--yellow-strong);
}

.section {
  margin: 64px 0;
}

.section__header {
  text-align: left;
  max-width: 680px;
  margin-bottom: 28px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 10px;
}

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

.grid {
  display: grid;
  gap: 18px;
}

.features {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.liquidity {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.security {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.glass {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.section--dark {
  padding: 42px 32px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(17, 17, 23, 0.9), rgba(12, 12, 16, 0.9));
}

.timeline {
  position: relative;
  border-left: 2px solid var(--border);
  margin-left: 14px;
  padding-left: 22px;
  display: grid;
  gap: 22px;
}

.timeline__item {
  position: relative;
}

.timeline__item .dot {
  position: absolute;
  left: -33px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 8px rgba(246, 201, 14, 0.12);
}

.cta {
  text-align: center;
}

.cta__card {
  background: linear-gradient(135deg, rgba(246, 201, 14, 0.12), rgba(11, 11, 13, 0.8));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 30px;
  box-shadow: var(--shadow);
}

.cta__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 0 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
  flex-wrap: wrap;
}

.footer__links {
  display: flex;
  gap: 14px;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--muted);
  transition: all 0.3s ease;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}

.social-link:hover {
  color: var(--yellow);
  background: rgba(246, 201, 14, 0.1);
  border-color: var(--yellow);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(246, 201, 14, 0.2);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footnote {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

[data-animate] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .topbar {
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .actions {
    width: 100%;
    justify-content: flex-end;
  }

  .hero__content {
    padding: 42px 28px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .page-wrap {
    padding: 18px 16px 64px;
  }

  .topbar {
    position: static;
  }

  .nav-links,
  .actions {
    justify-content: center;
  }

  .hero {
    min-height: 480px;
  }

  .hero__cta,
  .cta__actions {
    flex-direction: column;
  }

  .section {
    margin: 46px 0;
  }

  .footer {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }

  .footer__social {
    order: -1;
  }
}

