/* ═══════════════════════════════════════════════════════════════════════
   ANEW MARKET DYNAMICS — Design System
   Navy + Emerald premium SaaS aesthetic, 2026 design trends
   ═══════════════════════════════════════════════════════════════════════ */

:root {
  /* Brand colors */
  --navy-950: #04101f;
  --navy-900: #07172b;
  --navy-800: #0c2540;
  --navy-700: #163e63;
  --navy-600: #225a8a;
  --emerald-500: #00c896;
  --emerald-400: #2dd4a8;
  --emerald-300: #6ee7c5;
  --emerald-100: #c6f6e2;
  --emerald-50: #ecfdf6;
  --gold-500: #f5b800;
  --coral-500: #ff6f5e;
  --red-500: #ef4444;

  /* Neutrals */
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;

  /* Semantic */
  --bg: #fbfcfd;
  --bg-alt: #f1f5f9;
  --white: #ffffff;
  --text: var(--slate-900);
  --text-muted: var(--slate-600);
  --text-light: var(--slate-500);
  --border: var(--slate-200);
  --border-strong: var(--slate-300);

  /* Layout */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 22px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(7, 23, 43, 0.04), 0 1px 3px rgba(7, 23, 43, 0.04);
  --shadow-md: 0 4px 12px rgba(7, 23, 43, 0.06), 0 2px 4px rgba(7, 23, 43, 0.04);
  --shadow-lg: 0 20px 40px rgba(7, 23, 43, 0.08), 0 8px 16px rgba(7, 23, 43, 0.05);
  --shadow-xl: 0 30px 60px rgba(7, 23, 43, 0.12), 0 12px 24px rgba(7, 23, 43, 0.08);

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Tier colors */
  --tier-explorer: var(--slate-500);
  --tier-standard: var(--emerald-500);
  --tier-professional: #FF8C42;
  --tier-enterprise: #6366F1;
}

/* ───── Base ───── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; padding: 0;
  font-family: var(--font);
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 700; color: var(--navy-900); }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* ───── Containers ───── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.container-md { max-width: 920px; margin: 0 auto; padding: 0 32px; }
.container-sm { max-width: 640px; margin: 0 auto; padding: 0 32px; }
.container-prose { max-width: 720px; margin: 0 auto; padding: 0 32px; }
.section { padding: 100px 32px; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--navy-900); color: white; }

.section-head { text-align: center; margin: 0 auto 60px; max-width: 720px; }
.section-head h2 {
  font-family: var(--font-serif);
  font-size: 48px; font-weight: 400;
  line-height: 1.1; letter-spacing: -1px;
  color: var(--navy-900); margin-bottom: 18px;
}
.section-head h2 em { font-style: italic; color: var(--emerald-500); }
.section-head p { font-size: 18px; color: var(--slate-700); line-height: 1.55; }
.section-dark .section-head h2 { color: white; }
.section-dark .section-head p { color: rgba(255,255,255,0.7); }

.eyebrow {
  display: inline-block;
  font-size: 12.5px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--emerald-500);
  margin-bottom: 14px;
}

/* ───── Announcement bar ───── */
.announce {
  background: var(--navy-900); color: white;
  padding: 8px; text-align: center; font-size: 13px;
  letter-spacing: 0.2px;
}
.announce .emerald { color: var(--emerald-300); font-weight: 600; }
.announce a { color: white; text-decoration: underline; opacity: 0.8; margin-left: 6px; }
.announce a:hover { opacity: 1; }

