/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --primary: #1e3a5f;
  --primary-light: #2563eb;
  --accent: #d97706;
  --accent-light: #f59e0b;
  --bg: #f8fafc;
  --bg-alt: #f1f5f9;
  --bg-dark: #0f172a;
  --bg-card: #ffffff;
  --border: #e2e8f0;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
a { color: var(--primary-light); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Layout ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-title { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 800; text-align: center; margin-bottom: 12px; color: var(--text); }
.section-sub { text-align: center; color: var(--text-muted); max-width: 600px; margin: 0 auto 48px; font-size: 1.05rem; }
.section-eyebrow { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 12px; }
.center-cta { text-align: center; margin-top: 40px; }

/* ── Nav ── */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); box-shadow: 0 1px 8px rgba(0,0,0,0.06); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 1.1rem; font-weight: 600; color: var(--text); }
.logo-mark { background: var(--primary); color: #fff; width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 800; }
.logo strong { color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: var(--text-muted); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); text-decoration: none; }
.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.4rem; cursor: pointer; }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 8px; font-weight: 600; font-size: 0.95rem; cursor: pointer; border: 2px solid transparent; transition: all 0.18s cubic-bezier(0.23,1,0.32,1); text-decoration: none; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: #152d4a; border-color: #152d4a; }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-accent { background: var(--accent); color: #fff; border-color: var(--accent); font-weight: 700; }
.btn-accent:hover { background: #b45309; border-color: #b45309; }
.btn-white { background: #fff; color: var(--primary); border-color: #fff; font-weight: 700; }
.btn-white:hover { background: #f1f5f9; }
.btn-sm { padding: 7px 14px; font-size: 0.875rem; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Hero ── */
.hero { padding: 80px 0 60px; background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 60%, #1e3a5f 100%); color: #fff; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge { display: inline-block; background: rgba(217,119,6,0.2); border: 1px solid rgba(217,119,6,0.5); color: #fcd34d; padding: 6px 16px; border-radius: 100px; font-size: 0.8rem; font-weight: 600; margin-bottom: 20px; letter-spacing: 0.05em; text-transform: uppercase; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.hero-sub { font-size: 1rem; color: rgba(255,255,255,0.75); margin-bottom: 32px; line-height: 1.7; }
.hero-sub strong { color: #fcd34d; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-trust span { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

/* ── Demo Preview Widget ── */
.demo-preview { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden; }
.demo-preview-header { background: #f1f5f9; padding: 12px 16px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--border); }
.dp-dot { width: 12px; height: 12px; border-radius: 50%; }
.dp-red { background: #ef4444; } .dp-yellow { background: #f59e0b; } .dp-green { background: #22c55e; }
.dp-title { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; margin-left: 8px; }
.demo-preview-body { padding: 20px; }
.dp-row { display: flex; gap: 8px; margin-bottom: 8px; font-size: 0.8rem; }
.dp-label { color: var(--text-muted); font-weight: 600; white-space: nowrap; }
.dp-val { color: var(--text); }
.dp-divider { height: 1px; background: var(--border); margin: 12px 0; }
.dp-criterion { display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: 6px; margin-bottom: 6px; font-size: 0.78rem; }
.dp-criterion span:nth-child(2) { flex: 1; color: var(--text); }
.dp-score { font-weight: 700; font-size: 0.8rem; white-space: nowrap; }
.dp-criterion.covered { background: #f0fdf4; }
.dp-criterion.covered .dp-tick { color: #16a34a; font-weight: 700; }
.dp-criterion.covered .dp-score { color: #16a34a; }
.dp-criterion.partial { background: #fffbeb; }
.dp-criterion.partial .dp-tick { color: #d97706; font-weight: 700; }
.dp-criterion.partial .dp-score { color: #d97706; }
.dp-criterion.gap { background: #fef2f2; }
.dp-criterion.gap .dp-tick { color: #dc2626; font-weight: 700; }
.dp-criterion.gap .dp-score { color: #dc2626; }
.dp-summary { background: #f8fafc; border: 1px solid var(--border); border-radius: 8px; padding: 12px; margin-top: 12px; display: flex; flex-direction: column; gap: 4px; font-size: 0.8rem; }
.dp-summary strong { color: var(--primary); }
.dp-summary span { color: var(--text-muted); }

/* ── Trust Bar ── */
.trust-bar { background: var(--primary); padding: 16px 0; }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; color: rgba(255,255,255,0.8); font-size: 0.875rem; }
.trust-states { display: flex; gap: 8px; }
.state-badge { background: rgba(255,255,255,0.15); color: #fff; padding: 3px 10px; border-radius: 100px; font-size: 0.75rem; font-weight: 700; }

/* ── Two Column ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.two-col-left h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 800; margin-bottom: 16px; line-height: 1.3; }
.two-col-left p { color: var(--text-muted); margin-bottom: 16px; }
.solution-card { background: var(--primary); color: #fff; border-radius: var(--radius); padding: 32px; }
.solution-icon { font-size: 2.5rem; margin-bottom: 16px; }
.solution-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.solution-card p { color: rgba(255,255,255,0.75); margin-bottom: 20px; font-size: 0.9rem; }
.solution-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.solution-list li { color: rgba(255,255,255,0.85); font-size: 0.875rem; }

/* ── Tool Card ── */
.tool-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; max-width: 780px; margin: 0 auto; box-shadow: var(--shadow); }
.tool-form { display: flex; flex-direction: column; gap: 16px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.tool-input { background: var(--bg); border: 2px solid var(--border); border-radius: 8px; padding: 12px 16px; color: var(--text); font-size: 0.95rem; font-family: inherit; transition: border-color 0.2s; }
.tool-input:focus { outline: none; border-color: var(--primary-light); }
.tool-input::placeholder { color: var(--text-light); }
.tool-error { margin-top: 12px; padding: 12px 16px; background: #fef2f2; border: 1px solid #fecaca; border-radius: 8px; color: #dc2626; font-size: 0.9rem; }
.demo-result { margin-top: 24px; border-top: 1px solid var(--border); padding-top: 24px; }
.demo-result-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.demo-result-header h3 { font-size: 1rem; font-weight: 700; }
.result-badge { background: rgba(30,58,95,0.1); color: var(--primary); padding: 4px 12px; border-radius: 100px; font-size: 0.8rem; font-weight: 700; }
.criteria-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.criterion-row { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 8px; font-size: 0.875rem; }
.criterion-row.covered { background: #f0fdf4; border: 1px solid #bbf7d0; }
.criterion-row.partial { background: #fffbeb; border: 1px solid #fde68a; }
.criterion-row.gap { background: #fef2f2; border: 1px solid #fecaca; }
.criterion-icon { font-size: 1rem; width: 20px; }
.criterion-text { flex: 1; color: var(--text); }
.criterion-score { font-weight: 700; font-size: 0.875rem; }
.covered .criterion-score { color: #16a34a; }
.partial .criterion-score { color: #d97706; }
.gap .criterion-score { color: #dc2626; }
.demo-upgrade-banner { background: linear-gradient(135deg, #1e3a5f, #2563eb); color: #fff; border-radius: var(--radius); padding: 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.demo-upgrade-banner strong { display: block; margin-bottom: 6px; }
.demo-upgrade-banner p { font-size: 0.875rem; color: rgba(255,255,255,0.8); margin: 0; }
.spinner { width: 18px; height: 18px; 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); } }
.hidden { display: none !important; }

/* ── Process Steps ── */
.process-steps { display: flex; align-items: flex-start; gap: 0; flex-wrap: wrap; justify-content: center; }
.process-step { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; max-width: 220px; text-align: center; flex: 1; min-width: 160px; box-shadow: var(--shadow); }
.process-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 800; color: var(--accent); margin-bottom: 12px; }
.process-step h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.process-step p { font-size: 0.85rem; color: var(--text-muted); }
.process-connector { width: 40px; height: 2px; background: var(--border); align-self: center; margin: 0 -4px; flex-shrink: 0; }

/* ── Cards Grid ── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; box-shadow: var(--shadow); }
.card:hover { border-color: var(--primary-light); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card-icon { font-size: 2rem; margin-bottom: 14px; }
.card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.card p { color: var(--text-muted); font-size: 0.875rem; }

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 900px; margin: 0 auto; }
.pricing-card { background: var(--bg-card); border: 2px solid var(--border); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; gap: 20px; position: relative; }
.pricing-featured { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(30,58,95,0.08); }
.pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; padding: 4px 16px; border-radius: 100px; font-size: 0.75rem; font-weight: 700; white-space: nowrap; }
.pricing-tier { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }
.pricing-price { font-size: 2.5rem; font-weight: 800; color: var(--text); }
.pricing-price span { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pricing-features li { font-size: 0.875rem; color: var(--text-muted); }
.pricing-features li:first-child, .pricing-features li:nth-child(2), .pricing-features li:nth-child(3) { color: var(--text); }

/* ── Blog Grid ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.blog-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 10px; transition: border-color 0.2s, transform 0.2s; color: var(--text); box-shadow: var(--shadow); }
.blog-card:hover { border-color: var(--primary-light); transform: translateY(-3px); text-decoration: none; }
.blog-tag { display: inline-block; background: rgba(30,58,95,0.08); color: var(--primary); padding: 3px 10px; border-radius: 100px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; width: fit-content; }
.blog-card h3 { font-size: 1rem; font-weight: 700; line-height: 1.4; color: var(--text); }
.blog-card p { color: var(--text-muted); font-size: 0.875rem; flex: 1; }
.blog-read { color: var(--primary-light); font-size: 0.875rem; font-weight: 600; }

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.faq-item summary { padding: 18px 24px; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; color: var(--text); }
.faq-item summary::after { content: '+'; font-size: 1.2rem; color: var(--primary); transition: transform 0.2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 24px 18px; color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* ── CTA Section ── */
.cta-section { background: linear-gradient(135deg, #0f172a, #1e3a5f); padding: 80px 0; text-align: center; color: #fff; }
.cta-inner h2 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 800; margin-bottom: 16px; }
.cta-inner p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 32px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.footer { background: #0f172a; color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; padding-bottom: 48px; }
.footer .logo { color: #fff; }
.footer .logo-mark { background: var(--accent); }
.footer-brand p { font-size: 0.875rem; margin-top: 12px; max-width: 260px; }
.footer-abn { font-size: 0.75rem !important; color: rgba(255,255,255,0.4) !important; }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.footer-links div { display: flex; flex-direction: column; gap: 10px; }
.footer-links strong { font-size: 0.875rem; color: #fff; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.8rem; text-align: center; }
.footer-bottom a { color: var(--accent-light); }

/* ── Article ── */
.blog-hero { padding: 60px 0 40px; background: var(--primary); color: #fff; text-align: center; }
.blog-hero h1 { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 800; }
.blog-hero p { color: rgba(255,255,255,0.7); margin-top: 12px; }
.article-body { max-width: 720px; margin: 0 auto; padding: 60px 24px; }
.article-body h1 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 800; margin-bottom: 16px; line-height: 1.25; color: var(--text); }
.article-body h2 { font-size: 1.4rem; font-weight: 700; margin: 40px 0 16px; color: var(--text); }
.article-body h3 { font-size: 1.1rem; font-weight: 700; margin: 28px 0 12px; color: var(--text); }
.article-body p { color: var(--text-muted); margin-bottom: 20px; line-height: 1.8; }
.article-body ul, .article-body ol { color: var(--text-muted); padding-left: 24px; margin-bottom: 20px; }
.article-body li { margin-bottom: 8px; line-height: 1.7; }
.article-meta { display: flex; gap: 16px; align-items: center; margin-bottom: 32px; flex-wrap: wrap; }
.article-meta span { color: var(--text-muted); font-size: 0.875rem; }
.article-cta { background: linear-gradient(135deg, #1e3a5f, #2563eb); color: #fff; border-radius: var(--radius); padding: 28px; margin: 40px 0; text-align: center; }
.article-cta h3 { margin-bottom: 10px; color: #fff; }
.article-cta p { color: rgba(255,255,255,0.8); margin-bottom: 20px; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .two-col { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: #fff; padding: 20px; border-bottom: 1px solid var(--border); gap: 16px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .process-steps { flex-direction: column; align-items: center; }
  .process-connector { width: 2px; height: 30px; }
}

/* Cancel any time badge */
.cancel-badge {
  font-size: 0.75rem;
  color: #22c55e;
  font-weight: 600;
  margin-top: 0.25rem;
  margin-bottom: 0;
  letter-spacing: 0.01em;
}


/* ── Suite Navigation Bar ──────────────────────────────────────────────────── */
.suite-bar {
  background: #0a0f1e;
  border-bottom: 1px solid #1e293b;
  padding: 0;
  position: relative;
  z-index: 200;
}
.suite-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.suite-bar-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #475569;
  padding: .6rem .75rem .6rem 0;
  white-space: nowrap;
  border-right: 1px solid #1e293b;
  margin-right: .75rem;
  flex-shrink: 0;
}
.suite-tools {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex-wrap: wrap;
  flex: 1;
}
.suite-tool {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .85rem;
  border-radius: .4rem;
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s, color .15s;
  white-space: nowrap;
  color: #64748b;
  background: transparent;
  border: none;
}
.suite-tool:hover {
  background: #1e293b;
  color: #e2e8f0;
  text-decoration: none;
}
.suite-tool.active {
  background: #1e293b;
  color: #a78bfa;
  cursor: default;
  pointer-events: none;
}





.suite-tool .st-icon {
  font-size: .9rem;
  line-height: 1;
}
.suite-tool .st-badge {
  font-size: .65rem;
  background: #334155;
  color: #94a3b8;
  padding: .1rem .35rem;
  border-radius: .25rem;
  font-weight: 600;
}
.suite-tool.active .st-badge {
  background: #3730a3;
  color: #c4b5fd;
}
.suite-arrow {
  color: #334155;
  font-size: .75rem;
  padding: 0 .1rem;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .suite-bar-label { display: none; }
  .suite-tool { padding: .4rem .6rem; font-size: .75rem; }
}


/* ── Suite Suggestion Box ──────────────────────────────────────────────────── */
.suite-suggestions {
  background: #080d1a;
  border-bottom: 1px solid #1e293b;
  padding: .85rem 0;
  overflow: hidden;
}
.suite-suggestions-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.suite-suggestions-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #334155;
  margin-bottom: .55rem;
}
.suite-suggestion-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.suggestion-chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .3rem .75rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 500;
  background: #0f172a;
  border: 1px solid #1e293b;
  color: #94a3b8;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s, transform .1s;
  text-decoration: none;
  white-space: nowrap;
  user-select: none;
}
.suggestion-chip:hover {
  background: #1e293b;
  border-color: #334155;
  color: #e2e8f0;
  text-decoration: none;
  transform: translateY(-1px);
}
.suggestion-chip .chip-icon {
  font-size: .85rem;
  line-height: 1;
}
.suggestion-chip.chip-active {
  background: #1e1b4b;
  border-color: #4338ca;
  color: #a5b4fc;
}
@media (max-width: 640px) {
  .suite-suggestion-chips { gap: .3rem; }
  .suggestion-chip { font-size: .72rem; padding: .25rem .6rem; }
}


/* ── AdSense Ad Units ──────────────────────────────────────────────────────── */
.ad-unit {
  text-align: center;
  padding: 1rem 0;
  overflow: hidden;
}
.ad-unit::before {
  content: 'Advertisement';
  display: block;
  font-size: .65rem;
  color: #475569;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .35rem;
}
.ad-leaderboard { max-width: 728px; margin: 0 auto; }
.ad-responsive { width: 100%; }

/* ── Multi-Source Tool UI ──────────────────────────────────────────────────── */
.sources-section { background: #0d1424; border: 1px solid #1e293b; border-radius: .75rem; padding: 1.25rem 1.5rem; margin-bottom: 1.5rem; }
.sources-header { display: flex; align-items: baseline; gap: .75rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.sources-label { font-weight: 700; color: #e2e8f0; font-size: 1rem; }
.sources-hint { color: #64748b; font-size: .8rem; }
.url-list { display: flex; flex-direction: column; gap: .5rem; margin-bottom: .5rem; }
.url-row { display: flex; gap: .5rem; align-items: center; }
.url-row .tool-input { flex: 1; }
.url-remove-btn { background: #1e293b; border: 1px solid #334155; color: #94a3b8; border-radius: .375rem; padding: .5rem .75rem; cursor: pointer; font-size: .875rem; transition: background .15s; flex-shrink: 0; }
.url-remove-btn:hover { background: #ef4444; color: #fff; border-color: #ef4444; }
.url-remove-btn.hidden { display: none; }
.btn-add-url { background: none; border: 1px dashed #334155; color: #64748b; border-radius: .375rem; padding: .5rem 1rem; cursor: pointer; font-size: .875rem; width: 100%; margin-top: .25rem; transition: all .15s; }
.btn-add-url:hover { border-color: #a78bfa; color: #a78bfa; }
.optional-label { color: #64748b; font-size: .8rem; font-weight: 400; }
.pdf-drop-zone { border: 2px dashed #334155; border-radius: .75rem; padding: 1.5rem; text-align: center; cursor: pointer; transition: all .2s; background: #0f172a; }
.pdf-drop-zone:hover, .pdf-drop-zone.drag-over { border-color: #a78bfa; background: #1e1040; }
.pdf-drop-icon { font-size: 2rem; margin-bottom: .5rem; }
.pdf-drop-text { color: #94a3b8; font-size: .9rem; font-weight: 500; }
.pdf-drop-sub { color: #475569; font-size: .75rem; margin-top: .25rem; }
.pdf-status { margin-top: .5rem; padding: .5rem .75rem; border-radius: .375rem; font-size: .85rem; }
.pdf-status.success { background: #064e3b; color: #6ee7b7; }
.pdf-status.error { background: #450a0a; color: #fca5a5; }
.pdf-status.loading { background: #1e293b; color: #94a3b8; }

/* == What Can I Do Here Dropdown == */


.wcdh-bar {
  background: #080d1a;
  border-bottom: 1px solid #1e293b;
  padding: .6rem 0;
}
.wcdh-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
}
.wcdh-dropdown {
  position: relative;
  display: inline-block;
}
.wcdh-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .4rem 1rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  background: #0f172a;
  border: 1px solid #d97706;
  color: #f59e0b;
  cursor: pointer;
  transition: background .15s, box-shadow .15s, transform .1s;
  letter-spacing: .01em;
  white-space: nowrap;
  user-select: none;
}
.wcdh-btn:hover {
  background: rgba(217,119,6,0.18);
  box-shadow: 0 0 0 3px rgba(217,119,6,0.18);
  transform: translateY(-1px);
}
.wcdh-btn:active { transform: scale(0.97); }
.wcdh-btn-icon { font-size: .9rem; }
.wcdh-chevron {
  font-size: .65rem;
  transition: transform .2s cubic-bezier(0.23,1,0.32,1);
  display: inline-block;
}
.wcdh-chevron.open { transform: rotate(180deg); }
.wcdh-menu {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  z-index: 9999;
  background: #0f172a;
  border: 1px solid #d97706;
  border-radius: .75rem;
  padding: .4rem;
  min-width: 280px;
  max-width: 340px;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  opacity: 0;
  transform: scale(0.95) translateY(-6px);
  transform-origin: top left;
  pointer-events: none;
  transition: opacity .18s cubic-bezier(0.23,1,0.32,1), transform .18s cubic-bezier(0.23,1,0.32,1);
}
.wcdh-menu.open {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}
.wcdh-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem .85rem;
  border-radius: .5rem;
  font-size: .83rem;
  font-weight: 500;
  color: #94a3b8;
  text-decoration: none;
  transition: background .12s, color .12s;
}
.wcdh-item:hover {
  background: rgba(217,119,6,0.18);
  color: #e2e8f0;
  text-decoration: none;
}
.wcdh-item-icon { font-size: .95rem; flex-shrink: 0; }
@media (max-width: 640px) {
  .wcdh-menu { min-width: 240px; max-width: calc(100vw - 2rem); }
  .wcdh-btn { font-size: .75rem; padding: .35rem .8rem; }
}

/* ── Multi-PDF list ─────────────────────────────────────────────────────── */
.pdf-list { display: flex; flex-direction: column; gap: .75rem; margin-bottom: .5rem; }
.pdf-slot { display: flex; align-items: center; gap: .75rem; }
.pdf-slot-drop { flex: 1; border: 2px dashed #334155; border-radius: .75rem; padding: 1rem 1.25rem; text-align: center; cursor: pointer; transition: all .2s; background: #0f172a; }
.pdf-slot-drop:hover, .pdf-slot-drop.drag-over { border-color: #a78bfa; background: #1e1040; }
.pdf-slot-drop .pdf-drop-icon { font-size: 1.5rem; margin-bottom: .25rem; }
.pdf-slot-drop .pdf-drop-text { color: #94a3b8; font-size: .875rem; font-weight: 500; }
.pdf-slot-drop .pdf-drop-sub { color: #475569; font-size: .75rem; margin-top: .2rem; }
.pdf-slot-remove { background: none; border: 1px solid #334155; color: #64748b; border-radius: .375rem; padding: .4rem .6rem; cursor: pointer; font-size: .8rem; flex-shrink: 0; transition: all .15s; }
.pdf-slot-remove:hover { border-color: #ef4444; color: #ef4444; }
.pdf-slot-status { font-size: .8rem; margin-top: .25rem; padding: .3rem .6rem; border-radius: .375rem; }
.pdf-slot-status.success { background: #064e3b; color: #6ee7b7; }
.pdf-slot-status.error { background: #450a0a; color: #fca5a5; }
.pdf-slot-status.loading { background: #1e293b; color: #94a3b8; }
.pdf-list-status { font-size: .8rem; color: #64748b; margin-top: .25rem; }

/* ── Result section tabs ────────────────────────────────────────────────── */
.result-section-tabs { display: flex; gap: .5rem; margin-bottom: 1rem; flex-wrap: wrap; }
.result-tab { padding: .5rem 1.25rem; border-radius: 2rem; border: 1px solid #334155; color: #64748b; font-size: .85rem; font-weight: 600; cursor: pointer; transition: all .2s; background: transparent; }
.result-tab.active { background: #d97706; border-color: #d97706; color: #fff; }
.result-tab:hover:not(.active) { border-color: #a78bfa; color: #a78bfa; }

/* ── Section 3: Assessment cards ────────────────────────────────────────── */
.assessment-section { margin-top: 1.5rem; }
.assessment-section.hidden { display: none; }
.assessment-section-header { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid #1e293b; }
.section-num { display: flex; align-items: center; justify-content: center; width: 2.25rem; height: 2.25rem; border-radius: 50%; background: #d97706; color: #fff; font-weight: 800; font-size: 1rem; flex-shrink: 0; }
.assessment-section-title { font-size: 1.1rem; font-weight: 700; color: #f1f5f9; margin: 0 0 .25rem; }
.assessment-section-sub { font-size: .8rem; color: #64748b; margin: 0; line-height: 1.5; }
.assessment-list { display: flex; flex-direction: column; gap: 1rem; }
.assessment-card { background: #0d1424; border: 1px solid #1e293b; border-radius: .75rem; overflow: hidden; }
.assessment-card-header { display: flex; align-items: center; gap: .75rem; padding: .875rem 1rem; background: #0f172a; cursor: pointer; user-select: none; }
.assessment-card-header:hover { background: #1e293b; }
.assessment-verb { font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; padding: .25rem .6rem; border-radius: .25rem; background: #d97706; color: #fff; flex-shrink: 0; }
.assessment-criterion-ref { font-size: .75rem; color: #64748b; flex-shrink: 0; }
.assessment-title { font-size: .9rem; font-weight: 600; color: #e2e8f0; flex: 1; }
.assessment-type-badge { font-size: .7rem; padding: .2rem .5rem; border-radius: .25rem; flex-shrink: 0; }
.assessment-type-badge.obs { background: #1e3a5f; color: #93c5fd; }
.assessment-type-badge.product { background: #1e3a2f; color: #6ee7b7; }
.assessment-type-badge.third { background: #3a2e1e; color: #fcd34d; }
.assessment-cat-badge { font-size: .7rem; padding: .2rem .5rem; border-radius: .25rem; background: #1e293b; color: #94a3b8; flex-shrink: 0; }
.assessment-chevron { color: #475569; font-size: .75rem; transition: transform .2s; flex-shrink: 0; }
.assessment-card.open .assessment-chevron { transform: rotate(180deg); }
.assessment-card-body { display: none; padding: 1rem; border-top: 1px solid #1e293b; }
.assessment-card.open .assessment-card-body { display: block; }
.assessment-field { margin-bottom: .875rem; }
.assessment-field:last-child { margin-bottom: 0; }
.assessment-field-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: #64748b; margin-bottom: .3rem; }
.assessment-field-value { font-size: .875rem; color: #cbd5e1; line-height: 1.5; }
.assessment-checklist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .4rem; }
.assessment-checklist li { display: flex; align-items: flex-start; gap: .5rem; font-size: .85rem; color: #94a3b8; }
.assessment-checklist li::before { content: "☐"; color: #d97706; flex-shrink: 0; font-size: 1rem; line-height: 1.2; }
.assessment-evidence-box { background: #0f172a; border: 1px solid #1e293b; border-left: 3px solid #d97706; border-radius: .375rem; padding: .625rem .875rem; font-size: .85rem; color: #fcd34d; }

/* ── Suggest Assessment Activities checkbox ─────────────────────────────── */
.suggest-assess-row { margin-top: .875rem; padding: .875rem 1rem; background: #0d1424; border: 1px solid #1e293b; border-radius: .625rem; }
.suggest-assess-label { display: flex; align-items: center; gap: .625rem; cursor: pointer; user-select: none; }
.suggest-assess-label input[type="checkbox"] { width: 1.1rem; height: 1.1rem; accent-color: #d97706; cursor: pointer; flex-shrink: 0; }
.suggest-assess-text { font-size: .9rem; font-weight: 600; color: #e2e8f0; }
.suggest-assess-hint { margin-top: .5rem; font-size: .8rem; color: #64748b; line-height: 1.5; padding-left: 1.75rem; }
.suggest-assess-hint .credit-cost { color: #d97706; font-weight: 700; }
.suggest-assess-hint .cross-unit-note { color: #a78bfa; }

/* ── Step number badges in tool form ────────────────────────────────────── */
.step-badge { display: inline-flex; align-items: center; justify-content: center; background: #d97706; color: #fff; font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: .2rem .55rem; border-radius: .3rem; flex-shrink: 0; }
.step-section-header { display: flex; align-items: center; gap: .625rem; margin-bottom: .75rem; }
.step-section-header--inline { margin-bottom: .625rem; }
.step-section-title { font-size: .95rem; font-weight: 700; color: #e2e8f0; }
.sources-header .step-badge { margin-right: .25rem; }

.pdf-slot { display: flex; align-items: center; gap: .75rem; background: #0f172a; border: 1px solid #1e293b; border-radius: .5rem; padding: .6rem .9rem; }
.pdf-slot-info { display: flex; align-items: center; gap: .5rem; flex: 1; min-width: 0; }
.pdf-slot-icon { font-size: 1.1rem; flex-shrink: 0; }
.pdf-slot-name { font-size: .875rem; color: #cbd5e1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pdf-slot-status-inline { font-size: .75rem; color: #6ee7b7; flex-shrink: 0; }

/* ── Generation Progress Bar ── */
.gen-progress-wrap { display: none; margin-top: 1rem; background: #0f172a; border: 1px solid #1e293b; border-radius: .75rem; padding: 1rem 1.25rem; }
.gen-progress-wrap.active { display: block; }
.gen-progress-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: .6rem; }
.gen-progress-stage { font-size: .875rem; font-weight: 600; color: #e2e8f0; }
.gen-progress-timer { font-size: .8rem; color: #64748b; font-variant-numeric: tabular-nums; }
.gen-progress-bar-track { height: 6px; background: #1e293b; border-radius: 3px; overflow: hidden; }
.gen-progress-bar-fill { height: 100%; border-radius: 3px; transition: width .4s cubic-bezier(0.23,1,0.32,1); }
.gen-progress-steps { display: flex; gap: .5rem; margin-top: .75rem; flex-wrap: wrap; }
.gen-progress-step { font-size: .75rem; padding: .2rem .6rem; border-radius: 999px; border: 1px solid #334155; color: #64748b; transition: all .3s; }
.gen-progress-step.done { border-color: #10b981; color: #10b981; background: rgba(16,185,129,.1); }
.gen-progress-step.active { border-color: #6366f1; color: #a5b4fc; background: rgba(99,102,241,.15); animation: pulse-step .8s ease-in-out infinite alternate; }
@keyframes pulse-step { from { opacity:.7; } to { opacity:1; } }

/* ── Language Selector ─────────────────────────────────────────────────── */
.lang-selector-row { margin: 1rem 0 0.5rem; }
.lang-selector-label { display:block; font-size:.85rem; font-weight:600; color:#94a3b8; margin-bottom:.5rem; text-transform:uppercase; letter-spacing:.05em; }
.lang-options { display:flex; flex-wrap:wrap; gap:.5rem 1.2rem; align-items:center; }
.lang-option { display:flex; align-items:center; gap:.35rem; cursor:pointer; font-size:.9rem; color:#e2e8f0; }
.lang-option input[type=radio] { accent-color:#a78bfa; cursor:pointer; }
.lang-other-input { background:#1e293b; border:1px solid #334155; border-radius:.4rem; color:#e2e8f0; font-size:.85rem; padding:.25rem .5rem; width:7rem; }
.lang-other-input.hidden { display:none; }
.lang-accuracy-note { margin:.5rem 0 0; font-size:.8rem; color:#64748b; font-style:italic; }
