/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: linear-gradient(90deg, #2d1f00 0%, #1a1200 50%, #2d1f00 100%);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  position: relative;
}

.announcement-bar__inner {
  display: flex;
  align-items: center;
  gap: 8px;
}

.announcement-bar__badge {
  background: var(--accent);
  color: #181a20;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 2px;
}

.announcement-bar a { color: var(--accent); font-weight: 500; }

.announcement-bar__close {
  position: absolute;
  right: 12px;
  color: var(--text-third);
  font-size: 18px;
  line-height: 1;
  padding: 4px 8px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 60px 24px 50px;
  background: var(--bg-secondary);
  overflow: hidden;
  background-image:
    linear-gradient(rgba(240,185,11,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,185,11,0.06) 1px, transparent 1px),
    linear-gradient(rgba(240,185,11,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,185,11,0.03) 1px, transparent 1px);
  background-size: 80px 80px, 80px 80px, 20px 20px, 20px 20px;
  background-position: -1px -1px;
  animation: gridMove 20s linear infinite;
}

/* Grid fade mask — fades grid towards edges */
.hero > .hero__grid-fade {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, transparent 30%, var(--bg-secondary) 80%);
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -30px;
  width: 700px;
  height: 600px;
  background:
    radial-gradient(circle at 25% 35%, rgba(240,185,11,0.18) 0%, transparent 50%),
    radial-gradient(circle at 65% 55%, rgba(14,203,129,0.1) 0%, transparent 45%);
  filter: blur(25px);
  pointer-events: none;
  animation: heroPulse 8s ease-in-out infinite alternate;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -60px;
  width: 600px;
  height: 500px;
  background:
    radial-gradient(circle at 50% 40%, rgba(246,70,93,0.1) 0%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(240,185,11,0.12) 0%, transparent 45%);
  filter: blur(20px);
  pointer-events: none;
  animation: heroPulse 10s ease-in-out infinite alternate-reverse;
}

@keyframes gridMove {
  0% { background-position: 0 0, 0 0, 0 0, 0 0; }
  100% { background-position: 80px 80px, 80px 80px, 20px 20px, 20px 20px; }
}

@keyframes heroPulse {
  0% { opacity: 0.8; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

.hero__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero__text { flex: 1; position: relative; z-index: 1; }

.hero__text h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero__text h1 span { color: var(--accent); }

.hero__text > p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 460px;
  line-height: 1.6;
}

.hero__cta {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin-bottom: 24px;
}

.hero__cta input { flex: 1; padding: 14px 16px; border-radius: 6px; }
.hero__cta .btn-primary { padding: 14px 28px; white-space: nowrap; border-radius: 6px; }

/* Auth CTA — Deposit & Trade buttons */
.hero__cta-auth {
  display: flex;
  gap: 16px;
  max-width: 440px;
  margin-bottom: 24px;
}

.hero__btn-deposit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 40px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 14px;
  color: var(--accent);
  background: rgba(240,185,11,0.08);
  border: 2px solid var(--accent);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.hero__btn-deposit::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  padding: 2px;
  background: linear-gradient(135deg, var(--accent), rgba(248,209,47,0.3), var(--accent), rgba(248,209,47,0.6), var(--accent));
  background-size: 300% 300%;
  animation: borderGlow 3s ease infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero__btn-deposit:hover {
  color: var(--accent);
  background: rgba(240,185,11,0.15);
  box-shadow: 0 0 24px rgba(240,185,11,0.25), inset 0 0 12px rgba(240,185,11,0.06);
  transform: translateY(-2px);
}

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

.hero__btn-trade {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 40px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 14px;
  color: #181a20;
  background: var(--accent);
  border: 2px solid var(--accent);
  transition: all 0.25s ease;
}

.hero__btn-trade:hover {
  color: #181a20;
  background: var(--accent-hover);
  box-shadow: 0 6px 28px rgba(240,185,11,0.35);
  transform: translateY(-2px);
}

.hero__badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-secondary);
}

/* Hero price cards */
.hero__visual { flex: 0 0 360px; position: relative; z-index: 1; }

.hero__price-cards { display: flex; flex-direction: column; gap: 12px; }

.hero__price-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.hero__price-card:hover {
  border-color: var(--accent);
  transform: translateX(-4px);
  box-shadow: 4px 4px 20px rgba(0,0,0,0.3);
}

.hero__price-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-weight: 600;
}

.hero__price-card-head img { border-radius: 50%; }