/* ───── Navigation ───── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 252, 253, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(7, 23, 43, 0.06);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 10px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 17px; color: var(--navy-900);
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo {
  height: 52px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .brand-logo { height: 44px; }
}
@media (max-width: 600px) {
  .brand-logo { height: 38px; }
}
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 500; }
.nav-links a { color: var(--slate-700); transition: color 0.15s; padding: 6px 0; }
.nav-links a:hover, .nav-links a.is-active { color: var(--navy-900); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-toggle { display: none; font-size: 22px; color: var(--navy-900); padding: 4px 10px; }

/* ───── Buttons ───── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600;
  padding: 9px 18px;
  border-radius: 9px;
  transition: all 0.2s;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  border: none;
  font-family: inherit;
}
.btn-ghost { color: var(--slate-700); background: transparent; }
.btn-ghost:hover { color: var(--navy-900); background: var(--slate-100); }
.btn-primary {
  background: var(--navy-900); color: white;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-primary:hover { background: var(--navy-800); transform: translateY(-1px); }
.btn-emerald { background: var(--emerald-500); color: var(--navy-900); font-weight: 700; }
.btn-emerald:hover { background: var(--emerald-400); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: white; color: var(--navy-900); border: 1px solid var(--border-strong); }
.btn-outline:hover { border-color: var(--navy-900); }
.btn-outline-light { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.2); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); }
.btn-danger { background: var(--red-500); color: white; }
.btn-danger:hover { background: #DC2626; }
.btn-block { display: flex; width: 100%; justify-content: center; }
.btn-lg { padding: 14px 26px; font-size: 15px; border-radius: 11px; }
.btn-sm { padding: 7px 14px; font-size: 13px; }

/* ───── Hero ───── */
.hero { padding: 70px 32px 90px; }
.hero-inner { max-width: 1280px; margin: 0 auto; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--emerald-50); color: var(--navy-800);
  padding: 6px 14px; border-radius: 100px;
  font-size: 12.5px; font-weight: 600;
  border: 1px solid rgba(0, 200, 150, 0.2);
  margin-bottom: 22px;
}
.pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--emerald-500);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 200, 150, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(0, 200, 150, 0); }
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: 64px; line-height: 1.05;
  color: var(--navy-900);
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  font-weight: 400;
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(90deg, var(--navy-900), var(--emerald-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lede {
  font-size: 19px; color: var(--slate-700);
  line-height: 1.5;
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-ctas { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.hero-trust {
  margin-top: 40px;
  display: flex; align-items: center; gap: 24px;
  font-size: 13px; color: var(--slate-500);
  flex-wrap: wrap;
}
.hero-trust strong { color: var(--navy-900); font-weight: 600; }

/* ───── AI Brief widget ───── */
.ai-widget {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.ai-widget::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(0,200,150,0.04) 100%);
  pointer-events: none;
}
.ai-widget-head { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.ai-badge {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--navy-800), var(--emerald-500));
  display: flex; align-items: center; justify-content: center;
  color: white;
  flex-shrink: 0;
}
.ai-widget h3 { font-size: 16px; font-weight: 700; color: var(--navy-900); }
.ai-widget .small { font-size: 12.5px; color: var(--slate-500); margin-top: 2px; }
.ai-input {
  display: flex; gap: 8px; margin-bottom: 18px;
  background: var(--slate-50); padding: 6px;
  border-radius: 12px; border: 1px solid var(--border);
}
.ai-input select {
  flex: 1; border: none; background: transparent;
  font-size: 14px; padding: 9px 12px; outline: none;
  font-family: inherit; color: var(--navy-900); font-weight: 500;
  cursor: pointer;
}
.ai-input button {
  background: var(--navy-900); color: white;
  padding: 9px 16px; border-radius: 8px;
  font-size: 13px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 4px;
}
.ai-input button:hover { background: var(--navy-800); }
.ai-output {
  background: var(--slate-50);
  border-radius: 10px;
  padding: 18px;
  font-size: 14px; line-height: 1.65;
  color: var(--slate-700);
  min-height: 140px;
  border-left: 3px solid var(--emerald-500);
  position: relative;
}
.ai-output .label {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--emerald-500); margin-bottom: 10px;
}
.ai-output strong { color: var(--navy-900); font-weight: 700; }
.ai-cursor {
  display: inline-block; width: 7px; height: 14px;
  background: var(--emerald-500); margin-left: 2px;
  vertical-align: -2px;
  animation: blink 1s infinite;
}
@keyframes blink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }
.ai-footer {
  margin-top: 14px; font-size: 11.5px; color: var(--slate-500);
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.ai-footer .verify { color: var(--emerald-500); font-weight: 600; }

/* ───── Trust strip / logos ───── */
.logos {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 32px;
  background: white;
}
.logos-label {
  text-align: center; font-size: 12px; color: var(--slate-500);
  margin-bottom: 18px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.logos-grid {
  display: flex; justify-content: space-around; align-items: center;
  gap: 32px; flex-wrap: wrap; opacity: 0.7;
  max-width: 1280px; margin: 0 auto;
}
.logo-item { font-family: var(--font-serif); font-size: 22px; color: var(--slate-500); font-style: italic; }
.logo-item.bold { font-family: var(--font); font-weight: 800; font-size: 19px; letter-spacing: -0.5px; font-style: normal; }
.logo-item.uppercase { font-family: var(--font); font-weight: 700; font-size: 14px; letter-spacing: 4px; font-style: normal; }

/* ───── Stats band ───── */
.stats {
  background: var(--navy-900); color: white;
  padding: 80px 32px; position: relative; overflow: hidden;
}
.stats::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(0,200,150,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.stats-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative;
}
.stat { text-align: center; padding: 10px 30px; border-right: 1px solid rgba(255,255,255,0.1); }
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 56px; line-height: 1;
  color: var(--emerald-300);
  letter-spacing: -1.5px; margin-bottom: 12px;
  font-weight: 400;
}
.stat-num .plus { color: var(--emerald-500); }
.stat-label {
  font-size: 13px; color: rgba(255,255,255,0.6);
  letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600;
}

/* ───── Bento grid ───── */
.bento {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(160px, auto);
  gap: 14px;
}
.bento-cell {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px;
  position: relative; overflow: hidden;
  transition: all 0.3s; cursor: pointer; text-decoration: none; color: var(--text);
}
.bento-cell:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--emerald-500);
}
.bento-cell.featured {
  grid-column: span 2; grid-row: span 2;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: white; border-color: var(--navy-700);
}
.bento-cell.wide { grid-column: span 2; }
.bento-cell.dark { background: var(--navy-900); color: white; border-color: var(--navy-700); }
.bento-cell.emerald { background: var(--emerald-50); border-color: rgba(0,200,150,0.3); }
.bento-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--emerald-50); color: var(--emerald-500);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 14px;
}
.bento-cell.featured .bento-icon,
.bento-cell.dark .bento-icon { background: rgba(0,200,150,0.15); color: var(--emerald-300); }
.bento-cell h3 {
  font-size: 17px; font-weight: 700; margin-bottom: 8px;
  color: var(--navy-900); line-height: 1.3;
}
.bento-cell.featured h3, .bento-cell.dark h3 { color: white; }
.bento-cell.featured h3 { font-family: var(--font-serif); font-weight: 400; font-size: 32px; letter-spacing: -0.5px; }
.bento-cell p { font-size: 13.5px; color: var(--slate-600); line-height: 1.5; }
.bento-cell.featured p, .bento-cell.dark p { color: rgba(255,255,255,0.75); font-size: 15px; }
.bento-cell .count { font-size: 11px; color: var(--slate-500); margin-top: 12px; font-weight: 600; letter-spacing: 0.5px; }
.bento-cell.featured .count, .bento-cell.dark .count { color: var(--emerald-300); }
.bento-arrow {
  position: absolute; top: 22px; right: 22px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--slate-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-900); transition: transform 0.2s;
}
.bento-cell:hover .bento-arrow { transform: rotate(-45deg); background: var(--emerald-500); }
.bento-cell.featured .bento-arrow, .bento-cell.dark .bento-arrow { background: rgba(255,255,255,0.1); color: white; }

