/* ============================================================
   Strat101.com — shared site styles
   Bright, light, energetic. One CSS file for every page.
   ============================================================ */

:root {
  --ink:        #0f172a;
  --ink-2:      #334155;
  --sub:        #475569;
  --muted:      #94a3b8;
  --line:       #e2e8f0;
  --line-soft:  #eef2f7;
  --bg:         #ffffff;
  --bg-soft:    #f8fafc;
  --bg-tint:    #f4f7fe;

  /* Product accents */
  --blue:       #2563eb;   /* StratFi */
  --blue-soft:  #eff6ff;
  --violet:     #7c3aed;   /* StratOS */
  --violet-soft:#f5f3ff;
  --cyan:       #0891b2;   /* GlobalPublish */
  --cyan-soft:  #ecfeff;
  --amber:      #d97706;   /* CiFort */
  --amber-soft: #fffbeb;
  --green:      #059669;
  --green-soft: #ecfdf5;
  --pink:       #db2777;

  --grad-brand: linear-gradient(90deg, #2563eb 0%, #7c3aed 50%, #0891b2 100%);
  --grad-cta:   linear-gradient(135deg, #2563eb, #7c3aed);
  --grad-green: linear-gradient(135deg, #059669, #10b981);

  --radius:     16px;
  --radius-lg:  24px;
  --shadow-sm:  0 1px 3px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.04);
  --shadow-md:  0 6px 24px rgba(15,23,42,.08);
  --shadow-lg:  0 16px 48px rgba(15,23,42,.12);

  --font-head:  'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  --font-body:  'Inter', 'Segoe UI', system-ui, sans-serif;
  --header-h:   72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--blue); }

h1, h2, h3, h4 { font-family: var(--font-head); letter-spacing: -0.02em; line-height: 1.15; }

.wrap  { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }

section { padding: 88px 0; }
@media (max-width: 720px) { section { padding: 60px 0; } }

/* ── Eyebrow + section headings ─────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-soft);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.eyebrow.violet { color: var(--violet); background: var(--violet-soft); }
.eyebrow.cyan   { color: var(--cyan);   background: var(--cyan-soft); }
.eyebrow.amber  { color: var(--amber);  background: var(--amber-soft); }
.eyebrow.green  { color: var(--green);  background: var(--green-soft); }

.sec-title { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 800; margin-bottom: 14px; text-wrap: balance; }
.sec-sub   { font-size: 1.13rem; color: var(--sub); max-width: 680px; }
.sec-head  { margin-bottom: 48px; }
.sec-head.center { text-align: center; }
.sec-head.center .sec-sub { margin: 0 auto; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  padding: 14px 30px; border-radius: 999px; text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
  white-space: nowrap; cursor: pointer; border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--grad-cta); color: #fff; box-shadow: 0 8px 24px rgba(79,70,229,.35); }
.btn-primary:hover { box-shadow: 0 12px 32px rgba(79,70,229,.45); }
.btn-green { background: var(--grad-green); color: #fff; box-shadow: 0 8px 24px rgba(5,150,105,.35); }
.btn-ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--muted); }
.btn-sm { padding: 10px 22px; font-size: .92rem; }

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.85); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .bar {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  height: var(--header-h); display: flex; align-items: center; gap: 32px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark {
  width: 36px; height: 36px; border-radius: 10px; background: var(--grad-cta);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.05rem;
  box-shadow: 0 4px 12px rgba(79,70,229,.3);
}
.logo-word { font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; color: var(--ink); letter-spacing: -0.02em; }
.logo-word em { font-style: normal; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.main-nav { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.nav-link {
  font-weight: 600; font-size: .95rem; color: var(--ink-2); text-decoration: none;
  padding: 9px 14px; border-radius: 10px; transition: background .12s, color .12s;
  display: inline-flex; align-items: center; gap: 5px; background: none; border: none;
  font-family: var(--font-body); cursor: pointer; line-height: 1.4;
}
.nav-link:hover, .nav-link.active { color: var(--blue); background: var(--blue-soft); }
.nav-link .caret { transition: transform .15s; }

/* Solutions dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(6px);
  min-width: 560px; background: #fff; border: 1px solid var(--line);
  border-radius: 18px; box-shadow: var(--shadow-lg); padding: 12px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  opacity: 0; visibility: hidden; transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.dropdown.open .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown.open .caret { transform: rotate(180deg); }
.dd-item { display: flex; gap: 14px; align-items: flex-start; padding: 14px; border-radius: 12px; text-decoration: none; transition: background .12s; }
.dd-item:hover { background: var(--bg-soft); }
.dd-icon {
  width: 42px; height: 42px; border-radius: 11px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
}
.dd-icon.blue   { background: var(--blue-soft); }
.dd-icon.violet { background: var(--violet-soft); }
.dd-icon.cyan   { background: var(--cyan-soft); }
.dd-icon.amber  { background: var(--amber-soft); }
.dd-name { font-family: var(--font-head); font-weight: 700; font-size: .98rem; color: var(--ink); margin-bottom: 2px; }
.dd-desc { font-size: .85rem; color: var(--sub); line-height: 1.5; }

.header-ctas { display: flex; align-items: center; gap: 10px; }

.nav-toggle { display: none; margin-left: auto; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2.5px; background: var(--ink); border-radius: 2px; margin: 4.5px 0; transition: transform .2s, opacity .2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .main-nav, .header-ctas { display: none; }
  .nav-toggle { display: block; }
  .site-header.menu-open .mobile-nav { display: flex; }
}
.mobile-nav {
  display: none; flex-direction: column; gap: 2px; padding: 12px 24px 24px;
  border-top: 1px solid var(--line-soft); background: #fff;
}
.mobile-nav a { text-decoration: none; color: var(--ink); font-weight: 600; padding: 12px 8px; border-radius: 10px; }
.mobile-nav a:hover { background: var(--bg-soft); }
.mobile-nav .mn-group { font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); padding: 14px 8px 4px; }
.mobile-nav .mn-ctas { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden; padding: 96px 0 110px; text-align: center;
  background:
    radial-gradient(900px 480px at 15% -10%, rgba(37,99,235,.10), transparent 60%),
    radial-gradient(900px 480px at 85% -10%, rgba(124,58,237,.10), transparent 60%),
    radial-gradient(700px 420px at 50% 110%, rgba(8,145,178,.08), transparent 60%),
    #ffffff;
}
.hero-blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; pointer-events: none; animation: float 9s ease-in-out infinite alternate; }
@keyframes float { from { transform: translateY(0) } to { transform: translateY(26px) } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 26px;
  font-size: .85rem; font-weight: 700; color: var(--ink-2);
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 18px; box-shadow: var(--shadow-sm);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(5,150,105,.15); }

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.3rem); font-weight: 800; letter-spacing: -0.035em;
  max-width: 900px; margin: 0 auto 22px; text-wrap: balance;
}
.hero h1 .grad { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.rotator { display: inline-block; position: relative; min-width: 5.4em; text-align: left; }
.rotator span {
  position: absolute; left: 0; top: 0; opacity: 0; transform: translateY(14px);
  transition: opacity .45s ease, transform .45s ease; white-space: nowrap;
  background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.rotator span.on { opacity: 1; transform: translateY(0); position: relative; }

.hero-sub { font-size: 1.22rem; color: var(--sub); max-width: 680px; margin: 0 auto 36px; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }
.hero-note { font-size: .9rem; color: var(--muted); }

/* Product chips under hero */
.hero-chips { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 44px; }
.chip {
  display: inline-flex; align-items: center; gap: 9px; text-decoration: none;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 20px; font-weight: 700; font-size: .95rem; color: var(--ink);
  box-shadow: var(--shadow-sm); transition: transform .15s, box-shadow .15s, border-color .15s;
}
.chip:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.chip .cdot { width: 9px; height: 9px; border-radius: 50%; }

/* ── Marquee ────────────────────────────────────────────── */
.marquee { overflow: hidden; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: var(--bg-soft); padding: 18px 0; }
.marquee-track { display: flex; gap: 44px; width: max-content; animation: marquee 36s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: .93rem; color: var(--ink-2); white-space: nowrap; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── Stats ──────────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.stat-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 30px; box-shadow: var(--shadow-sm); }
.stat-big { font-family: var(--font-head); font-size: 3.2rem; font-weight: 800; letter-spacing: -0.03em; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1.1; }
.stat-text { font-size: 1rem; color: var(--ink-2); font-weight: 600; margin-top: 10px; }
.stat-attr { font-size: .78rem; color: var(--muted); margin-top: 10px; line-height: 1.5; }

/* ── Product cards ──────────────────────────────────────── */
.products-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
@media (max-width: 860px) { .products-grid { grid-template-columns: 1fr; } }

.product-card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 36px 34px; overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.product-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; }
.product-card.blue::before   { background: linear-gradient(90deg, #2563eb, #60a5fa); }
.product-card.violet::before { background: linear-gradient(90deg, #7c3aed, #a78bfa); }
.product-card.cyan::before   { background: linear-gradient(90deg, #0891b2, #22d3ee); }
.product-card.amber::before  { background: linear-gradient(90deg, #d97706, #fbbf24); }

.pc-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.pc-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; flex-shrink: 0; }
.product-card.blue .pc-icon   { background: var(--blue-soft); }
.product-card.violet .pc-icon { background: var(--violet-soft); }
.product-card.cyan .pc-icon   { background: var(--cyan-soft); }
.product-card.amber .pc-icon  { background: var(--amber-soft); }
.pc-name { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; }
.pc-tag  { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.product-card.blue .pc-tag   { color: var(--blue); }
.product-card.violet .pc-tag { color: var(--violet); }
.product-card.cyan .pc-tag   { color: var(--cyan); }
.product-card.amber .pc-tag  { color: var(--amber); }
.pc-desc { color: var(--sub); margin-bottom: 18px; }
.pc-points { list-style: none; margin-bottom: 24px; }
.pc-points li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; color: var(--ink-2); padding: 5px 0; }
.pc-points li::before { content: "✓"; font-weight: 800; flex-shrink: 0; }
.product-card.blue .pc-points li::before   { color: var(--blue); }
.product-card.violet .pc-points li::before { color: var(--violet); }
.product-card.cyan .pc-points li::before   { color: var(--cyan); }
.product-card.amber .pc-points li::before  { color: var(--amber); }
.pc-actions { margin-top: auto; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.pc-link { font-weight: 700; text-decoration: none; font-size: .96rem; }
.product-card.blue .pc-link   { color: var(--blue); }
.product-card.violet .pc-link { color: var(--violet); }
.product-card.cyan .pc-link   { color: var(--cyan); }
.product-card.amber .pc-link  { color: var(--amber); }
.pc-ext { font-size: .85rem; color: var(--muted); text-decoration: none; }
.pc-ext:hover { color: var(--sub); }

/* ── Flywheel / philosophy tabs ─────────────────────────── */
.tabs-bar { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.tab-btn {
  font-family: var(--font-head); font-weight: 700; font-size: .95rem;
  padding: 11px 22px; border-radius: 999px; border: 1.5px solid var(--line);
  background: #fff; color: var(--ink-2); cursor: pointer; transition: all .15s;
}
.tab-btn:hover { border-color: var(--muted); }
.tab-btn.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.tab-panel { display: none; }
.tab-panel.on { display: grid; animation: fadeUp .35s ease; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .tab-panel.on { grid-template-columns: 1fr; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.tab-kicker { font-size: .8rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px; }
.tab-title { font-size: 1.7rem; font-weight: 800; margin-bottom: 14px; }
.tab-body { color: var(--sub); margin-bottom: 20px; }
.tab-visual {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; display: flex; flex-direction: column; gap: 12px;
}
.tv-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 13px 18px; font-size: .92rem; font-weight: 600; box-shadow: var(--shadow-sm); }
.tv-status { font-size: .78rem; font-weight: 800; padding: 4px 12px; border-radius: 999px; white-space: nowrap; }
.tv-good { background: var(--green-soft); color: var(--green); }
.tv-warn { background: var(--amber-soft); color: var(--amber); }
.tv-bad  { background: #fef2f2; color: #dc2626; }
.tv-info { background: var(--blue-soft); color: var(--blue); }

/* ── Steps ──────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 22px; position: relative; }
.step { text-align: center; padding: 0 6px; }
.step-num {
  width: 58px; height: 58px; border-radius: 50%; margin: 0 auto 16px;
  background: var(--grad-cta); color: #fff; font-family: var(--font-head);
  font-weight: 800; font-size: 1.15rem; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(79,70,229,.3);
}
.step-title { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; margin-bottom: 8px; }
.step-text { font-size: .93rem; color: var(--sub); }

/* ── Feature grid (generic) ─────────────────────────────── */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.feat-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow-sm); transition: transform .18s, box-shadow .18s; }
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feat-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 16px; background: var(--blue-soft); }
.feat-icon.violet { background: var(--violet-soft); } .feat-icon.cyan { background: var(--cyan-soft); }
.feat-icon.amber { background: var(--amber-soft); }   .feat-icon.green { background: var(--green-soft); }
.feat-title { font-family: var(--font-head); font-weight: 800; font-size: 1.08rem; margin-bottom: 8px; }
.feat-text { font-size: .95rem; color: var(--sub); }

/* ── CTA bands ──────────────────────────────────────────── */
.cta-band {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #1d4ed8 0%, #6d28d9 55%, #0e7490 110%);
  color: #fff; padding: 60px 48px; text-align: center;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image: radial-gradient(rgba(255,255,255,.16) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
}
.cta-band > * { position: relative; }
.cta-band h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 800; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 620px; margin: 0 auto 28px; font-size: 1.1rem; }
.cta-band .btn-ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.35); }
.cta-band .btn-white { background: #fff; color: #1d4ed8; box-shadow: 0 8px 24px rgba(0,0,0,.2); }

/* Trials grid */
.trials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.trial-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .18s, box-shadow .18s; display: flex; flex-direction: column; gap: 8px; align-items: center;
}
.trial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.trial-name { font-family: var(--font-head); font-weight: 800; font-size: 1.12rem; }
.trial-offer { font-size: .85rem; font-weight: 700; padding: 5px 14px; border-radius: 999px; }
.trial-note { font-size: .87rem; color: var(--sub); flex: 1; }

/* ── FAQ ────────────────────────────────────────────────── */
.faq { max-width: 780px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: 14px; margin-bottom: 12px; background: #fff; overflow: hidden; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 22px; background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; color: var(--ink);
}
.faq-q .fx { font-size: 1.3rem; color: var(--muted); transition: transform .2s; flex-shrink: 0; }
.faq-item.open .fx { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a p { padding: 0 22px 20px; color: var(--sub); font-size: .97rem; }

/* ── Insights cards ─────────────────────────────────────── */
.insight-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.insight-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden; text-decoration: none;
  box-shadow: var(--shadow-sm); transition: transform .18s, box-shadow .18s;
}
.insight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.insight-banner { height: 130px; display: flex; align-items: center; justify-content: center; font-size: 2.6rem; }
.insight-body { padding: 24px 26px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.insight-tag { font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.insight-title { font-family: var(--font-head); font-weight: 800; font-size: 1.22rem; color: var(--ink); line-height: 1.3; }
.insight-desc { font-size: .93rem; color: var(--sub); flex: 1; }
.insight-meta { font-size: .82rem; color: var(--muted); }

/* Article page */
.article { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.article-hero { padding: 72px 0 40px; text-align: center; }
.article-hero h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 800; max-width: 800px; margin: 14px auto; text-wrap: balance; }
.article-meta { color: var(--muted); font-size: .9rem; }
.article h2 { font-size: 1.5rem; font-weight: 800; margin: 40px 0 14px; }
.article p { color: var(--ink-2); margin-bottom: 18px; font-size: 1.05rem; line-height: 1.75; }
.article ul, .article ol { margin: 0 0 18px 24px; color: var(--ink-2); font-size: 1.05rem; line-height: 1.75; }
.article li { margin-bottom: 8px; }
.article blockquote {
  border-left: 4px solid var(--violet); background: var(--violet-soft);
  padding: 18px 24px; border-radius: 0 14px 14px 0; margin: 26px 0;
  font-weight: 600; color: var(--ink);
}
.article .attr { font-size: .85rem; color: var(--muted); }

/* ── Legal pages ────────────────────────────────────────── */
.legal { max-width: 780px; margin: 0 auto; padding: 56px 24px 80px; }
.legal h1 { font-size: 2.2rem; font-weight: 800; margin-bottom: 8px; }
.legal .updated { color: var(--muted); font-size: .9rem; margin-bottom: 36px; }
.legal h2 { font-size: 1.25rem; font-weight: 800; margin: 34px 0 10px; }
.legal p, .legal li { color: var(--ink-2); font-size: .98rem; margin-bottom: 12px; }
.legal ul { margin-left: 22px; }

/* ── Solution page hero ─────────────────────────────────── */
.sol-hero { position: relative; overflow: hidden; padding: 84px 0 90px; }
.sol-hero.blue   { background: radial-gradient(800px 440px at 80% -20%, rgba(37,99,235,.14), transparent 60%), linear-gradient(180deg, #f0f6ff, #fff); }
.sol-hero.violet { background: radial-gradient(800px 440px at 80% -20%, rgba(124,58,237,.14), transparent 60%), linear-gradient(180deg, #f6f3ff, #fff); }
.sol-hero.cyan   { background: radial-gradient(800px 440px at 80% -20%, rgba(8,145,178,.14), transparent 60%), linear-gradient(180deg, #effcff, #fff); }
.sol-hero.amber  { background: radial-gradient(800px 440px at 80% -20%, rgba(217,119,6,.14), transparent 60%), linear-gradient(180deg, #fffaf0, #fff); }
.sol-hero .wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .sol-hero .wrap { grid-template-columns: 1fr; } }
.sol-hero h1 { font-size: clamp(2.1rem, 4.5vw, 3.3rem); font-weight: 800; margin-bottom: 18px; text-wrap: balance; }
.sol-hero .lede { font-size: 1.18rem; color: var(--sub); margin-bottom: 30px; max-width: 560px; }
.sol-visual { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 26px; display: flex; flex-direction: column; gap: 12px; }
.sol-visual .sv-head { font-size: .8rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }

/* Pricing teaser table */
.tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.tier {
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; display: flex; flex-direction: column; gap: 6px;
}
.tier.hot { border-color: var(--blue); box-shadow: 0 10px 30px rgba(37,99,235,.14); position: relative; }
.tier .hot-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--grad-cta); color: #fff; font-size: .72rem; font-weight: 800; letter-spacing: .08em; padding: 4px 14px; border-radius: 999px; }
.tier-name { font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; }
.tier-price { font-family: var(--font-head); font-weight: 800; font-size: 1.9rem; }
.tier-price small { font-size: .85rem; color: var(--muted); font-weight: 600; }
.tier-tag { font-size: .86rem; color: var(--sub); flex: 1; }
.tier-feats { list-style: none; margin-top: 10px; }
.tier-feats li { font-size: .87rem; color: var(--ink-2); padding: 3px 0; display: flex; gap: 8px; }
.tier-feats li::before { content: "✓"; color: var(--green); font-weight: 800; }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer { background: #0f172a; color: #cbd5e1; margin-top: 40px; }
.footer-main { max-width: 1180px; margin: 0 auto; padding: 64px 24px 44px; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 860px) { .footer-main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-main { grid-template-columns: 1fr; } }
.footer-brand .logo-word { color: #fff; }
.footer-brand p { font-size: .92rem; color: #94a3b8; margin-top: 14px; max-width: 300px; }
.footer-col h4 { font-family: var(--font-head); color: #fff; font-size: .95rem; font-weight: 700; margin-bottom: 16px; }
.footer-col a { display: block; color: #94a3b8; text-decoration: none; font-size: .92rem; padding: 5px 0; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom .inner { max-width: 1180px; margin: 0 auto; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85rem; color: #64748b; }
.footer-bottom a { color: #94a3b8; text-decoration: none; margin-left: 22px; }
.footer-bottom a:hover { color: #fff; }

/* ── Scroll reveal ──────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.in { opacity: 1; transform: none; }
}

/* ── Utility ────────────────────────────────────────────── */
.center { text-align: center; }
.mt-lg { margin-top: 56px; }
.soft { background: var(--bg-soft); }
.tint { background: var(--bg-tint); }
