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

:root {
  --bg: #050019;
  --bg-soft: rgba(6, 0, 30, 0.9);
  --card: rgba(10, 3, 45, 0.96);
  --border: rgba(255, 255, 255, 0.12);
  --accent: #4ea4ff;
  --accent-soft: rgba(78, 164, 255, 0.18);
  --accent-strong: #76c0ff;
  --text: #ffffff;
  --muted: #a6a3cf;
  --radius-lg: 20px;
  --shadow-soft: 0 20px 45px rgba(0, 0, 0, 0.75);
}

html, body {
  height: 100%;
}

body {
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.6;
}

/* BACKGROUND VIDEO LAYER */

.page-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: saturate(1.05) contrast(1.1);
}

.page-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, rgba(140, 84, 255, 0.6), rgba(12, 0, 45, 0.9));
  mix-blend-mode: multiply;
  z-index: -1;
}

.page-content {
  min-height: 100vh;
  background: linear-gradient(to bottom, rgba(5, 0, 25, 0.8), rgba(5, 0, 25, 0.96));
}

/* NAV */

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(20px);
  background: linear-gradient(to bottom, rgba(5, 0, 25, 0.96), rgba(5, 0, 25, 0.8));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.logo-text {
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  gap: 1.4rem;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  transition: width 0.18s ease-out;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions .nav-cta {
  font-size: 0.8rem;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
  white-space: nowrap;
}

.btn-primary {
  background: radial-gradient(circle at 10% 0, var(--accent-strong) 0, var(--accent) 40%, #3a6fff 100%);
  color: #040019;
  box-shadow: var(--shadow-soft);
}

.btn-ghost {
  background: rgba(12, 4, 50, 0.9);
  border: 1px solid var(--border);
  color: var(--text);
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.07);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.78);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.7);
}

/* SECTIONS */

.section {
  padding: 4rem 1.5rem;
}

.section-inner {
  max-width: 1050px;
  margin: 0 auto;
}

.section h2 {
  font-size: 1.9rem;
  margin-bottom: 0.7rem;
}

.section-lead {
  color: var(--muted);
  max-width: 36rem;
  margin-bottom: 1.8rem;
}

/* HERO */

.hero {
  padding-top: 4.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.8rem;
  align-items: center;
}

.label-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.75rem;
  margin-bottom: 0.7rem;
  background: rgba(5, 0, 25, 0.8);
}

.hero h1 {
  font-size: clamp(2.8rem, 4vw, 3.4rem);
  margin-bottom: 0.6rem;
}

.hero-subtitle {
  color: var(--muted);
  max-width: 32rem;
  margin-bottom: 1.5rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-art {
  position: relative;
  justify-self: center;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 12%;
  background: radial-gradient(circle at 30% 0, rgba(255, 255, 255, 0.12), transparent 60%);
  filter: blur(14px);
  z-index: -1;
}

.hero-art img,
.hero-art video {
  max-width: 380px;
  width: 100%;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-soft);
}

.hero-video {
  display: block;
  object-fit: cover;
}

/* CONTRACT STRIP */

.contract-strip {
  padding-top: 1.5rem;
  padding-bottom: 0;
}

.contract-inner {
  background: linear-gradient(90deg, rgba(12, 3, 50, 0.96), rgba(8, 2, 36, 0.96));
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
}

.contract-label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  white-space: nowrap;
}

.contract-label .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #40e29a;
}

.contract-value {
  flex: 1;
  font-family: monospace;
  font-size: 0.8rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(4, 0, 24, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.btn-copy {
  padding-inline: 1.2rem;
  font-size: 0.8rem;
}

/* CONTRACT SECTION */

.contract-section {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(131, 108, 249, 0.04));
  padding: 3rem 0;
}

.contract-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.contract-box {
  max-width: 800px;
  margin: 0 auto 2rem;
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.contract-address-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.contract-label {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

.contract-address {
  flex: 1;
  min-width: 200px;
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 0.9rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.7rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  overflow: hidden;
  text-overflow: ellipsis;
}

.trading-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}

.trading-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
}

.trading-link:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.3);
}

.trading-link svg {
  flex-shrink: 0;
}

.trading-link.dexscreener {
  border-color: rgba(66, 153, 225, 0.3);
}

.trading-link.dexscreener:hover {
  border-color: rgba(66, 153, 225, 0.8);
  box-shadow: 0 12px 40px rgba(66, 153, 225, 0.3);
}

