/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; }

/* ===== VARIABLES ===== */
:root {
  --navy:       #0d1829;
  --navy-2:     #111d30;
  --navy-3:     #13243f;
  --navy-4:     #1a2744;
  --navy-card:  rgba(30,52,80,0.5);
  --navy-card-hover: #213857;
  --blue:       #3b82f6;
  --blue-dark:  #2563eb;
  --blue-dim:   rgba(37,99,235,0.08);
  --green:      #22c55e;
  --white:      #ffffff;
  --slate-200:  #e2e8f0;
  --slate-300:  #cbd5e1;
  --slate-400:  #94a3b8;
  --slate-500:  #64748b;
  --red:        #f87171;
  --serif:      'Georgia', 'Times New Roman', serif;
  --sans:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body { background: var(--navy); color: var(--white); font-family: var(--sans); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--sans); border: none; }

/* ===== TOPBAR ===== */
.topbar { background: var(--blue-dim); border-bottom: 1px solid rgba(59,130,246,0.12); padding: 7px 0; }
.topbar-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: flex; justify-content: space-between; align-items: center; }
.topbar-left { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate-300); }
.topbar-right { display: flex; gap: 20px; }
.topbar-right a { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate-300); transition: color 0.2s; }
.topbar-right a:hover { color: var(--white); }

/* ===== NAVBAR ===== */
.navbar { background: rgba(13,24,41,0.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid rgba(30,41,59,0.4); position: sticky; top: 0; z-index: 100; }
.navbar-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; height: 64px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; cursor: pointer; }
.logo-bar { width: 3px; height: 36px; background: var(--blue); margin-right: 10px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .logo-han { font-size: 17px; font-weight: 700; letter-spacing: 0.05em; color: var(--white); font-family: var(--sans); }
.logo-text .logo-research { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue); font-weight: 500; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate-300); padding-bottom: 4px; border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); border-bottom-color: var(--blue); }

/* ===== HERO ===== */
.hero { min-height: 88vh; display: flex; align-items: center; position: relative; overflow: hidden; background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%); }
.hero-bg-shape { position: absolute; right: 8%; top: 50%; transform: translateY(-50%); width: 400px; height: 400px; opacity: 0.06; pointer-events: none; }
.hero-content { width: 100%; max-width: 1200px; margin: 0 auto; padding: 80px 32px; position: relative; z-index: 2; }
.hero-inner { max-width: 600px; }
.hero-label { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.hero-label-line { width: 40px; height: 2px; background: var(--blue); }
.hero-label-text { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue); font-weight: 500; }
.hero h1 { font-family: var(--serif); font-size: 56px; font-weight: 700; line-height: 1.15; margin-bottom: 24px; color: var(--white); }
.hero h1 .hero-blue { color: var(--blue); display: block; }
.hero-desc { font-size: 16px; line-height: 1.7; color: var(--slate-300); max-width: 480px; margin-bottom: 36px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary { background: var(--blue-dark); color: var(--white); padding: 14px 28px; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 6px; transition: all 0.25s; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 2px 8px rgba(37,99,235,0.3); }
.btn-primary:hover { background: var(--blue); box-shadow: 0 4px 16px rgba(37,99,235,0.4); }
.btn-outline { background: transparent; color: var(--white); padding: 14px 28px; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 6px; border: 1px solid rgba(255,255,255,0.25); transition: all 0.25s; display: inline-flex; align-items: center; cursor: pointer; }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }

/* ===== SECTION ===== */
.section { padding: 80px 0; }
.section-container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue); font-weight: 600; margin-bottom: 12px; display: block; }
.section-title { font-family: var(--serif); font-size: 38px; font-weight: 700; color: var(--white); letter-spacing: -0.01em; }

/* ===== REPORTS SECTION (home page) ===== */
.reports-section { background: var(--navy-2); border-top: 1px solid rgba(51,65,85,0.3); border-bottom: 1px solid rgba(51,65,85,0.3); }

/* ===== REPORTS HEADER ===== */
.reports-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.view-all-link { font-size: 13px; color: var(--blue); display: inline-flex; align-items: center; gap: 6px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; transition: gap 0.2s; }
.view-all-link:hover { gap: 10px; }

