/* =========================================================
   Launched · AI Growth OS — shared stylesheet
   Brand: orange #f16723 + black, dark/AI aesthetic
   ========================================================= */

:root {
  --bg: #060912;
  --bg-elev: #0b1020;
  --surface: #0f172a;
  --surface-2: #131a31;
  --border: rgba(148, 163, 184, 0.12);
  --border-strong: rgba(148, 163, 184, 0.22);
  --text: #e6edf7;
  --text-dim: #9aa6bd;
  --text-faint: #6b768f;
  --primary: #f16723;
  --primary-2: #ff8c42;
  --accent: #ffb347;
  --accent-2: #c83e00;
  --success: #10b981;
  --warn: #f59e0b;
  --grad-primary: linear-gradient(135deg, #f16723 0%, #ff8c42 100%);
  --grad-accent: linear-gradient(135deg, #ffb347 0%, #f16723 100%);
  --grad-text: linear-gradient(135deg, #ffffff 0%, #ffd4b3 55%, #ff8c42 100%);
  --shadow-glow: 0 0 60px rgba(241, 103, 35, 0.3);
  --shadow-card: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(241, 103, 35, 0.18), transparent),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(255, 140, 66, 0.10), transparent),
    radial-gradient(ellipse 50% 30% at 10% 70%, rgba(255, 179, 71, 0.10), transparent);
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* === TOP BAR === */
.topbar {
  background: rgba(11, 16, 32, 0.5);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-dim);
  position: relative;
  z-index: 50;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; height: 38px; }
.topbar-contact { display: flex; gap: 22px; }
.topbar-contact a { display: inline-flex; gap: 6px; align-items: center; transition: color .2s; }
.topbar-contact a:hover { color: var(--text); }
.topbar-promo { display: flex; gap: 8px; align-items: center; }
.pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); position: relative; }
.pulse-dot::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; background: var(--success); opacity: 0.4; animation: pulse 2s infinite; }
@keyframes pulse { 0% { transform: scale(.8); opacity: .6; } 100% { transform: scale(2); opacity: 0; } }

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(6, 9, 18, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.scrolled { border-bottom-color: var(--border); background: rgba(6, 9, 18, 0.92); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; letter-spacing: -.5px; }
.logo-img { height: 34px; width: auto; display: block; filter: none; }
footer .logo-img { height: 30px; }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links > a, .nav-links .nav-dropdown > button {
  padding: 8px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--text-dim);
  transition: color .2s, background .2s;
  display: inline-flex; align-items: center; gap: 5px;
}
.nav-links > a:hover, .nav-links .nav-dropdown > button:hover { color: var(--text); background: rgba(148, 163, 184, 0.06); }
.nav-links a.active { color: var(--text); background: rgba(241, 103, 35, 0.10); }
.nav-actions { display: flex; gap: 10px; align-items: center; }

/* Dropdown menu */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 240px;
  background: rgba(6, 9, 18, 0.98);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  padding: 8px;
  box-shadow: var(--shadow-card);
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a {
  display: block; padding: 10px 14px; border-radius: 9px;
  font-size: 14px; color: var(--text-dim); font-weight: 500;
  transition: all .15s;
}
.nav-dropdown-menu a:hover { background: rgba(241, 103, 35, 0.10); color: var(--text); }
.nav-dropdown-menu .menu-section { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-faint); padding: 12px 14px 6px; font-weight: 700; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 10px;
  font-size: 14.5px; font-weight: 600;
  transition: transform .15s, box-shadow .25s, background .25s, color .25s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-primary);
  color: white;
  box-shadow: 0 10px 30px -10px rgba(241, 103, 35, 0.6);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, #ff8c42 0%, #f16723 100%);
  opacity: 0; transition: opacity .3s;
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 36px -8px rgba(241, 103, 35, 0.7); }
.btn-primary:hover::before { opacity: 1; }
.btn-ghost {
  background: rgba(148, 163, 184, 0.06);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(148, 163, 184, 0.10); border-color: var(--border-strong); }
.btn-large { padding: 16px 28px; font-size: 15px; }
.btn-block { display: flex; width: 100%; justify-content: center; }

.nav-toggle { display: none; width: 40px; height: 40px; border-radius: 8px; background: rgba(148, 163, 184, 0.06); }

/* === HERO === */
.hero { padding: 80px 0 100px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(241, 103, 35, 0.08);
  border: 1px solid rgba(241, 103, 35, 0.25);
  font-size: 13px; font-weight: 500; color: #ff8c42;
  margin-bottom: 28px;
}
.hero-eyebrow .pulse-dot { background: #ff8c42; }
.hero-eyebrow .pulse-dot::after { background: #ff8c42; }
.hero h1 {
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.04;
  letter-spacing: -2px;
  font-weight: 800;
  margin-bottom: 24px;
}
.hero h1 .gradient { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero h1 .accent {
  background: linear-gradient(135deg, #ff8c42 0%, #f16723 50%, #ffb347 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lede { font-size: 19px; color: var(--text-dim); max-width: 560px; margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; font-size: 13.5px; color: var(--text-dim); }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 16px; height: 16px; color: var(--success); }

/* Smaller hero variant for inner pages */
.hero-sm { padding: 64px 0 56px; }
.hero-sm h1 { font-size: clamp(34px, 4.5vw, 56px); margin-bottom: 18px; }
.hero-sm .lede { font-size: 18px; max-width: 720px; }
.hero-sm.center { text-align: center; }
.hero-sm.center .lede { margin-left: auto; margin-right: auto; }
.hero-sm.center .hero-eyebrow { margin-left: auto; margin-right: auto; }
.hero-sm.center .hero-ctas { justify-content: center; }

/* Hero visual */
.hero-visual { position: relative; aspect-ratio: 4 / 4.6; perspective: 1200px; }
.hero-card {
  position: absolute;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(11, 16, 32, 0.95));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card), 0 0 80px -20px rgba(241, 103, 35, 0.4);
  backdrop-filter: blur(20px);
  overflow: hidden;
}
.hero-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255, 140, 66, .6), transparent); }
.hero-card-main { inset: 0; padding: 22px; display: flex; flex-direction: column; gap: 14px; animation: floaty 8s ease-in-out infinite; }
@keyframes floaty { 0%, 100% { transform: translateY(0) rotateZ(0); } 50% { transform: translateY(-8px) rotateZ(.3deg); } }
.hc-header { display: flex; justify-content: space-between; align-items: center; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.hc-title { font-weight: 600; font-size: 14px; display: flex; gap: 8px; align-items: center; }
.hc-title-ic { width: 26px; height: 26px; border-radius: 7px; background: var(--grad-primary); display: grid; place-items: center; }
.hc-status { font-size: 12px; color: var(--success); display: inline-flex; gap: 6px; align-items: center; }

.chat-stream { display: flex; flex-direction: column; gap: 10px; flex: 1; overflow: hidden; }
.chat-msg { max-width: 80%; padding: 10px 14px; border-radius: 14px; font-size: 13px; opacity: 0; transform: translateY(8px); animation: msgIn .5s forwards; }
.chat-msg.user { align-self: flex-end; background: rgba(241, 103, 35, 0.15); border: 1px solid rgba(241, 103, 35, 0.3); border-bottom-right-radius: 4px; }
.chat-msg.bot { align-self: flex-start; background: rgba(148, 163, 184, 0.06); border: 1px solid var(--border); border-bottom-left-radius: 4px; }
.chat-msg:nth-child(1) { animation-delay: .3s; }
.chat-msg:nth-child(2) { animation-delay: 1.1s; }
.chat-msg:nth-child(3) { animation-delay: 2s; }
.chat-msg:nth-child(4) { animation-delay: 3s; }
@keyframes msgIn { to { opacity: 1; transform: translateY(0); } }
.chat-input { display: flex; gap: 8px; padding-top: 12px; border-top: 1px solid var(--border); }
.chat-input-bar { flex: 1; height: 36px; border-radius: 9px; background: var(--surface-2); border: 1px solid var(--border); display: flex; align-items: center; padding: 0 12px; font-size: 12px; color: var(--text-faint); }
.chat-input-btn { width: 36px; height: 36px; border-radius: 9px; background: var(--grad-primary); display: grid; place-items: center; }

.hero-pill { position: absolute; background: rgba(15, 23, 42, 0.92); border: 1px solid var(--border-strong); backdrop-filter: blur(12px); border-radius: 14px; padding: 12px 16px; box-shadow: var(--shadow-card); display: flex; gap: 12px; align-items: center; font-size: 13px; }
.hero-pill-ic { width: 36px; height: 36px; border-radius: 9px; display: grid; place-items: center; flex-shrink: 0; }
.hero-pill-1 { top: 12%; right: -6%; animation: float1 6s ease-in-out infinite; }
.hero-pill-1 .hero-pill-ic { background: rgba(16, 185, 129, 0.15); color: var(--success); border: 1px solid rgba(16, 185, 129, 0.25); }
.hero-pill-2 { bottom: 14%; left: -10%; animation: float2 7s ease-in-out infinite; }
.hero-pill-2 .hero-pill-ic { background: rgba(255, 140, 66, 0.15); color: #ffb347; border: 1px solid rgba(255, 140, 66, 0.25); }
.hero-pill .label { font-size: 11px; color: var(--text-faint); text-transform: uppercase; letter-spacing: .5px; font-weight: 600; }
.hero-pill .value { font-weight: 700; font-size: 15px; }
@keyframes float1 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes float2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(10px); } }

