/* ═══════════════════════════════════════════════════════
   SYNE — accelerate.css
   Platform 04 — Financial & Impact Management
   Accent: Indigo  --indigo:#6366F1  --indigo-lt:#EEF2FF
═══════════════════════════════════════════════════════ */

/* ── Page-level accent tokens ── */
:root {
  --acc:        #6366F1;
  --acc-dark:   #4F46E5;
  --acc-darker: #3730A3;
  --acc-lt:     #EEF2FF;
  --acc-mid:    rgba(99,102,241,.28);
  --acc-glow:   rgba(99,102,241,.18);
}

/* ─────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────── */
.acc-hero {
  padding: 80px 0 72px;
  background: var(--bg-white);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.acc-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 100% 50%, rgba(99,102,241,.07), transparent 55%),
    radial-gradient(ellipse 30% 55% at 0%   80%, rgba(99,102,241,.04), transparent 60%);
  pointer-events: none;
}
.acc-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(99,102,241,.10) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .45;
  pointer-events: none;
}
.acc-hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.acc-hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--acc-dark);
  background: var(--acc-lt);
  border: 1px solid var(--acc-mid);
  border-radius: 20px;
  padding: 5px 13px;
  margin-bottom: 20px;
}
.acc-hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--acc); flex-shrink: 0;
  animation: pulse-indigo 2.2s ease-in-out infinite;
}
@keyframes pulse-indigo {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .45; transform: scale(1.5); }
}
.acc-hero-h1 {
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 700; line-height: 1.06;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: 18px;
}
.acc-hero-h1 strong { color: var(--acc); }
.acc-hero-lead {
  font-size: 17px; line-height: 1.72;
  color: var(--ink-2);
  margin-bottom: 32px;
  max-width: 520px;
}
.acc-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.acc-hero-stats {
  display: flex; gap: 28px; flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.acc-hstat-val {
  font-size: 22px; font-weight: 700;
  color: var(--ink); letter-spacing: -.025em; line-height: 1;
}
.acc-hstat-val em { font-style: normal; color: var(--acc); font-size: 15px; }
.acc-hstat-lbl { font-size: 11px; color: var(--ink-4); margin-top: 4px; font-weight: 500; line-height: 1.3; }

/* Hero dashboard panel */
.acc-preview-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(13,31,45,.08), 0 4px 16px rgba(99,102,241,.10);
}
.acc-panel-bar {
  background: var(--bg-grey);
  border-bottom: 1px solid var(--line);
  padding: 10px 16px;
  display: flex; align-items: center; gap: 6px;
}
.acc-panel-dot   { width: 9px; height: 9px; border-radius: 50%; }
.acc-panel-title { font-size: 11px; color: var(--ink-3); margin-left: 6px; flex: 1; }
.acc-panel-badge {
  font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 2px 9px; border-radius: 20px;
  background: rgba(99,102,241,.12);
  border: 1px solid rgba(99,102,241,.28);
  color: var(--acc-dark);
}
.acc-panel-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; }

/* ─────────────────────────────────────────────────────
   INDIGO BUTTON VARIANTS
───────────────────────────────────────────────────── */
.btn-indigo {
  background: var(--acc);
  color: #fff;
  box-shadow: 0 2px 12px rgba(99,102,241,.32);
}
.btn-indigo:hover {
  background: var(--acc-dark);
  box-shadow: 0 4px 22px rgba(99,102,241,.44);
  transform: translateY(-1px);
  color: #fff;
}
.btn-indigo-outline {
  background: transparent;
  color: var(--ink-2);
  border: 1.5px solid var(--line);
}
.btn-indigo-outline:hover { border-color: var(--acc); color: var(--acc); }

/* ─────────────────────────────────────────────────────
   FEATURES GRID (6 cards, 3-col)
───────────────────────────────────────────────────── */
.acc-feats { padding: 96px 0; background: var(--bg-grey); }
.acc-feats-hd { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.acc-feats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.acc-feat-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 18px;
  padding: 26px 22px;
  transition: all .2s;
  position: relative;
  overflow: hidden;
}
.acc-feat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--acc);
  border-radius: 18px 18px 0 0;
  opacity: 0;
  transition: opacity .2s;
}
.acc-feat-card:hover { border-color: var(--acc-mid); box-shadow: var(--sh-md); transform: translateY(-4px); }
.acc-feat-card:hover::before { opacity: 1; }
.acc-feat-ico {
  width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center;
  margin-bottom: 16px; border: 1px solid;
}
.acc-feat-ico svg { width: 20px; height: 20px; stroke-width: 1.8; fill: none; }
.acc-feat-tag {
  display: inline-block;
  font-size: 9.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px; margin-bottom: 10px;
}
.acc-feat-name { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 8px; letter-spacing: -.01em; }
.acc-feat-body { font-size: 13px; line-height: 1.68; color: var(--ink-3); }

