/* ------------------------
   ROOT THEME (Neo-Crypto)
------------------------- */
:root {
  --bg-main: #0E0E11;
  --bg-surface: #16161A;
  --border-subtle: rgba(255,255,255,0.06);

  --accent-primary: #7C7CFF;
  --accent-secondary: #A7F3D0;
  --text-primary: #FFFFFF;
  --text-muted: rgba(255,255,255,0.65);
}

/* ------------------------
   RESET
------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'General Sans', sans-serif;
  background: var(--bg-main);
  color: var(--text-primary);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ------------------------
   LAYOUT
------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
  margin: 0 auto;
}

/* ------------------------
   HEADER
------------------------- */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(14,14,17,0.6);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--text-primary);
}

/* ------------------------
   BUTTONS
------------------------- */
.btn-primary {
  background: var(--accent-primary);
  color: #0E0E11;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(124,124,255,0.3);
}

.btn-secondary {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 14px;
}

.btn-large {
  padding: 14px 28px;
  font-size: 15px;
}

/* ------------------------
   HERO
------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 120px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--accent-primary);
}

.hero p {
  font-family: 'Satoshi', sans-serif;
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ------------------------
   HERO BACKGROUND
------------------------- */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      600px circle at 20% 30%,
      rgba(124,124,255,0.18),
      transparent 60%
    ),
    radial-gradient(
      500px circle at 80% 60%,
      rgba(167,243,208,0.12),
      transparent 60%
    );
  z-index: 1;
  pointer-events: none;
}

/* ------------------------
   RESPONSIVE
------------------------- */
@media (max-width: 900px) {
  .nav {
    display: none;
  }
}
.desktop-cta {
  display: inline-flex;
}
@media (max-width: 900px) {
  .desktop-cta {
    display: none;
  }
}
@media (max-width: 900px) {
  .hero {
    align-items: flex-start;
    padding-top: 140px;
    padding-bottom: 60px;
  }

  .hero-content {
    margin-top: 40px;
  }
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  margin: 5px 0;
}
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(14,14,17,0.85);
  backdrop-filter: blur(16px);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 999;
}

.mobile-menu nav {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.mobile-menu a {
  font-size: 20px;
  font-weight: 600;
}

.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(14,14,17,0.75);
  backdrop-filter: blur(16px);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 999;
}

/* Inner panel */
.mobile-menu-inner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu-toggle span {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
@media (max-width: 900px) {
  .hero {
    min-height: auto;          /* 🔥 THIS IS THE KEY FIX */
    align-items: flex-start;
    padding-top: 110px;
    padding-bottom: 32px;
  }

  .hero-content {
    margin-top: 0;
  }
}
/* ------------------------
   TOP PERFORMING CRYPTOS
------------------------- */
.top-cryptos {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.top-cryptos-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      600px circle at 30% 20%,
      rgba(124,124,255,0.14),
      transparent 60%
    ),
    radial-gradient(
      500px circle at 70% 80%,
      rgba(167,243,208,0.10),
      transparent 60%
    );
  pointer-events: none;
}

/* ------------------------
   TOP PERFORMING CRYPTOS
------------------------- */
.top-cryptos h1 span{
  color: var(--accent-primary);
}
.top-cryptos {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.top-cryptos-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      600px circle at 30% 20%,
      rgba(124,124,255,0.14),
      transparent 60%
    ),
    radial-gradient(
      500px circle at 70% 80%,
      rgba(167,243,208,0.10),
      transparent 60%
    );
  pointer-events: none;
}

.top-cryptos-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  text-align: center; /* 🔥 KEY: centers heading & list */
}

.top-cryptos h1 {
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}

/* ------------------------
   CRYPTO LIST (DESKTOP)
------------------------- */
.crypto-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center; /* 🔥 center list items */
}

.crypto-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.crypto-item span {
  font-family: 'Satoshi', sans-serif;
  font-size: 16px;
  color: var(--text-primary);
}

/* ------------------------
   CRYPTO ICON (IMAGE HOLDER)
------------------------- */
.crypto-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06); /* subtle placeholder */
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Image inside icon (future-proof) */
.crypto-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hover animation — icon only */
.crypto-item:hover .crypto-icon {
  transform: scale(1.08);
  box-shadow: 0 0 0 6px rgba(124,124,255,0.12);
}

