:root {
  --bg: #050816;
  --bg-alt: #0b1020;
  --accent: #facc15;
  --accent-soft: rgba(250, 204, 21, 0.15);
  --text: #f9fafb;
  --muted: #9ca3af;
  --card: #111827;
  --border: #1f2937;
}

/* GLOBAL */

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #111827 0, #020617 50%);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

/* HEADER / NAV */

header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(2, 6, 23, 0.9),
    rgba(2, 6, 23, 0.7),
    transparent
  );
  border-bottom: 1px solid rgba(31, 41, 55, 0.6);
}

.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.15rem;
}

.logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, #facc15 0, #f97316 45%, #111827 80%);
  box-shadow: 0 0 25px rgba(250, 204, 21, 0.6);
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--muted);
  position: relative;
  padding-bottom: 0.1rem;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* BUTTONS */

.btn {
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: radial-gradient(circle at top left, #facc15, #f97316);
  color: #111827;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 10px 25px rgba(250, 204, 21, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    filter 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 14px 30px rgba(250, 204, 21, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--border);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(148, 163, 184, 0.08);
}

/* LAYOUT */

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

/* HERO */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.6fr);
  gap: 2.5rem;
  align-items: center;
  padding: 3rem 0 2.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.35);
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.hero-badge span.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.9);
}

.hero-title {
  font-size: clamp(2.1rem, 3.4vw + 1rem, 3.2rem);
  line-height: 1.08;
  margin-bottom: 0.7rem;
}

.hero-title span {
  background: linear-gradient(to right, #facc15, #f97316, #fb7185);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: var(--muted);
  max-width: 460px;
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 1.3rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.hero-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--muted);
}

/* HERO CARD */

.hero-card {
  background: radial-gradient(circle at top, #1f2937, #020617 65%);
  border-radius: 1.7rem;
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(55, 65, 81, 0.85);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.9);
  position: relative;
  overflow: hidden;
}

.hero-orbit {
  position: absolute;
  inset: -30%;
  opacity: 0.5;
  background:
    radial-gradient(circle at 20% 0, rgba(250, 204, 21, 0.3), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(56, 189, 248, 0.3), transparent 55%),
    radial-gradient(circle at 10% 80%, rgba(248, 113, 113, 0.25), transparent 55%);
  filter: blur(1px);
  pointer-events: none;
}

.hero-token {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* HERO VISUAL: DALA COIN + ETH */

.hero-visual {
  margin-bottom: 1rem;
}

.visual-scene {
  position: relative;
  width: 260px;
  height: 220px;
  margin: 0 auto 0.8rem;
  border-radius: 1.4rem;
  background:
    radial-gradient(circle at top, rgba(250, 204, 21, 0.15), transparent 60%),
    radial-gradient(circle at 80% 100%, rgba(56, 189, 248, 0.18), transparent 55%),
    linear-gradient(to bottom, #020617, #020617);
  border: 1px solid rgba(55, 65, 81, 0.9);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
  overflow: hidden;
}

.visual-orbit {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 20% 0, rgba(250, 204, 21, 0.25), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(56, 189, 248, 0.25), transparent 55%),
    radial-gradient(circle at 10% 80%, rgba(248, 113, 113, 0.18), transparent 55%);
  opacity: 0.7;
  filter: blur(4px);
}

/* Ethereum hologram */

.eth-hologram {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 10px 25px rgba(56, 189, 248, 0.7));
  animation: floatY 6s ease-in-out infinite;
}

.eth-diamond {
  position: absolute;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #38bdf8, #22c55e);
  transform: rotate(45deg);
  border-radius: 8px;
  opacity: 0.85;
}