.hero__price-card-price {
  font-size: 22px;
  font-weight: 700;
  font-family: var(--font-mono);
  margin-bottom: 2px;
}

.hero__price-card-change {
  font-size: 13px;
  font-family: var(--font-mono);
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.stats-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item { text-align: center; }

.stat-item__value {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-mono);
}

.stat-item__label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* ===== TICKER TAPE ===== */
.ticker-tape {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  overflow-x: auto;
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.ticker-tape::-webkit-scrollbar { display: none; }

.ticker-tape__inner {
  display: inline-flex;
  gap: 28px;
  padding: 0 24px;
  min-width: 100%;
  animation: tickerScroll 55s linear infinite;
  will-change: transform;
  -webkit-transform: translateZ(0);
}

.ticker-tape:hover .ticker-tape__inner {
  animation-play-state: paused;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  transition: opacity 0.15s;
}

.ticker-item:hover { opacity: 0.8; }
.ticker-item__symbol { font-weight: 600; }
.ticker-item__price { font-family: var(--font-mono); }
.ticker-item__change {
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 3px;
}
.ticker-item__change.up { color: var(--green); background: var(--green-bg); }
.ticker-item__change.down { color: var(--red); background: var(--red-bg); }

/* ===== MARKETS TABLE ===== */
.markets-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
}

.markets-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.markets-section__header h2 { font-size: 24px; font-weight: 700; }

.markets-section__viewall {
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
}

.markets-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--border);
}

.markets-tabs button {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 2px solid transparent;
  transition: all 0.15s;
}

.markets-tabs button:hover { color: var(--text-primary); }
.markets-tabs button.active { color: var(--accent); border-bottom-color: var(--accent); }

.markets-table-wrap {
  overflow-x: auto;
}

.markets-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.markets-table th {
  text-align: left;
  padding: 14px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-third);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border);
}

.markets-table th:last-child { text-align: center; }

.markets-table td {
  padding: 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
}

.markets-table td:first-child { font-family: var(--font); }
.markets-table td:last-child { text-align: center; }

.markets-table tr { cursor: pointer; transition: background 0.15s; }
.markets-table tr:hover { background: rgba(240,185,11,0.02); }

.markets-table .coin-name {
  display: flex;
  align-items: center;
  gap: 10px;
}

.markets-table .coin-name .token-logo { border-radius: 50%; }

.markets-table .coin-name .token-logo-fallback {
  border-radius: 50%;
  background: var(--bg-input);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
}

.markets-table .pair-base { color: var(--text-primary); font-weight: 600; }
.markets-table .pair-quote { color: var(--text-third); font-weight: 400; font-size: 12px; }
.markets-table .coin-fullname { font-size: 11px; color: var(--text-third); font-family: var(--font); }

.markets-table .trade-btn {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent);
  color: #181a20;
  font-weight: 600;
  font-size: 12px;
  border-radius: var(--radius);
  font-family: var(--font);
  transition: background 0.15s;
}

.markets-table .trade-btn:hover { background: var(--accent-hover); }

/* Skeleton loading */
.skeleton-row td { padding: 20px 16px; }
.skeleton-line {
  height: 16px;
  background: linear-gradient(90deg, var(--bg-tertiary) 25%, var(--bg-input) 50%, var(--bg-tertiary) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ===== HOW IT WORKS ===== */
.how-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px;
  text-align: center;
}

.how-section h2 { font-size: 28px; font-weight: 700; margin-bottom: 48px; }

.how-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.how-step {
  flex: 0 0 260px;
  text-align: center;
  position: relative;
}

.how-step__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #181a20;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.how-step__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(240,185,11,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.how-step h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.how-step p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; padding: 0 12px; }

.how-step__line {
  flex: 0 0 60px;
  height: 1px;
  background: var(--border);
  margin-top: 72px;
}

/* ===== PRODUCTS ===== */
.products-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.products-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.product-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.2s;
}

.product-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.product-card:hover::before { background: var(--accent); }

.product-card--spot { border-color: rgba(240,185,11,0.2); }
.product-card--spot::before { background: var(--accent); }

.product-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(240,185,11,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}

.product-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.product-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; }
.product-card a { color: var(--accent); font-weight: 500; font-size: 14px; }
.product-card a:hover { text-decoration: underline; }

/* ===== SECURITY ===== */
.security-section {
  background: var(--bg-secondary);
  padding: 64px 24px;
}

