/* Easy Trade Insights - real production site (2026-09-18)
   Plain CSS, no build step, no framework - mobile-responsive by hand. */

:root {
  --ink: #12151c;
  --ink-soft: #4a4a4a;
  --muted: #6b7280;
  --line: #e2e5ea;
  --bg: #ffffff;
  --bg-soft: #f7f8fa;
  --gold: #b8860b;
  --gold-dark: #8a640a;
  --green: #1f7a3f;
  --red: #b3261e;
  --radius: 10px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}
a { color: var(--gold-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* Header / nav */
header.site-header {
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; background: rgba(255,255,255,.96);
  backdrop-filter: blur(6px);
  z-index: 50;
}
.nav-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; color: var(--ink); }
.brand img { height: 32px; width: 32px; border-radius: 6px; }
nav.main-nav { display: flex; gap: 22px; align-items: center; }
nav.main-nav a { color: var(--ink-soft); font-weight: 500; font-size: 14.5px; }
nav.main-nav a.active { color: var(--ink); font-weight: 700; }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 8px; padding: 8px 10px; font-size: 18px; cursor: pointer; }

.btn {
  display: inline-block; padding: 10px 18px; border-radius: 8px; font-weight: 600; font-size: 14.5px;
  border: 1px solid transparent; cursor: pointer; text-align: center;
}
.btn-primary { background: var(--gold); color: #fff; }
.btn-primary:hover { background: var(--gold-dark); text-decoration: none; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--bg-soft); text-decoration: none; }
.btn-block { width: 100%; }

/* Hero */
.hero { padding: 64px 0 40px; text-align: center; background: linear-gradient(180deg, var(--bg-soft), var(--bg)); }
.hero .kicker { color: var(--gold-dark); font-weight: 700; letter-spacing: .03em; font-size: 14px; margin-bottom: 14px; }
.hero h1 { font-size: 32px; line-height: 1.3; margin: 0 0 18px; max-width: 780px; margin-inline: auto; }
.hero p.lede { color: var(--ink-soft); font-size: 17px; max-width: 640px; margin: 0 auto 26px; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Sections */
section { padding: 48px 0; }
section.alt { background: var(--bg-soft); }
h2.section-title { font-size: 24px; margin: 0 0 8px; }
p.section-sub { color: var(--muted); margin: 0 0 28px; max-width: 680px; }

.grid { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 20px;
  background: #fff;
}
.card h3 { margin: 0 0 8px; font-size: 17px; }
.card p { margin: 0; color: var(--ink-soft); font-size: 14.5px; }

.badge-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 24px; }
.badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line); font-size: 13px; font-weight: 600; color: var(--ink-soft);
}

.verdict-card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; background: #fff;
  max-width: 560px; margin: 28px auto 0; text-align: left;
}
.verdict-card .vhead { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; flex-wrap: wrap; gap: 8px; }
.verdict-card .instrument { font-weight: 700; font-size: 16px; }
.verdict-tag { padding: 5px 12px; border-radius: 999px; font-weight: 700; font-size: 13px; background: #eaf5ee; color: var(--green); }
.verdict-card dl { margin: 0; }
.verdict-card dt { font-weight: 700; font-size: 13.5px; margin-top: 10px; }
.verdict-card dd { margin: 2px 0 0; color: var(--ink-soft); font-size: 14px; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step .num { font-weight: 800; color: var(--gold-dark); font-size: 22px; }
.step h3 { margin: 6px 0 6px; font-size: 16px; }
.step p { margin: 0; color: var(--ink-soft); font-size: 14px; }

blockquote.callout {
  border-left: 4px solid var(--gold); margin: 0; padding: 6px 0 6px 20px; color: var(--ink-soft);
  font-size: 16px; font-style: italic;
}

ul.no-list { list-style: none; margin: 0; padding: 0; }
ul.no-list li { padding: 10px 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
ul.no-list li:last-child { border-bottom: none; }
ul.no-list li strong { color: var(--ink); }

.pending-box {
  border: 1px dashed var(--line); border-radius: var(--radius); padding: 24px; text-align: center;
  background: var(--bg-soft);
}
.pending-box p { color: var(--ink-soft); margin: 0 0 16px; }

.faq-item { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { margin: 0 0 8px; font-size: 16px; }
.faq-item p { margin: 0; color: var(--ink-soft); }

.disclosure-block { border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; background: var(--bg-soft); }
.disclosure-block h3 { margin-top: 0; }
.disclosure-block ol { padding-left: 20px; color: var(--ink-soft); }
.disclosure-block ol li { margin-bottom: 10px; }

table.plan-table { width: 100%; border-collapse: collapse; margin-top: 10px; }
table.plan-table th, table.plan-table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); font-size: 14px; }
table.plan-table th { color: var(--muted); font-weight: 600; }

/* Footer */
footer.site-footer { background: #14161b; color: #cfd3da; padding: 44px 0 26px; margin-top: 40px; }
footer.site-footer a { color: #f0d78c; }
footer.site-footer h4 { color: #fff; font-size: 14px; margin: 0 0 10px; }
footer.site-footer p { font-size: 13.5px; color: #a7acb6; margin: 0 0 8px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 26px; }
.footer-legal { border-top: 1px solid #2a2d34; margin-top: 30px; padding-top: 20px; font-size: 12px; color: #888e99; }

/* Modal (Get Started / Log In) */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(10,10,12,.55); display: none;
  align-items: center; justify-content: center; z-index: 100; padding: 16px;
}
.modal-backdrop.open { display: flex; }
.modal { background: #fff; border-radius: var(--radius); padding: 26px; width: 100%; max-width: 380px; }
.modal h3 { margin: 0 0 4px; }
.modal p.modal-sub { color: var(--muted); font-size: 13.5px; margin: 0 0 18px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.field input { width: 100%; padding: 10px 12px; border: 1px solid var(--line); border-radius: 8px; font-size: 14px; }
.modal-status { font-size: 13.5px; margin-top: 12px; min-height: 18px; }
.modal-status.err { color: var(--red); }
.modal-status.ok { color: var(--green); }
.modal-close { position: absolute; top: 14px; right: 16px; background: none; border: none; font-size: 20px; cursor: pointer; color: var(--muted); }
.modal-wrap { position: relative; }
.modal-switch { font-size: 13px; color: var(--muted); margin-top: 14px; text-align: center; }

@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  nav.main-nav { position: fixed; top: 61px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: flex-start; padding: 14px 20px; gap: 14px; display: none; }
  nav.main-nav.open { display: flex; }
  .nav-toggle { display: inline-block; }
  .hero h1 { font-size: 26px; }
  .steps { grid-template-columns: 1fr; }
  .nav-actions .btn-ghost { display: none; }
}
