/* =========================================================
   E-COMMERCE SERVICES - v9.7 r19
   Theme: "Storefront OS / Conversion Engine"
   Typography: 100% Inter (no serif). Bold, crisp, modern.
   Scoped: .ec-page
   ========================================================= */

.ec-page {
  --ec-bg:        #ffffff;
  --ec-bg-2:      #f7faf8;
  --ec-mint:      #e8f9f0;
  --ec-cream:     #fff9ee;
  --ec-green:     #00d26a;
  --ec-green-2:   #00a854;
  --ec-forest:    #0a3d2a;
  --ec-forest-2:  #062719;
  --ec-coral:     #ff5a4e;
  --ec-coral-2:   #e63d31;
  --ec-text:      #0f1c17;
  --ec-text-2:    #44524c;
  --ec-muted:     #7a8780;
  --ec-line:      #e2eae5;
  --ec-line-2:    #cfd9d3;
  --ec-shadow:    0 1px 2px rgba(10,61,42,.04), 0 8px 24px rgba(10,61,42,.06);
  --ec-shadow-lg: 0 4px 8px rgba(10,61,42,.06), 0 24px 60px rgba(10,61,42,.12);
  --ec-radius:    10px;
  --ec-radius-sm: 6px;

  color: var(--ec-text);
  background: var(--ec-bg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-feature-settings: "cv11", "ss01", "ss03";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
.ec-page *,
.ec-page *::before,
.ec-page *::after { box-sizing: border-box; }

.ec-page__wrap { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.ec-mono { font-family: 'JetBrains Mono', ui-monospace, Menlo, Consolas, monospace; font-feature-settings: normal; }

/* =========================================================
   HERO - "Receipt ticker"
   ========================================================= */
.ec-hero { position: relative; padding: 96px 0 64px; }
.ec-hero::before {
  content: ""; position: absolute; top: 0; bottom: 0;
  left: 50%; transform: translateX(-50%);
  width: 100vw; z-index: -1;
  background:
    linear-gradient(180deg, var(--ec-mint) 0%, #fff 75%);
}
.ec-hero::after {
  content: ""; position: absolute; top: 0; bottom: 0;
  left: 50%; transform: translateX(-50%);
  width: 100vw; z-index: -1; pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(0,168,84,.10) 1px, transparent 0);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 80%);
          mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 80%);
}

.ec-hero__ticker {
  display: flex; gap: 0; align-items: stretch;
  background: var(--ec-forest); color: #d9f7e6;
  border-radius: var(--ec-radius);
  overflow: hidden;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; letter-spacing: .08em;
  margin-bottom: 28px;
  box-shadow: 0 8px 24px rgba(6,39,25,.18);
}
.ec-hero__ticker-cell { padding: 10px 16px; border-right: 1px solid rgba(255,255,255,.08); white-space: nowrap; }
.ec-hero__ticker-cell:last-child { border-right: 0; }
.ec-hero__ticker-cell strong { color: var(--ec-green); font-weight: 600; margin-right: 6px; }
.ec-hero__ticker-cell--pulse strong::before {
  content: "\25CF"; color: var(--ec-green); margin-right: 6px;
  animation: ec-pulse 1.4s infinite;
}
@keyframes ec-pulse { 0%, 100% { opacity: 1 } 50% { opacity: .3 } }

.ec-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ec-green-2);
  padding: 6px 12px;
  background: #fff;
  border: 1px solid var(--ec-green);
  border-radius: 6px;
}
.ec-hero__eyebrow::before { content: "$"; color: var(--ec-green); font-weight: 700; }

.ec-hero__h1 {
  font-weight: 900;
  font-size: clamp(2.4rem, 6.4vw, 5.2rem);
  line-height: .98;
  letter-spacing: -.04em;
  margin: 22px 0 22px;
  color: var(--ec-text);
}
.ec-hero__h1 .ec-pop { color: var(--ec-green-2); }
.ec-hero__h1 .ec-pop-coral { color: var(--ec-coral); }

.ec-hero__sub {
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.6;
  color: var(--ec-text-2);
  max-width: 720px;
  margin-bottom: 32px;
}