/* === INDUSTRIES STRIP === */
.industries { padding: 40px 0 24px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(11, 16, 32, 0.4); }
.industries-label { text-align: center; font-size: 12.5px; text-transform: uppercase; letter-spacing: 2px; color: var(--text-faint); margin-bottom: 24px; font-weight: 600; }
.industries-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 18px; }
.industry-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 999px;
  background: rgba(148, 163, 184, 0.04);
  border: 1px solid var(--border);
  font-size: 14px; font-weight: 500; color: var(--text-dim);
  transition: all .25s;
}
.industry-chip:hover { background: rgba(241, 103, 35, 0.08); border-color: rgba(241, 103, 35, 0.3); color: var(--text); }
.industry-chip svg { width: 16px; height: 16px; }

/* === SECTIONS === */
section { padding: 110px 0; position: relative; }
section.tight { padding: 72px 0; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(255, 140, 66, 0.08);
  border: 1px solid rgba(255, 140, 66, 0.22);
  font-size: 12.5px; font-weight: 600; color: #ffb347;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 18px;
}
.section-title { font-size: clamp(32px, 4vw, 50px); line-height: 1.1; letter-spacing: -1.4px; font-weight: 800; margin-bottom: 18px; }
.section-title .gradient { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-lede { font-size: 18px; color: var(--text-dim); max-width: 680px; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.section-head .section-lede { margin: 0 auto; }

/* === FEATURE GRID === */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.features-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.features-grid.cols-4 { grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.6), rgba(11, 16, 32, 0.4));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative; overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.feature-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at top right, rgba(241, 103, 35, 0.08), transparent 50%); opacity: 0; transition: opacity .3s; pointer-events: none; }
.feature-card:hover { transform: translateY(-3px); border-color: var(--border-strong); box-shadow: var(--shadow-card); }
.feature-card:hover::before { opacity: 1; }
.feature-card.compact { padding: 24px; }
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(241, 103, 35, 0.18), rgba(255, 179, 71, 0.12));
  border: 1px solid rgba(241, 103, 35, 0.28);
  display: grid; place-items: center;
  margin-bottom: 22px;
  color: #ff8c42;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; letter-spacing: -.3px; }
.feature-card p { color: var(--text-dim); font-size: 14.5px; }
.feature-card a.feature-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 14px; font-weight: 600; color: #ff8c42; }
.feature-card a.feature-link:hover { color: var(--primary); }
.feature-card a.feature-link svg { width: 14px; height: 14px; transition: transform .2s; }
.feature-card a.feature-link:hover svg { transform: translateX(3px); }