.trading-link.dextools {
  border-color: rgba(139, 92, 246, 0.3);
}

.trading-link.dextools:hover {
  border-color: rgba(139, 92, 246, 0.8);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.3);
}

/* CARDS */

.card {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

/* ABOUT */

.about .section-inner {
  max-width: 950px;
  margin: 0 auto;
}

.about-text {
  max-width: 800px;
  margin: 0 auto;
}

.about-text h2 {
  margin-bottom: 0.8rem;
}

.about-text p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.about-text p + p {
  margin-top: 1rem;
}

.about-subtitle {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent-strong);
  margin-bottom: 1.8rem;
}

.about-list {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.about-list li {
  padding: 0.7rem 0;
  padding-left: 1.8rem;
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
}

.about-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
  font-size: 1rem;
}

.about-list li strong {
  color: var(--text);
  font-weight: 600;
}

.about-highlight {
  margin-top: 1.8rem;
  padding: 1.2rem 1.5rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(131, 108, 249, 0.08));
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  font-size: 1rem;
}

.about-highlight strong {
  color: var(--accent-strong);
  font-weight: 700;
}

/* About Banner */
.about-banner {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.about-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* TOOLS */

.tools {
  background: radial-gradient(circle at top, rgba(120, 84, 255, 0.55), rgba(5, 0, 25, 0.98));
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 950px;
  margin: 0 auto;
}

.tool-card {
  padding: 1.1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.tool-pill {
  align-self: flex-start;
  padding: 0.15rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.tool-pill.live {
  border-color: var(--accent-soft);
}

.tool-pill.soon {
  border-color: var(--accent);
  color: var(--accent-strong);
}

.tool-card h3 {
  font-size: 1rem;
}

.tool-card p {
  font-size: 0.86rem;
  color: var(--muted);
}

.tool-card-link {
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.tool-card-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.3);
  border-color: rgba(99, 102, 241, 0.4);
}

/* Utility Tools Section */
.utility-tools {
  background: linear-gradient(to bottom, rgba(5, 0, 25, 0.96), rgba(99, 102, 241, 0.1));
}

/* HOW TO BUY */

.how-to {
  background: linear-gradient(to bottom, rgba(5, 0, 25, 0.96), rgba(4, 0, 22, 1));
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.step-card {
  padding: 1.1rem 1rem;
}

.step-number {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  margin-bottom: 0.55rem;
}

.step-card h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.step-card p {
  font-size: 0.86rem;
  color: var(--muted);
}

.swap-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

/* COMMUNITY */

.community {
  background: linear-gradient(to bottom, rgba(99, 102, 241, 0.1), rgba(5, 0, 25, 0.96));
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
}

.social-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(99, 102, 241, 0.3);
  border-color: rgba(99, 102, 241, 0.5);
}

.social-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.social-icon.telegram {
  background: linear-gradient(135deg, #0088cc, #229ED9);
  color: white;
}

.social-icon.twitter {
  background: linear-gradient(135deg, #1DA1F2, #14171A);
  color: white;
}

.social-card:hover .social-icon {
  transform: scale(1.1);
}

.social-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.social-info p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

/* FOOTER */

.footer {
  padding: 2.8rem 1.5rem 3rem;
  background: rgba(3, 0, 18, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-inner {
  max-width: 1050px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
  margin-bottom: 2.2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.footer-contact {
  text-align: center;
  padding: 1.5rem 0;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.contact-label {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.contact-email {
  display: inline-block;
  font-size: 1.1rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.contact-email:hover {
  color: var(--accent-strong);
  text-decoration: underline;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.footer-title {
  font-weight: 700;
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 2.5rem;
  font-size: 0.82rem;
}

.footer-heading {
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.footer-links a,
.footer-links span {
  display: block;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 0.15rem;
}

.disclaimer {
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 0.6rem;
}

.copy {
  font-size: 0.75rem;
  color: rgba(180, 177, 218, 0.9);
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-art {
    order: -1;
  }
  .contract-inner {
    border-radius: 18px;
  }
  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .nav-inner {
    flex-wrap: wrap;
  }
  .nav-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  .section {
    padding-inline: 1.1rem;
  }
  .footer-top {
    flex-direction: column;
  }
  .footer-links {
    justify-content: space-between;
  }
}

@media (max-width: 520px) {
  .tools-grid,
  .steps-grid,
  .social-links {
    grid-template-columns: 1fr;
  }
  .contract-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .contract-value {
    text-align: center;
  }
}