.ec-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ec-text); color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 15px;
  padding: 14px 22px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid var(--ec-text);
  transition: transform .15s ease, background .15s ease;
  letter-spacing: -.005em;
}
.ec-btn:hover { background: var(--ec-forest); transform: translateY(-1px); }
.ec-btn--green { background: var(--ec-green); color: var(--ec-forest); border-color: var(--ec-green); }
.ec-btn--green:hover { background: var(--ec-green-2); color: #fff; }
.ec-btn--ghost { background: transparent; color: var(--ec-text); border: 1px solid var(--ec-line-2); }
.ec-btn--ghost:hover { background: var(--ec-bg-2); border-color: var(--ec-text); }
.ec-btn--coral { background: var(--ec-coral); color: #fff; border-color: var(--ec-coral); }
.ec-btn--coral:hover { background: var(--ec-coral-2); }
.ec-hero__row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }

.ec-hero__stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid var(--ec-line);
  border-radius: var(--ec-radius);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--ec-shadow);
}
.ec-stat {
  padding: 22px 24px;
  border-right: 1px solid var(--ec-line);
}
.ec-stat:last-child { border-right: 0; }
.ec-stat__num {
  font-weight: 900; font-size: 1.9rem; line-height: 1;
  color: var(--ec-text); letter-spacing: -.025em;
  margin-bottom: 6px;
  display: flex; align-items: baseline; gap: 4px;
}
.ec-stat__num::after { content: ""; }
.ec-stat__num .ec-up { font-size: 13px; color: var(--ec-green-2); font-weight: 700; }
.ec-stat__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ec-muted);
}
@media (max-width: 760px) {
  .ec-hero__stats { grid-template-columns: repeat(2, 1fr); }
  .ec-stat:nth-child(2) { border-right: 0; }
  .ec-stat:nth-child(-n+2) { border-bottom: 1px solid var(--ec-line); }
}

/* =========================================================
   SECTION FRAME
   ========================================================= */