/* ─────────────────────────────────────────────────────
   MODULE TABS  (4 tabs: Financial / Supplier / Impact / Green Finance)
───────────────────────────────────────────────────── */
.acc-modules { padding: 96px 0; background: #fff; }
.acc-modules-hd { text-align: center; max-width: 680px; margin: 0 auto 52px; }

.acc-mod-tabs {
  display: flex; gap: 0;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-grey);
  margin-bottom: 48px;
}
.acc-mod-tab {
  flex: 1; padding: 14px 12px;
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; color: var(--ink-3);
  cursor: pointer; transition: all .18s;
  border-right: 1px solid var(--line);
  background: transparent;
  border-top: none; border-bottom: none; border-left: none;
  font-family: var(--font);
  white-space: nowrap;
}
.acc-mod-tab:last-child { border-right: none; }
.acc-mod-tab:hover { background: #fff; color: var(--ink-2); }
.acc-mod-tab.active { background: #fff; color: var(--acc); box-shadow: inset 0 -3px 0 var(--acc); }
.acc-mod-tab-ico {
  width: 26px; height: 26px; border-radius: 7px;
  display: grid; place-items: center; flex-shrink: 0;
}
.acc-mod-tab-ico svg { width: 12px; height: 12px; stroke-width: 2; fill: none; }

.acc-mod-panel { display: none; }
.acc-mod-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ─────────────────────────────────────────────────────
   DEEP-DIVE CAPABILITY ROWS
───────────────────────────────────────────────────── */
.acc-caps { padding: 96px 0; background: var(--bg-grey); border-top: 1px solid var(--line); }
.acc-caps-hd { max-width: 640px; margin-bottom: 64px; }

.acc-cap-rows { display: flex; flex-direction: column; gap: 0; }
.acc-cap-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}
.acc-cap-row:last-child { border: none; }
.acc-cap-row.rev .acc-cap-visual { order: -1; }

.acc-cap-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--acc-dark); margin-bottom: 12px;
}
.acc-cap-title {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700; letter-spacing: -.025em;
  color: var(--ink); margin-bottom: 14px; line-height: 1.2;
}
.acc-cap-body {
  font-size: 14.5px; line-height: 1.76;
  color: var(--ink-3); margin-bottom: 22px;
}
.acc-cap-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.acc-cap-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: var(--ink-2); line-height: 1.5;
}
.acc-cap-list li::before {
  content: '';
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--acc);
  flex-shrink: 0; margin-top: 6px;
}
.acc-cap-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700;
  color: var(--acc-dark); text-decoration: none;
  transition: gap .15s;
}
.acc-cap-link svg { width: 12px; height: 12px; stroke: var(--acc-dark); stroke-width: 2; fill: none; }
.acc-cap-link:hover { gap: 10px; }

/* Visual panels */
.acc-cap-visual {
  background: var(--bg-grey);
  border: 1.5px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.acc-vis-bar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 10px 16px;
  display: flex; align-items: center; gap: 6px;
}
.acc-vis-dot   { width: 8px; height: 8px; border-radius: 50%; }
.acc-vis-title { font-size: 10.5px; color: var(--ink-3); margin-left: 6px; flex: 1; }
.acc-vis-body  { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 10px; }

