/* ── MNY Logic Landing Page Styles ── */
:root {
  --gold: #D4A015;
  --gold-dim: #A87E10;
  --bg: #0a0a0a;
  --bg2: #111111;
  --bg3: #1a1a1a;
  --border: #2a2a2a;
  --text: #ffffff;
  --text-muted: #888888;
  --green: #22c55e;
  --red: #ef4444;
  --radius: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
.gold { color: var(--gold); }

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold); color: #000;
  padding: 11px 24px; border-radius: var(--radius);
  font-weight: 700; font-size: 14px; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.btn-gold:hover { background: #e09400; transform: translateY(-1px); }
.btn-gold.btn-lg { padding: 14px 32px; font-size: 15px; }

.btn-ghost {
  display: inline-flex; align-items: center;
  padding: 10px 20px; border-radius: var(--radius);
  font-weight: 500; font-size: 14px; color: var(--text);
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--gold); }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 24px; border-radius: var(--radius);
  border: 1px solid var(--border); color: var(--text);
  font-weight: 600; font-size: 14px; width: 100%;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline-sm {
  display: inline-flex; align-items: center; white-space: nowrap;
  padding: 10px 18px; border-radius: var(--radius);
  border: 1px solid var(--gold); color: var(--gold);
  font-weight: 600; font-size: 13px;
  transition: background 0.2s;
}
.btn-outline-sm:hover { background: rgba(240,165,0,0.1); }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 32px;
  padding: 14px 24px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 400; color: var(--text);
  flex-shrink: 0; letter-spacing: 2.5px;
}
.logo-text { font-family: 'Michroma', sans-serif; }
.logo-text strong {
  font-family: 'Michroma', sans-serif; font-weight: 400;
  background: linear-gradient(135deg, #4aa8ff, #b07bff 60%, #ffc857);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-left: 6px;
}

.nav-links {
  display: flex; list-style: none; gap: 4px; flex: 1;
}
.nav-links a {
  padding: 7px 12px; border-radius: 6px; font-size: 14px;
  color: var(--text-muted); transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }

.nav-cta { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.hamburger { display: none; background: none; border: none; color: var(--text); font-size: 22px; cursor: pointer; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 24px 80px;
  background: radial-gradient(ellipse at 70% 50%, rgba(240,165,0,0.06) 0%, transparent 60%);
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: flex; align-items: center; gap: 80px;
  position: relative; z-index: 1;
}
.hero-text { flex: 1; }
.hero-text h1 {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900; line-height: 1.05;
  margin-bottom: 20px; letter-spacing: -1.5px;
}
.hero-text p {
  font-size: 18px; color: var(--text-muted);
  margin-bottom: 36px; max-width: 440px; line-height: 1.7;
}

.hero-chart { flex: 1; display: flex; justify-content: center; }
.chart-container {
  position: relative; width: 420px; height: 280px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  padding: 20px;
}
.chart-bars {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  display: flex; align-items: flex-end; gap: 6px; height: 200px;
}
.bar {
  flex: 1; background: rgba(240,165,0,0.2);
  border-radius: 3px 3px 0 0;
  transition: height 1s ease;
}
.bar.active { background: rgba(240,165,0,0.5); }
.chart-line {
  position: absolute; inset: 20px;
  width: calc(100% - 40px); height: calc(100% - 40px);
}
.chart-badge {
  position: absolute; top: 16px; right: 16px;
  background: rgba(240,165,0,0.15); border: 1px solid rgba(240,165,0,0.3);
  border-radius: 8px; padding: 8px 14px; text-align: center;
}
.chart-badge { font-size: 22px; font-weight: 800; color: var(--gold); display: flex; flex-direction: column; }
.chart-badge span { font-size: 11px; font-weight: 400; color: var(--text-muted); }

/* ── FEATURES ── */
.features {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 24px;
}
.features-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.feature-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 32px 24px; border-right: 1px solid var(--border);
}
.feature-card:last-child { border-right: none; }
.feature-icon {
  width: 52px; height: 52px;
  background: rgba(240,165,0,0.1); border: 1px solid rgba(240,165,0,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 14px;
}
.feature-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.feature-card p  { font-size: 13px; color: var(--text-muted); }

/* ── HOW IT WORKS ── */
.how-works { padding: 100px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  color: var(--gold); margin-bottom: 12px;
}
.section-inner h2 {
  font-size: clamp(28px, 4vw, 42px); font-weight: 800;
  margin-bottom: 60px; letter-spacing: -0.5px;
}
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}
.step {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 12px; padding: 36px 32px;
  position: relative;
}
.step::before {
  content: ''; position: absolute; top: 0; left: 32px; right: 32px;
  height: 2px; background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}
.step-num {
  font-size: 48px; font-weight: 900; color: rgba(240,165,0,0.15);
  line-height: 1; margin-bottom: 16px;
}
.step h4 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.step p  { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── STATS BAND ── */
.stats-band {
  background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 50px 24px;
  display: flex; justify-content: center; align-items: center; gap: 0;
  flex-wrap: wrap;
}
.stat {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 60px; text-align: center;
}
.stat-num  { font-size: 36px; font-weight: 900; line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 13px; color: var(--text-muted); }
.stat-divider {
  width: 1px; height: 60px;
  background: var(--border);
}

/* ── PRICING ── */
.pricing { padding: 100px 24px; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.pricing-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 14px; padding: 36px 32px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
}
.pricing-card.popular {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(240,165,0,0.07) 0%, var(--bg2) 100%);
}
.popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #000;
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px;
  padding: 4px 14px; border-radius: 20px;
}
.plan-name { font-size: 18px; font-weight: 700; }
.plan-price { font-size: 40px; font-weight: 900; margin: 8px 0; }
.plan-price span { font-size: 16px; font-weight: 400; color: var(--text-muted); }
.plan-features {
  list-style: none; flex: 1;
  display: flex; flex-direction: column; gap: 10px;
  margin: 12px 0 20px;
}
.plan-features li { font-size: 14px; color: var(--text-muted); }

