/* BlueEye Advisory — Insights landing page styles (v5 branding) */
* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy-deep: #0D1B33;
  --navy: #1B2A4A;
  --blue: #0077FF;
  --blue-soft: #B8C5D9;
  --ice: #F0F4FA;
  --text: #1a1a2e;
  --muted: #4B5563;
  --border: #E5E7EB;
}
html, body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif; color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Top nav */
.nav { background: var(--navy-deep); padding: 18px 32px; display: flex; align-items: center; justify-content: space-between; }
.nav a.home { display: flex; align-items: center; gap: 12px; color: #fff; font-weight: 800; letter-spacing: 2px; font-size: 14px; }
.nav a.home img { width: 36px; height: 36px; }
.nav .back-link { color: var(--blue-soft); font-size: 13px; letter-spacing: 0.5px; }
.nav .back-link:hover { color: #fff; text-decoration: none; }

/* Hero */
.hero { background: var(--navy-deep); color: #fff; padding: 72px 32px 88px; position: relative; overflow: hidden; }
.hero-glow { position: absolute; right: -180px; top: -120px; width: 720px; height: 720px; border-radius: 50%; background: radial-gradient(circle, rgba(0,119,255,0.28) 0%, rgba(0,119,255,0.08) 45%, transparent 70%); pointer-events: none; }
.hero-logo-bg { position: absolute; right: 3%; top: 50%; transform: translateY(-50%); width: 440px; height: 440px; opacity: 0.9; pointer-events: none; }
.hero-logo-bg img { width: 100%; height: 100%; object-fit: contain; }
.hero-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.hero .tag { font-size: 11px; font-weight: 700; letter-spacing: 3px; color: var(--blue); margin-bottom: 18px; }
.hero h1 { font-family: Georgia, "Times New Roman", serif; font-size: 56px; line-height: 1.05; font-weight: 700; max-width: 720px; margin-bottom: 18px; letter-spacing: -0.5px; }
.hero .subtitle { font-size: 20px; color: var(--blue-soft); font-weight: 400; line-height: 1.45; max-width: 640px; }

/* Content */
.content { max-width: 880px; margin: 0 auto; padding: 72px 32px 40px; }
.content .lede { font-size: 19px; line-height: 1.6; color: var(--text); margin-bottom: 20px; }
.content h2 { font-size: 13px; font-weight: 700; letter-spacing: 2px; color: var(--blue); text-transform: uppercase; margin: 36px 0 18px; }
.content h3 { font-size: 19px; font-weight: 700; color: var(--navy); margin: 22px 0 6px; }
.content p { font-size: 16px; line-height: 1.65; color: var(--text); margin-bottom: 14px; }
.content .item { margin-bottom: 22px; }
.content .item-body { font-size: 15px; color: var(--muted); line-height: 1.6; }
.content .divider { border-top: 1px solid var(--blue); opacity: 0.25; margin: 36px 0; }
.content ul { list-style: none; padding: 0; margin: 0 0 20px; }
.content ul li { position: relative; padding-left: 22px; font-size: 16px; line-height: 1.6; color: var(--text); margin-bottom: 10px; }
.content ul li::before { content: ">"; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.content .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.content .stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin: 28px 0; padding: 28px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.content .stat-num { font-family: Georgia, serif; font-size: 44px; font-weight: 700; color: var(--blue); line-height: 1; }
.content .stat-label { font-size: 14px; color: var(--muted); margin-top: 8px; line-height: 1.4; }
.content .pill { display: inline-block; color: var(--blue); font-weight: 700; font-size: 18px; margin-right: 12px; }

/* Callout */
.callout { background: var(--ice); border-left: 4px solid var(--blue); padding: 22px 28px; margin: 36px 0; border-radius: 0 6px 6px 0; }
.callout .label { font-size: 11px; font-weight: 700; letter-spacing: 2px; color: var(--blue); margin-bottom: 8px; }
.callout .body { font-size: 17px; line-height: 1.55; color: var(--navy); font-style: italic; }

/* CTA block */
.cta { background: var(--navy-deep); color: #fff; padding: 72px 32px; text-align: center; margin-top: 60px; }
.cta-inner { max-width: 720px; margin: 0 auto; }
.cta h2 { font-family: Georgia, serif; font-size: 36px; font-weight: 700; margin-bottom: 14px; letter-spacing: -0.3px; color: #fff; text-transform: none; }
.cta p { font-size: 17px; color: var(--blue-soft); margin-bottom: 28px; line-height: 1.5; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-block; padding: 14px 28px; border-radius: 4px; font-size: 15px; font-weight: 600; letter-spacing: 0.5px; transition: all 0.15s; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: #0066dd; text-decoration: none; }
.btn-secondary { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.btn-secondary:hover { background: rgba(255,255,255,0.08); text-decoration: none; }

/* Diagnostic CTA */
.diagnostic-cta { background: var(--navy-deep); padding: 56px 32px; text-align: center; }
.diagnostic-cta .cta-inner { max-width: 720px; margin: 0 auto; }
.diagnostic-cta h2 { font-family: Georgia, serif; font-size: 28px; font-weight: 700; color: #fff; margin-bottom: 12px; letter-spacing: -0.3px; text-transform: none; }
.diagnostic-cta p { font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 24px; line-height: 1.55; }
.diagnostic-cta .btn-primary { background: var(--blue); color: #fff; font-size: 16px; padding: 14px 32px; border-radius: 6px; }
.diagnostic-cta .btn-primary:hover { background: #005cd1; }

/* Subscribe CTA */
.subscribe-cta { background: var(--ice); padding: 56px 32px; text-align: center; }
.subscribe-cta .cta-inner { max-width: 720px; margin: 0 auto; }
.subscribe-cta h2 { font-family: Georgia, serif; font-size: 28px; font-weight: 700; color: var(--navy); margin-bottom: 12px; letter-spacing: -0.3px; text-transform: none; }
.subscribe-cta p { font-size: 16px; color: var(--muted); margin-bottom: 24px; line-height: 1.55; }

/* Footer */
.footer { background: #0A1322; color: #8897AD; padding: 36px 32px; font-size: 13px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer a { color: var(--blue-soft); }
.footer .links { display: flex; gap: 22px; }

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 48px 24px 60px; }
  .hero h1 { font-size: 36px; }
  .hero .subtitle { font-size: 17px; }
  .hero-logo-bg { width: 300px; height: 300px; opacity: 0.5; right: -60px; }
  .content { padding: 48px 24px 30px; }
  .content .lede { font-size: 17px; }
  .content .two-col { grid-template-columns: 1fr; gap: 24px; }
  .content .stat-row { grid-template-columns: 1fr; gap: 20px; }
  .cta h2 { font-size: 28px; }
  .nav { padding: 14px 20px; }
}

/* Directory / index */
.directory { max-width: 1100px; margin: 0 auto; padding: 72px 32px; }
.directory h1 { font-family: Georgia, serif; font-size: 44px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.5px; }
.directory .lead { font-size: 18px; color: var(--muted); margin-bottom: 48px; max-width: 680px; line-height: 1.55; }
.card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 28px; transition: all 0.15s; }
.card:hover { border-color: var(--blue); box-shadow: 0 4px 20px rgba(0,119,255,0.08); text-decoration: none; }
.card .card-tag { font-size: 10px; font-weight: 700; letter-spacing: 2px; color: var(--blue); margin-bottom: 10px; }
.card h3 { font-family: Georgia, serif; font-size: 22px; color: var(--navy); margin-bottom: 8px; line-height: 1.25; }
.card p { font-size: 14px; color: var(--muted); line-height: 1.5; }
@media (max-width: 768px) {
  .card-grid { grid-template-columns: 1fr; }
  .directory h1 { font-size: 32px; }
  .directory { padding: 48px 24px; }
}
