/* =============================================
   HOA LedgerIQ — Marketing Site Styles
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:      #2563eb;
  --blue-dark: #1d4ed8;
  --blue-glow: rgba(37, 99, 235, 0.25);
  --indigo:    #4f46e5;
  --teal:      #0ea5e9;
  --green:     #22c55e;
  --amber:     #f59e0b;
  --red:       #ef4444;
  --gray-50:   #f8fafc;
  --gray-100:  #f1f5f9;
  --gray-200:  #e2e8f0;
  --gray-400:  #94a3b8;
  --gray-600:  #475569;
  --gray-700:  #334155;
  --gray-800:  #1e293b;
  --gray-900:  #0f172a;
  --surface:   #ffffff;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--gray-900);
  color: var(--gray-100);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 8px 24px var(--blue-glow); }
.btn-outline {
  background: transparent;
  color: var(--gray-100);
  border-color: var(--gray-600);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--gray-400);
  border-color: transparent;
}
.btn-ghost:hover { color: var(--gray-100); }
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 10px; }
.hidden { display: none !important; }

/* ---- Coming Soon Banner ---- */
.coming-soon-banner {
  background: linear-gradient(90deg, var(--indigo), var(--blue), var(--teal));
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.banner-badge {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 3px 10px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  flex-shrink: 0;
}
.banner-text { color: rgba(255,255,255,0.9); }
.banner-cta {
  background: #fff;
  color: var(--indigo);
  padding: 5px 14px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.15s;
}
.banner-cta:hover { opacity: 0.9; }

/* ---- Nav ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 36px; width: auto; filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));}
.logo-img--footer { height: 30px; }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--gray-100); }
.nav-btn { margin-left: 16px; padding: 9px 20px; font-size: 14px; }

/* ---- Pulse dot ---- */
.pulse-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.4;
  animation: pulse 1.8s infinite;
}
.pulse-dot--white { background: #fff; }
.pulse-dot--white::after { background: #fff; }
@keyframes pulse {
  0%   { transform: scale(1);   opacity: 0.4; }
  70%  { transform: scale(2.2); opacity: 0; }
  100% { transform: scale(1);   opacity: 0; }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  text-align: center;
}
.hero-glow {
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(79,70,229,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79,70,229,0.15);
  border: 1px solid rgba(79,70,229,0.4);
  color: #a5b4fc;
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
.hero-headline {
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 24px;
}
.gradient-text {
  background: linear-gradient(135deg, #60a5fa, #a78bfa, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  max-width: 620px;
  margin: 0 auto 36px;
  font-size: 18px;
  color: var(--gray-400);
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-trust {
  font-size: 13px;
  color: var(--gray-600);
  margin-top: 8px;
}

/* ---- Dashboard card (hero visual) ---- */
.hero-visual {
  margin: 60px auto 0;
  max-width: 680px;
  padding: 0 24px;
}
.dashboard-card {
  background: var(--gray-800);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 80px rgba(79,70,229,0.18);
  text-align: left;
}
.dash-header {
  background: var(--gray-900);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dash-dot { width: 12px; height: 12px; border-radius: 50%; }
.dash-dot.red    { background: #ff5f57; }
.dash-dot.yellow { background: #febc2e; }
.dash-dot.green  { background: #28c840; }
.dash-title { margin-left: 8px; font-size: 12px; color: var(--gray-600); font-weight: 500; }
.dash-body { padding: 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.dash-stat { }
.stat-label { font-size: 11px; color: var(--gray-600); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.stat-value { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }
.stat-delta { font-size: 11px; color: var(--gray-600); margin-top: 3px; }
.green-text { color: var(--green); }
.amber-text { color: var(--amber); }
.dash-chart {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 72px;
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  padding: 10px 12px 0;
}
.chart-bar {
  flex: 1;
  background: rgba(79,70,229,0.35);
  border-radius: 4px 4px 0 0;
  transition: background 0.2s;
}
.chart-bar.active { background: var(--blue); }
.dash-ai-chip {
  grid-column: 1 / -1;
  background: rgba(79,70,229,0.12);
  border: 1px solid rgba(79,70,229,0.3);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 12px;
  color: #a5b4fc;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.ai-icon { font-size: 14px; flex-shrink: 0; }

/* ---- Proof strip ---- */
.proof-strip {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  background: rgba(255,255,255,0.02);
}
.proof-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.proof-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-600); font-weight: 600; }
.proof-items { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; font-size: 14px; color: var(--gray-400); font-weight: 500; }
.sep { color: var(--gray-700); }

/* ---- Section shared ---- */
.section-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--gray-400);
  max-width: 560px;
  margin-bottom: 56px;
}

/* ---- Features ---- */
.features { padding: 100px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--gray-800);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.feature-card--highlight {
  background: linear-gradient(135deg, rgba(79,70,229,0.2), rgba(37,99,235,0.15));
  border-color: rgba(79,70,229,0.4);
}
.feature-icon { font-size: 24px; margin-bottom: 14px; }
.feature-card h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--gray-400); line-height: 1.65; }
.feature-tag {
  display: inline-block;
  background: rgba(79,70,229,0.18);
  border: 1px solid rgba(79,70,229,0.35);
  color: #a5b4fc;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
  margin-top: 14px;
  letter-spacing: 0.04em;
}

/* ---- AI Section ---- */
.ai-section {
  background: linear-gradient(180deg, rgba(79,70,229,0.07) 0%, transparent 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 100px 0;
}
.ai-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.ai-text h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.ai-text p { font-size: 16px; color: var(--gray-400); margin-bottom: 28px; line-height: 1.7; }
.ai-bullets { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.ai-bullets li { font-size: 15px; color: var(--gray-300); display: flex; gap: 10px; align-items: flex-start; }
.check { color: var(--green); font-weight: 700; flex-shrink: 0; }
.ai-visual { display: flex; flex-direction: column; gap: 14px; }
.chat-bubble {
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.6;
  max-width: 90%;
}
.user-bubble {
  background: var(--gray-700);
  color: var(--gray-200);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.ai-bubble {
  background: rgba(79,70,229,0.15);
  border: 1px solid rgba(79,70,229,0.3);
  color: var(--gray-200);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.ai-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #a5b4fc;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---- Pricing ---- */
.pricing { padding: 100px 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.pricing-card {
  background: var(--gray-800);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.18s, box-shadow 0.18s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card--featured {
  background: linear-gradient(160deg, rgba(79,70,229,0.25) 0%, rgba(37,99,235,0.15) 100%);
  border-color: rgba(79,70,229,0.5);
  box-shadow: 0 0 60px rgba(79,70,229,0.2);
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--indigo), var(--blue));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
}
.plan-name { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.plan-tagline { font-size: 13px; color: var(--gray-500); margin-bottom: 24px; }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.price-amount { font-size: 46px; font-weight: 900; letter-spacing: -0.03em; color: #fff; }
.price-period { font-size: 16px; color: var(--gray-500); }
.plan-units { font-size: 13px; color: var(--gray-500); margin-bottom: 28px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 11px; flex: 1; margin-bottom: 32px; }
.plan-features li { font-size: 14px; color: var(--gray-400); display: flex; align-items: flex-start; gap: 9px; }
.plan-features li.dim { color: var(--gray-700); }
.plan-features .check { color: var(--green); font-weight: 700; flex-shrink: 0; }
.plan-btn { width: 100%; justify-content: center; margin-top: auto; }

/* ---- Signup Section ---- */
.signup-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0 120px;
}
.signup-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(79,70,229,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.signup-card {
  position: relative;
  background: var(--gray-800);
  border: 1px solid rgba(79,70,229,0.35);
  border-radius: var(--radius-lg);
  padding: 56px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 0 80px rgba(79,70,229,0.2), var(--shadow-lg);
}
.countdown-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(79,70,229,0.18);
  border: 1px solid rgba(79,70,229,0.4);
  color: #a5b4fc;
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.signup-card h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.signup-card > p {
  color: var(--gray-400);
  font-size: 16px;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.signup-form { text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label { font-size: 13px; font-weight: 600; color: var(--gray-400); }
.form-group input,
.form-group select {
  background: var(--gray-900);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--gray-100);
  font-size: 15px;
  font-family: inherit;
  width: 100%;
  outline: none;
  transition: border-color 0.15s;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.2); }
.form-group input::placeholder { color: var(--gray-700); }
.form-group select option { background: var(--gray-800); color: var(--gray-100); }
.signup-btn { width: 100%; justify-content: center; margin-top: 8px; }
.form-fine { font-size: 12px; color: var(--gray-600); text-align: center; margin-top: 14px; }

/* ---- Success state ---- */
.signup-success { padding: 20px 0; }
.success-icon {
  width: 64px; height: 64px;
  background: rgba(34,197,94,0.15);
  border: 2px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--green);
  margin: 0 auto 20px;
  font-weight: 700;
}
.signup-success h3 { font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.signup-success p { font-size: 16px; color: var(--gray-400); }

/* ---- Footer ---- */
.footer { border-top: 1px solid rgba(255,255,255,0.06); padding: 60px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo p { font-size: 14px; color: var(--gray-600); margin-top: 12px; line-height: 1.6; }
.footer-links { display: flex; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-600); margin-bottom: 4px; }
.footer-col a { color: var(--gray-500); text-decoration: none; font-size: 14px; transition: color 0.15s; }
.footer-col a:hover { color: var(--gray-200); }
.footer-bottom {
  padding: 20px 0;
  font-size: 13px;
  color: var(--gray-700);
}

/* ---- Calculator CTA button ---- */
.btn-calc {
  background: linear-gradient(135deg, rgba(79,70,229,0.25), rgba(14,165,233,0.2));
  border: 1.5px solid rgba(99,102,241,0.6);
  color: #c7d2fe;
  position: relative;
  overflow: hidden;
}
.btn-calc::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(79,70,229,0.4), rgba(14,165,233,0.3));
  opacity: 0;
  transition: opacity 0.2s;
}
.btn-calc:hover { color: #fff; border-color: rgba(99,102,241,0.9); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(79,70,229,0.3); }
.btn-calc:hover::before { opacity: 1; }
.btn-calc span, .btn-calc { position: relative; z-index: 1; }

/* ---- Calculator Modal ---- */
.calc-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.calc-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.calc-modal {
  background: var(--gray-800);
  border: 1px solid rgba(99,102,241,0.35);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 0 80px rgba(79,70,229,0.25), var(--shadow-lg);
  transform: translateY(16px);
  transition: transform 0.25s ease;
}
.calc-overlay.open .calc-modal { transform: translateY(0); }
.calc-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  color: var(--gray-500);
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.calc-close:hover { color: #fff; background: rgba(255,255,255,0.08); }
.calc-header { margin-bottom: 28px; }
.calc-header h2 { font-size: 26px; font-weight: 800; color: #fff; letter-spacing: -0.02em; margin-bottom: 8px; }
.calc-header p { font-size: 15px; color: var(--gray-400); }
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 8px;
}
.calc-field { display: flex; flex-direction: column; gap: 6px; }
.calc-field label { font-size: 13px; font-weight: 600; color: var(--gray-400); }
.calc-field input,
.calc-field select {
  background: var(--gray-900);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--gray-100);
  font-size: 15px;
  font-family: inherit;
  width: 100%;
  outline: none;
  transition: border-color 0.15s;
  -webkit-appearance: none;
}
.calc-field input:focus,
.calc-field select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.2); }
.calc-field input::placeholder { color: var(--gray-700); }
.calc-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.calc-field select option { background: var(--gray-800); color: var(--gray-100); }
.input-prefix-wrap { position: relative; }
.input-prefix {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-600);
  font-size: 15px;
  font-weight: 600;
  pointer-events: none;
}
.input-prefix-wrap input { padding-left: 28px; }
.calc-error {
  color: #f87171;
  font-size: 13px;
  margin: 8px 0;
  font-weight: 500;
}
.calc-submit-btn { width: 100%; justify-content: center; margin-top: 16px; }
.calc-fine {
  font-size: 11px;
  color: var(--gray-700);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

/* ── Results ── */
.result-highlight {
  background: linear-gradient(135deg, rgba(79,70,229,0.18), rgba(14,165,233,0.12));
  border: 1px solid rgba(79,70,229,0.4);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  margin-bottom: 20px;
}
.result-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  font-weight: 700;
  margin-bottom: 10px;
}
.result-amount {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--green);
  line-height: 1.1;
  margin-bottom: 12px;
}
.result-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--gray-400);
}
.result-badge {
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.35);
  color: var(--green);
  padding: 3px 12px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.result-breakdown {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--gray-400);
}
.result-row-val { font-weight: 700; color: var(--gray-200); }
.calc-ai-bubble {
  background: rgba(79,70,229,0.12);
  border: 1px solid rgba(79,70,229,0.3);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--gray-200);
  line-height: 1.65;
}
.calc-ai-bubble .ai-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #a5b4fc;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.calc-cta { text-align: center; }
.calc-cta > p { color: var(--gray-400); font-size: 15px; margin-bottom: 16px; }
.calc-cta-btn { width: 100%; justify-content: center; margin-bottom: 12px; }
.calc-recalc { font-size: 14px; color: var(--gray-500); }
.calc-recalc:hover { color: var(--gray-200); }

/* ── Calc email + opt-in ── */
.calc-email-row { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.calc-field--full { grid-column: 1 / -1; }
.calc-optional { font-weight: 400; color: var(--gray-600); font-size: 11px; }
.calc-optin-label {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--gray-300); cursor: pointer; line-height: 1.5;
}
.calc-optin-label input[type="checkbox"] {
  margin-top: 2px; accent-color: var(--blue); flex-shrink: 0;
  width: 15px; height: 15px; cursor: pointer;
}
.calc-privacy {
  font-size: 11px; color: var(--gray-600); line-height: 1.5;
  border-left: 2px solid rgba(255,255,255,0.06); padding-left: 10px; margin: 0;
}

/* ── Calc button spinner ── */
.calc-btn-loading { display: flex; align-items: center; gap: 8px; }
.calc-spinner {
  display: inline-block; width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Results refinement blurb ── */
.calc-refine-blurb {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(14,165,233,0.07);
  border: 1px solid rgba(14,165,233,0.18);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 20px;
}
.calc-refine-icon {
  font-size: 18px; color: var(--sky); flex-shrink: 0; margin-top: 1px;
}
.calc-refine-blurb p {
  font-size: 12.5px; color: var(--gray-400); line-height: 1.6; margin: 0;
}

/* ---- Screenshot Carousel ---- */
.screenshot-carousel {
  width: 100%;
  max-width: 900px;
  margin: 60px auto 0;
  padding: 0 24px;
}
.carousel-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 80px rgba(79,70,229,0.25), var(--shadow-lg);
  background: var(--gray-800);
  position: relative;
}
.carousel-slides {
  position: relative;
  width: 100%;
  display: grid; /* stack all slides — prevents height jump on slide change */
}
.carousel-slide {
  grid-area: 1 / 1; /* all slides share the same grid cell */
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.slide-caption {
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 0.04em;
  text-align: center;
  background: var(--gray-800);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
}
.carousel-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--gray-400);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  flex-shrink: 0;
}
.carousel-btn:hover {
  background: rgba(79,70,229,0.25);
  border-color: rgba(79,70,229,0.5);
  color: #fff;
}
.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-700);
  cursor: pointer;
  transition: all 0.2s;
}
.carousel-dot.active {
  background: var(--blue);
  width: 22px;
  border-radius: 4px;
}