.ec-section { padding: 72px 0; position: relative; }
.ec-section--alt { position: relative; }
.ec-section--alt::before {
  content: ""; position: absolute; top: 0; bottom: 0;
  left: 50%; transform: translateX(-50%);
  width: 100vw;
  background: var(--ec-bg-2);
  z-index: -1;
}
.ec-section--cream { position: relative; }
.ec-section--cream::before {
  content: ""; position: absolute; top: 0; bottom: 0;
  left: 50%; transform: translateX(-50%);
  width: 100vw;
  background: var(--ec-cream);
  z-index: -1;
}
.ec-section--dark { position: relative; color: #fff; }
.ec-section--dark::before {
  content: ""; position: absolute; top: 0; bottom: 0;
  left: 50%; transform: translateX(-50%);
  width: 100vw;
  background:
    radial-gradient(circle at 90% 0%, rgba(0,210,106,.18) 0%, transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(255,90,78,.10) 0%, transparent 50%),
    linear-gradient(180deg, var(--ec-forest) 0%, var(--ec-forest-2) 100%);
  z-index: -1;
}
.ec-section--dark > * { position: relative; z-index: 1; }
.ec-section--dark .ec-section__h2 { color: #fff; }
.ec-section--dark .ec-section__lead { color: rgba(255,255,255,.78); }
.ec-section--dark .ec-section__eyebrow { color: var(--ec-green); background: rgba(0,210,106,.12); border-color: rgba(0,210,106,.4); }
.ec-section--dark .ec-belt__title { color: #fff; }
.ec-section--dark .ec-belt__desc { color: rgba(255,255,255,.72); }
.ec-section--dark .ec-belt__num { background: #fff; border-color: var(--ec-green); color: var(--ec-forest); box-shadow: 0 4px 18px rgba(0,210,106,.45); }

.ec-section__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ec-green-2);
  background: var(--ec-mint);
  border: 1px solid var(--ec-green);
  padding: 5px 10px;
  border-radius: 4px;
}
.ec-section__h2 {
  font-weight: 900;
  font-size: clamp(1.9rem, 4.2vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -.03em;
  margin: 16px 0 14px;
  color: var(--ec-text);
}
.ec-section__h2 .ec-pop { color: var(--ec-green-2); }
.ec-section__h2 .ec-pop-coral { color: var(--ec-coral); }
.ec-section__lead {
  font-size: 1.05rem; line-height: 1.6;
  color: var(--ec-text-2);
  max-width: 760px;
  margin-bottom: 40px;
}

/* =========================================================
   PLATFORM RAIL - horizontal scroll cards
   ========================================================= */
.ec-rail {
  display: grid;
  grid-template-columns: repeat(8, minmax(220px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding: 4px 4px 24px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--ec-green-2) var(--ec-line);
}
.ec-rail::-webkit-scrollbar { height: 6px; }
.ec-rail::-webkit-scrollbar-thumb { background: var(--ec-green-2); border-radius: 3px; }
.ec-rail__card {
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--ec-line);
  border-radius: var(--ec-radius);
  padding: 22px 20px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.ec-rail__card:hover {
  transform: translateY(-3px);
  border-color: var(--ec-green);
  box-shadow: var(--ec-shadow-lg);
}
.ec-rail__badge {
  display: inline-flex; align-self: flex-start; align-items: center; gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--ec-bg-2);
  color: var(--ec-muted);
  border: 1px solid var(--ec-line);
}
.ec-rail__card--featured .ec-rail__badge { background: var(--ec-coral); color: #fff; border-color: var(--ec-coral); }
.ec-rail__name {
  font-weight: 800; font-size: 1.35rem;
  letter-spacing: -.02em;
  color: var(--ec-text);
}
.ec-rail__desc {
  font-size: .9rem; line-height: 1.5;
  color: var(--ec-text-2);
}
.ec-rail__list {
  list-style: none; padding: 0; margin: 6px 0 0;
  display: flex; flex-direction: column; gap: 4px;
}
.ec-rail__list li {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--ec-muted);
  padding-left: 14px; position: relative;
}
.ec-rail__list li::before { content: "+"; position: absolute; left: 0; top: 0; color: var(--ec-green-2); font-weight: 700; }

/* =========================================================
   PROCESS - "Conveyor belt"
   ========================================================= */
.ec-belt {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 20px;
}
.ec-belt::before {
  content: ""; position: absolute;
  top: 38px; left: 8%; right: 8%; height: 2px;
  background: repeating-linear-gradient(90deg,
    var(--ec-green) 0 8px,
    transparent 8px 16px);
  z-index: 0;
}
.ec-belt__node {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 0 8px;
}
.ec-belt__num {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--ec-green);
  color: var(--ec-forest);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.6rem; letter-spacing: -.02em;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(0,210,106,.20);
}
.ec-belt__title {
  font-weight: 800; font-size: 1rem;
  letter-spacing: -.01em;
  color: var(--ec-text);
  margin-bottom: 6px;
}
.ec-belt__desc {
  font-size: .82rem; line-height: 1.45;
  color: var(--ec-text-2);
}
@media (max-width: 900px) {
  .ec-belt { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; }
  .ec-belt::before { display: none; }
}

/* =========================================================
   FEATURE GRID (Discovery, Design, Dev, etc.)
   ========================================================= */
.ec-fgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.ec-fcard {
  background: #fff;
  border: 1px solid var(--ec-line);
  border-radius: var(--ec-radius);
  padding: 24px 22px;
  position: relative;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.ec-fcard:hover {
  border-color: var(--ec-green);
  transform: translateY(-2px);
  box-shadow: var(--ec-shadow-lg);
}
.ec-fcard__head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ec-line);
}
.ec-fcard__ico {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--ec-mint);
  color: var(--ec-green-2);
  border-radius: 8px;
  font-weight: 900; font-size: 1rem;
  font-family: 'JetBrains Mono', monospace;
}
.ec-fcard__title {
  font-weight: 800; font-size: 1.1rem;
  letter-spacing: -.015em;
  color: var(--ec-text);
}
.ec-fcard__desc {
  font-size: .92rem; line-height: 1.55;
  color: var(--ec-text-2);
  margin-bottom: 14px;
}
.ec-fcard__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.ec-fcard__list li {
  font-size: .87rem;
  color: var(--ec-text-2);
  padding-left: 20px;
  position: relative;
}
.ec-fcard__list li::before {
  content: "\2713"; position: absolute; left: 0; top: 0;
  color: var(--ec-green-2); font-weight: 800;
}
@media (max-width: 880px) { .ec-fgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ec-fgrid { grid-template-columns: 1fr; } }