/* ── FAQ ── */
.faq-section { padding: 100px 24px; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 1px; }
.faq-item { background: var(--bg2); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.faq-q {
  width: 100%; background: none; border: none; color: var(--text);
  padding: 20px 24px; font-size: 15px; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; text-align: left;
}
.faq-q:hover { background: rgba(255,255,255,0.02); }
.faq-q span { font-size: 20px; color: var(--gold); flex-shrink: 0; }
.faq-a {
  max-height: 0; overflow: hidden;
  padding: 0 24px; font-size: 14px; color: var(--text-muted); line-height: 1.7;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }

/* ── HERO DISCLAIMER ── small note under the CTA so visitors see the
   risk language BEFORE clicking through to sign up. Muted but readable. */
.hero-disclaimer {
  margin-top: 18px;
  font-size: 12px !important;
  line-height: 1.55 !important;
  color: var(--text-muted) !important;
  max-width: 480px;
}
.hero-disclaimer a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}
.hero-disclaimer a:hover { text-decoration: underline; }

/* ── DISCLOSURE ── full risk disclosure section, anchor target #risk */
.disclosure {
  background: rgba(240,165,0,0.05);
  border-top: 1px solid rgba(240,165,0,0.2);
  border-bottom: 1px solid rgba(240,165,0,0.2);
  padding: 36px 24px;
  scroll-margin-top: 80px;   /* offset for sticky nav when anchor-jumping */
}
.disclosure-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: flex-start; gap: 24px;
}
.disclosure-icon {
  font-size: 28px; color: var(--gold); flex-shrink: 0; padding-top: 2px;
}
.disclosure-body { flex: 1; }
.disclosure strong {
  color: var(--gold); font-size: 13px; font-weight: 800;
  display: block; margin-bottom: 8px; letter-spacing: .8px;
}
.disclosure p { font-size: 13px; color: var(--text-soft, #e5e5e5); line-height: 1.7; margin-bottom: 14px; }
.disclosure p em { color: var(--gold); font-style: normal; font-weight: 600; }
.disclosure-list {
  list-style: none; padding: 0; margin: 0 0 14px;
  display: grid; gap: 10px;
}
.disclosure-list li {
  font-size: 12.5px; line-height: 1.6; color: var(--text-muted);
  padding-left: 22px; position: relative;
}
.disclosure-list li::before {
  content: "•"; color: var(--gold); font-size: 18px; line-height: 1;
  position: absolute; left: 6px; top: 1px;
}
.disclosure-list li strong {
  display: inline; color: var(--text-soft, #e5e5e5);
  font-size: 12.5px; letter-spacing: 0; margin-bottom: 0; font-weight: 700;
}
.disclosure-acknowledge {
  font-size: 12px !important; color: var(--text-muted) !important;
  font-style: italic; padding-top: 12px;
  border-top: 1px solid rgba(240,165,0,0.15);
  margin-top: 6px !important; margin-bottom: 0 !important;
}
@media (max-width: 720px) {
  .disclosure-inner { flex-direction: column; gap: 12px; }
  .disclosure-icon  { font-size: 24px; }
}

/* ── FOOTER ── */
.footer { padding: 40px 24px; border-top: 1px solid var(--border); }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 12px; color: var(--text-muted); text-align: center; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-content { flex-direction: column; gap: 50px; text-align: center; }
  .hero-text p  { margin: 0 auto 36px; }
  .chart-container { width: 100%; max-width: 420px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-card:nth-child(2n) { }
  .feature-card:last-child { border-bottom: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .stats-band { gap: 20px; }
  .stat { padding: 0 30px; }
  .stat-divider { display: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: var(--bg2); padding: 12px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
  .features-grid { grid-template-columns: 1fr; }
  .disclosure-inner { flex-direction: column; text-align: center; }
  /* Hero text scales down so it doesn't overflow on portrait phones */
  .hero-text h1 { font-size: 38px; line-height: 1.1; }
  .hero-text p  { font-size: 15px; }
  .nav-inner { padding: 12px 16px; gap: 16px; }
  /* Section padding halved so content reads as a column, not a wall */
  section { padding: 50px 16px; }
  /* iOS Safari auto-zooms inputs < 16px on focus */
  input, select, textarea { font-size: 16px; }
  /* Touch-target floor on call-to-action buttons */
  .btn-cta, .btn-primary, .btn-ghost, .nav-link-cta { min-height: 44px; padding: 12px 18px; }
  /* Footer stacks vertically already, just tighten */
  .footer { padding: 28px 16px; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 12px 18px; }
}
@media (max-width: 480px) {
  .hero-text h1 { font-size: 32px; }
  .stats-band { flex-direction: column; gap: 24px; padding: 0 16px; }
  .stat { padding: 0; }
  /* Risk disclosure block — give it breathing room */
  .disclosure-list li { font-size: 12px; }
}