/* ───── Feature cards ───── */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature {
  background: white; border-radius: var(--radius-lg);
  padding: 36px; border: 1px solid var(--border);
  transition: all 0.25s;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--navy-700);
}
.feature-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-800), var(--emerald-500));
  color: white; display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 22px;
}
.feature h3 { font-size: 19px; font-weight: 700; color: var(--navy-900); margin-bottom: 10px; line-height: 1.3; }
.feature p { font-size: 14.5px; color: var(--slate-600); line-height: 1.6; margin-bottom: 16px; }
.feature .feature-link {
  font-size: 13px; font-weight: 600; color: var(--navy-900);
  display: inline-flex; align-items: center; gap: 4px;
  border-bottom: 1px solid transparent; transition: border 0.2s;
}
.feature .feature-link:hover { border-bottom-color: var(--navy-900); }

/* ───── Pricing ───── */
.pricing-toggle-wrap { text-align: center; }
.pricing-toggle {
  display: inline-flex; background: var(--slate-100);
  padding: 4px; border-radius: 100px; margin-bottom: 50px;
  gap: 4px; border: 1px solid var(--border);
}
.toggle-btn {
  padding: 9px 22px; border-radius: 100px;
  font-size: 13.5px; font-weight: 600; color: var(--slate-600);
  transition: all 0.2s;
}
.toggle-btn.active { background: white; color: var(--navy-900); box-shadow: var(--shadow-sm); }
.toggle-btn .save {
  background: var(--emerald-500); color: var(--navy-900);
  padding: 2px 7px; border-radius: 10px; font-size: 10.5px; font-weight: 700;
  margin-left: 6px;
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; align-items: stretch;
}
.tier {
  background: white; border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  position: relative; transition: all 0.25s;
}
.tier.popular {
  border-color: var(--navy-900);
  background: linear-gradient(180deg, white, var(--slate-50));
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}
.tier-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--navy-900); color: white;
  padding: 6px 16px; border-radius: 100px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.5px;
  white-space: nowrap;
}
.tier h4 { font-size: 16px; font-weight: 700; color: var(--navy-900); margin-bottom: 6px; }
.tier .tier-tag { font-size: 13px; color: var(--slate-500); margin-bottom: 24px; }
.tier .price {
  font-family: var(--font-serif);
  font-size: 48px; line-height: 1; color: var(--navy-900);
  letter-spacing: -1.5px; margin-bottom: 4px;
  font-weight: 400;
}
.tier .price .suffix { font-family: var(--font); font-size: 14px; color: var(--slate-500); font-weight: 500; }
.tier .price-detail { font-size: 12px; color: var(--slate-500); margin-bottom: 26px; }
.tier .tier-cta {
  display: block; width: 100%; text-align: center;
  padding: 12px; border-radius: 10px;
  font-size: 14px; font-weight: 600;
  margin-bottom: 24px; transition: all 0.2s;
  text-decoration: none; border: none; font-family: inherit; cursor: pointer;
}
.tier .tier-cta.primary { background: var(--navy-900); color: white; }
.tier .tier-cta.primary:hover { background: var(--navy-800); transform: translateY(-1px); }
.tier .tier-cta.outline { background: white; color: var(--navy-900); border: 1px solid var(--border-strong); }
.tier .tier-cta.outline:hover { border-color: var(--navy-900); }
.tier .tier-cta.emerald { background: var(--emerald-500); color: var(--navy-900); }
.tier .tier-cta.emerald:hover { background: var(--emerald-400); }
.tier-features {
  display: flex; flex-direction: column; gap: 11px;
  border-top: 1px solid var(--border); padding-top: 22px;
  font-size: 13.5px; color: var(--slate-700);
  flex: 1;
}
.tier-features li { display: flex; align-items: flex-start; gap: 9px; line-height: 1.45; }
.tier-features .check {
  flex-shrink: 0; width: 16px; height: 16px;
  background: var(--emerald-500); color: white;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; margin-top: 2px;
}
.tier-features .star { flex-shrink: 0; color: var(--gold-500); margin-top: 2px; }