/* =========================================================
   INTEGRATIONS TABLE - real table aesthetic
   ========================================================= */
.ec-integrations {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid var(--ec-line);
  border-radius: var(--ec-radius);
  overflow: hidden;
  margin-top: 18px;
}
.ec-integrations thead th {
  background: var(--ec-forest);
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 14px 18px;
  text-align: left;
  border-right: 1px solid rgba(255,255,255,.08);
}
.ec-integrations thead th:last-child { border-right: 0; }
.ec-integrations tbody td {
  padding: 16px 18px;
  border-top: 1px solid var(--ec-line);
  border-right: 1px solid var(--ec-line);
  font-size: .9rem;
  color: var(--ec-text-2);
  vertical-align: top;
}
.ec-integrations tbody td:last-child { border-right: 0; }
.ec-integrations tbody tr:hover td { background: var(--ec-bg-2); }
.ec-integrations tbody td:first-child {
  font-weight: 700;
  color: var(--ec-text);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.ec-integrations__wrap { overflow-x: auto; }
@media (max-width: 760px) { .ec-integrations { font-size: .82rem; } }

/* =========================================================
   STACK PICKER - pricing/package tiers
   ========================================================= */
.ec-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.ec-tier {
  background: #fff;
  border: 1px solid var(--ec-line);
  border-radius: var(--ec-radius);
  padding: 28px 26px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.ec-tier:hover { transform: translateY(-3px); box-shadow: var(--ec-shadow-lg); }
.ec-tier__badge {
  display: inline-block; align-self: flex-start;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  padding: 4px 10px;
  background: var(--ec-bg-2);
  color: var(--ec-muted);
  border-radius: 4px;
  margin-bottom: 18px;
}
.ec-tier__name {
  font-weight: 900; font-size: 1.6rem;
  letter-spacing: -.025em;
  color: var(--ec-text);
  margin-bottom: 6px;
}
.ec-tier__tagline {
  font-size: .9rem; color: var(--ec-text-2);
  margin-bottom: 18px;
}
.ec-tier__price {
  display: flex; align-items: baseline; gap: 8px;
  padding: 16px 0;
  border-top: 1px solid var(--ec-line);
  border-bottom: 1px solid var(--ec-line);
  margin-bottom: 20px;
}
.ec-tier__amount {
  font-weight: 900; font-size: 2.4rem;
  letter-spacing: -.03em;
  color: var(--ec-text);
  line-height: 1;
}
.ec-tier__unit {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ec-muted);
}
.ec-tier__list {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.ec-tier__list li {
  font-size: .9rem; line-height: 1.45;
  color: var(--ec-text-2);
  padding-left: 22px;
  position: relative;
}
.ec-tier__list li::before {
  content: "\2713"; position: absolute; left: 0; top: 0;
  color: var(--ec-green-2); font-weight: 800;
}
.ec-tier .ec-btn { margin-top: auto; justify-content: center; }
.ec-tier--featured {
  background: var(--ec-forest);
  border-color: var(--ec-green);
  color: #fff;
  box-shadow: 0 16px 50px rgba(6,39,25,.20), 0 0 0 3px rgba(0,210,106,.20);
}
.ec-tier--featured .ec-tier__name { color: #fff; }
.ec-tier--featured .ec-tier__tagline { color: rgba(255,255,255,.78); }
.ec-tier--featured .ec-tier__amount { color: var(--ec-green); }
.ec-tier--featured .ec-tier__unit { color: rgba(255,255,255,.55); }
.ec-tier--featured .ec-tier__list li { color: rgba(255,255,255,.88); }
.ec-tier--featured .ec-tier__price { border-color: rgba(255,255,255,.10); }
.ec-tier--featured .ec-tier__badge { background: var(--ec-coral); color: #fff; }
.ec-tier--featured::after {
  content: "MOST POPULAR";
  position: absolute; top: -12px; right: 22px;
  background: var(--ec-coral); color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 700; letter-spacing: .15em;
  padding: 4px 10px;
  border-radius: 4px;
}
@media (max-width: 900px) { .ec-stack { grid-template-columns: 1fr; } }

/* =========================================================
   CART PANEL (info aside)
   ========================================================= */
.ec-cart {
  background: #fff;
  border: 1px solid var(--ec-line);
  border-radius: var(--ec-radius);
  padding: 28px 26px;
  box-shadow: var(--ec-shadow);
  margin-top: 20px;
}
.ec-cart__head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--ec-line);
}
.ec-cart__head h3 {
  margin: 0; font-weight: 800; font-size: 1.15rem;
  letter-spacing: -.015em;
}
.ec-cart__count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ec-muted);
}
.ec-cart__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px; padding: 12px 0;
  border-bottom: 1px dashed var(--ec-line);
  align-items: center;
}
.ec-cart__row:last-child { border-bottom: 0; }
.ec-cart__row strong { font-weight: 700; color: var(--ec-text); }
.ec-cart__row span { font-size: .88rem; color: var(--ec-text-2); }
.ec-cart__price {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  color: var(--ec-green-2);
}