/* ===== REPORT ROW (separate rounded cards) ===== */
.reports-list { display: flex; flex-direction: column; gap: 20px; }
.report-row { background: var(--navy-card); border: 1px solid rgba(51,65,85,0.3); border-radius: 12px; padding: 28px 36px; display: flex; align-items: flex-start; gap: 28px; cursor: pointer; transition: all 0.25s ease; }
.report-row:hover { background: var(--navy-card-hover); border-color: rgba(59,130,246,0.25); box-shadow: 0 4px 24px rgba(0,0,0,0.15); }
.report-row-ticker { font-size: 12px; color: var(--slate-500); font-weight: 500; font-family: 'JetBrains Mono', monospace; min-width: 56px; text-align: right; flex-shrink: 0; padding-top: 4px; }
.report-row-body { flex: 1; min-width: 0; }
.report-row-top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.badge-new { background: var(--blue-dark); color: var(--white); font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 10px; border-radius: 4px; }
.report-row-company { font-size: 13px; color: var(--slate-300); font-weight: 500; }
.report-row-title { font-family: var(--serif); font-size: 19px; font-weight: 700; color: var(--white); margin-bottom: 10px; line-height: 1.45; }
.report-row-summary { font-size: 14px; color: var(--slate-400); line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 14px; }
.report-row-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.cat-pill { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; border: 1px solid transparent; white-space: nowrap; }
.cat-business-fraud { background: rgba(249,115,22,0.12); color: #fb923c; border-color: rgba(249,115,22,0.2); }
.cat-accounting-fraud { background: rgba(168,85,247,0.12); color: #c084fc; border-color: rgba(168,85,247,0.2); }
.cat-fundamental-problem { background: rgba(59,130,246,0.12); color: #60a5fa; border-color: rgba(59,130,246,0.2); }
.cat-governance-failure { background: rgba(239,68,68,0.12); color: #f87171; border-color: rgba(239,68,68,0.2); }
.cat-open-letter { background: rgba(20,184,166,0.12); color: #2dd4bf; border-color: rgba(20,184,166,0.2); }
.report-row-date { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--slate-500); }
.report-row-downside { display: flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; color: var(--red); }
.report-row-arrow { color: var(--slate-500); font-size: 20px; flex-shrink: 0; transition: transform 0.2s, color 0.2s; align-self: center; }
.report-row:hover .report-row-arrow { transform: translateX(4px); color: var(--blue); }

/* ===== VIEW ALL BUTTON ===== */
.view-all-btn { display: block; text-align: center; margin-top: 32px; font-size: 13px; color: var(--blue); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 16px; border: 1px solid rgba(59,130,246,0.2); border-radius: 8px; transition: all 0.25s; }
.view-all-btn:hover { background: rgba(59,130,246,0.08); border-color: rgba(59,130,246,0.5); }

/* ===== SUBSCRIBE ===== */
.subscribe-section { background: linear-gradient(180deg, #14243a 0%, #0f1d30 100%); border-top: 1px solid rgba(51,65,85,0.3); border-bottom: 1px solid rgba(51,65,85,0.3); padding: 80px 0; text-align: center; }
.subscribe-section h2 { font-family: var(--serif); font-size: 40px; font-weight: 700; margin-bottom: 14px; letter-spacing: -0.01em; }
.subscribe-section p { color: var(--slate-300); font-size: 15px; line-height: 1.7; max-width: 440px; margin: 0 auto 32px; }
.subscribe-form { display: flex; max-width: 480px; margin: 0 auto; }
.subscribe-form input { flex: 1; background: var(--navy-3); border: 1px solid rgba(255,255,255,0.12); border-right: none; color: var(--white); padding: 13px 18px; font-size: 14px; border-radius: 4px 0 0 4px; outline: none; font-family: var(--sans); transition: border-color 0.2s; }
.subscribe-form input::placeholder { color: var(--slate-500); }
.subscribe-form input:focus { border-color: var(--blue); }
.subscribe-form button { background: var(--blue-dark); color: var(--white); padding: 13px 22px; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 0 4px 4px 0; transition: all 0.25s; white-space: nowrap; display: flex; align-items: center; gap: 6px; box-shadow: 0 2px 8px rgba(37,99,235,0.25); }
.subscribe-form button:hover { background: var(--blue); box-shadow: 0 4px 12px rgba(37,99,235,0.35); }
.subscribe-msg { margin-top: 14px; font-size: 13px; color: #4ade80; min-height: 20px; }

/* ===== FOOTER ===== */
.footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.06); padding: 56px 0 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px 48px; display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 48px; }
.footer-desc { margin-top: 14px; font-size: 13px; color: var(--slate-400); line-height: 1.6; max-width: 220px; }
.footer-col-title { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--slate-400); font-weight: 600; margin-bottom: 18px; }
.footer-col a { display: block; font-size: 14px; color: var(--slate-300); margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-col-stay p { font-size: 13px; color: var(--slate-400); margin-bottom: 14px; line-height: 1.6; }
.footer-sub-link { font-size: 13px; color: var(--blue); font-weight: 500; display: inline-flex; align-items: center; gap: 4px; transition: gap 0.2s; }
.footer-sub-link:hover { gap: 8px; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 20px 32px; border-top: 1px solid rgba(255,255,255,0.06); font-size: 12px; color: var(--slate-500); }

/* ===== PAGE HEADER ===== */
.page-header { padding: 72px 0 56px; border-bottom: 1px solid rgba(255,255,255,0.06); background: var(--navy); }
.page-header-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.page-header h1 { font-family: var(--serif); font-size: 44px; font-weight: 700; color: var(--white); margin-bottom: 10px; letter-spacing: -0.01em; }
.page-header p { color: var(--slate-400); font-size: 16px; margin-top: 8px; line-height: 1.6; }

/* ===== RESEARCH PAGE ===== */
.research-filters { display: flex; gap: 12px; margin-bottom: 32px; flex-wrap: wrap; align-items: center; }
.search-wrap { flex: 1; min-width: 240px; position: relative; }
.search-wrap svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--slate-500); width: 15px; height: 15px; pointer-events: none; }
.search-input { width: 100%; background: var(--navy-2); border: 1px solid rgba(255,255,255,0.1); color: var(--white); padding: 11px 16px 11px 40px; font-size: 14px; border-radius: 6px; outline: none; font-family: var(--sans); transition: border-color 0.2s; }
.search-input::placeholder { color: var(--slate-500); }
.search-input:focus { border-color: var(--blue); }
.filter-select { background: var(--navy-2); border: 1px solid rgba(255,255,255,0.1); color: var(--white); padding: 11px 32px 11px 14px; font-size: 13px; border-radius: 6px; outline: none; font-family: var(--sans); cursor: pointer; appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 10px center; }
.filter-select option { background: var(--navy-2); }
.research-table-wrap { border-radius: 8px; overflow: hidden; border: 1px solid rgba(255,255,255,0.07); }
.research-table-head { background: var(--navy-3); display: grid; grid-template-columns: 1fr 180px 90px 140px; padding: 14px 24px; gap: 16px; }
.research-table-head span { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate-500); font-weight: 600; }
.research-table-row { background: var(--navy-2); display: grid; grid-template-columns: 1fr 180px 90px 140px; padding: 20px 24px; gap: 16px; align-items: center; border-top: 1px solid rgba(255,255,255,0.05); cursor: pointer; transition: all 0.2s; }
.research-table-row:hover { background: var(--navy-3); }
.research-table-title { display: flex; align-items: flex-start; gap: 10px; }
.research-table-title-text { font-size: 14px; font-weight: 600; color: var(--white); line-height: 1.45; }
.research-table-company { font-size: 13px; color: var(--slate-300); }
.research-table-ticker { font-size: 12px; color: var(--slate-500); font-family: monospace; letter-spacing: 0.05em; }
.research-table-date { font-size: 12px; color: var(--slate-500); }

/* ===== ABOUT PAGE ===== */
.about-quote { border-left: 4px solid var(--blue); padding: 20px 28px; margin: 40px 0; background: var(--navy-2); border-radius: 0 6px 6px 0; }
.about-quote p { font-family: var(--serif); font-size: 19px; font-style: italic; color: var(--slate-200); line-height: 1.7; }
.about-body p { font-size: 16px; color: var(--slate-300); line-height: 1.8; margin-bottom: 18px; }
.about-body p strong { color: var(--white); }
.methodology-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.method-card { background: var(--navy-2); border: 1px solid rgba(255,255,255,0.07); border-radius: 8px; padding: 28px; }
.method-icon { width: 36px; height: 36px; color: var(--blue); margin-bottom: 16px; }
.method-card h3 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 10px; font-family: var(--sans); }
.method-card p { font-size: 14px; color: var(--slate-400); line-height: 1.7; }

/* ===== CONTACT PAGE ===== */
.contact-form-wrap { max-width: 560px; margin: 0 auto; padding: 48px 0; }
.form-group { margin-bottom: 22px; }
.form-label { display: block; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate-400); font-weight: 600; margin-bottom: 8px; }
.form-input { width: 100%; background: var(--navy-2); border: 1px solid rgba(255,255,255,0.1); color: var(--white); padding: 13px 16px; font-size: 14px; border-radius: 6px; outline: none; font-family: var(--sans); transition: border-color 0.2s; }
.form-input::placeholder { color: var(--slate-500); }
.form-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(59,130,246,0.1); }
textarea.form-input { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; background: var(--blue-dark); color: var(--white); padding: 14px; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 6px; transition: background 0.2s; margin-top: 8px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.form-submit:hover { background: var(--blue); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-msg { margin-top: 16px; font-size: 14px; text-align: center; min-height: 20px; }
.form-msg.success { color: #4ade80; }
.form-msg.error { color: var(--red); }
.success-card { background: var(--navy-2); border: 1px solid rgba(74,222,128,0.2); border-radius: 8px; padding: 40px; text-align: center; }
.success-card h3 { font-size: 20px; color: #4ade80; margin-bottom: 10px; font-family: var(--serif); }
.success-card p { color: var(--slate-300); font-size: 14px; }

/* ===== REPORT DETAIL ===== */
.report-detail { max-width: 800px; margin: 0 auto; padding: 56px 32px; }
.report-detail-badges { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.ticker-pill { font-size: 11px; color: var(--slate-300); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); padding: 3px 10px; border-radius: 100px; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.05em; }
.report-detail-title { font-family: var(--serif); font-size: 34px; font-weight: 700; line-height: 1.3; margin-bottom: 16px; color: var(--white); }
.report-detail-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; color: var(--slate-400); font-size: 14px; }
.report-detail-meta .company-name { color: var(--slate-300); font-weight: 500; }
.report-detail-meta .meta-date { display: flex; align-items: center; gap: 5px; color: var(--slate-500); font-size: 13px; }
.report-detail-meta .meta-downside { display: flex; align-items: center; gap: 5px; color: var(--red); font-weight: 600; font-size: 13px; }
.report-detail-body { color: var(--slate-300); font-size: 15.5px; line-height: 1.85; }
.report-detail-body h2 { font-family: var(--serif); font-size: 26px; color: var(--white); margin: 40px 0 16px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.report-detail-body h3 { font-family: var(--serif); font-size: 20px; color: var(--white); margin: 32px 0 12px; }
.report-detail-body h4 { font-size: 16px; font-weight: 700; color: var(--slate-200); margin: 24px 0 10px; }
.report-detail-body p { margin-bottom: 18px; }
.report-detail-body strong { color: var(--white); }
.report-detail-body table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 13px; overflow-x: auto; display: block; }
.report-detail-body th { background: var(--navy-3); color: var(--slate-200); padding: 10px 14px; text-align: left; font-weight: 600; border: 1px solid rgba(255,255,255,0.08); white-space: nowrap; }
.report-detail-body td { padding: 10px 14px; border: 1px solid rgba(255,255,255,0.06); color: var(--slate-300); background: var(--navy-2); }
.report-detail-body ul, .report-detail-body ol { padding-left: 24px; margin-bottom: 16px; }
.report-detail-body li { margin-bottom: 6px; }
.back-btn { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--blue); margin-bottom: 32px; font-weight: 500; transition: gap 0.2s; cursor: pointer; background: none; border: none; padding: 0; }
.back-btn:hover { gap: 12px; }

/* ===== ADMIN ===== */
.admin-wrap { max-width: 960px; margin: 0 auto; padding: 40px 32px; }
.admin-wrap h2 { font-family: var(--serif); font-size: 28px; margin-bottom: 24px; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.admin-table th { background: var(--navy-3); padding: 10px 14px; text-align: left; color: var(--slate-300); border: 1px solid rgba(255,255,255,0.07); }
.admin-table td { padding: 10px 14px; border: 1px solid rgba(255,255,255,0.05); color: var(--slate-300); background: var(--navy-2); word-break: break-word; max-width: 200px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.admin-login { max-width: 360px; margin: 80px auto; }
.admin-login h2 { font-family: var(--serif); font-size: 26px; margin-bottom: 28px; text-align: center; }

/* ===== LOADING ===== */
.loading-wrap { display: flex; align-items: center; justify-content: center; min-height: 100vh; gap: 14px; }
.spinner { width: 28px; height: 28px; border: 3px solid rgba(59,130,246,0.2); border-top-color: var(--blue); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.no-reports { text-align: center; padding: 60px; color: var(--slate-500); }

/* ===== RESPONSIVE — TABLET (max 1024px) ===== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 42px; }
  .hero { min-height: 70vh; }
  .hero-content { padding: 60px 24px; }
  .section-container, .topbar-inner, .navbar-inner, .page-header-inner, .footer-inner, .footer-bottom { padding-left: 24px; padding-right: 24px; }
  .research-table-head, .research-table-row { grid-template-columns: 1fr 140px 80px 120px; padding: 12px 16px; gap: 12px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .methodology-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}

/* ===== RESPONSIVE — MOBILE (max 768px) ===== */
@media (max-width: 768px) {
  /* Topbar */
  .topbar-inner { flex-direction: column; gap: 4px; text-align: center; }
  .topbar-left { font-size: 10px; }
  .topbar-right { justify-content: center; }

  /* Navbar */
  .navbar-inner { height: 56px; padding: 0 16px; }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 11px; letter-spacing: 0.06em; }

  /* Hero */
  .hero { min-height: auto; padding: 40px 0; }
  .hero-content { padding: 40px 20px; }
  .hero-inner { max-width: 100%; }
  .hero h1 { font-size: 32px; }
  .hero-desc { font-size: 14px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons a { text-align: center; justify-content: center; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }

  /* Sections */
  .section { padding: 48px 0; }
  .section-container, .topbar-inner, .page-header-inner { padding-left: 16px; padding-right: 16px; }
  .section-title { font-size: 28px; }

  /* Reports */
  .reports-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .report-row { padding: 22px 18px; flex-direction: column; gap: 12px; }
  .report-row-ticker { text-align: left; min-width: auto; font-size: 11px; }
  .report-row-title { font-size: 16px; }
  .report-row-arrow { display: none; }
  .report-row-meta { gap: 10px; }

  /* Research table → stacked on mobile */
  .research-table-head { display: none; }
  .research-table-row { display: flex; flex-direction: column; gap: 6px; padding: 16px; }
  .research-table-title { flex-direction: column; }
  .research-filters { flex-direction: column; }
  .search-wrap { min-width: 100%; }

  /* Page header */
  .page-header { padding: 40px 0 32px; }
  .page-header h1 { font-size: 32px; }

  /* About */
  .about-quote { padding: 16px 20px; }
  .about-quote p { font-size: 16px; }
  .methodology-grid { grid-template-columns: 1fr; }
  .method-card { padding: 20px; }

  /* Contact */
  .contact-form-wrap { padding: 32px 0; }

  /* Report detail */
  .report-detail { padding: 32px 16px; }
  .report-detail-title { font-size: 26px; }
  .report-detail-meta { flex-direction: column; gap: 8px; align-items: flex-start; }
  .report-detail-badges { flex-wrap: wrap; }

  /* Subscribe */
  .subscribe-section { padding: 48px 0; }
  .subscribe-section h2 { font-size: 28px; }
  .subscribe-form { flex-direction: column; }
  .subscribe-form input { border-right: 1px solid rgba(255,255,255,0.12); border-radius: 4px; margin-bottom: 8px; }
  .subscribe-form button { border-radius: 4px; justify-content: center; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 32px 16px; }
  .footer-bottom { padding: 16px; text-align: center; }

  /* Admin */
  .admin-wrap { padding: 24px 16px; }
  .admin-table { font-size: 11px; }
  .admin-table th, .admin-table td { padding: 8px 10px; }
}

/* ===== RESPONSIVE — SMALL MOBILE (max 480px) ===== */
@media (max-width: 480px) {
  .hero h1 { font-size: 26px; }
  .hero-label-text { font-size: 10px; }
  .section-title { font-size: 24px; }
  .page-header h1 { font-size: 26px; }
  .report-detail-title { font-size: 22px; }
  .subscribe-section h2 { font-size: 24px; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 10px; }
  .report-row { padding: 16px 12px; }
}