/* ───── Did You Know ───── */
.dyk-section {
  background: var(--navy-900); color: white;
  padding: 90px 32px; position: relative; overflow: hidden;
}
.dyk-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at bottom left, rgba(0,200,150,0.2) 0%, transparent 50%);
  pointer-events: none;
}
.dyk-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2fr; gap: 60px;
  align-items: center; position: relative;
}
.dyk-grid h2 {
  font-family: var(--font-serif); font-size: 44px;
  line-height: 1.1; letter-spacing: -1px;
  color: white; margin-bottom: 20px; font-weight: 400;
}
.dyk-grid p { color: rgba(255,255,255,0.7); font-size: 16px; line-height: 1.55; }
.dyk-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dyk-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 22px;
  transition: all 0.3s;
}
.dyk-card:hover {
  background: rgba(0,200,150,0.08);
  border-color: rgba(0,200,150,0.3);
  transform: translateY(-2px);
}
.dyk-card .sector {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  color: var(--emerald-300); text-transform: uppercase; margin-bottom: 10px;
}
.dyk-card .fact { font-size: 13.5px; color: rgba(255,255,255,0.85); line-height: 1.5; }
.dyk-card strong { color: var(--emerald-300); }

/* ───── Testimonials ───── */
.testi-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 30px; }
.testi-main {
  background: white; border-radius: var(--radius-lg);
  padding: 40px; border: 1px solid var(--border);
  display: flex; flex-direction: column; justify-content: space-between;
}
.testi-quote-mark { font-family: var(--font-serif); font-size: 80px; line-height: 0.5; color: var(--emerald-500); margin-bottom: 12px; }
.testi-quote {
  font-family: var(--font-serif); font-size: 24px; line-height: 1.4;
  color: var(--navy-900); margin-bottom: 28px;
  letter-spacing: -0.3px; font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-700), var(--emerald-500));
  color: white; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
}
.testi-author-name { font-weight: 700; color: var(--navy-900); font-size: 14.5px; }
.testi-author-role { font-size: 13px; color: var(--slate-500); }
.testi-stack { display: flex; flex-direction: column; gap: 16px; }
.testi-small {
  background: white; border: 1px solid var(--border);
  border-radius: 12px; padding: 22px;
}
.testi-small .stars { color: var(--gold-500); font-size: 14px; margin-bottom: 10px; letter-spacing: 2px; }
.testi-small .text { font-size: 13.5px; color: var(--slate-700); line-height: 1.55; margin-bottom: 12px; }
.testi-small .who { font-size: 12px; color: var(--slate-500); }
.testi-small .who strong { color: var(--navy-900); font-weight: 600; }