/* ─────────────────────────────────────────────────────
   IMPACT FRAMEWORK CARDS
───────────────────────────────────────────────────── */
.acc-impact { padding: 96px 0; background: #fff; }
.acc-impact-hd { text-align: center; max-width: 680px; margin: 0 auto 52px; }

.acc-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.acc-impact-card {
  background: var(--bg-grey);
  border: 1.5px solid var(--line);
  border-radius: 18px;
  padding: 26px 20px;
  transition: all .2s;
}
.acc-impact-card:hover {
  border-color: var(--acc-mid);
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
  background: #fff;
}
.acc-impact-ico {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 14px; border: 1px solid;
}
.acc-impact-ico svg { width: 19px; height: 19px; stroke-width: 1.8; fill: none; }
.acc-impact-name { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 8px; line-height: 1.3; }
.acc-impact-body { font-size: 12.5px; line-height: 1.68; color: var(--ink-3); margin-bottom: 14px; }
.acc-impact-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.acc-impact-tag {
  font-size: 10px; font-weight: 600;
  padding: 2px 9px; border-radius: 20px;
  background: var(--acc-lt);
  border: 1px solid rgba(99,102,241,.25);
  color: var(--acc-dark);
}

/* ─────────────────────────────────────────────────────
   GREEN FINANCE DARK SECTION
───────────────────────────────────────────────────── */
.acc-finance {
  padding: 96px 0;
  background: linear-gradient(160deg, #1E1B4B 0%, #2D2A6E 50%, #312E81 100%);
  position: relative; overflow: hidden;
}
.acc-finance::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 95% 20%, rgba(99,102,241,.28), transparent 55%),
    radial-gradient(ellipse 40% 50% at 5%  85%, rgba(99,102,241,.15), transparent 55%);
  pointer-events: none;
}
.acc-finance-inner { position: relative; z-index: 1; }
.acc-finance-hd { text-align: center; max-width: 640px; margin: 0 auto 56px; }

.acc-finance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.acc-finance-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  padding: 28px 24px;
  transition: all .2s;
}
.acc-finance-card:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(99,102,241,.45);
  transform: translateY(-4px);
}
.acc-finance-ico {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(99,102,241,.18);
  border: 1px solid rgba(99,102,241,.35);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.acc-finance-ico svg { width: 22px; height: 22px; stroke: #A5B4FC; stroke-width: 1.8; fill: none; }
.acc-finance-kicker {
  font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(165,180,252,.75); margin-bottom: 6px;
}
.acc-finance-name { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 10px; line-height: 1.25; }
.acc-finance-body { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.48); }

/* ─────────────────────────────────────────────────────
   NUMBERS / STATS BAR
───────────────────────────────────────────────────── */
.acc-numbers { padding: 64px 0; background: var(--bg-grey); border-top: 1px solid var(--line); }
.acc-numbers-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.acc-number-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--line);
}
.acc-number-item:last-child { border-right: none; }
.acc-number-val {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700; letter-spacing: -.04em;
  color: var(--ink); line-height: 1;
  margin-bottom: 6px;
}
.acc-number-val em { font-style: normal; color: var(--acc); }
.acc-number-lbl { font-size: 13px; color: var(--ink-3); line-height: 1.45; }