/* === SPLIT === */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse > :first-child { order: 2; }
.split-text h2 { font-size: clamp(30px, 3.4vw, 44px); line-height: 1.12; letter-spacing: -1.2px; font-weight: 800; margin-bottom: 20px; }
.split-text h2 .gradient { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.split-text p { color: var(--text-dim); font-size: 16px; margin-bottom: 18px; }
.checklist { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px; margin: 24px 0 32px; }
.checklist.single { grid-template-columns: 1fr; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; font-weight: 500; color: var(--text); }
.check-ic { width: 22px; height: 22px; flex-shrink: 0; border-radius: 6px; background: rgba(16, 185, 129, 0.15); border: 1px solid rgba(16, 185, 129, 0.3); color: var(--success); display: grid; place-items: center; margin-top: 2px; }
.check-ic svg { width: 12px; height: 12px; }

/* Pipeline mockup */
.pipeline-card { background: linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(11, 16, 32, 0.95)); border: 1px solid var(--border-strong); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-card); position: relative; }
.pipeline-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 0% 0%, rgba(241, 103, 35, 0.10), transparent 60%); border-radius: var(--radius-lg); pointer-events: none; }
.pipeline-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.pipeline-title { font-size: 14px; font-weight: 600; }
.pipeline-title small { color: var(--text-faint); font-weight: 500; margin-left: 8px; }
.pipeline-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.pipe-col { background: rgba(11, 16, 32, 0.6); border: 1px solid var(--border); border-radius: 12px; padding: 12px; min-height: 220px; }
.pipe-col-title { font-size: 11.5px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-faint); font-weight: 600; margin-bottom: 12px; display: flex; justify-content: space-between; }
.pipe-card { background: var(--surface-2); border: 1px solid var(--border); border-radius: 9px; padding: 10px 12px; margin-bottom: 8px; cursor: grab; transition: transform .2s, border-color .2s; }
.pipe-card:hover { transform: translateX(2px); border-color: rgba(241, 103, 35, 0.3); }
.pipe-card-name { font-size: 13px; font-weight: 600; }
.pipe-card-meta { font-size: 11px; color: var(--text-faint); margin-top: 4px; }
.pipe-card-tag { display: inline-block; padding: 2px 7px; font-size: 10px; border-radius: 5px; margin-top: 6px; font-weight: 600; }
.tag-hot { background: rgba(239, 68, 68, .15); color: #fca5a5; border: 1px solid rgba(239, 68, 68, .25); }
.tag-warm { background: rgba(245, 158, 11, .15); color: #fcd34d; border: 1px solid rgba(245, 158, 11, .25); }
.tag-won { background: rgba(16, 185, 129, .15); color: #6ee7b7; border: 1px solid rgba(16, 185, 129, .25); }

/* === TABS === */
.tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 40px; }
.tab { padding: 12px 22px; border-radius: 12px; background: rgba(148, 163, 184, 0.04); border: 1px solid var(--border); font-size: 14px; font-weight: 600; color: var(--text-dim); transition: all .25s; display: inline-flex; gap: 8px; align-items: center; }
.tab:hover { color: var(--text); border-color: var(--border-strong); }
.tab.active { background: rgba(241, 103, 35, 0.12); border-color: rgba(241, 103, 35, 0.4); color: white; box-shadow: 0 0 30px -10px rgba(241, 103, 35, 0.5); }
.tab svg { width: 16px; height: 16px; }
.tab-panels { position: relative; }
.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; animation: fadeUp .4s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.tab-panel h3 { font-size: 28px; font-weight: 800; letter-spacing: -.7px; margin-bottom: 14px; }
.tab-panel p { color: var(--text-dim); margin-bottom: 22px; }
.tab-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.tab-stat { background: rgba(15, 23, 42, 0.5); border: 1px solid var(--border); border-radius: 12px; padding: 16px; }
.tab-stat-num { font-size: 24px; font-weight: 800; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.tab-stat-label { font-size: 12px; color: var(--text-faint); margin-top: 6px; text-transform: uppercase; letter-spacing: .5px; font-weight: 600; }

/* Voice viz */
.voice-card { background: linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(11, 16, 32, 0.95)); border: 1px solid var(--border-strong); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-card); position: relative; overflow: hidden; }
.voice-orb { width: 140px; height: 140px; border-radius: 50%; margin: 20px auto; position: relative; background: radial-gradient(circle at 30% 30%, #ff8c42, #f16723 40%, #7c2410 80%); box-shadow: 0 0 80px rgba(241, 103, 35, 0.5); animation: orbPulse 2.5s ease-in-out infinite; }
@keyframes orbPulse { 0%, 100% { transform: scale(1); box-shadow: 0 0 80px rgba(241, 103, 35, 0.5); } 50% { transform: scale(1.05); box-shadow: 0 0 120px rgba(241, 103, 35, 0.7); } }
.voice-orb::before, .voice-orb::after { content: ''; position: absolute; inset: -10px; border-radius: 50%; border: 1px solid rgba(241, 103, 35, 0.3); animation: ripple 2.5s linear infinite; }
.voice-orb::after { animation-delay: 1.25s; }
@keyframes ripple { 0% { transform: scale(.95); opacity: 1; } 100% { transform: scale(1.4); opacity: 0; } }
.waveform { display: flex; gap: 4px; align-items: center; justify-content: center; height: 40px; margin-top: 20px; }
.waveform span { display: block; width: 3px; background: var(--grad-primary); border-radius: 2px; animation: wave 1.2s ease-in-out infinite; }
.waveform span:nth-child(1) { animation-delay: 0s; height: 40%; }
.waveform span:nth-child(2) { animation-delay: .1s; height: 80%; }
.waveform span:nth-child(3) { animation-delay: .2s; height: 60%; }
.waveform span:nth-child(4) { animation-delay: .3s; height: 100%; }
.waveform span:nth-child(5) { animation-delay: .4s; height: 70%; }
.waveform span:nth-child(6) { animation-delay: .5s; height: 50%; }
.waveform span:nth-child(7) { animation-delay: .6s; height: 90%; }
.waveform span:nth-child(8) { animation-delay: .7s; height: 60%; }
.waveform span:nth-child(9) { animation-delay: .8s; height: 80%; }
.waveform span:nth-child(10) { animation-delay: .9s; height: 40%; }
@keyframes wave { 0%, 100% { transform: scaleY(.4); } 50% { transform: scaleY(1.2); } }
.voice-meta { text-align: center; margin-top: 16px; }
.voice-name { font-size: 22px; font-weight: 800; letter-spacing: -.5px; }
.voice-role { font-size: 13px; color: var(--text-faint); }

/* Lead-gen viz */
.leadgen-card { background: linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(11, 16, 32, 0.95)); border: 1px solid var(--border-strong); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-card); }
.leadgen-row { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: 10px; background: rgba(11, 16, 32, 0.5); border: 1px solid var(--border); margin-bottom: 8px; transition: border-color .25s; }
.leadgen-row:hover { border-color: rgba(241, 103, 35, 0.3); }
.leadgen-avatar { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 13px; flex-shrink: 0; }
.av-1 { background: linear-gradient(135deg, #fb923c, #f97316); }
.av-2 { background: linear-gradient(135deg, #34d399, #10b981); }
.av-3 { background: linear-gradient(135deg, #a78bfa, #8b5cf6); }
.av-4 { background: linear-gradient(135deg, #f472b6, #ec4899); }
.av-5 { background: linear-gradient(135deg, #ff8c42, #f16723); }
.leadgen-info { flex: 1; min-width: 0; }
.leadgen-name { font-size: 14px; font-weight: 600; }
.leadgen-co { font-size: 12px; color: var(--text-faint); }
.score { font-weight: 700; font-size: 14px; padding: 4px 10px; border-radius: 6px; }
.score-hi { background: rgba(16, 185, 129, .15); color: #6ee7b7; }
.score-md { background: rgba(245, 158, 11, .15); color: #fcd34d; }

/* === ROI / BIG STAT BLOCK === */
.roi-block { background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(11, 16, 32, 0.4)); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 64px; position: relative; overflow: hidden; }
.roi-block::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 100% 0%, rgba(255, 140, 66, 0.15), transparent 50%), radial-gradient(circle at 0% 100%, rgba(241, 103, 35, 0.15), transparent 50%); pointer-events: none; }
.roi-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; position: relative; }
.roi-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.roi-stat { background: rgba(11, 16, 32, 0.7); border: 1px solid var(--border-strong); border-radius: var(--radius-md); padding: 22px; backdrop-filter: blur(8px); }
.roi-num { font-size: 38px; font-weight: 800; line-height: 1; letter-spacing: -1px; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.roi-label { font-size: 13.5px; color: var(--text-dim); margin-top: 8px; }

/* === REVIEWS === */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.reviews.cols-2 { grid-template-columns: repeat(2, 1fr); }
.review { background: linear-gradient(180deg, rgba(15, 23, 42, 0.6), rgba(11, 16, 32, 0.4)); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; position: relative; }
.stars { display: flex; gap: 2px; margin-bottom: 14px; }
.stars svg { width: 16px; height: 16px; color: #f59e0b; }
.review-text { font-size: 14.5px; color: var(--text); margin-bottom: 18px; line-height: 1.6; }
.review-author { display: flex; gap: 12px; align-items: center; padding-top: 18px; border-top: 1px solid var(--border); }
.review-avatar { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 13px; }
.review-name { font-size: 14px; font-weight: 600; }
.review-role { font-size: 12px; color: var(--text-faint); }

/* === PRICING === */
.toggle-row { display: flex; justify-content: center; gap: 12px; align-items: center; margin-bottom: 32px; }
.toggle-btn-grp { display: inline-flex; padding: 4px; background: rgba(15, 23, 42, 0.6); border: 1px solid var(--border); border-radius: 999px; }
.toggle-btn { padding: 9px 20px; font-size: 13.5px; font-weight: 600; border-radius: 999px; color: var(--text-dim); transition: all .25s; }
.toggle-btn.active { background: var(--grad-primary); color: white; box-shadow: 0 6px 18px -6px rgba(241, 103, 35, 0.6); }
.toggle-save { font-size: 12px; padding: 4px 10px; border-radius: 999px; background: rgba(16, 185, 129, .12); color: #6ee7b7; border: 1px solid rgba(16, 185, 129, .3); font-weight: 600; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card { background: linear-gradient(180deg, rgba(15, 23, 42, 0.6), rgba(11, 16, 32, 0.4)); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 32px; position: relative; display: flex; flex-direction: column; transition: transform .3s, border-color .3s; }
.price-card:hover { transform: translateY(-4px); }
.price-card.popular { border-color: rgba(241, 103, 35, 0.5); background: linear-gradient(180deg, rgba(241, 103, 35, 0.12), rgba(11, 16, 32, 0.6)); box-shadow: 0 0 60px -20px rgba(241, 103, 35, 0.5); }
.price-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); padding: 5px 14px; border-radius: 999px; background: var(--grad-primary); color: white; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 6px 18px -6px rgba(241, 103, 35, 0.6); }
.price-name { font-size: 14px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-dim); font-weight: 600; }
.price-tagline { font-size: 14px; color: var(--text-faint); margin-top: 6px; margin-bottom: 22px; }
.price-amount { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.price-currency { font-size: 22px; font-weight: 700; color: var(--text-dim); }
.price-num { font-size: 52px; font-weight: 800; letter-spacing: -2px; line-height: 1; }
.price-per { font-size: 14px; color: var(--text-faint); margin-bottom: 20px; }
.price-features { list-style: none; margin: 22px 0 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.price-features li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--text); }
.price-features li.dim { color: var(--text-faint); }
.pf-ic { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--success); }
.pf-ic.no { color: var(--text-faint); opacity: .4; }

.compare-wrap { margin-top: 60px; background: rgba(11, 16, 32, 0.4); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare-table th, .compare-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); }
.compare-table th { background: rgba(15, 23, 42, 0.6); font-weight: 600; color: var(--text); font-size: 13px; }
.compare-table th:not(:first-child), .compare-table td:not(:first-child) { text-align: center; }
.compare-table td { color: var(--text-dim); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .yes { color: var(--success); }
.compare-table .no { color: var(--text-faint); opacity: .5; }

/* === FAQ === */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; padding: 22px 8px; display: flex; justify-content: space-between; align-items: center; gap: 16px; text-align: left; font-size: 16.5px; font-weight: 600; color: var(--text); transition: color .2s; }
.faq-q:hover { color: #ffd4b3; }
.faq-q-ic { width: 26px; height: 26px; flex-shrink: 0; border-radius: 7px; background: rgba(148, 163, 184, 0.06); border: 1px solid var(--border); display: grid; place-items: center; transition: transform .3s, background .3s; }
.faq-item.open .faq-q-ic { transform: rotate(45deg); background: rgba(241, 103, 35, 0.15); border-color: rgba(241, 103, 35, 0.4); }
.faq-q-ic svg { width: 14px; height: 14px; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 8px 22px; color: var(--text-dim); font-size: 15px; line-height: 1.7; }
.faq-item.open .faq-a { max-height: 600px; }

.faq-group { margin-bottom: 48px; }
.faq-group-title { font-size: 22px; font-weight: 700; margin-bottom: 8px; letter-spacing: -.4px; }
.faq-group-sub { color: var(--text-faint); font-size: 14px; margin-bottom: 18px; }

/* === FORM === */
.form-card { background: linear-gradient(180deg, rgba(15, 23, 42, 0.7), rgba(11, 16, 32, 0.6)); border: 1px solid var(--border-strong); border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow-card); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-row.single { grid-template-columns: 1fr; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--text); }
.form-field label .req { color: var(--primary); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 12px 14px;
  background: rgba(11, 16, 32, 0.6);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit; font-size: 14.5px;
  transition: border-color .2s, background .2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: rgba(241, 103, 35, 0.6);
  background: rgba(11, 16, 32, 0.85);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-faint); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-foot { font-size: 13px; color: var(--text-faint); margin-top: 14px; }

/* === FINAL CTA === */
.final-cta { background: linear-gradient(135deg, rgba(241, 103, 35, 0.12), rgba(255, 140, 66, 0.10)); border: 1px solid rgba(241, 103, 35, 0.3); border-radius: var(--radius-xl); padding: 80px 40px; text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 100%, rgba(241, 103, 35, 0.25), transparent 60%); pointer-events: none; }
.final-cta h2 { font-size: clamp(34px, 4.4vw, 56px); line-height: 1.05; letter-spacing: -1.5px; font-weight: 800; margin-bottom: 18px; position: relative; }
.final-cta h2 .gradient { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.final-cta p { font-size: 18px; color: var(--text-dim); max-width: 580px; margin: 0 auto 32px; position: relative; }
.final-cta-buttons { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; position: relative; }

/* === LOGOS / STATS BAND === */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 48px; background: rgba(11, 16, 32, 0.4); border: 1px solid var(--border); border-radius: var(--radius-xl); }
.stats-band > div { text-align: center; }
.stats-band .roi-num { font-size: 42px; }
.stats-band .roi-label { font-size: 14px; }

/* === FOOTER === */
footer { padding: 80px 0 32px; border-top: 1px solid var(--border); position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 40px; margin-bottom: 56px; }
.footer-brand p { color: var(--text-dim); font-size: 14px; margin: 18px 0 24px; max-width: 320px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: var(--text-dim); }
.footer-contact a { transition: color .2s; }
.footer-contact a:hover { color: var(--text); }
.footer-social { display: flex; gap: 8px; margin-top: 18px; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(148, 163, 184, 0.06); border: 1px solid var(--border); display: grid; place-items: center; color: var(--text-dim); transition: all .2s; }
.footer-social a:hover { background: rgba(241, 103, 35, 0.12); border-color: rgba(241, 103, 35, 0.3); color: white; }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 1.2px; color: var(--text); margin-bottom: 18px; font-weight: 700; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13.5px; color: var(--text-dim); transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid var(--border); font-size: 13px; color: var(--text-faint); flex-wrap: wrap; gap: 14px; }
.footer-bottom .legal { display: flex; gap: 18px; flex-wrap: wrap; }

/* === MISC === */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

.text-gradient { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.text-accent { background: linear-gradient(135deg, #ff8c42 0%, #f16723 50%, #ffb347 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.muted { color: var(--text-dim); }
.center { text-align: center; }
.divider { height: 1px; background: var(--border); border: 0; margin: 56px 0; }

/* Breadcrumb */
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--text-faint); margin-bottom: 28px; }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb svg { width: 12px; height: 12px; opacity: .5; }

/* === RESPONSIVE === */
@media (max-width: 960px) {
  .hero-grid, .split, .roi-grid, .tab-panel.active, .footer-grid { grid-template-columns: 1fr !important; gap: 40px; }
  .hero-visual { max-width: 480px; margin: 0 auto; aspect-ratio: 4/4.6; }
  .hero { padding-top: 48px; }
  .features-grid, .features-grid.cols-2, .features-grid.cols-4, .reviews, .reviews.cols-2, .pricing-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; padding: 32px 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .nav.menu-open .nav-links { display: flex; flex-direction: column; gap: 4px; align-items: stretch; position: absolute; top: 100%; left: 0; right: 0; background: rgba(6, 9, 18, 0.98); border-bottom: 1px solid var(--border); padding: 12px 24px 20px; }
  .nav.menu-open .nav-dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: transparent; border: none; padding: 4px 0 4px 12px; min-width: 0; }
  .checklist { grid-template-columns: 1fr; }
  section { padding: 72px 0; }
  .roi-block { padding: 40px 24px; }
  .final-cta { padding: 48px 24px; }
  .form-card { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .topbar-promo { display: none; }
  .compare-wrap { overflow-x: auto; }
  .compare-table { min-width: 560px; }
  .roi-stats { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-pill-1 { right: 4%; top: 6%; }
  .hero-pill-2 { left: 4%; bottom: 6%; }
  .split.reverse > :first-child { order: 0; }
}
@media (max-width: 540px) {
  .topbar-contact { gap: 14px; font-size: 12px; }
  .hero-trust { gap: 14px; font-size: 12.5px; }
  .nav-actions .btn:first-child { display: none; }
  .price-num { font-size: 42px; }
  .tab-stats { grid-template-columns: 1fr 1fr; }
  .stats-band { grid-template-columns: 1fr; }
}


/* === HighLevel embed wrappers === */
.hl-embed-wrap {
  width: 100%;
  background: rgba(11, 16, 32, 0.6);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.hl-embed-wrap iframe {
  width: 100% !important;
  border: none;
  background: transparent;
  display: block;
}
.form-card .hl-embed-wrap {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}


/* === Multi-column mega menu for Platform dropdown === */
.nav-dropdown:nth-of-type(1) .nav-dropdown-menu {
  min-width: 720px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 8px;
  padding: 14px;
}
.nav-dropdown:nth-of-type(1) .nav-dropdown-menu .menu-section {
  grid-column: span 1;
  padding: 8px 14px 6px;
  margin-top: 4px;
}
.nav-dropdown:nth-of-type(1) .nav-dropdown-menu .menu-section:first-child {
  margin-top: 0;
}
.nav-dropdown:nth-of-type(1) .nav-dropdown-menu a {
  font-size: 13.5px;
  padding: 8px 14px;
}
@media (max-width: 960px) {
  .nav-dropdown:nth-of-type(1) .nav-dropdown-menu {
    min-width: 0;
    grid-template-columns: 1fr;
    padding: 4px;
  }
}


/* === Inner-page section spacing normalization === */
section.section { padding: 80px 0; }
/* When .stats-band is used directly as a section (instead of wrapped),
   neutralize its box styling so it inherits normal section spacing. */
section.stats-band {
  padding: 60px 24px !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  display: block;
  max-width: 1200px;
  margin: 0 auto;
}
section.stats-band > .container,
section.stats-band > div:first-child:not([class]) {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 48px;
  background: rgba(11, 16, 32, 0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}
@media (max-width: 960px) {
  section.stats-band > .container,
  section.stats-band > div:first-child:not([class]) {
    grid-template-columns: 1fr 1fr;
    padding: 32px 24px;
  }
}
@media (max-width: 540px) {
  section.stats-band > .container,
  section.stats-band > div:first-child:not([class]) {
    grid-template-columns: 1fr;
  }
}
/* Tight rhythm between consecutive .section elements */
section.section + section.section { padding-top: 40px; }


/* ============================================================
   ROGUE CLASS COMPATIBILITY LAYER
   Aliases for class names Sonnet invented across pages
   without writing CSS rules. Maps them to existing components.
   ============================================================ */

/* Section + headers */
section.section-pad,
section.features-section,
section.use-cases-section,
section.testimonial-section,
section.pricing-tease,
section.split-section,
section.workflow-section,
section.cta-section,
section.proof-section,
section.compare-section,
section.activity-section,
section.industries-section,
section.results-section,
section.problem-section,
section.solution-section,
section.systems-section,
section.faq-section,
section.integrations-section,
section.deliverables-section,
section.process-section,
section.industry-section,
section.outcomes-section { padding: 80px 0; }

section.bg-subtle { background: rgba(15, 23, 42, 0.3); }
section.bg-darker { background: rgba(11, 16, 32, 0.5); }
section.breadcrumb-bar { padding: 18px 0; background: rgba(11,16,32,0.4); border-bottom: 1px solid var(--border); }

.section-header { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.section-header h2 { font-size: clamp(28px, 3.6vw, 44px); line-height: 1.1; letter-spacing: -1.2px; font-weight: 800; margin-bottom: 14px; }
.section-sub { font-size: 17px; color: var(--text-dim); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(255, 140, 66, 0.08);
  border: 1px solid rgba(255, 140, 66, 0.22);
  font-size: 12.5px; font-weight: 600; color: #ffb347;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 18px;
}

/* Buttons */
.btn-lg { padding: 16px 28px; font-size: 15px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }

/* Stat / proof / number cards (used in stats bands and ROI sections) */
.stat-item, .proof-stat, .outcome-stat, .result-stat, .metric-card {
  background: rgba(11, 16, 32, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  text-align: center;
}
.stat-number, .proof-num, .outcome-num, .result-num, .metric-num {
  font-size: 36px; font-weight: 800; line-height: 1; letter-spacing: -1px;
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block;
}
.stat-label, .proof-label, .outcome-label, .result-label, .metric-label {
  font-size: 13px; color: var(--text-dim); margin-top: 8px; font-weight: 500;
}

/* Process flow (numbered steps with connecting line) */
.flow-track, .process-track, .steps-track {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}
.flow-step, .process-step, .step-row {
  display: flex; gap: 22px; align-items: flex-start;
  background: linear-gradient(180deg, rgba(15,23,42,0.6), rgba(11,16,32,0.4));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  position: relative;
}
.flow-dot, .step-dot, .step-num, .sys-step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad-primary);
  color: white; font-weight: 800; font-size: 16px;
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 8px 22px -8px rgba(241,103,35,0.6);
}
.flow-step h3, .process-step h3, .step-row h3, .sys-step h3 {
  font-size: 18px; font-weight: 700; letter-spacing: -.3px; margin-bottom: 6px;
}
.flow-step p, .process-step p, .step-row p, .sys-step p {
  color: var(--text-dim); font-size: 14.5px; margin: 0;
}
.flow-result {
  margin-top: 12px; padding: 10px 14px;
  background: rgba(16, 185, 129, .08);
  border: 1px solid rgba(16, 185, 129, .25);
  border-radius: 9px;
  font-size: 13.5px;
  color: #6ee7b7;
}
.sys-step {
  display: flex; gap: 22px; align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.sys-step:last-child { border-bottom: none; }

/* Use-case cards */
.use-case-card {
  background: linear-gradient(180deg, rgba(15,23,42,0.6), rgba(11,16,32,0.4));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .25s, border-color .25s;
}
.use-case-card:hover { transform: translateY(-2px); border-color: var(--border-strong); }
.use-case-label {
  font-size: 11.5px; text-transform: uppercase; letter-spacing: 1.5px;
  color: #ffb347; font-weight: 700; margin-bottom: 8px;
}
.use-case-card h3 { font-size: 18px; font-weight: 700; letter-spacing: -.3px; margin-bottom: 10px; }
.use-case-card p { color: var(--text-dim); font-size: 14.5px; margin-bottom: 14px; }
.use-case-flow {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 13px; color: var(--text-dim);
  padding-top: 14px; border-top: 1px solid var(--border);
  margin-top: 14px;
}
.use-case-flow svg { width: 14px; height: 14px; opacity: 0.5; }

/* Activity feed (Today's Activity boxes) */
.activity-feed, .activity-list { display: flex; flex-direction: column; gap: 8px; }
.activity-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px;
  background: rgba(11, 16, 32, 0.5);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color .2s;
}
.activity-item:hover { border-color: rgba(241, 103, 35, 0.3); }
.act-icon {
  width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0;
  background: rgba(241, 103, 35, 0.12);
  border: 1px solid rgba(241, 103, 35, 0.28);
  color: #ffb347;
  display: grid; place-items: center;
}
.act-icon.act-green { background: rgba(16, 185, 129, .12); border-color: rgba(16, 185, 129, .28); color: var(--success); }
.act-icon.act-blue { background: rgba(59, 130, 246, .12); border-color: rgba(59, 130, 246, .28); color: #60a5fa; }
.act-icon.act-purple { background: rgba(168, 85, 247, .12); border-color: rgba(168, 85, 247, .28); color: #c084fc; }
.act-icon svg { width: 16px; height: 16px; }
.act-body { flex: 1; min-width: 0; }
.act-title { font-size: 14px; font-weight: 600; color: var(--text); }
.act-meta { font-size: 12.5px; color: var(--text-faint); margin-top: 2px; }
.act-time { font-size: 12px; color: var(--text-faint); flex-shrink: 0; }

/* Industry cards / tags */
.industry-card {
  background: linear-gradient(180deg, rgba(15,23,42,0.6), rgba(11,16,32,0.4));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: transform .25s, border-color .25s;
  display: block; color: var(--text); text-decoration: none;
}
.industry-card:hover { transform: translateY(-2px); border-color: rgba(241,103,35,0.3); }
.industry-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; letter-spacing: -.2px; }
.industry-card p { font-size: 13.5px; color: var(--text-dim); margin: 0; }
.industry-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(148, 163, 184, 0.06);
  border: 1px solid var(--border);
  font-size: 12.5px; font-weight: 500; color: var(--text-dim);
  margin-right: 6px; margin-bottom: 6px;
}

/* Comparison rows (win / lose / partial) */
.compare-row, .highlight-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.compare-row:last-child, .highlight-row:last-child { border-bottom: none; }
.win { color: var(--success); font-weight: 600; }
.win::before { content: "✓ "; font-weight: 800; }
.lose { color: var(--text-faint); font-weight: 500; opacity: 0.7; }
.lose::before { content: "✗ "; font-weight: 800; }
.partial { color: var(--warn); font-weight: 600; }
.partial::before { content: "~ "; font-weight: 800; }

/* Pricing tease cards */
.pt-card {
  background: linear-gradient(180deg, rgba(15,23,42,0.6), rgba(11,16,32,0.4));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  position: relative;
}
.pt-plan { font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-dim); font-weight: 600; }
.pt-price { font-size: 36px; font-weight: 800; letter-spacing: -1.2px; line-height: 1; margin: 8px 0 4px; }
.pt-period { font-size: 13px; color: var(--text-faint); margin-bottom: 18px; }
.pt-features { list-style: none; display: flex; flex-direction: column; gap: 10px; padding: 0; }
.pt-features li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; }

/* Generic check icon */
.check-icon {
  width: 22px; height: 22px; flex-shrink: 0; border-radius: 6px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--success);
  display: grid; place-items: center;
  margin-top: 2px;
}
.check-icon svg { width: 12px; height: 12px; }

/* Responsive */
@media (max-width: 740px) {
  .compare-row, .highlight-row { grid-template-columns: 1fr; gap: 6px; }
  .flow-step, .process-step, .step-row { padding: 18px; }
}


/* === Stats grid containers (used on inner pages) === */
.stats-grid,
.stats-row,
.stats-list,
.cols-4:not(.features-grid) {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.cols-3:not(.features-grid) { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cols-2:not(.features-grid) { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }

@media (max-width: 960px) {
  .stats-grid, .stats-row, .stats-list, .cols-4:not(.features-grid) {
    grid-template-columns: repeat(2, 1fr);
  }
  .cols-3:not(.features-grid) { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .stats-grid, .stats-row, .stats-list, .cols-4:not(.features-grid),
  .cols-2:not(.features-grid) {
    grid-template-columns: 1fr;
  }
}

/* .stat-num (alternate class some pages use instead of .stat-number) */
.stat-num {
  font-size: 36px; font-weight: 800; line-height: 1; letter-spacing: -1px;
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block;
}


/* ============================================================
   BULLETPROOF STATS BAND - forces centered 4-column grid
   Uses !important + width: 100% + min-width: 0 to override any
   stale or conflicting rules.
   ============================================================ */
div.stats-band {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 24px !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 48px !important;
  background: rgba(11, 16, 32, 0.4) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-xl) !important;
  align-items: stretch !important;
  justify-items: stretch !important;
}
div.stats-band > * {
  width: 100% !important;
  min-width: 0 !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
}
div.stats-band .roi-num,
div.stats-band .stat-num,
div.stats-band .stat-number {
  font-size: clamp(28px, 3vw, 42px) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  text-align: center !important;
  width: 100% !important;
}
div.stats-band .roi-label,
div.stats-band .stat-label {
  font-size: 14px !important;
  text-align: center !important;
  width: 100% !important;
  color: var(--text-dim) !important;
}
@media (max-width: 960px) {
  div.stats-band { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; padding: 32px 20px !important; }
}
@media (max-width: 540px) {
  div.stats-band { grid-template-columns: 1fr !important; }
}


/* ============================================================
   DIVI-RESISTANT BLOG POST LAYOUT
   The Divi parent theme injects wrapper divs and CSS that
   compete with our single.php layout. These rules use
   !important + very specific selectors to win.
   ============================================================ */

/* Force a max-width reset on Divi's outer wrappers if present */
body.single .et_pb_section,
body.single .et_pb_row,
body.single .et_pb_column,
body.single #et-main-area,
body.single #main-content {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  background: transparent !important;
}

/* Force the post hero / featured / body / related / etc. to span full width */
body.single .post-hero,
body.single .post-featured,
body.single .post-body,
body.single .post-author-block,
body.single .post-related,
body.single .post-comments,
body.single #cta {
  width: 100% !important;
  max-width: none !important;
  display: block !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Post body — force the 2-column grid */
body.single .post-body { padding: 40px 0 80px !important; }
body.single .post-body .container.post-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 320px !important;
  gap: 64px !important;
  align-items: start !important;
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
}
body.single .post-body .post-article {
  min-width: 0 !important;
  max-width: 100% !important;
  grid-column: 1 !important;
  background: transparent !important;
}
body.single .post-body .post-sidebar {
  position: sticky !important;
  top: 96px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
  grid-column: 2 !important;
  align-self: start !important;
}
@media (max-width: 1100px) {
  body.single .post-body .container.post-grid {
    grid-template-columns: 1fr !important;
  }
  body.single .post-body .post-sidebar {
    position: static !important;
    grid-column: 1 !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
  }
  body.single .post-body .post-sidebar > * { flex: 1 1 280px !important; }
}

/* Force share button styling (Divi sometimes resets <a> styling) */
body.single .post-share-btns a,
body.single .post-share-btns button {
  width: 36px !important; height: 36px !important;
  border-radius: 9px !important;
  background: rgba(148, 163, 184, 0.06) !important;
  border: 1px solid var(--border) !important;
  display: grid !important;
  place-items: center !important;
  color: var(--text-dim) !important;
  text-decoration: none !important;
  cursor: pointer !important;
  padding: 0 !important;
  font-size: 0 !important;
}
body.single .post-share-btns a svg,
body.single .post-share-btns button svg {
  width: 16px !important; height: 16px !important;
  display: block !important;
}

/* Force author card and TOC backgrounds + spacing */
body.single .post-author-card,
body.single .post-toc {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

/* Featured image — force aspect ratio */
body.single .post-featured-img img {
  width: 100% !important;
  max-height: 540px !important;
  object-fit: cover !important;
  display: block !important;
}

/* Strip Divi's default content area styles that fight prose */
body.single .post-article.prose {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  color: var(--text) !important;
  background: transparent !important;
}
body.single .post-article.prose p,
body.single .post-article.prose ul,
body.single .post-article.prose ol,
body.single .post-article.prose blockquote,
body.single .post-article.prose pre,
body.single .post-article.prose table {
  max-width: 100% !important;
}

/* Avoid double images: hide an inline image that exactly matches the featured image */
body.single .post-article.prose > p:first-child > img:only-child {
  display: none !important;
}


/* ============================================================
   BLOG POST STYLING — E-E-A-T compliant single.php
   ============================================================ */

/* Reading progress bar */
.reading-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: var(--grad-primary);
  z-index: 1000;
  transition: width .1s ease;
  box-shadow: 0 1px 12px rgba(241, 103, 35, 0.4);
}

/* Post hero */
.post-hero { padding: 60px 0 40px; position: relative; }
.post-hero .breadcrumb { margin-bottom: 28px; }
.post-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(255, 140, 66, 0.08);
  border: 1px solid rgba(255, 140, 66, 0.22);
  font-size: 12.5px; font-weight: 600; color: #ffb347;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 20px;
}
.post-title {
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.1; letter-spacing: -1.5px;
  font-weight: 800; margin: 0 0 20px;
  max-width: 920px;
}
.post-lede {
  font-size: 19px; color: var(--text-dim);
  line-height: 1.55; max-width: 820px;
  margin: 0 0 32px;
}
.post-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--text-dim);
  flex-wrap: wrap;
}
.post-meta-author {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text);
}
.post-meta-author img {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--border-strong);
}
.post-meta-author span { font-weight: 600; }
.post-meta-author:hover span { color: #ffb347; }
.post-meta-divider { opacity: .5; }
.post-meta-pub { color: var(--text-faint); font-size: 13px; }

/* Featured image */
.post-featured { padding: 0 0 56px; }
.post-featured-img {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-card);
}
.post-featured-img img {
  width: 100%; height: auto; display: block;
  max-height: 540px; object-fit: cover;
}
.post-featured-img figcaption {
  padding: 12px 18px; font-size: 13px;
  color: var(--text-faint); text-align: center;
  background: rgba(11, 16, 32, 0.7);
}

/* Article body grid (article + sidebar) */
.post-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}
.post-article { min-width: 0; max-width: 760px; }
.post-sidebar {
  position: sticky; top: 96px;
  display: flex; flex-direction: column; gap: 24px;
}