/* ───── CTA band ───── */
.cta-band {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: white; padding: 80px 32px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(0,200,150,0.2) 0%, transparent 50%),
              radial-gradient(circle at 70% 70%, rgba(0,200,150,0.15) 0%, transparent 50%);
}
.cta-inner { max-width: 720px; margin: 0 auto; position: relative; }
.cta-band h2 {
  font-family: var(--font-serif); font-size: 52px; line-height: 1.1;
  letter-spacing: -1.5px; margin-bottom: 18px; color: white; font-weight: 400;
}
.cta-band h2 em { font-style: italic; color: var(--emerald-300); }
.cta-band p { font-size: 18px; color: rgba(255,255,255,0.75); margin-bottom: 36px; line-height: 1.5; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; align-items: center; flex-wrap: wrap; }

/* ───── Footer ───── */
.footer { background: var(--navy-950); color: white; padding: 70px 32px 30px; }
.foot-inner { max-width: 1280px; margin: 0 auto; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 50px; margin-bottom: 50px; }
.brand-foot { color: white; }
.foot-brand-text { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; margin: 18px 0; }
.foot-social { display: flex; gap: 10px; }
.foot-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  color: white; transition: all 0.2s;
}
.foot-social a:hover { background: var(--emerald-500); color: var(--navy-900); }
.foot-col h5 {
  font-size: 13px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--emerald-300); margin-bottom: 18px;
}
.foot-col ul { display: flex; flex-direction: column; gap: 10px; }
.foot-col a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color 0.15s; }
.foot-col a:hover { color: white; }
.foot-newsletter p { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 14px; }
.foot-newsletter input {
  width: 100%; padding: 11px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: white; font-family: inherit; font-size: 13.5px;
  border-radius: 8px; outline: none; margin-bottom: 8px;
  transition: all 0.2s;
}
.foot-newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.foot-newsletter input:focus { border-color: var(--emerald-500); background: rgba(0,200,150,0.05); }
.foot-newsletter button {
  width: 100%; padding: 11px; border-radius: 8px;
  background: var(--emerald-500); color: var(--navy-900);
  font-weight: 700; font-size: 13px;
}
.foot-newsletter button:hover { background: var(--emerald-400); }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,0.5);
  flex-wrap: wrap; gap: 12px;
}
.foot-bottom-links { display: flex; gap: 24px; flex-wrap: wrap; }
.foot-bottom a { color: rgba(255,255,255,0.5); }
.foot-bottom a:hover { color: white; }