/* ─────────────────────────────────────────────────────
   INTEGRATIONS
───────────────────────────────────────────────────── */
.acc-integrations { padding: 64px 0; background: #fff; border-top: 1px solid var(--line); }
.acc-int-hd { text-align: center; margin-bottom: 36px; }
.acc-int-logos { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.acc-int-pill {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--bg-grey);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 12.5px; font-weight: 600; color: var(--ink-2);
  transition: all .16s;
}
.acc-int-pill:hover { border-color: var(--acc-mid); color: var(--acc-dark); background: var(--acc-lt); }
.acc-int-pill-ico {
  width: 20px; height: 20px; border-radius: 5px;
  display: grid; place-items: center; flex-shrink: 0;
}
.acc-int-pill-ico svg { width: 11px; height: 11px; stroke-width: 2; fill: none; }

/* ─────────────────────────────────────────────────────
   QUOTE
───────────────────────────────────────────────────── */
.acc-quote {
  padding: 80px 0;
  background: linear-gradient(135deg, #2D2A6E 0%, #312E81 55%, #1E1B4B 100%);
  position: relative; overflow: hidden;
}
.acc-quote::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,255,255,.06), transparent 55%);
  pointer-events: none;
}
.acc-quote-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; text-align: center; }
.acc-quote-mark   { font-size: 80px; line-height: .8; color: rgba(255,255,255,.13); font-family: Georgia,serif; margin-bottom: 8px; }
.acc-quote-text   { font-size: clamp(18px, 2.4vw, 24px); line-height: 1.55; color: #fff; font-weight: 500; margin-bottom: 28px; letter-spacing: -.01em; }
.acc-quote-attr   { display: flex; align-items: center; justify-content: center; gap: 12px; }
.acc-quote-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.14);
  border: 2px solid rgba(255,255,255,.26);
  display: grid; place-items: center;
  font-size: 15px; font-weight: 700; color: #fff;
}
.acc-quote-who { font-size: 13.5px; font-weight: 700; color: #fff; }
.acc-quote-co  { font-size: 12px; color: rgba(255,255,255,.5); }

/* ─────────────────────────────────────────────────────
   FAQ
───────────────────────────────────────────────────── */
.acc-faq { padding: 96px 0; background: var(--bg-grey); }
.acc-faq-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.acc-faq-sidebar { position: sticky; top: 124px; }
.acc-faq-sidebar-title { font-size: clamp(22px, 2.5vw, 32px); font-weight: 700; letter-spacing: -.02em; color: var(--ink); margin-bottom: 14px; line-height: 1.2; }
.acc-faq-sidebar-body  { font-size: 14px; line-height: 1.72; color: var(--ink-3); margin-bottom: 24px; }

/* ─────────────────────────────────────────────────────
   CTA
───────────────────────────────────────────────────── */
.acc-cta { padding: 80px 0; background: #fff; border-top: 1px solid var(--line); }
.acc-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px; align-items: center;
}
.acc-cta-title { font-size: clamp(26px, 3vw, 38px); font-weight: 700; letter-spacing: -.025em; color: var(--ink); margin-bottom: 12px; }
.acc-cta-title strong { color: var(--acc-dark); }
.acc-cta-body  { font-size: 15px; color: var(--ink-3); line-height: 1.68; max-width: 520px; }
.acc-cta-btns  { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }

/* ─────────────────────────────────────────────────────
   SHARED WIDGET HELPERS  (indigo-tinted)
───────────────────────────────────────────────────── */
.acc-metric {
  background: #fff; border: 1px solid var(--line);
  border-radius: 12px; padding: 14px;
}
.acc-metric-lbl { font-size: 9.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 6px; }
.acc-metric-val { font-size: 20px; font-weight: 700; color: var(--ink); letter-spacing: -.025em; line-height: 1; }
.acc-metric-val em { font-style: normal; color: var(--acc); font-size: 14px; }
.acc-metric-chg { font-size: 11px; font-weight: 600; color: var(--green); margin-top: 4px; }
.acc-metric-chg.warn { color: var(--amber); }
.acc-metric-chg.neg  { color: var(--acc-dark); }

.acc-status-list { display: flex; flex-direction: column; gap: 6px; }
.acc-status-item {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 12px;
  background: var(--bg-grey);
  border-radius: 8px; border: 1px solid var(--line);
  font-size: 12px; font-weight: 500; color: var(--ink-2);
}
.acc-status-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

.acc-progress-row {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 0; border-bottom: 1px solid var(--line);
}
.acc-progress-row:last-child { border: none; }
.acc-progress-lbl   { font-size: 12px; font-weight: 500; color: var(--ink-2); flex: 1; min-width: 0; }
.acc-progress-track { flex: 2; height: 6px; background: var(--bg-slate); border-radius: 3px; overflow: hidden; }
.acc-progress-fill  { height: 100%; border-radius: 3px; transition: width .8s ease; }
.acc-progress-val   { font-size: 11px; font-weight: 700; width: 42px; text-align: right; flex-shrink: 0; }

/* ─────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────── */
@media (max-width: 1060px) {
  .acc-feats-grid    { grid-template-columns: 1fr 1fr; }
  .acc-impact-grid   { grid-template-columns: 1fr 1fr; }
  .acc-finance-grid  { grid-template-columns: 1fr 1fr; }
  .acc-numbers-inner { grid-template-columns: 1fr 1fr; gap: 0; }
  .acc-number-item:nth-child(2) { border-right: none; }
  .acc-number-item:nth-child(3) { border-top: 1px solid var(--line); }
  .acc-number-item:nth-child(4) { border-top: 1px solid var(--line); border-right: none; }
}
@media (max-width: 960px) {
  .acc-hero-inner        { grid-template-columns: 1fr; gap: 44px; }
  .acc-mod-panel.active  { grid-template-columns: 1fr; gap: 36px; }
  .acc-cap-row           { grid-template-columns: 1fr; gap: 40px; }
  .acc-cap-row.rev .acc-cap-visual { order: 0; }
  .acc-faq-inner         { grid-template-columns: 1fr; gap: 44px; }
  .acc-faq-sidebar       { position: static; }
  .acc-cta-inner         { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 640px) {
  .acc-hero { padding: 52px 0 44px; }
  .acc-feats-grid   { grid-template-columns: 1fr; }
  .acc-impact-grid  { grid-template-columns: 1fr; }
  .acc-finance-grid { grid-template-columns: 1fr; }
  .acc-numbers-inner { grid-template-columns: 1fr 1fr; }
  .acc-mod-tabs { flex-wrap: wrap; }
  .acc-mod-tab  { flex: calc(50% - 1px); border-bottom: 1px solid var(--line); }
  .acc-mod-tab:last-child { border-bottom: none; }
}