/* Author card (sidebar) */
.post-author-card {
  background: linear-gradient(180deg, rgba(15,23,42,0.6), rgba(11,16,32,0.4));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.post-author-img {
  width: 80px; height: 80px; border-radius: 50%;
  border: 2px solid rgba(241, 103, 35, 0.4);
  margin: 0 auto 14px; display: block;
}
.post-author-name { font-size: 17px; font-weight: 700; letter-spacing: -.3px; }
.post-author-role { font-size: 12.5px; color: #ffb347; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; margin-top: 4px; }
.post-author-bio { font-size: 13.5px; color: var(--text-dim); line-height: 1.55; margin: 14px 0 18px; }
.post-author-social { display: flex; justify-content: center; gap: 8px; margin-bottom: 16px; }
.post-author-social a {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(148, 163, 184, 0.06);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  color: var(--text-dim); transition: all .2s;
}
.post-author-social a:hover { background: rgba(241, 103, 35, 0.12); border-color: rgba(241, 103, 35, 0.3); color: white; }
.post-author-social svg { width: 14px; height: 14px; }
.post-author-more {
  display: inline-block; font-size: 13px;
  color: #ffb347; font-weight: 600;
  text-decoration: none;
}
.post-author-more:hover { color: var(--primary); }

/* Table of contents */
.post-toc {
  background: rgba(11, 16, 32, 0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  max-height: 60vh; overflow-y: auto;
}
.post-toc-label {
  font-size: 11.5px; text-transform: uppercase;
  letter-spacing: 1.5px; color: #ffb347;
  font-weight: 700; margin-bottom: 12px;
}
.post-toc ol { list-style: none; counter-reset: toc; padding: 0; margin: 0; }
.post-toc li { padding: 6px 0; counter-increment: toc; }
.post-toc li.toc-h3 { padding-left: 16px; }
.post-toc a {
  font-size: 13.5px; color: var(--text-dim);
  text-decoration: none; line-height: 1.4;
  display: block; transition: color .2s, padding-left .2s;
  border-left: 2px solid transparent;
  padding-left: 12px; margin-left: -14px;
}
.post-toc a:hover { color: var(--text); }
.post-toc a.active {
  color: #ffb347; font-weight: 600;
  border-left-color: var(--primary);
}

/* ----- Article PROSE styling ----- */
.prose { color: var(--text); font-size: 17px; line-height: 1.75; }
.prose h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 800; letter-spacing: -.7px;
  margin: 56px 0 18px; scroll-margin-top: 96px;
  color: var(--text);
}
.prose h2::before {
  content: ''; display: block; width: 40px; height: 3px;
  background: var(--grad-primary); border-radius: 2px;
  margin-bottom: 14px;
}
.prose h3 {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700; letter-spacing: -.4px;
  margin: 40px 0 14px; scroll-margin-top: 96px;
}
.prose h4 { font-size: 19px; font-weight: 700; margin: 32px 0 10px; }
.prose h5 { font-size: 17px; font-weight: 700; margin: 24px 0 8px; }
.prose p { margin: 0 0 22px; }
.prose p:first-of-type { font-size: 19px; line-height: 1.65; color: var(--text); }
.prose a {
  color: #ffb347;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .2s;
}
.prose a:hover { color: var(--primary); }
.prose strong { color: var(--text); font-weight: 700; }
.prose em { color: var(--text); font-style: italic; }
.prose ul, .prose ol { margin: 0 0 24px; padding-left: 24px; }
.prose li { margin: 8px 0; line-height: 1.7; }
.prose ul li::marker { color: var(--primary); }
.prose ol li::marker { color: #ffb347; font-weight: 700; }
.prose img {
  max-width: 100%; height: auto;
  border-radius: var(--radius-md);
  margin: 32px 0; display: block;
}
.prose figure { margin: 32px 0; }
.prose figure img { margin: 0; }
.prose figcaption {
  font-size: 13.5px; color: var(--text-faint);
  text-align: center; margin-top: 10px;
  font-style: italic;
}
.prose blockquote {
  margin: 32px 0; padding: 24px 28px;
  background: rgba(241, 103, 35, 0.06);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 19px; line-height: 1.6;
  font-style: italic; color: var(--text);
}
.prose blockquote p:last-child { margin-bottom: 0; }
.prose blockquote cite {
  display: block; margin-top: 12px;
  font-size: 14px; color: var(--text-dim);
  font-style: normal;
}
.prose blockquote cite::before { content: '— '; }
.prose code {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 14.5px;
  background: rgba(241, 103, 35, 0.10);
  border: 1px solid rgba(241, 103, 35, 0.20);
  border-radius: 5px;
  padding: 2px 7px;
  color: #ffb347;
}
.prose pre {
  background: rgba(6, 9, 18, 0.8);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  overflow-x: auto;
  margin: 28px 0;
  font-size: 14px; line-height: 1.6;
}
.prose pre code {
  background: transparent; border: none; padding: 0;
  color: var(--text); font-size: inherit;
}
.prose hr {
  margin: 48px 0; border: 0;
  height: 1px;
  background: var(--border);
}
.prose table {
  width: 100%; border-collapse: collapse;
  margin: 28px 0; font-size: 14.5px;
  background: rgba(11, 16, 32, 0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.prose table th, .prose table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.prose table th { background: rgba(15, 23, 42, 0.6); font-weight: 700; }
.prose table tr:last-child td { border-bottom: none; }

/* Pull quote (special blockquote with class) */
.prose .pull-quote, .prose blockquote.pull-quote {
  font-size: 24px; font-weight: 600;
  letter-spacing: -.4px; line-height: 1.3;
  text-align: center; padding: 32px;
  border: none; border-top: 1px solid rgba(241,103,35,0.4);
  border-bottom: 1px solid rgba(241,103,35,0.4);
  background: transparent; border-radius: 0;
  margin: 40px 0;
}

/* Callout boxes (use class="callout" or class="callout note"/"warn"/"tip") */
.prose .callout {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 22px; margin: 28px 0;
  background: rgba(241, 103, 35, 0.08);
  border: 1px solid rgba(241, 103, 35, 0.25);
  border-radius: var(--radius-md);
  font-size: 15.5px;
}
.prose .callout::before {
  content: 'ⓘ'; font-size: 20px;
  color: #ffb347; flex-shrink: 0; line-height: 1.2;
}
.prose .callout.tip { background: rgba(16, 185, 129, .08); border-color: rgba(16, 185, 129, .25); }
.prose .callout.tip::before { content: '✓'; color: var(--success); }
.prose .callout.warn { background: rgba(245, 158, 11, .08); border-color: rgba(245, 158, 11, .25); }
.prose .callout.warn::before { content: '⚠'; color: var(--warn); }

/* Tags */
.post-tags {
  margin-top: 48px; padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
}
.post-tags-label { font-size: 12.5px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.post-tag {
  display: inline-flex; align-items: center;
  padding: 5px 12px; border-radius: 999px;
  background: rgba(148, 163, 184, 0.06);
  border: 1px solid var(--border);
  font-size: 13px; color: var(--text-dim);
  text-decoration: none; transition: all .2s;
}
.post-tag:hover { background: rgba(241, 103, 35, 0.08); border-color: rgba(241, 103, 35, 0.3); color: var(--text); }

/* Share row */
.post-share {
  margin-top: 32px; padding: 18px 22px;
  background: rgba(11, 16, 32, 0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap;
}
.post-share-label { font-size: 13.5px; color: var(--text-dim); font-weight: 600; }
.post-share-btns { display: flex; gap: 8px; }
.post-share-btns a, .post-share-btns button {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(148, 163, 184, 0.06);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  color: var(--text-dim);
  cursor: pointer; transition: all .2s;
  text-decoration: none;
}
.post-share-btns a:hover, .post-share-btns button:hover {
  background: rgba(241, 103, 35, 0.12);
  border-color: rgba(241, 103, 35, 0.3);
  color: white;
}
.post-share-btns svg { width: 16px; height: 16px; }
.post-share-copy.copied { background: rgba(16,185,129,.12) !important; border-color: rgba(16,185,129,.3) !important; color: var(--success) !important; }

/* Author block (full-width below article) */
.post-author-block {
  padding: 56px 0; border-top: 1px solid var(--border);
  background: rgba(11, 16, 32, 0.3);
}
.post-author-block-inner {
  display: flex; gap: 28px; align-items: flex-start;
  background: linear-gradient(180deg, rgba(15,23,42,0.6), rgba(11,16,32,0.4));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: 32px;
}
.post-author-block-inner img {
  width: 88px; height: 88px; border-radius: 50%;
  border: 2px solid rgba(241,103,35,0.4);
  flex-shrink: 0;
}
.post-author-block-name { font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-faint); font-weight: 700; }
.post-author-block-role { font-size: 22px; font-weight: 800; letter-spacing: -.4px; margin: 4px 0 12px; }
.post-author-block-inner p { font-size: 15.5px; color: var(--text-dim); line-height: 1.65; margin: 0 0 16px; }
.post-author-block-social { display: flex; gap: 16px; }
.post-author-block-social a { font-size: 14px; color: #ffb347; font-weight: 600; text-decoration: none; }
.post-author-block-social a:hover { color: var(--primary); text-decoration: underline; }

/* Related */
.post-related { padding: 80px 0; border-top: 1px solid var(--border); }

/* Comments */
.post-comments { padding: 56px 0; }
.post-comments .comments-area {
  background: rgba(11, 16, 32, 0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.post-comments .comments-title { font-size: 22px; font-weight: 800; letter-spacing: -.4px; margin-bottom: 20px; }
.post-comments .comment-list { list-style: none; padding: 0; }
.post-comments textarea, .post-comments input[type="text"], .post-comments input[type="email"], .post-comments input[type="url"] {
  width: 100%; padding: 12px 14px;
  background: rgba(11, 16, 32, 0.6);
  border: 1px solid var(--border-strong);
  border-radius: 10px; color: var(--text);
  font-family: inherit; font-size: 14.5px;
}

/* Responsive */
@media (max-width: 1100px) {
  .post-grid { grid-template-columns: 1fr; }
  .post-sidebar { position: static; order: -1; flex-direction: row; flex-wrap: wrap; }
  .post-sidebar > * { flex: 1; min-width: 280px; }
}
@media (max-width: 740px) {
  .post-author-block-inner { flex-direction: column; align-items: center; text-align: center; padding: 24px; }
  .post-author-block-inner img { margin: 0 auto; }
  .post-author-block-social { justify-content: center; }
  .post-share { flex-direction: column; align-items: flex-start; }
  .prose { font-size: 16.5px; }
  .prose blockquote { padding: 18px 20px; font-size: 17px; }
}


/* === Sidebar reorder + compact author card === */
body.single .post-sidebar .post-toc-sidebar { order: 1 !important; }
body.single .post-sidebar .post-author-card  { order: 2 !important; }
body.single .post-author-card.post-author-card-compact { padding: 18px !important; }
body.single .post-author-card.post-author-card-compact .post-author-img {
  width: 56px !important; height: 56px !important;
  margin: 0 auto 10px !important;
}
body.single .post-author-card.post-author-card-compact .post-author-name { font-size: 15px !important; }
body.single .post-author-card.post-author-card-compact .post-author-role { font-size: 11px !important; margin-top: 2px !important; }
body.single .post-author-card.post-author-card-compact .post-author-social { margin: 12px 0 10px !important; }
body.single .post-author-card.post-author-card-compact .post-author-social a { width: 28px !important; height: 28px !important; }
body.single .post-author-card.post-author-card-compact .post-author-social svg { width: 12px !important; height: 12px !important; }
body.single .post-author-card.post-author-card-compact .post-author-more { font-size: 12.5px !important; }
body.single .post-toc-sidebar { padding: 20px 22px !important; }
body.single .post-toc-sidebar .post-toc-label { font-size: 12px !important; margin-bottom: 14px !important; }
body.single .post-toc-sidebar a { font-size: 14px !important; padding: 8px 12px !important; margin-left: -14px !important; line-height: 1.4 !important; }

/* ============================================================
   HEADING COLOR FIX — Divi forces dark slate on h1-h6.
   ============================================================ */
body h1, body h2, body h3, body h4, body h5, body h6 {
  color: var(--text) !important;
}
body h1 .gradient, body h2 .gradient, body h3 .gradient,
body h1 .text-gradient, body h2 .text-gradient, body h3 .text-gradient,
body h1 .accent, body h2 .accent, body h3 .accent,
body h1 .text-accent, body h2 .text-accent, body h3 .text-accent {
  color: transparent !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
}
body h1 span[style*="gradient"], body h2 span[style*="gradient"], body h3 span[style*="gradient"] {
  color: transparent !important;
}