/* ------------------------
   MOBILE LAYOUT (UNCHANGED)
------------------------- */
@media (max-width: 900px) {
  .crypto-item {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .crypto-item span {
    font-size: 15px;
  }
}
@media (min-width: 901px) {
  .crypto-list {
    align-items: center; /* centers rows under the H1 */
  }

  .crypto-item {
    width: 260px; /* 👈 key line: forces same left edge */
    justify-content: flex-start;
  }
}
/* ------------------------
   TRADING SECTION
------------------------- */
.trading-section h1 span{
  color: var(--accent-primary);
}
.trading-section {
  padding: 100px 0;
  position: relative;
}

.trading-content {
  text-align: center;
  max-width: 1100px;
}

/* Heading */
.trading-content h1 {
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.02em;
  margin-bottom: 64px;
}

/* ------------------------
   GRID (DESKTOP)
------------------------- */
.trading-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  align-items: center;
}

/* ------------------------
   ITEM
------------------------- */
.trading-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Image placeholder */
.trading-image {
  width: 240px;
  height: 180px;
  border-radius: 14px;
  background-color: rgba(255, 255, 255, 0.04);
  margin-bottom: 24px;
}

/* Title */
.trading-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--accent-blue); /* blue-ish theme color */
  margin-bottom: 10px;
}

/* Text */
.trading-text {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 260px;
}

/* ------------------------
   MOBILE LAYOUT
------------------------- */
@media (max-width: 900px) {
  .trading-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
.trading-image {
    width: 100%;
    max-width: 240px;
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .trading-content h1 {
    margin-bottom: 48px;
  }
}

.trading-section-bg {
   position: absolute;
  inset: 0;
  background:
    radial-gradient(
      600px circle at 30% 20%,
      rgba(124,124,255,0.14),
      transparent 60%
    ),
    radial-gradient(
      500px circle at 70% 80%,
      rgba(167,243,208,0.10),
      transparent 60%
    );
  pointer-events: none;
}
.trading-grid {
  align-items: flex-start;
}
/* ------------------------
   PRICING SECTION
------------------------- */
.pricing {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.pricing-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      600px circle at 20% 30%,
      rgba(124,124,255,0.18),
      transparent 60%
    ),
    radial-gradient(
      500px circle at 80% 60%,
      rgba(167,243,208,0.12),
      transparent 60%
    );
  pointer-events: none;
}

.pricing-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.pricing h1 {
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}

/* ------------------------
   CARDS (DESKTOP)
------------------------- */
.pricing h1 span {
  color: var(--accent-primary);
}
.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.pricing-card {
  width: 340px;
  min-height: 420px;
  padding: 32px;
  border-radius: 16px;

  background: rgba(22, 22, 26, 0.55);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.06);

  text-align: left;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(124,124,255,0.25);
}

/* Headings */
.pricing-card h3 {
  color: var(--accent-primary);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
}

.pricing-card h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
}

/* Bullet list */
.pricing-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-card li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
}
/* ------------------------
   APP SECTION
------------------------- */
.app-section {
  padding: 120px 0;
}

.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

/* LEFT */
.app-left h1 {
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.store-buttons {
  display: flex;
  gap: 12px;
}

.store-buttons img {
  height: 48px;
  width: auto;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.store-buttons img:hover {
  transform: translateY(-2px);
}

/* RIGHT */
.app-right {
  display: flex;
  justify-content: center;
}

.app-image {
  width: 420px;
  height: auto;
  max-height: 520px;
  border-radius: 20px;

  box-shadow: 0 40px 80px rgba(0,0,0,0.35);
}

/* ------------------------
   MOBILE
------------------------- */
@media (max-width: 900px) {
  .app-section {
    padding: 80px 0;
  }

  .app-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* Reorder for mobile */
  .app-right {
    order: 1;
    margin-bottom: 32px;
  }

  .app-left {
    order: 2;
  }

  .store-buttons {
  flex-direction: column;   /* stack vertically */
  align-items: center;      /* center badges */
  gap: 12px;                /* small space between them */
}

  .app-image {
    width: 100%;
    max-width: 320px;
  }
}
/* ------------------------
   SUPPORT
------------------------- */
.support {
  position: relative;
  padding: 100px 0;            /* roomy as you selected */
  overflow: hidden;
}

.support-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      600px circle at 40% 30%,
      rgba(124,124,255,0.16),
      transparent 60%
    ),
    radial-gradient(
      500px circle at 60% 80%,
      rgba(167,243,208,0.12),
      transparent 60%
    );
  pointer-events: none;
}