/* ---- Request Quote pricing ---- */
.price-amount--quote {
  font-size: 32px;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Login nav button ---- */
.nav-login {
  padding: 9px 20px;
  font-size: 14px;
}

/* ---- Beta checkbox group ---- */
.beta-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0 4px;
  cursor: pointer;
}
.beta-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}
.beta-group label {
  font-size: 14px;
  color: var(--gray-200);
  cursor: pointer;
  font-weight: 500;
}
.beta-disclaimer {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.55;
  margin-bottom: 16px;
  padding-left: 28px;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pricing-card--featured { order: -1; }
  .ai-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
  .dash-body { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .signup-card { padding: 36px 24px; }
  .nav-links { display: none; }
  .hero-headline { font-size: 36px; }
  .coming-soon-banner { gap: 10px; }
  .banner-text { display: none; }
  .dash-body { grid-template-columns: 1fr; }
}

/* =============================================
   SEO Landing Pages — Shared Component Styles
   ============================================= */

/* ---- Problem Section ---- */
.problem-section { padding: 80px 0; }
.problem-section h2 {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  color: #fff;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.problem-card {
  background: var(--gray-800);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.problem-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.problem-icon { font-size: 32px; margin-bottom: 14px; }
.problem-card h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.problem-card p { font-size: 14px; color: var(--gray-400); line-height: 1.65; }

/* ---- Solution Section ---- */
.solution-section {
  background: linear-gradient(180deg, rgba(79,70,229,0.07) 0%, transparent 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 80px 0;
  text-align: center;
}
.solution-section .section-title { margin-bottom: 12px; }
.solution-section .section-sub { margin: 0 auto 48px; }
.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: left;
}
.solution-card {
  background: var(--gray-800);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.solution-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.solution-icon { font-size: 28px; margin-bottom: 14px; }
.solution-card h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.solution-card p { font-size: 14px; color: var(--gray-400); line-height: 1.65; }

/* ---- Comparison Section ---- */
.comparison-section { padding: 80px 0; }
.comparison-section h2 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: #fff;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}
.comparison-table {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.comparison-row:last-child { border-bottom: none; }
.comparison-row.header {
  background: var(--gray-800);
}
.comparison-row.header > div {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
}
.comparison-feature,
.comparison-traditional,
.comparison-ai { padding: 16px 20px; font-size: 14px; }
.comparison-feature { color: var(--gray-200); font-weight: 500; }
.comparison-traditional { color: var(--gray-600); }
.comparison-ai { color: var(--green); font-weight: 600; }
.comparison-row:not(.header) { background: var(--gray-900); }
.comparison-row:not(.header):hover { background: rgba(255,255,255,0.02); }

/* ---- Inline Calculator Section (investment page) ---- */
.calculator-section {
  padding: 80px 0;
  text-align: center;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.calculator-section h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.calculator-section > .container > p {
  font-size: 16px;
  color: var(--gray-400);
  margin-bottom: 28px;
}
.calc-wrapper {
  max-width: 560px;
  margin: 0 auto;
  background: var(--gray-800);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: left;
}
.calc-input-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.calc-input-group label { font-size: 13px; font-weight: 600; color: var(--gray-400); }
.calc-input-group input {
  background: var(--gray-900);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--gray-100);
  font-size: 15px;
  font-family: inherit;
  width: 100%;
  outline: none;
  transition: border-color 0.15s;
}
.calc-input-group input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.2); }
.calc-input-group input::placeholder { color: var(--gray-700); }
.calc-results {
  margin-top: 24px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(79,70,229,0.15), rgba(14,165,233,0.1));
  border: 1px solid rgba(79,70,229,0.35);
  border-radius: var(--radius);
  text-align: center;
}
.calc-results h3 { font-size: 15px; font-weight: 700; color: var(--gray-300); margin-bottom: 10px; }
.calc-results .result-highlight {
  font-size: 40px;
  font-weight: 900;
  color: var(--green);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.calc-results p { font-size: 14px; color: var(--gray-400); margin-bottom: 20px; }

/* ---- CTA Section ---- */
.cta-section {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(180deg, transparent 0%, rgba(79,70,229,0.08) 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cta-section h2 {
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.cta-section > .container > p {
  font-size: 18px;
  color: var(--gray-400);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-form { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.cta-note { font-size: 13px; color: var(--gray-600); }

/* ---- Investment Strategies Section ---- */
.strategies-section { padding: 80px 0; }
.strategies-section h2 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: #fff;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}
.strategy-card {
  background: var(--gray-800);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 20px;
  border-left-width: 4px;
}
.strategy-card h3 { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.strategy-card > p { font-size: 14px; color: var(--gray-400); margin-bottom: 20px; }
.strategy-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.strategy-card ul li { font-size: 14px; color: var(--gray-400); line-height: 1.5; }
.strategy-card ul li strong { color: var(--gray-200); }
.strategy-card.conservative { border-left-color: var(--green); }
.strategy-card.moderate { border-left-color: var(--blue); }
.strategy-card.aggressive { border-left-color: var(--amber); }

/* ---- Compliance Section ---- */
.compliance-section {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 80px 0;
}
.compliance-section h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.compliance-section > .container > p {
  font-size: 16px;
  color: var(--gray-400);
  margin-bottom: 28px;
}
.compliance-list { list-style: none; display: flex; flex-direction: column; gap: 12px; max-width: 440px; }
.compliance-list li { font-size: 16px; color: var(--gray-300); font-weight: 500; }

/* ---- SEO Page Responsive ---- */
@media (max-width: 900px) {
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .problem-grid { grid-template-columns: 1fr; }
  .solution-grid { grid-template-columns: 1fr; }
  .comparison-row { grid-template-columns: 1fr; }
  .comparison-row.header { display: none; }
  .comparison-feature { font-weight: 700; background: rgba(255,255,255,0.03); border-bottom: 1px solid rgba(255,255,255,0.04); }
  .comparison-traditional::before { content: 'Traditional: '; color: var(--gray-600); font-size: 12px; display: block; margin-bottom: 2px; }
  .comparison-ai::before { content: 'HOA LedgerIQ: '; color: var(--blue); font-size: 12px; display: block; margin-bottom: 2px; }
  .calc-wrapper { padding: 24px 20px; }
  .strategy-card { padding: 24px; }
}

/* ======================================================
   INSIGHTS / BLOG
   ====================================================== */

/* ── Active nav link ─────────────────────────────────── */
.nav-active {
  color: var(--blue) !important;
}

/* ── Insights Hub Hero ───────────────────────────────── */
.insights-hub-hero {
  background: var(--gray-900);
  padding: 5rem 0 3.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.insights-hub-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.insights-hub-hero p {
  font-size: 1.05rem;
  color: var(--gray-400);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.insights-grid-section { padding: 4rem 0 5rem; }

/* ── Article Cards Grid ──────────────────────────────── */
.article-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.article-card {
  background: var(--gray-800);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.article-card:hover {
  border-color: rgba(37,99,235,0.45);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.article-card-tag {
  display: inline-block;
  background: rgba(79,70,229,0.15);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  width: fit-content;
}

.article-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin: 0;
}

.article-card-excerpt {
  font-size: 0.93rem;
  color: var(--gray-400);
  line-height: 1.7;
  flex: 1;
}

.article-card-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.78rem;
  color: var(--gray-400);
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
}
.article-card-meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gray-600);
  display: inline-block;
  flex-shrink: 0;
}

.article-card-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--blue);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s;
}
.article-card-read-more:hover { gap: 0.6rem; }

/* ── Article Page Header ─────────────────────────────── */
.article-header {
  background: var(--gray-900);
  padding: 4.5rem 0 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.article-header .container { max-width: 800px; }

.article-breadcrumb { padding-bottom: 1.5rem; }
.article-breadcrumb a {
  color: var(--gray-400);
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s;
}
.article-breadcrumb a:hover { color: var(--blue); }

.article-tag {
  display: inline-block;
  background: rgba(79,70,229,0.15);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  margin-bottom: 1.1rem;
}

.article-title {
  font-size: clamp(1.65rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.article-subtitle {
  font-size: 1.05rem;
  color: var(--gray-400);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 2rem;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.85rem;
  color: var(--gray-400);
  flex-wrap: wrap;
}
.article-meta-author { font-weight: 600; color: var(--gray-200); }
.article-meta-separator {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gray-600);
  display: inline-block;
  flex-shrink: 0;
}

/* ── Article Prose Body ──────────────────────────────── */
.article-body-section { padding: 3.5rem 0; }
.article-body-section .container { max-width: 800px; }

.article-prose { max-width: 720px; margin: 0 auto; }

.article-prose p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--gray-200);
  margin-bottom: 1.5rem;
}
.article-prose h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 2.75rem 0 1rem;
  line-height: 1.3;
  letter-spacing: -0.015em;
}
.article-prose h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin: 2rem 0 0.75rem;
}
.article-prose ul {
  margin: 0 0 1.5rem 0;
  padding-left: 1.5rem;
}
.article-prose li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-200);
  margin-bottom: 0.5rem;
}
.article-prose blockquote {
  border-left: 3px solid var(--blue);
  padding: 0.75rem 1.5rem;
  margin: 2rem 0;
  background: rgba(37,99,235,0.07);
  border-radius: 0 8px 8px 0;
}
.article-prose blockquote p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gray-100);
  margin: 0;
}
.article-prose strong { color: #fff; font-weight: 600; }
.article-prose em { color: var(--gray-100); }

.article-prose .highlight-box {
  background: rgba(37,99,235,0.06);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.article-prose .highlight-box p { margin: 0; font-size: 0.98rem; }

/* ── Article Screenshot Showcase ─────────────────────── */
.article-showcase {
  background: var(--gray-800);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 0;
}
.article-showcase-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.article-showcase-header h2 {
  font-size: 1.65rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.article-showcase-header p {
  color: var(--gray-400);
  font-size: 0.95rem;
  max-width: 540px;
  margin: 0 auto;
}

/* ── Article CTA ─────────────────────────────────────── */
.article-cta {
  background: linear-gradient(135deg, rgba(37,99,235,0.1) 0%, rgba(79,70,229,0.08) 100%);
  border-top: 1px solid rgba(37,99,235,0.18);
  border-bottom: 1px solid rgba(37,99,235,0.18);
  padding: 4rem 0;
  text-align: center;
}
.article-cta h2 {
  font-size: 1.65rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.article-cta p {
  color: var(--gray-400);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.article-cta-note {
  font-size: 0.8rem;
  color: var(--gray-600);
  margin-top: 1.1rem;
  margin-bottom: 0;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 768px) {
  .article-grid { grid-template-columns: 1fr; }

  .insights-hub-hero { padding: 3rem 0 2.25rem; }
  .insights-hub-hero h1 { font-size: 1.75rem; }

  .article-header { padding: 3rem 0 2rem; }
  .article-title { font-size: 1.6rem; }

  .article-prose { padding: 0; }
  .article-prose h2 { font-size: 1.3rem; margin-top: 2rem; }
  .article-prose p, .article-prose li { font-size: 1rem; }

  .article-meta { gap: 0.5rem; }

  .article-showcase { padding: 2.5rem 0; }
}