/* =========================================================
   FAQ - checkout drawer
   ========================================================= */
.ec-faq {
  display: flex; flex-direction: column;
  gap: 0;
  background: #fff;
  border: 1px solid var(--ec-line);
  border-radius: var(--ec-radius);
  overflow: hidden;
  margin-top: 20px;
}
.ec-faq details {
  border-bottom: 1px solid var(--ec-line);
}
.ec-faq details:last-child { border-bottom: 0; }
.ec-faq summary {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 700; font-size: 1.02rem;
  letter-spacing: -.01em;
  color: var(--ec-text);
  list-style: none;
  transition: background .15s ease;
}
.ec-faq summary::-webkit-details-marker { display: none; }
.ec-faq summary:hover { background: var(--ec-bg-2); }
.ec-faq summary::after {
  content: "+";
  font-weight: 900; font-size: 1.4rem;
  color: var(--ec-coral);
  transition: transform .25s ease, color .15s ease;
  line-height: 1;
}
.ec-faq details[open] summary { background: var(--ec-mint); color: var(--ec-forest); border-bottom: 2px solid var(--ec-green); }
.ec-faq details[open] summary::after { transform: rotate(45deg); color: var(--ec-green-2); }
.ec-faq__a {
  padding: 0 24px 22px;
  font-size: .95rem; line-height: 1.6;
  color: var(--ec-text-2);
  margin: 0;
}

/* =========================================================
   CTA
   ========================================================= */
.ec-cta {
  text-align: center;
  padding: 60px 32px;
  background:
    radial-gradient(circle at 0% 0%, rgba(0,210,106,.20) 0%, transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(255,90,78,.16) 0%, transparent 40%),
    var(--ec-forest);
  border-radius: var(--ec-radius);
  border: 1px solid var(--ec-green);
  color: #fff;
}
.ec-cta h2 {
  font-weight: 900; font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -.025em;
  margin: 0 0 14px;
  color: #fff;
}
.ec-cta h2 .ec-pop { color: var(--ec-green); }
.ec-cta p {
  font-size: 1.05rem; line-height: 1.5;
  color: rgba(255,255,255,.82);
  max-width: 640px;
  margin: 0 auto 24px;
}
.ec-cta__row { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* keyword cloud */
.ec-keywords {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 30px;
  justify-content: center;
}
.ec-keywords span {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--ec-muted);
  padding: 5px 12px;
  background: #fff;
  border: 1px solid var(--ec-line);
  border-radius: 999px;
  transition: all .15s ease;
}
.ec-keywords span:hover {
  color: var(--ec-green-2);
  border-color: var(--ec-green);
  background: var(--ec-mint);
}