.support-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.support h1 {
  font-size: clamp(26px, 4vw, 38px);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.support-email {
  font-family: 'Satoshi', sans-serif;
  font-size: 17px;
}

.support-email a {
  color: #7C7CFF;             /* theme bluish accent */
  text-decoration: none;
  transition: opacity 0.2s ease;
  font-weight: 700;
}

.support-email a:hover {
  opacity: 0.8;
}

/* Mobile — exactly same simple centering */
@media (max-width: 900px) {
  .support {
    padding: 80px 0;
  }

  .support h1 {
    font-size: 28px;
  }

  .support-email {
    font-size: 16px;
  }
}
/* ------------------------
   FOOTER — DESKTOP
------------------------- */
.site-footer{
  background:#000;
  padding:60px 0;
}

.footer-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  align-items:center;   /* KEY */
  gap:24px;
}

.footer-social-text{
  font-family:'Clash Display', sans-serif;
  font-size:18px;
  color:#fff;
  margin-bottom:12px;
}

.footer-icons{
  display:flex;
  flex-direction:row;
  gap:14px;
}

.footer-icons a{
  color:#7C7CFF; /* theme blue */
  font-size:20px;
  transition:transform .2s ease;
}

/* Bounce on hover */
.footer-icons a:hover{
  transform:translateY(-4px);
}

.footer-middle{
  display:flex;
  align-items:center;     /* vertical center */
  justify-content:center; /* horizontal center */
  height:56px;            /* match icon height from left section */
}

.footer-copy{
  font-family:'Clash Display', sans-serif; /* match other footer titles */
  font-size:18px;                          /* SAME size as left/right text */
  font-weight:400;
  color:#fff;                              /* pure white */
  opacity:.94;                             /* slight off-white feel */
}


.footer-right{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

.footer-news-text{
  font-family:'Clash Display', sans-serif;
  font-size:18px;
  color:#fff;
  margin-bottom:10px;
}

/* Input + button row */
.footer-news-row{
  display:flex;
  flex-direction:row;
  gap:8px;
}

.footer-news-row input{
  width:240px;
  height:42px;
  border-radius:10px;
  border:1px solid rgba(124,124,255,.4);
  background:rgba(255,255,255,.08);
  color:#fff;
  padding:0 12px;
  font-family:'Satoshi', sans-serif;
}

.footer-news-row button{
  background:#7C7CFF;
  border:none;
  height:42px;
  padding:0 14px;
  border-radius:10px;
  font-family:'Satoshi', sans-serif;
  font-weight:500;
  cursor:pointer;
  transition:background .2s ease, transform .2s ease;
}

.footer-news-row button:hover{
  background:#A3A3FF; /* more contrasting */
  transform:translateY(-1px);
}

/* ------------------------
   MOBILE VIEW
------------------------- */
@media (max-width:900px){

  .footer-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  /* Order stacked */
  .footer-left,
  .footer-right,
  .footer-middle{
    align-items:center;
  }

  .footer-icons{
    justify-content:center;
  }

  .footer-right{
    order:2;
    margin:24px 0;
  }

  .footer-middle{
    order:3;
  }

  .footer-left{
    order:1;
  }

  .footer-news-row{
    flex-direction:column;
    align-items:center;
  }

  .footer-news-row input,
  .footer-news-row button{
    width:260px;
  }
}
@media (max-width:900px){

  .site-footer,
  .footer-grid,
  .container{
    max-width:100%;
    overflow-x:hidden;   /* stop footer bleeding */
  }

  .footer-news-row input,
  .footer-news-row button{
    width:100%;          /* don’t exceed screen */
    max-width:260px;     /* keep your design intent */
  }

  .footer-news-row{
    width:100%;
    box-sizing:border-box;
    padding:0 16px;      /* safe padding */
  }

}

