/* ===== MONEX-INSPIRED DESIGN SYSTEM ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

/* --- TOKENS --- */
:root {
  --mint: #8CE7A2;
  --mint-hover: #6FD98A;
  --mint-light: #d4f5dd;
  --mint-glow: rgba(140, 231, 162, 0.25);
  --charcoal: #111827;
  --charcoal-soft: #1f2937;
  --bg: #F7F9F6;
  --bg-white: #ffffff;
  --bg-footer: #0F172A;
  --text-primary: #111827;
  --text-secondary: #4b5563;
  --text-muted: #9ca3af;
  --text-on-dark: #e5e7eb;
  --text-on-dark-muted: #9ca3af;
  --border: #e5e7eb;
  --border-light: #f3f4f6;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.08);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-w: 1200px;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body); background: var(--bg); color: var(--text-primary);
  line-height: 1.7; font-size: 16px; overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.15; font-weight: 800; color: var(--text-primary); }

/* --- LAYOUT --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; }

/* --- NAV --- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0; transition: all 0.3s;
  background: rgba(247, 249, 246, 0.8); backdrop-filter: blur(20px);
}
.nav.scrolled { background: rgba(255,255,255,0.95); box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.nav-logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--charcoal); letter-spacing: -0.5px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 0.95rem; font-weight: 500; color: var(--text-secondary); transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--charcoal); }
.nav-cta {
  background: var(--charcoal); color: #fff; padding: 10px 24px;
  border-radius: var(--radius-pill); font-weight: 600; font-size: 0.9rem;
  transition: all 0.2s;
}
.nav-cta:hover { background: #000; transform: translateY(-1px); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--charcoal); margin: 5px 0; transition: 0.3s; border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- BUTTONS --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px;
  border-radius: var(--radius-pill); font-weight: 600; font-size: 1rem;
  transition: all 0.25s; cursor: pointer; border: none; text-decoration: none;
}
.btn-primary {
  background: var(--mint); color: var(--charcoal);
}
.btn-primary:hover { background: var(--mint-hover); transform: translateY(-2px); box-shadow: 0 8px 24px var(--mint-glow); }
.btn-secondary {
  background: var(--charcoal); color: #fff;
}
.btn-secondary:hover { background: #000; transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--charcoal); border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--charcoal); background: var(--charcoal); color: #fff; }

/* --- HERO --- */
.hero {
  padding: 160px 0 80px; text-align: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, var(--mint-glow) 0%, rgba(140,231,162,0.08) 40%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.hero::after {
  content: ''; position: absolute; top: -50px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,235,150,0.12) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}
.hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px;
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius-pill); font-size: 0.85rem; font-weight: 500;
  color: var(--text-secondary); margin-bottom: 28px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); }
.hero h1 { font-size: clamp(2.5rem, 5.5vw, 4rem); margin-bottom: 20px; letter-spacing: -1.5px; color: var(--charcoal); }
.hero p { font-size: 1.15rem; color: var(--text-secondary); max-width: 560px; margin: 0 auto 36px; line-height: 1.7; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.gradient-text { color: var(--mint-hover); }

/* --- PAGE HEADER --- */
.page-header { padding: 140px 0 60px; text-align: center; position: relative; }
.page-header::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, var(--mint-glow) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; letter-spacing: -1px; }
.page-header p { color: var(--text-secondary); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.article-meta { color: var(--text-muted); font-size: 0.9rem; margin-top: 8px; }

/* --- BREADCRUMB --- */
.breadcrumb { padding: 120px 0 0; }
.breadcrumb ol { display: flex; gap: 8px; list-style: none; font-size: 0.85rem; color: var(--text-muted); justify-content: center; }
.breadcrumb li::after { content: '/'; margin-left: 8px; }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--charcoal); }
.breadcrumb .current { color: var(--charcoal); font-weight: 500; }

