/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --purple: #7c3aed;
  --purple-light: #8b5cf6;
  --purple-dark: #5b21b6;
  --teal: #0d9488;
  --teal-light: #14b8a6;
  --pink: #ec4899;
  --orange: #f97316;
  --blue: #3b82f6;
  --green: #22c55e;
  --bg: #fafafa;
  --bg-alt: #f4f4f8;
  --bg-card: #ffffff;
  --border: #e5e7eb;
  --text: #111827;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --gradient: linear-gradient(135deg, #7c3aed, #0d9488);
}
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
a { color: var(--purple); 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: 'Sora', sans-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; }
.center-cta { text-align: center; margin-top: 40px; }
.gradient-text { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.flex-1 { flex: 1; }

/* ── 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.05); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { display: flex; align-items: center; gap: 8px; font-family: 'Sora', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--text); }
.logo-icon { font-size: 1.3rem; }
.logo strong { color: var(--purple); }
.logo-ai { background: var(--gradient); color: #fff; padding: 1px 7px; border-radius: 6px; font-size: 0.7rem; font-weight: 800; margin-left: 2px; vertical-align: middle; }
.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: 10px; 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(--purple); color: #fff; border-color: var(--purple); }
.btn-primary:hover { background: var(--purple-dark); border-color: var(--purple-dark); }
.btn-gradient { background: var(--gradient); color: #fff; border-color: transparent; }
.btn-gradient:hover { opacity: 0.9; }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { border-color: var(--purple); color: var(--purple); }
.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-white { background: #fff; color: var(--purple); border-color: #fff; font-weight: 700; }
.btn-white:hover { background: #f3f4f6; }
.btn-sm { padding: 7px 14px; font-size: 0.875rem; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }
.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; }

/* ── Hero ── */
.hero { position: relative; overflow: hidden; background: #0f0a1e; padding: 80px 0 60px; color: #fff; }
.hero-bg-orbs { position: absolute; inset: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.35; }
.orb-1 { width: 500px; height: 500px; background: var(--purple); top: -150px; left: -100px; }
.orb-2 { width: 400px; height: 400px; background: var(--teal); bottom: -100px; right: -80px; }
.orb-3 { width: 300px; height: 300px; background: var(--pink); top: 50%; right: 30%; opacity: 0.2; }
.hero-inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.8); padding: 6px 16px; border-radius: 100px; font-size: 0.8rem; font-weight: 500; margin-bottom: 20px; }
.badge-dot { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; box-shadow: 0 0 8px #4ade80; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }
.hero h1 { font-family: 'Sora', sans-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.7); margin-bottom: 32px; line-height: 1.7; }
.hero-tool { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 20px; margin-bottom: 28px; }
.hero-input-row { display: flex; gap: 10px; }
.hero-input { flex: 1; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 10px; padding: 12px 16px; color: #fff; font-size: 0.95rem; font-family: inherit; }
.hero-input::placeholder { color: rgba(255,255,255,0.4); }
.hero-input:focus { outline: none; border-color: var(--purple-light); }
.hero-stats { display: flex; align-items: center; gap: 20px; }
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 1.3rem; font-weight: 800; color: #fff; }
.stat span { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.stat-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.15); }