.eth-diamond--top {
  top: -6px;
  background: linear-gradient(135deg, #38bdf8, #a5b4fc);
}

.eth-diamond--bottom {
  bottom: -6px;
  background: linear-gradient(135deg, #22c55e, #0ea5e9);
}

/* DALA coin logo */

.coin-logo {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #fef9c3, #facc15, #f97316);
  box-shadow:
    0 0 0 2px rgba(250, 204, 21, 0.8),
    0 12px 30px rgba(250, 204, 21, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: coinFloat 4.5s ease-in-out infinite;
}

.coin-ring {
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  border: 2px solid rgba(251, 249, 196, 0.8);
  box-shadow: 0 0 10px rgba(251, 249, 196, 0.4) inset;
}

.coin-core {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 20%, #fef3c7, #fde68a);
  box-shadow:
    0 0 6px rgba(248, 250, 252, 0.7) inset,
    0 0 18px rgba(251, 191, 36, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.coin-letter {
  font-weight: 800;
  font-size: 2.1rem;
  color: #111827;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6),
    0 3px 6px rgba(0, 0, 0, 0.3);
}

.hero-visual-caption {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
}

/* TOKEN INFO */

.token-badge {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.9rem;
  border-radius: 0.9rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(75, 85, 99, 0.9);
  font-size: 0.8rem;
  gap: 1rem;
}

.token-badge strong {
  font-size: 0.9rem;
}

.token-badge span.label {
  color: var(--muted);
  font-size: 0.75rem;
}

.token-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.pill {
  font-size: 0.75rem;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  background: rgba(31, 41, 55, 0.85);
  border: 1px solid rgba(55, 65, 81, 0.9);
  color: var(--muted);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.4rem;
}

.stat {
  padding: 0.65rem 0.7rem;
  border-radius: 0.85rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(55, 65, 81, 0.9);
  font-size: 0.8rem;
}

.stat-label {
  color: var(--muted);
  font-size: 0.7rem;
  margin-bottom: 0.15rem;
}

.stat-value {
  font-weight: 600;
  font-size: 0.9rem;
}

.contract-box {
  margin-top: 0.8rem;
  padding: 0.6rem 0.7rem;
  border-radius: 0.85rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px dashed rgba(75, 85, 99, 0.9);
  font-size: 0.78rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
  color: var(--muted);
}

.contract-code {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo,
    Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.75rem;
  overflow-wrap: anywhere;
}

.copy-btn {
  font-size: 0.7rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.7);
  color: var(--muted);
  cursor: pointer;
}

/* SECTIONS */

section {
  margin: 2.5rem 0 0;
  padding: 2rem 1.5rem;
  border-radius: 1.7rem;
  background: radial-gradient(circle at top left, #020617, #020617);
  border: 1px solid rgba(31, 41, 55, 0.9);
}

section + section {
  margin-top: 1.8rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.section-title {
  font-size: 1.35rem;
}

.section-kicker {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.section-description {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 640px;
  line-height: 1.6;
}

.columns-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
}

.card {
  padding: 1.2rem 1.1rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(31, 41, 55, 0.9);
  background: radial-gradient(circle at top left, #020617, #020617);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.7);
  font-size: 0.9rem;
}

.card-title {
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.card-subtitle {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 0;
}

.list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.list li::before {
  content: "•";
  color: var(--accent);
  margin-top: 0.05rem;
  font-size: 1rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
}

.pill-soft {
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(15, 23, 42, 0.85);
  font-size: 0.8rem;
  color: var(--muted);
}

/* ROADMAP */

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.2rem;
  margin-top: 0.4rem;
}

.phase {
  padding: 1rem 0.9rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: radial-gradient(circle at top, #020617, #020617);
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

.phase-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.phase-title {
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.phase ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
}

.phase ul li {
  margin-bottom: 0.35rem;
  position: relative;
  padding-left: 0.9rem;
  font-size: 0.85rem;
}

.phase ul li::before {
  content: "";
  position: absolute;
  left: 0.25rem;
  top: 0.45rem;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent);
}

/* HOW TO BUY */

.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
  margin-top: 0.6rem;
}

.step {
  padding: 0.9rem 0.9rem;
  border-radius: 1rem;
  border: 1px solid rgba(31, 41, 55, 0.9);
  background: rgba(15, 23, 42, 0.9);
  font-size: 0.88rem;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.1);
  border: 1px solid rgba(250, 204, 21, 0.6);
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
  color: var(--accent);
}

/* COMMUNITY */

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.8rem;
  font-size: 0.88rem;
}

.social-tag {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(15, 23, 42, 0.9);
  color: var(--muted);
}

/* FOOTER */

footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 2.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.9);
}

footer a {
  color: var(--muted);
}

/* ANIMATIONS */

@keyframes floatY {
  0% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-6px);
  }
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
}

@keyframes coinFloat {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-4px);
  }
  100% {
    transform: translateX(-50%) translateY(0);
  }
}
/* Floating particles inside hero visual */

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  filter: blur(2px);
  animation: particleFloat 6s infinite ease-in-out;
  pointer-events: none;
}

@keyframes particleFloat {
  0%   { transform: translateY(0) scale(1); opacity: 0.4; }
  50%  { transform: translateY(-15px) scale(1.4); opacity: 0.9; }
  100% { transform: translateY(0) scale(1); opacity: 0.4; }
}

/* Rotating glow ring behind coin */
.coin-logo::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  top: -25%;
  left: -25%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.25), transparent 70%);
  animation: spinGlow 12s linear infinite;
  filter: blur(20px);
  z-index: -1;
}

@keyframes spinGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* RESPONSIVE */

@media (max-width: 880px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 2rem;
  }

  header {
    position: static;
  }

  .nav {
    padding-inline: 1rem;
  }

  main {
    padding-inline: 1rem;
  }

  section {
    padding-inline: 1rem;
  }

  footer {
    padding-inline: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .visual-scene {
    width: 220px;
    height: 200px;
  }
}