/* --- SECTION LABELS --- */
.section-label {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px;
  background: var(--mint-light); color: #1a7a3a; border-radius: var(--radius-pill);
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 16px;
}
.section-center { text-align: center; margin-bottom: 56px; }
.section-center .section-label { margin: 0 auto 16px; }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 16px; letter-spacing: -0.8px; }
.section-desc { color: var(--text-secondary); font-size: 1.05rem; max-width: 650px; margin: 0 auto; line-height: 1.7; }

/* --- CARDS --- */
.card {
  background: var(--bg-white); border: 1px solid var(--border-light); border-radius: var(--radius);
  padding: 32px; transition: all 0.3s; position: relative;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--border); }
.card-icon {
  width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: var(--mint-light); font-size: 1.5rem; margin-bottom: 20px; overflow: hidden;
}
.card-icon img { width: 100%; height: 100%; object-fit: cover; }
.card-icon:has(img) { width: 100%; height: auto; background: none; border-radius: var(--radius); }
.card h3 { margin-bottom: 12px; font-size: 1.15rem; font-weight: 700; }
.card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }

/* --- FEATURE ROWS --- */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  margin-bottom: 80px;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-row:last-child { margin-bottom: 0; }
.feature-visual {
  background: var(--bg-white); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border-light); box-shadow: var(--shadow-md);
}
.feature-visual img { width: 100%; height: 100%; object-fit: cover; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.feature-list li {
  position: relative; padding-left: 28px; color: var(--text-secondary); font-size: 1rem; line-height: 1.6;
}
.feature-list li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 16px; height: 16px; border-radius: 50%; background: var(--mint-light);
  border: 2px solid var(--mint);
}

/* --- STATS --- */
.stats { padding: 48px 0; background: var(--bg-white); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 32px; text-align: center; }
.stat-item h3 { font-size: 2.2rem; font-weight: 800; color: var(--charcoal); letter-spacing: -1px; }
.stat-item p { color: var(--text-secondary); font-size: 0.9rem; margin-top: 4px; }

/* --- SPECS --- */
.specs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.spec-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; background: var(--bg-white); border-radius: 12px;
  border: 1px solid var(--border-light);
}
.spec-label { color: var(--text-secondary); font-size: 0.9rem; }
.spec-value { font-weight: 600; color: var(--charcoal); font-size: 0.9rem; }

