/* ================================================
   MINUTO CRYPTO NEWS — style.css
   Design System: Ciano #00F2FF + Magenta #FF00E6
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── TOKENS ── */
:root {
  --bg-primary:      #080B14;
  --bg-secondary:    #0F172A;
  --card-bg:         #1E293B;
  --card-border:     rgba(255,255,255,0.06);
  --text-primary:    #F8FAFC;
  --text-secondary:  #94A3B8;
  --brand-color:     #00F2FF;
  --accent-magenta:  #FF00E6;
  --status-promising:#00F2FF;
  --status-observing:#F59E0B;
  --status-risk:     #EF4444;
  --transition:      all 0.3s cubic-bezier(0.4,0,0.2,1);
  --radius:          12px;
}

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; font-family: inherit; background: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ── LAYOUT ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── TYPOGRAPHY HELPERS ── */
.text-brand    { color: var(--brand-color); }
.text-secondary{ color: var(--text-secondary); }
.text-xs       { font-size: 0.75rem; }

/* ── BG GRADIENT ── */
.bg-gradient {
  background:
    radial-gradient(ellipse at 15% 30%, rgba(0,242,255,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 70%, rgba(255,0,230,0.07) 0%, transparent 50%);
}

/* ─────────────────────────────────────────────
   NAVBAR — MODEL 7 "Gradient Bleed"
───────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  background: linear-gradient(
    90deg,
    #1a0535 0%,
    #110228 18%,
    #0c0118 35%,
    #080B14 60%,
    #080B14 100%
  );
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: var(--transition);
  overflow: hidden;
}

.navbar.scrolled {
  height: 64px;
  border-bottom-color: rgba(180,0,255,0.14);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.navbar__glow {
  position: absolute;
  top: -40px; left: -60px;
  width: 320px; height: 180px;
  background: radial-gradient(ellipse, rgba(180,0,255,0.28) 0%, rgba(100,0,180,0.12) 45%, transparent 70%);
  pointer-events: none;
  filter: blur(8px);
}

.navbar__inner {
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Logo */
.navbar__logo { 
  display: flex; 
  align-items: center; 
  flex-shrink: 0; 
  position: absolute; 
  left: 50%; 
  transform: translateX(-50%); 
}

.navbar__logo-img {
  height: 64px;
  width: 64px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(140%) drop-shadow(0 0 8px rgba(180,0,255,0.4));
  transition: var(--transition);
}

.navbar__logo:hover .navbar__logo-img {
  filter: brightness(165%) drop-shadow(0 0 14px rgba(0,242,255,0.55));
  transform: scale(1.05);
}

.navbar__logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #fff 0%, var(--brand-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
  transition: var(--transition);
  display: inline-block;
}

.navbar__logo:hover .navbar__logo-text {
  background: linear-gradient(90deg, var(--brand-color) 0%, var(--accent-magenta) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: scale(1.02);
  text-shadow: 0 0 25px rgba(255, 0, 230, 0.5);
}

/* Desktop links */
.navbar__links {
  display: none;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  justify-content: center;
}

.navbar__link {
  position: relative;
  padding: 0.4rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.58);
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}

.navbar__link:hover {
  color: #fff;
  background: rgba(255,255,255,0.05);
}

.navbar__link--active {
  color: #fff;
  font-weight: 600;
}

.navbar__link--active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--brand-color), var(--accent-magenta));
  box-shadow: 0 0 8px var(--brand-color);
}

/* Actions */
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  margin-left: auto;
}

/* CTA outline neon */
.navbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  border: 1.5px solid var(--brand-color);
  color: var(--brand-color);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition);
  background: rgba(0,242,255,0.04);
  box-shadow: 0 0 12px rgba(0,242,255,0.15), inset 0 0 12px rgba(0,242,255,0.04);
  white-space: nowrap;
}

.navbar__cta:hover {
  background: rgba(0,242,255,0.12);
  box-shadow: 0 0 22px rgba(0,242,255,0.38), inset 0 0 16px rgba(0,242,255,0.08);
  color: #fff;
  border-color: rgba(0,242,255,0.85);
  transform: translateY(-1px);
}

/* Mobile toggle */
.navbar__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  color: white;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  transition: var(--transition);
}

.navbar__toggle:hover {
  background: rgba(180,0,255,0.15);
  border-color: rgba(180,0,255,0.4);
}

/* ─── MOBILE DRAWER ─── */
.drawer__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(4px);
  z-index: 998;
}

.drawer__backdrop.open { display: block; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(300px, 85vw);
  background: linear-gradient(160deg, #1a0535 0%, #0d0120 30%, #080B14 75%);
  border-left: 1px solid rgba(180,0,255,0.2);
  z-index: 999;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -20px 0 60px rgba(0,0,0,0.6);
}

.drawer.open { transform: translateX(0); }

.drawer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 1rem;
}

.drawer__links { display: flex; flex-direction: column; gap: 0.25rem; flex: 1; }

.drawer__link {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.62);
  transition: var(--transition);
  border: 1px solid transparent;
}

.drawer__link:hover {
  background: rgba(255,255,255,0.05);
  color: white;
}