/* ── Notes Preview Widget ── */
.notes-preview { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden; color: var(--text); }
.notes-header { background: linear-gradient(135deg, var(--purple), var(--teal)); padding: 14px 18px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.notes-title { color: #fff; font-size: 0.85rem; font-weight: 600; }
.notes-time { color: rgba(255,255,255,0.75); font-size: 0.75rem; }
.notes-body { padding: 18px; display: flex; flex-direction: column; gap: 16px; }
.notes-section-title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 8px; }
.notes-section { display: flex; flex-direction: column; gap: 4px; }
.notes-tag { display: inline-block; background: rgba(124,58,237,0.08); color: var(--purple); border: 1px solid rgba(124,58,237,0.2); padding: 3px 10px; border-radius: 100px; font-size: 0.78rem; font-weight: 600; margin-right: 4px; margin-bottom: 4px; }
.notes-def { font-size: 0.8rem; color: var(--text-muted); padding: 6px 10px; background: var(--bg-alt); border-radius: 6px; }
.notes-def strong { color: var(--text); }
.notes-q { font-size: 0.8rem; color: var(--text-muted); padding: 5px 0; border-bottom: 1px solid var(--border); }
.notes-q:last-child { border-bottom: none; }

/* ── Social Proof Bar ── */
.social-proof-bar { background: var(--bg-alt); border-bottom: 1px solid var(--border); padding: 14px 0; }
.sp-inner { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; color: var(--text-muted); font-size: 0.875rem; }
.uni-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.uni-badge { background: #fff; border: 1px solid var(--border); color: var(--text); padding: 3px 10px; border-radius: 100px; font-size: 0.75rem; font-weight: 600; }

/* ── Tool Card ── */
.tool-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; max-width: 800px; margin: 0 auto; box-shadow: var(--shadow); }
.tool-form { display: flex; flex-direction: column; gap: 16px; margin-bottom: 20px; }
.form-row { display: flex; gap: 16px; align-items: flex-end; flex-wrap: wrap; }
.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: 10px; 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(--purple); }
.tool-input::placeholder { color: var(--text-light); }
.tool-select { min-width: 180px; cursor: pointer; }
.tool-error { margin-top: 12px; padding: 12px 16px; background: #fef2f2; border: 1px solid #fecaca; border-radius: 10px; color: #dc2626; font-size: 0.9rem; }
.tool-result { margin-top: 24px; border-top: 1px solid var(--border); padding-top: 24px; }
.result-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; flex-wrap: wrap; gap: 10px; }
.result-header h3 { font-size: 1rem; font-weight: 700; }
.result-actions { display: flex; gap: 8px; }
.result-content { background: var(--bg-alt); border-radius: var(--radius); padding: 20px; margin-bottom: 20px; font-size: 0.9rem; line-height: 1.7; color: var(--text-muted); }
.result-content h4 { color: var(--text); font-weight: 700; margin: 16px 0 8px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.06em; }
.result-content h4:first-child { margin-top: 0; }
.result-content .concept-tag { display: inline-block; background: rgba(124,58,237,0.08); color: var(--purple); border: 1px solid rgba(124,58,237,0.2); padding: 3px 10px; border-radius: 100px; font-size: 0.8rem; font-weight: 600; margin: 2px; }
.result-content .def-item { padding: 8px 12px; background: #fff; border-radius: 8px; margin-bottom: 6px; border-left: 3px solid var(--purple); }
.result-content .def-item strong { color: var(--text); }
.result-content .q-item { padding: 6px 0; border-bottom: 1px solid var(--border); }
.result-content .q-item:last-child { border-bottom: none; }
.upgrade-banner { background: linear-gradient(135deg, #0f0a1e, #1e1040); color: #fff; border-radius: var(--radius); padding: 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.upgrade-left { display: flex; align-items: flex-start; gap: 16px; }
.upgrade-icon { font-size: 1.5rem; flex-shrink: 0; }
.upgrade-banner strong { display: block; margin-bottom: 6px; font-size: 0.95rem; }
.upgrade-banner p { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin: 0; }

/* ── Features Grid ── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.feature-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); }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 16px; }
.feature-icon.purple { background: rgba(124,58,237,0.1); }
.feature-icon.teal { background: rgba(13,148,136,0.1); }
.feature-icon.pink { background: rgba(236,72,153,0.1); }
.feature-icon.orange { background: rgba(249,115,22,0.1); }
.feature-icon.blue { background: rgba(59,130,246,0.1); }
.feature-icon.green { background: rgba(34,197,94,0.1); }
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { color: var(--text-muted); font-size: 0.875rem; }

/* ── Steps ── */
.steps-row { display: flex; align-items: flex-start; justify-content: center; gap: 20px; flex-wrap: wrap; }
.step { display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 240px; }
.step-num { width: 52px; height: 52px; border-radius: 50%; background: var(--gradient); color: #fff; font-family: 'Sora', sans-serif; font-size: 1.3rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; box-shadow: 0 4px 16px rgba(124,58,237,0.3); }
.step-content h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step-content p { color: var(--text-muted); font-size: 0.875rem; }
.step-arrow { font-size: 1.5rem; color: var(--text-light); align-self: center; margin-top: -30px; }

/* ── Use Cases ── */
.use-cases-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.use-case { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: border-color 0.2s, transform 0.2s; box-shadow: var(--shadow); }
.use-case:hover { border-color: var(--purple-light); transform: translateY(-2px); }
.uc-emoji { font-size: 2rem; margin-bottom: 12px; }
.use-case h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.use-case 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: 16px; position: relative; }
.pricing-featured { border-color: var(--purple); box-shadow: 0 0 0 4px rgba(124,58,237,0.08); }
.pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gradient); 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-desc { color: var(--text-muted); font-size: 0.875rem; }
.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:nth-child(-n+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(--purple-light); transform: translateY(-3px); text-decoration: none; }
.blog-tag { display: inline-block; background: rgba(124,58,237,0.08); color: var(--purple); 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(--purple); 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(--purple); 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, #0f0a1e, #1e1040, #0d2a2a); padding: 80px 0; text-align: center; color: #fff; }
.cta-inner { display: flex; flex-direction: column; align-items: center; }
.cta-emoji { font-size: 3rem; margin-bottom: 16px; }
.cta-inner h2 { font-family: 'Sora', sans-serif; font-size: 2rem; font-weight: 800; margin-bottom: 16px; }
.cta-inner p { color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto 32px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.footer { background: #0f0a1e; 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-brand p { font-size: 0.875rem; margin-top: 12px; max-width: 260px; color: rgba(255,255,255,0.5); }
.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.5); 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.08); padding: 20px 0; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.8rem; text-align: center; }
.footer-bottom a { color: var(--purple-light); }

/* ── Article ── */
.blog-hero { padding: 60px 0 40px; background: linear-gradient(135deg, #0f0a1e, #1e1040); color: #fff; text-align: center; }
.blog-hero h1 { font-family: 'Sora', sans-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: 'Sora', sans-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, #0f0a1e, #1e1040); 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.75); margin-bottom: 20px; font-size: 0.9rem; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-preview { display: none; }
  .hero-input-row { flex-direction: column; }
  .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; }
  .steps-row { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); margin: 0; }
  .form-row { flex-direction: column; }
}

/* 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%; }

/* == 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 #7c3aed;
  color: #8b5cf6;
  cursor: pointer;
  transition: background .15s, box-shadow .15s, transform .1s;
  letter-spacing: .01em;
  white-space: nowrap;
  user-select: none;
}
.wcdh-btn:hover {
  background: rgba(124,58,237,0.18);
  box-shadow: 0 0 0 3px rgba(124,58,237,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 #7c3aed;
  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(124,58,237,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; }
}

/* ── 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; } }

/* ── Multi-URL + PDF upload styles ── */
.pdf-drop-zone {
  border: 2px dashed #334155;
  border-radius: .5rem;
  padding: .85rem 1rem;
  text-align: center;
  color: #64748b;
  font-size: .85rem;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  background: #0f172a;
}
.pdf-drop-zone:hover, .pdf-drop-zone.drag-over {
  border-color: #7c3aed;
  background: rgba(124,58,237,.07);
  color: #a78bfa;
}
.pdf-chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: #1e293b;
  border: 1px solid #334155;
  color: #e2e8f0;
  font-size: .78rem;
  padding: .25rem .65rem;
  border-radius: 999px;
}
.pdf-chip button {
  background: none;
  border: none;
  color: #ef4444;
  cursor: pointer;
  font-size: .85rem;
  line-height: 1;
  padding: 0;
}

/* ── 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; }

/* ── Suite-bar banner (non-clickable, capitalised, centred) ─────────────────── */
.suite-bar--banner {
  background: #7c3aed;
  border-bottom: none;
}
.suite-bar-inner--centered {
  justify-content: center;
  align-items: center;
  gap: .75rem;
  padding: .65rem 1.5rem;
}
.suite-bar-banner-text {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}
.suite-bar-star {
  font-size: 1rem;
  color: #fde68a;
  flex-shrink: 0;
}

/* ── Submit button row ──────────────────────────────────────────────────────── */
.submit-btn-row {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
}
.btn-submit-main {
  background: #7c3aed;
  color: #fff;
  border: none;
  padding: .85rem 2.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: .6rem;
  cursor: pointer;
  transition: background .15s, transform .1s;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-submit-main:hover { background: #6d28d9; }
.btn-submit-main:active { transform: scale(0.97); }

/* ── Input section purple bar ───────────────────────────────────────────────── */
.input-section-bar {
  background: #7c3aed;
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
  padding: .55rem 1rem;
  border-radius: .5rem .5rem 0 0;
  margin-bottom: .75rem;
}