/* --- TABLE --- */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 0.9rem; background: var(--bg-white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-light); }
thead { background: var(--charcoal); color: #fff; }
th { padding: 14px 16px; text-align: left; font-weight: 600; }
td { padding: 14px 16px; border-bottom: 1px solid var(--border-light); color: var(--text-secondary); }
tr:last-child td { border-bottom: none; }
.compare-winner { background: rgba(140, 231, 162, 0.08); }
.badge { padding: 4px 12px; border-radius: var(--radius-pill); font-size: 0.8rem; font-weight: 600; }
.badge-green { background: var(--mint-light); color: #166534; }
.badge-red { background: #fef2f2; color: #dc2626; }
.badge-yellow { background: #fefce8; color: #a16207; }

/* --- FAQ --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-q {
  padding: 24px 0; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-weight: 600; font-size: 1.05rem; color: var(--charcoal);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--mint-hover); }
.faq-q .icon {
  width: 32px; height: 32px; border-radius: 50%; background: var(--mint-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: #1a7a3a; transition: 0.3s; flex-shrink: 0;
}
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-a { max-height: 500px; }
.faq-item.active .faq-q .icon { transform: rotate(45deg); background: var(--mint); color: #fff; }
.faq-a-inner { padding: 0 0 24px; color: var(--text-secondary); line-height: 1.7; }
.faq-a-inner a { color: var(--charcoal); font-weight: 500; text-decoration: underline; }

/* --- VERDICT BOX --- */
.verdict-box {
  display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: start;
  padding: 40px; background: var(--bg-white); border-radius: var(--radius-lg);
  border: 1px solid var(--border-light); box-shadow: var(--shadow-md);
}
.verdict-score {
  width: 100px; height: 100px; border-radius: 50%; background: var(--mint);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; font-weight: 800; color: var(--charcoal);
}
.verdict-pros li, .verdict-cons li {
  position: relative; padding-left: 20px; margin-bottom: 6px;
  color: var(--text-secondary); font-size: 0.95rem; list-style: none;
}
.verdict-pros li::before { content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--mint); }
.verdict-cons li::before { content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: #ef4444; }

/* --- PRESS BAR --- */
.press-bar { padding: 48px 0; }
.press-logos { display: flex; justify-content: center; flex-wrap: wrap; gap: 48px; align-items: center; }
.press-logos span { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--text-muted); letter-spacing: -0.5px; opacity: 0.5; }

/* --- CTA SECTION --- */
.cta-section {
  text-align: center; padding: 80px 0;
  background: var(--charcoal); color: #fff; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(140,231,162,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 16px; }
.cta-section p { color: var(--text-on-dark); max-width: 550px; margin: 0 auto 32px; font-size: 1.05rem; }
.cta-section .section-label { background: rgba(140,231,162,0.15); color: var(--mint); }

/* --- FOOTER --- */
.footer {
  background: var(--bg-footer); color: var(--text-on-dark-muted); padding: 80px 0 40px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand p { margin-top: 16px; font-size: 0.9rem; color: var(--text-on-dark-muted); line-height: 1.6; }
.footer .nav-logo { color: #fff; }
.footer h4 { color: #fff; font-weight: 700; margin-bottom: 16px; font-size: 0.95rem; }
.footer ul li { margin-bottom: 10px; }
.footer a { color: var(--text-on-dark-muted); font-size: 0.9rem; transition: color 0.2s; }
.footer a:hover { color: var(--mint); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 0.85rem; color: var(--text-on-dark-muted); }
.footer-disclaimer { max-width: 500px; font-size: 0.8rem !important; opacity: 0.6; }
/* Large brand text in footer */
.footer-brand-text {
  font-family: var(--font-heading); font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 800; color: rgba(255,255,255,0.04); letter-spacing: -4px;
  text-align: center; margin-top: 40px; line-height: 1;
}

/* --- ARTICLE --- */
.article-content { max-width: 720px; margin: 0 auto; }
.article-content p { margin-bottom: 20px; color: var(--text-secondary); line-height: 1.8; font-size: 1.05rem; }
.article-content h2 { margin: 48px 0 16px; font-size: 1.6rem; letter-spacing: -0.5px; }
.article-content h3 { margin: 32px 0 12px; font-size: 1.25rem; }
.article-content ul, .article-content ol { margin: 16px 0 24px; padding-left: 24px; }
.article-content li { margin-bottom: 10px; color: var(--text-secondary); line-height: 1.7; list-style: disc; }
.article-content ol li { list-style: decimal; }
.article-content a { color: var(--charcoal); font-weight: 500; text-decoration: underline; text-decoration-color: var(--mint); text-underline-offset: 3px; }
.article-content blockquote {
  border-left: 3px solid var(--mint); padding: 20px 24px; margin: 24px 0;
  background: var(--bg-white); border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic; color: var(--text-secondary);
}

/* --- SCROLL REVEAL --- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(255,255,255,0.98); flex-direction: column; align-items: center; justify-content: center; gap: 24px; backdrop-filter: blur(20px); }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .hamburger { display: block; }
  .nav-cta { display: none; }
  section { padding: 64px 0; }
  .hero { padding: 120px 0 48px; }
  .hero h1 { font-size: 2rem; letter-spacing: -0.8px; }
  .card-grid { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.reverse { direction: ltr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .verdict-box { grid-template-columns: 1fr; text-align: center; }
  .verdict-score { margin: 0 auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-header { padding: 100px 0 40px; }
  .breadcrumb { padding: 80px 0 0; }
}