.drawer__link--active {
  background: rgba(180,0,255,0.12);
  border-color: rgba(180,0,255,0.25);
  color: #fff;
  font-weight: 600;
}

/* ─────────────────────────────────────────────
   SECTIONS
───────────────────────────────────────────── */
main { padding-top: 72px; }

.section { padding: 5rem 0; }
.section--alt { background: #0d1323; }

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.section-header h2 { font-size: 2rem; }

.section-center {
  text-align: center;
  margin-bottom: 4rem;
}

.section-center h2 { font-size: 2.25rem; margin-bottom: 1rem; }

.link-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-color);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: var(--transition);
}

.link-brand:hover { opacity: 0.8; }

/* ─── HERO ─── */
.hero {
  padding: 4rem 0 5rem;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,242,255,0.08);
  color: var(--brand-color);
  border: 1px solid rgba(0,242,255,0.2);
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.15;
  max-width: 860px;
  margin: 0 auto 1.5rem;
}

.hero__subtitle {
  color: var(--text-secondary);
  font-size: 1.2rem;
  max-width: 660px;
  margin: 0 auto 3rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--brand-color) 0%, var(--accent-magenta) 100%);
  color: #000;
  padding: 0.9rem 2rem;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,242,255,0.3);
}

.btn-primary:hover {
  filter: brightness(1.15);
  box-shadow: 0 0 28px rgba(0,242,255,0.5), 0 0 50px rgba(255,0,230,0.2);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text-primary);
  padding: 0.9rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid var(--card-bg);
  transition: var(--transition);
  cursor: pointer;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.2);
}

.btn-block { display: flex; width: 100%; justify-content: center; }

/* ─── CARDS ─── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,242,255,0.2);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(0,242,255,0.08);
}

.card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.card__token-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.token-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--brand-color);
}

.card__name { font-size: 1.1rem; font-weight: 700; }

.card__score {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.score-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-color);
}

.score-label { font-size: 0.875rem; }

.card__signals {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.signal {
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.signal--ok   { color: var(--status-promising); }
.signal--warn { color: var(--status-risk); }

/* ─── BADGES ─── */
.badge {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge-promising {
  background: rgba(0,242,255,0.1);
  color: var(--status-promising);
  border: 1px solid rgba(0,242,255,0.25);
}

.badge-observing {
  background: rgba(245,158,11,0.1);
  color: var(--status-observing);
  border: 1px solid rgba(245,158,11,0.25);
}

.badge-risk {
  background: rgba(239,68,68,0.1);
  color: var(--status-risk);
  border: 1px solid rgba(239,68,68,0.25);
}

/* ─── HOW IT WORKS ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.step { text-align: center; padding: 1rem; }

.step__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px; height: 72px;
  border-radius: 18px;
  background: rgba(0,242,255,0.06);
  border: 1px solid rgba(0,242,255,0.12);
  margin-bottom: 1.5rem;
}

.step h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, rgba(0,242,255,0.88) 0%, rgba(255,0,230,0.88) 100%);
  border-radius: 24px;
  padding: 4.5rem 2rem;
  text-align: center;
  color: #000;
  box-shadow: 0 0 60px rgba(0,242,255,0.2), 0 0 120px rgba(255,0,230,0.1);
  border: 1px solid rgba(255,255,255,0.15);
}

.cta-banner h2 { font-size: 2.25rem; margin-bottom: 1rem; font-weight: 800; }
.cta-banner p { font-size: 1.1rem; opacity: 0.85; max-width: 560px; margin: 0 auto 2.5rem; }

.cta-banner__btn {
  display: inline-block;
  background: rgba(0,0,0,0.85);
  color: var(--brand-color);
  padding: 1rem 2.5rem;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  border: 1px solid rgba(0,242,255,0.3);
}

.cta-banner__btn:hover {
  background: #000;
  box-shadow: 0 0 20px rgba(0,242,255,0.4);
  color: #fff;
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.footer {
  background: #060912;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand { max-width: 300px; }

.footer__tagline {
  font-size: 0.875rem;
  margin: 1rem 0 1.5rem;
  line-height: 1.7;
}

.footer__social { display: flex; gap: 0.75rem; }

.social-icon {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--card-bg);
  color: var(--text-secondary);
  transition: var(--transition);
  border: 1px solid var(--card-border);
}

.social-icon:hover {
  background: var(--brand-color);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 0 12px rgba(0,242,255,0.4);
}

.footer__heading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.footer__list { display: flex; flex-direction: column; gap: 0.65rem; }

.footer__list a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer__list a:hover { color: var(--text-primary); }

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.75rem;
}

/* ─────────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────────── */
@keyframes neon-blink {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    opacity: 1;
    filter: drop-shadow(0 0 3px var(--brand-color));
  }
  20%, 24%, 55% { opacity: 0.4; filter: none; }
}

.neon-blink { animation: neon-blink 3s infinite; }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (min-width: 1024px) {
  .navbar__links  { display: flex; }
  .navbar__toggle { display: none; }
}

@media (max-width: 640px) {
  .navbar__cta { display: none; }
  .hero__title { font-size: 2rem; }
  .cta-banner h2 { font-size: 1.65rem; }
}