/* ───── Cards (general) ───── */
.card {
  background: white; border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 24px;
}
.card-pad-sm { padding: 18px; }
.card-pad-lg { padding: 36px; }

/* ───── Forms ───── */
.form-stack { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13.5px; font-weight: 600; color: var(--slate-700); }
.form-help { font-size: 12px; color: var(--slate-500); margin-top: 4px; }
.input, input[type="text"], input[type="email"], input[type="password"],
input[type="tel"], input[type="number"], input[type="url"], textarea, select {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-size: 14.5px; font-family: inherit;
  outline: none; transition: border-color 0.2s, background 0.2s;
  background: white;
}
.input:focus, input:focus, textarea:focus, select:focus {
  border-color: var(--emerald-500);
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 200, 150, 0.1);
}
.input:disabled, input:disabled { background: var(--slate-100); color: var(--slate-500); }
textarea { resize: vertical; min-height: 100px; }
.textarea { min-height: 120px; }
.form-row-between { display: flex; justify-content: space-between; align-items: center; }
.form-footer { margin-top: 20px; text-align: center; font-size: 14px; color: var(--slate-600); }
.form-footer a { color: var(--navy-900); font-weight: 600; }
.link-sm { font-size: 13px; color: var(--slate-600); }
.link-sm:hover { color: var(--navy-900); }

/* ───── Page title ───── */
.page-title {
  font-family: var(--font-serif); font-size: 44px; font-weight: 400;
  line-height: 1.1; letter-spacing: -1px;
  color: var(--navy-900); margin-bottom: 14px;
}
.page-subtitle { font-size: 17px; color: var(--slate-600); margin-bottom: 30px; line-height: 1.55; }
.lede { font-size: 19px; color: var(--slate-700); line-height: 1.55; margin-bottom: 24px; }
.meta { color: var(--slate-500); font-size: 14px; margin-bottom: 24px; }
.card-heading { font-size: 17px; font-weight: 700; color: var(--navy-900); margin-bottom: 18px; }