.security-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.security-section__text { flex: 1; }
.security-section__text h2 { font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.security-section__text > p { font-size: 15px; color: var(--text-secondary); margin-bottom: 32px; }

.security-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.security-feat {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.security-feat strong { font-size: 14px; }
.security-feat .text-muted { font-size: 12px; }

.security-section__visual { flex: 0 0 200px; text-align: center; }

.shield-graphic {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== APP DOWNLOAD ===== */
.app-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px;
}

.app-section__inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.app-section__text { flex: 1; }
.app-section__text h2 { font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.app-section__text p { color: var(--text-secondary); margin-bottom: 24px; line-height: 1.6; }

.app-launch-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(240,185,11,0.08);
  border: 1px solid rgba(240,185,11,0.2);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.app-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.app-btn {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(180deg, rgba(240,185,11,0.04), rgba(240,185,11,0.01));
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.15s;
}

.app-btn:hover {
  border-color: rgba(240,185,11,0.35);
  background: linear-gradient(180deg, rgba(240,185,11,0.08), rgba(14,203,129,0.03));
  transform: translateY(-2px);
}

.app-btn__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tertiary);
  color: var(--text-primary);
  flex-shrink: 0;
}

.app-btn__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.app-btn__eyebrow {
  font-size: 11px;
  color: var(--text-third);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.app-btn__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.app-btn__status {
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
}

.app-note {
  color: var(--text-third);
  font-size: 13px;
  line-height: 1.6;
  max-width: 520px;
}

.app-section__mockup { flex: 0 0 220px; }

.phone-mockup {
  width: 200px;
  height: 380px;
  background: var(--bg-tertiary);
  border: 2px solid var(--border);
  border-radius: 28px;
  padding: 12px 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.phone-mockup__screen {
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  border-radius: 20px;
  overflow: hidden;
}

.phone-mockup__header {
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

/* ===== PARTNERS ===== */
.partners-section {
  padding: 48px 24px;
  border-top: 1px solid var(--border);
}

.partners-section__inner { max-width: 1200px; margin: 0 auto; }

.partners-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.partner-logo {
  color: var(--text-third);
  opacity: 0.45;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  min-height: 38px;
}
.partner-logo:hover { opacity: 0.8; }
.partner-logo svg { display: block; }

/* Ambassador */
.ambassador-section {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.ambassador-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 28px;
}
.ambassador-photo img {
  width: 68px;
  height: 68px;
  border-radius: 14px;
  object-fit: cover;
  display: block;
}
.ambassador-badge {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 4px;
}
.ambassador-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}
.ambassador-title {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* ===== CTA ===== */
.cta-section {
  text-align: center;
  padding: 80px 24px;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.cta-section h2 { font-size: 32px; font-weight: 700; margin-bottom: 12px; }
.cta-section p { color: var(--text-secondary); margin-bottom: 32px; font-size: 16px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 48px 24px 24px;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 32px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 12px;
}

.footer__logo .brand-mark {
  width: 28px;
  height: 28px;
}

.footer__logo .brand-mark--word {
  width: 168px;
  height: auto;
}

.footer__socials { display: flex; gap: 12px; margin-top: 16px; }
.footer__socials a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-input);
  border-radius: 50%;
  font-size: 14px;
  transition: background 0.15s;
}
.footer__socials a:hover { background: var(--accent); color: #181a20; }

.footer__col h4 { font-size: 14px; font-weight: 600; margin-bottom: 16px; }
.footer__col a { display: block; font-size: 13px; color: var(--text-secondary); padding: 3px 0; }
.footer__col a:hover { color: var(--accent); }

.footer__bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-third);
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom-links { display: flex; gap: 16px; }
.footer__bottom-links a { color: var(--text-third); }
.footer__bottom-links a:hover { color: var(--text-secondary); }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: var(--bg-tertiary); border: 1px solid var(--border);
  border-radius: 8px; padding: 12px 24px; font-size: 14px;
  color: var(--text-primary); box-shadow: 0 8px 32px rgba(0,0,0,.5);
  z-index: 9999; display: none;
}
.toast.show { display: block; animation: slideUp 0.3s ease; }

@keyframes slideUp {
  from { transform: translateX(-50%) translateY(20px); opacity: 0; }
  to { transform: translateX(-50%) translateY(0); opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .ticker-tape { padding: 5px 0; }
  .ticker-tape__inner { gap: 16px; padding: 0 12px; animation-duration: 32s; }
  .ticker-item { font-size: 11px; gap: 4px; padding: 2px 0; }
  .ticker-item .token-logo { width: 14px !important; height: 14px !important; }
  .ticker-item__symbol { font-size: 11px; }
  .ticker-item__price { font-size: 11px; }
  .ticker-item__change { font-size: 10px; }

  .announcement-bar { font-size: 11px; padding: 6px 12px; }
  .announcement-bar__close { right: 4px; }

  .hero { padding: 32px 16px; }
  .hero__text { text-align: center; }
  .hero__text h1 { font-size: 28px; }
  .hero__text > p { font-size: 14px; margin-left: auto; margin-right: auto; }
  .hero__cta { flex-direction: row; margin-left: auto; margin-right: auto; max-width: 100%; gap: 8px; }
  .hero__cta input { flex: 2; min-width: 0; padding: 12px 14px; font-size: 14px; }
  .hero__cta .btn-primary { flex: 1; padding: 12px 16px; font-size: 13px; white-space: nowrap; }
  .hero__cta-auth { gap: 10px; max-width: 100%; justify-content: center; }
  .hero__btn-deposit { padding: 12px 24px; font-size: 14px; border-radius: 10px; gap: 8px; }
  .hero__btn-deposit svg { width: 16px; height: 16px; }
  .hero__btn-trade { padding: 12px 24px; font-size: 14px; border-radius: 10px; gap: 8px; }
  .hero__btn-trade svg { width: 16px; height: 16px; }
  .hero__badges { gap: 12px; justify-content: center; }

  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-item__value { font-size: 20px; }

  .markets-section { padding: 24px 12px; }
  .markets-tabs { overflow-x: auto; -ms-overflow-style: none; scrollbar-width: none; }
  .markets-tabs::-webkit-scrollbar { display: none; }
  .markets-tabs button { padding: 8px 12px; font-size: 12px; white-space: nowrap; }
  .markets-table th, .markets-table td { padding: 12px 8px; font-size: 12px; }

  .how-steps { flex-direction: column; align-items: center; gap: 24px; }
  .how-step { flex: none; }
  .how-step__line { width: 1px; height: 24px; margin: 0; }

  .products-grid { grid-template-columns: 1fr; }

  .security-section { padding: 40px 16px; }
  .security-features { grid-template-columns: 1fr; }

  .app-section { padding: 40px 16px; }
  .app-buttons { grid-template-columns: 1fr; }

  .cta-section { padding: 48px 16px; }
  .cta-section h2 { font-size: 24px; }

  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__col--brand { grid-column: span 2; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ===== HERO: STAKING PROMO ===== */
/* Same base as classic — grid bg, glow, same layout */
.hero--staking__label {
  font-size: 12px; font-weight: 700; color: var(--accent);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(240,185,11,.08); padding: 6px 14px; border-radius: 6px;
  border: 1px solid rgba(240,185,11,.15);
}
.hero--staking__apy {
  font-size: 52px; font-weight: 700; line-height: 1.15; margin-bottom: 16px;
}
.hero--staking__apy span { color: var(--accent); }
.hero--staking__tokens {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px;
}
.hero--staking__token {
  background: var(--bg-tertiary); border: 1px solid var(--border);
  border-radius: 12px; padding: 14px 18px; text-align: center; min-width: 110px;
  transition: all .2s;
}
.hero--staking__token:hover { border-color: var(--accent); transform: translateY(-2px); }
.hero--staking__token img { border-radius: 50%; margin-bottom: 6px; }
.hero--staking__token-name { font-size: 13px; font-weight: 600; color: var(--text-primary); }
.hero--staking__token-apy { font-size: 14px; font-weight: 700; color: var(--green); margin-top: 4px; }
.hero--staking__cta { display: flex; gap: 12px; margin-bottom: 24px; }
.hero--staking__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px; font-size: 16px; font-weight: 700;
  background: var(--accent); color: #181a20;
  border-radius: 10px; text-decoration: none; transition: all .15s;
}
.hero--staking__btn:hover { background: var(--accent-hover); }
.hero--staking__btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 28px; font-size: 16px; font-weight: 600;
  border: 1px solid var(--border); color: var(--text-primary);
  border-radius: 10px; text-decoration: none; transition: all .15s; background: transparent;
}
.hero--staking__btn-outline:hover { border-color: var(--accent); color: var(--accent); }

@media(max-width:768px) {
  .hero--staking__apy { font-size: 36px; }
  .hero--staking__tokens { gap: 8px; }
  .hero--staking__token { min-width: 80px; padding: 10px 12px; }
  .hero--staking__cta { flex-direction: column; }
}