/* ───── Flash messages ───── */
.flash { padding: 14px 20px; max-width: 1280px; margin: 16px auto; border-radius: 10px; font-size: 14px; font-weight: 500; }
.flash-success { background: var(--emerald-50); color: #04543A; border: 1px solid rgba(0,200,150,0.3); }
.flash-danger { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }
.flash-warning { background: #FFFBEB; color: #92400E; border: 1px solid #FDE68A; }
.flash-info { background: #EFF6FF; color: #1E3A8A; border: 1px solid #BFDBFE; }

/* ───── Tier badges ───── */
.tier-badge-pill {
  display: inline-block; padding: 4px 10px;
  border-radius: 100px; font-size: 10.5px;
  font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase;
}
.tier-badge-pill.tier-explorer { background: var(--slate-100); color: var(--slate-700); }
.tier-badge-pill.tier-standard { background: var(--emerald-50); color: #04543A; }
.tier-badge-pill.tier-professional { background: #FFF3E0; color: #C2410C; }
.tier-badge-pill.tier-enterprise { background: #E0E7FF; color: #3730A3; }

/* ───── Report cards ───── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.report-card {
  background: white; border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden;
  transition: all 0.25s; text-decoration: none; color: inherit;
  display: block;
}
.report-card:hover {
  border-color: var(--emerald-500);
  box-shadow: var(--shadow-lg); transform: translateY(-3px);
}
.report-tier-bar { height: 4px; }
.report-tier-bar.tier-standard { background: var(--emerald-500); }
.report-tier-bar.tier-professional { background: #FF8C42; }
.report-tier-bar.tier-enterprise { background: #6366F1; }
.report-card-body { padding: 20px; }
.card-meta { display: flex; justify-content: space-between; margin-bottom: 12px; align-items: center; }
.report-card h3 {
  font-size: 16px; font-weight: 700; color: var(--navy-900);
  margin-bottom: 14px; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  min-height: 60px;
}
.report-card-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 12px; border-top: 1px solid var(--slate-100);
  font-size: 12.5px; color: var(--slate-500);
}
.report-card-foot .price { color: var(--navy-900); font-weight: 700; font-size: 14px; }
.price-strike { color: var(--slate-400); text-decoration: line-through; margin-right: 4px; font-size: 11px; }
.price-included { color: var(--emerald-500); font-weight: 700; }

/* ───── Pill cloud (categories) ───── */
.pill-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.cat-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 100px;
  background: white; border: 1px solid var(--border);
  font-size: 13px; font-weight: 500; color: var(--slate-700);
  text-decoration: none; transition: all 0.2s; white-space: nowrap;
}
.cat-pill:hover { border-color: var(--emerald-500); color: var(--emerald-500); }
.cat-pill.active { background: var(--navy-900); color: white; border-color: var(--navy-900); }

/* ───── Catalog search ───── */
.catalog-search { display: flex; gap: 10px; margin-bottom: 22px; }
.catalog-search input { flex: 1; }
.catalog-search button { flex-shrink: 0; }
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 40px; }
.page-btn {
  padding: 8px 14px; border-radius: 8px;
  background: white; border: 1px solid var(--border);
  font-size: 13px; color: var(--slate-700); text-decoration: none;
}
.page-btn:hover { border-color: var(--navy-900); }
.page-btn.active { background: var(--navy-900); color: white; border-color: var(--navy-900); }
.empty { text-align: center; padding: 60px; color: var(--slate-500); }

/* ───── Report detail ───── */
.back-link { color: var(--slate-600); font-size: 13px; margin-bottom: 20px; display: inline-block; }
.back-link:hover { color: var(--navy-900); }
.report-detail-head {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 20px; font-size: 13px; color: var(--slate-500);
}
.meta-bar {
  display: flex; gap: 30px; padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 24px 0 28px;
}
.meta-item { display: flex; flex-direction: column; }
.meta-item .label { font-size: 11px; color: var(--slate-500); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 4px; }
.meta-item strong { font-size: 14.5px; color: var(--navy-900); }
.scope-box {
  background: var(--slate-50); border-radius: var(--radius);
  padding: 24px; margin-bottom: 28px;
}
.scope-box h3 { font-size: 15px; font-weight: 700; color: var(--navy-900); margin-bottom: 14px; }
.scope-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; font-size: 13.5px; color: var(--slate-700); }
.scope-item { display: flex; gap: 8px; }
.report-desc { color: var(--slate-700); line-height: 1.7; margin-bottom: 28px; font-size: 15px; }
.access-bar {
  display: flex; gap: 24px; align-items: center;
  padding: 28px; background: var(--slate-50);
  border-radius: var(--radius-lg); margin-top: 24px;
  flex-wrap: wrap;
}
.access-price { flex: 1; min-width: 160px; }
.access-price .label { font-size: 11px; color: var(--slate-500); text-transform: uppercase; letter-spacing: 0.5px; }
.access-price .amount { font-family: var(--font-serif); font-size: 32px; color: var(--navy-900); }
.access-price .alt-price { font-size: 14px; color: var(--slate-500); margin-left: 8px; }
.access-sub {
  background: white; padding: 16px 22px; border-radius: var(--radius);
  border: 1px solid var(--emerald-100); text-align: center;
}
.access-sub .sub-label { font-size: 11px; color: var(--emerald-500); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.access-sub .sub-price { font-family: var(--font-serif); font-size: 22px; color: var(--navy-900); display: block; }
.access-sub .sub-tier { font-size: 12px; color: var(--slate-500); }
.access-ctas { display: flex; gap: 10px; flex-wrap: wrap; }

/* ───── Methodology ───── */
.method-steps { display: flex; flex-direction: column; gap: 16px; }
.method-step {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  display: flex; gap: 24px; align-items: flex-start;
}
.step-num {
  font-family: var(--font-serif); font-size: 48px; line-height: 1;
  color: var(--emerald-500); font-weight: 400;
  flex-shrink: 0; width: 60px;
}
.step-body h3 { font-size: 18px; font-weight: 700; color: var(--navy-900); margin-bottom: 8px; }
.step-body p { font-size: 14.5px; color: var(--slate-600); line-height: 1.6; }
.check-list { display: flex; flex-direction: column; gap: 8px; margin: 20px 0; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--slate-700); }
.check-list li::before { content: '✓'; color: var(--emerald-500); font-weight: 700; flex-shrink: 0; }

.info-box {
  background: var(--emerald-50); border-left: 4px solid var(--emerald-500);
  padding: 22px; border-radius: var(--radius); margin: 24px 0;
}
.info-box h3 { font-size: 15px; color: var(--navy-900); margin-bottom: 8px; }
.info-box p { color: var(--slate-700); font-size: 14px; line-height: 1.55; margin-bottom: 12px; }

.cta-box {
  text-align: center; padding: 40px 32px;
  background: var(--slate-50); border-radius: var(--radius-lg);
  margin-top: 40px;
}
.cta-box h3 { font-size: 22px; color: var(--navy-900); margin-bottom: 10px; }
.cta-box p { color: var(--slate-600); margin-bottom: 20px; }

.success-card { background: var(--emerald-50); border: 1px solid var(--emerald-100); padding: 32px; text-align: center; }
.success-card h2 { color: #04543A; font-size: 22px; margin-bottom: 10px; }
.success-card p { color: var(--slate-700); margin-bottom: 18px; }

/* ───── Metric numbers ───── */
.metric-num { font-family: var(--font-serif); font-size: 44px; color: var(--emerald-500); display: block; }
.metric-label { font-size: 13px; color: var(--slate-600); margin-top: 6px; }

/* ───── Blog / article list ───── */
.article-list { display: flex; flex-direction: column; gap: 18px; }
.article-item { padding: 28px; transition: all 0.25s; }
.article-item:hover { box-shadow: var(--shadow-md); border-color: var(--emerald-500); }
.article-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; font-size: 12.5px; color: var(--slate-500); }
.article-date { margin-left: auto; }
.article-item h3 { font-size: 19px; color: var(--navy-900); margin-bottom: 8px; }
.article-item p { color: var(--slate-600); line-height: 1.55; }

/* ───── Dashboard ───── */
.dashboard { padding: 40px 32px; }
.dashboard-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 14px; margin-bottom: 30px; }
.dash-stat {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
}
.dash-stat .lbl { font-size: 11px; color: var(--slate-500); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 8px; }
.dash-stat .val { font-family: var(--font-serif); font-size: 36px; color: var(--navy-900); line-height: 1; }
.dash-stat .delta { font-size: 12px; color: var(--emerald-500); margin-top: 6px; }

/* ───── Tables ───── */
.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table th, .table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); }
.table th { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--slate-500); background: var(--slate-50); }
.table tbody tr:hover { background: var(--slate-50); }

/* ───── Responsive ───── */
@media (max-width: 1100px) {
  .hero-grid, .dyk-grid, .testi-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 48px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .stat { border-right: none; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-cell.featured, .bento-cell.wide { grid-column: span 2; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .dashboard-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; padding: 20px 32px; flex-direction: column; gap: 16px; border-bottom: 1px solid var(--border); }
  .nav-links.show { display: flex; }
  .nav-toggle { display: block; }
  .section { padding: 60px 20px; }
  .hero { padding: 50px 20px 60px; }
  .hero h1 { font-size: 38px; }
  .section-head h2 { font-size: 32px; }
  .bento { grid-template-columns: 1fr; }
  .bento-cell.featured, .bento-cell.wide { grid-column: span 1; }
  .pricing-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .meta-bar { flex-wrap: wrap; gap: 16px; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .scope-grid { grid-template-columns: 1fr; }
}
