/* =========================================================
   DigieSales — homepage main stylesheet
   Vanilla CSS · no framework · mobile-first · BEM-ish
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --ink: #0d1230;
  --ink-2: #1b2048;
  --muted: #6b7280;
  --muted-2: #9aa3b8;
  --bg: #ffffff;
  --bg-soft: #f6f7fb;
  --bg-soft-2: #eef1f7;
  --border: #e6e9f2;
  --accent: #2f6bff;
  --accent-2: #1d4ed8;
  --purple: #6c5ce7;
  --teal: #00cec9;
  --green: #16a34a;
  --green-bg: #e7f8ee;
  --red: #dc2626;
  --red-bg: #fdebec;
  --amber: #f59e0b;
  --amber-bg: #fff5e6;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 4px 12px rgba(13,18,48,.05);
  --shadow:    0 18px 40px -16px rgba(13,18,48,.18);
  --shadow-lg: 0 30px 60px -20px rgba(13,18,48,.22), 0 8px 20px rgba(13,18,48,.06);

  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;

  --container: 1180px;
  --section-y: clamp(4rem, 8vw, 7rem);
}

/* ---------- Base ---------- */
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
}
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: -.01em; line-height: 1.15; }
.h2 { font-size: clamp(1.85rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.1rem; font-weight: 600; }
.muted { color: var(--muted); }
.eyebrow { display: inline-block; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

.grad {
  background: linear-gradient(90deg, #2f6bff 0%, #6c5ce7 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.grad-bright {
  background: linear-gradient(90deg, #6cb1ff 0%, #b8a8ff 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  --pad-x: 1.25rem;
  --pad-y: .65rem;
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  padding: var(--pad-y) var(--pad-x);
  font-weight: 500; font-size: .95rem;
  border-radius: 999px;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn--lg { --pad-x: 1.6rem; --pad-y: .85rem; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--accent); transform: translateY(-1px); box-shadow: 0 12px 26px -10px rgba(47,107,255,.55); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--outline { background: #fff; color: var(--ink); border: 1px solid var(--border); }
.btn--outline:hover { border-color: var(--ink); }
.btn--ghost { color: var(--ink); }
.btn--ghost:hover { color: var(--accent); }
.btn--play { color: var(--ink); padding-inline: .5rem; }
.btn--play .play {
  width: 36px; height: 36px; border-radius: 50%; background: #fff;
  border: 1px solid var(--border); display: inline-grid; place-items: center; color: var(--ink);
}
.btn--play:hover .play { border-color: var(--ink); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.nav.is-scrolled { border-bottom-color: var(--border); box-shadow: 0 4px 24px rgba(13,18,48,.04); }
.nav__inner { display: flex; align-items: center; gap: 1.25rem; padding-block: .9rem; }
.brand { display: inline-flex; align-items: center; gap: .55rem; font-weight: 700; }
.brand__mark { width: 28px; height: 28px; display: inline-grid; place-items: center; }
.brand__name { font-family: var(--font-display); font-size: 1.15rem; }
.nav__menu { display: none; gap: .25rem; margin-left: 1.5rem; }
.nav__menu a {
  padding: .5rem .9rem; font-size: .94rem; font-weight: 500;
  color: var(--ink); border-radius: 8px; transition: color .15s, background .15s;
}
.nav__menu a:hover { color: var(--accent); }
.nav__cta { display: none; margin-left: auto; gap: .5rem; align-items: center; }
.nav__toggle {
  margin-left: auto; width: 40px; height: 40px; display: grid; place-items: center; gap: 4px;
  border-radius: 8px;
}
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (min-width: 880px) {
  .nav__menu { display: inline-flex; }
  .nav__cta  { display: inline-flex; }
  .nav__toggle { display: none; }
}

/* Mobile nav drawer */
@media (max-width: 879px) {
  .nav__menu {
    position: fixed; top: 64px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    flex-direction: column; gap: 0; padding: .5rem 1.25rem 1.25rem;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .25s, opacity .25s;
  }
  .nav__menu a { padding: .9rem .25rem; border-bottom: 1px solid var(--border); }
  .nav__menu a:last-child { border-bottom: 0; }
  .nav.is-open .nav__menu { display: flex; transform: none; opacity: 1; pointer-events: auto; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding: 9rem 0 4rem; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 80% 0%, rgba(108,92,231,.10), transparent 60%),
    radial-gradient(50% 50% at 0% 0%, rgba(47,107,255,.10), transparent 60%);
  pointer-events: none;
}
.hero__inner { position: relative; text-align: center; }
.hero__title { font-size: clamp(2.1rem, 4.8vw, 3.6rem); margin-top: 1rem; }
.hero__lead {
  color: var(--muted); font-size: 1.05rem; max-width: 640px;
  margin: 1.25rem auto 2rem;
}
.hero__actions { display: inline-flex; gap: .9rem; flex-wrap: wrap; justify-content: center; }
.hero__shot {
  position: relative; max-width: 1080px; margin: 3.5rem auto 0;
}
.shot {
  position: relative; border-radius: var(--radius-lg);
  border: 1px solid var(--border); background: #fff;
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.shot__img { width: 100%; height: auto; display: block; }

.float {
  position: absolute; background: #fff; border: 1px solid var(--border);
  border-radius: 14px; padding: .85rem 1rem;
  box-shadow: 0 18px 40px -12px rgba(13,18,48,.2);
  display: flex; gap: .8rem; align-items: center;
  min-width: 210px;
  animation: floaty 6s ease-in-out infinite;
}
.float--tl { top: 38%; left: -1.25rem; animation-delay: -2s; }
.float--tr { top: 14%; right: -1.25rem; }
.float__ic {
  width: 36px; height: 36px; border-radius: 10px;
  background: #eef4ff; color: var(--accent);
  display: grid; place-items: center; flex-shrink: 0;
}
.float__ic--green { background: var(--green-bg); color: var(--green); }
.float__label { font-size: .72rem; color: var(--muted); }
.float__value { font-weight: 700; font-size: .95rem; }
.float__value em { font-style: normal; font-weight: 600; color: var(--green); font-size: .8rem; margin-left: .25rem; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@media (max-width: 720px) {
  .float--tl, .float--tr { display: none; }
}

/* ---------- Sections ---------- */
.section { padding: var(--section-y) 0; }
.section--soft  { background: var(--bg-soft); }
.section--soft2 { background: var(--bg-soft-2); }
.section__head { max-width: 640px; margin: 0 auto 3rem; }
.section__head--center { text-align: center; }
.section__head h2 + p { margin-top: 1rem; }

.head-row {
  display: flex; align-items: end; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem;
}
.head-row__nav { display: flex; gap: .5rem; }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 1.25rem; }
.grid--2     { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.grid--3     { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.grid--split { grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.grid--prices{ gap: 1.5rem; align-items: stretch; }

@media (min-width: 920px) {
  .grid--split { grid-template-columns: 1fr 1.1fr; gap: 4rem; }
  .grid--rev > *:first-child { order: 2; }
  .grid--rev > *:last-child { order: 1; }
}

/* ---------- Cards & icons ---------- */
.card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #d6dbe8; }
.card h3 { margin-bottom: .5rem; }
.card p  { color: var(--muted); font-size: .94rem; }

.card--feature { display: flex; flex-direction: column; }
.ic {
  width: 42px; height: 42px; border-radius: 10px;
  display: inline-grid; place-items: center; margin-bottom: 1rem;
}
.ic--blue  { background: #eef4ff; color: var(--accent); }
.ic--red   { background: var(--red-bg); color: var(--red); }
.ic--amber { background: var(--amber-bg); color: var(--amber); }

/* ---------- Pills & utilities ---------- */
.pill {
  display: inline-flex; align-items: center; gap: .25rem;
  padding: .15rem .55rem; border-radius: 999px;
  font-size: .72rem; font-weight: 600;
}
.pill--green { background: var(--green-bg); color: var(--green); }
.pill--red   { background: var(--red-bg); color: var(--red); }

.round {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--border); background: #fff; color: var(--ink);
  transition: background .18s, color .18s, border-color .18s;
}
.round:hover { border-color: var(--ink); }
.round--dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.round--dark:hover { background: var(--accent); border-color: var(--accent); }

.link-arrow {
  display: inline-flex; align-items: center; gap: .35rem;
  color: var(--accent); font-weight: 600; margin-top: 1.25rem;
}
.link-arrow--inline { margin: 0; }
.link-arrow svg { transition: transform .18s; }
.link-arrow:hover svg { transform: translateX(3px); }

/* ---------- Analyze chart card ---------- */
.chart-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem;
  box-shadow: 0 24px 50px -24px rgba(13,18,48,.18);
}
.chart-card__head { display: flex; align-items: end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.chart-card__eyebrow {
  font-size: .72rem; letter-spacing: .14em; font-weight: 600;
  color: var(--muted); text-transform: uppercase;
}
.chart-card__stats { display: flex; gap: 1.5rem; margin-top: .5rem; }
.chart-card__stats > div { display: flex; flex-direction: column; gap: .25rem; }
.chart-card__stats strong { font-family: var(--font-display); font-size: 1.4rem; }
.chart {
  width: 100%; height: 220px; display: block;
  stroke-dasharray: 2000;
  stroke-dashoffset: 0;
}
.chart-card__foot { display: flex; align-items: center; gap: .65rem; margin-top: .5rem; }

.check { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.check li {
  display: flex; gap: 1rem; padding: .9rem 0;
  border-bottom: 1px solid var(--border);
}
.check li:last-child { border-bottom: 0; }
.check__dot {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: #eef4ff; color: var(--accent); display: inline-grid; place-items: center;
  margin-top: 2px;
  position: relative;
}
.check__dot::after {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
}
.check h4 { font-size: .98rem; font-weight: 600; margin-bottom: .15rem; }
.check p  { color: var(--muted); font-size: .88rem; }

/* ---------- Collaborate / team ---------- */
.info {
  display: flex; gap: 1rem; align-items: center;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.1rem 1.25rem; margin-top: 1.5rem;
}
.info__ic {
  width: 42px; height: 42px; border-radius: 10px;
  background: #eef4ff; color: var(--accent);
  display: grid; place-items: center; flex-shrink: 0;
}
.info p { color: var(--muted); font-size: .9rem; margin-top: .15rem; }

.team { position: relative; min-height: 360px; }
.team__blob {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #dbe6ff, #f1f5ff 70%);
}
.team__avatar {
  position: absolute; border-radius: 50%; overflow: hidden;
  background: linear-gradient(135deg, var(--c1, #ffd1a8), var(--c2, #ff9f6e));
  box-shadow: 0 18px 40px -12px rgba(13,18,48,.2);
  border: 6px solid #fff;
}
.team__avatar svg { width: 100%; height: 100%; }
.team__avatar--lg { width: 220px; height: 220px; left: 25%; top: 30%; }
.team__avatar--sm { width: 140px; height: 140px; right: 18%; bottom: 20%; }
.team__tag {
  position: absolute; bottom: 8%; left: 8%;
  background: #fff; border: 1px solid var(--border); border-radius: 999px;
  padding: .35rem .8rem; font-size: .82rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: .5rem;
  box-shadow: var(--shadow-sm);
}
.team__tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); }

/* ---------- Testimonial ---------- */
.testimonial {
  position: relative; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.25rem 2.5rem 2.5rem;
  overflow: hidden;
}
.testimonial__num {
  font-family: var(--font-display); font-size: 3rem; font-weight: 700;
  color: var(--bg-soft-2); line-height: 1; display: block;
}
.testimonial__quote { font-size: 1.15rem; line-height: 1.6; max-width: 600px; margin: 1rem 0 1.5rem; }
.testimonial__author { display: flex; align-items: center; gap: .75rem; }
.avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, #2f6bff, #6c5ce7); }
.testimonial__author span { display: block; }
.testimonial__mark {
  position: absolute; right: 2rem; bottom: 1rem;
  font-family: var(--font-display); font-size: 4rem; line-height: 1;
  color: var(--bg-soft-2); user-select: none;
}
.testimonial__count { display: block; margin-top: 2rem; }

/* ---------- Showcase grid widgets ---------- */
.flow {
  display: flex; align-items: center; justify-content: space-between;
  gap: .5rem; margin-top: 1.5rem;
  background: var(--bg-soft); border-radius: 12px; padding: 1rem;
}
.flow__node {
  width: 38px; height: 38px; border-radius: 50%;
  background: #fff; border: 1px solid var(--border);
  display: grid; place-items: center; color: var(--ink);
}
.flow__node--ok { background: var(--green-bg); border-color: var(--green-bg); color: var(--green); }
.flow__line { flex: 1; height: 2px; background: repeating-linear-gradient(90deg, var(--muted-2) 0 4px, transparent 4px 8px); }

.bubbles { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.bubbles span {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--b, #2f6bff);
  color: #fff; display: grid; place-items: center;
  font-weight: 700; font-size: .85rem;
}

.shield {
  display: grid; place-items: center; margin-top: 1.5rem;
  width: 84px; height: 84px; border-radius: 50%;
  background: #eef4ff; color: var(--accent);
  margin-inline: auto;
}

.bars { margin-top: 1.5rem; display: grid; gap: .35rem; }
.bars > div { display: flex; justify-content: space-between; font-size: .82rem; color: var(--muted); }
.bars__pct { color: var(--ink); font-weight: 600; }
.bar { height: 8px; border-radius: 999px; background: var(--bg-soft-2); overflow: hidden; }
.bar i { display: block; height: 100%; background: linear-gradient(90deg, #2f6bff, #6c5ce7); border-radius: inherit; transition: width 1s ease; }

/* ---------- Pricing ---------- */
.price {
  position: relative;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.price:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.price__name { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--muted); }
.price > p { color: var(--muted); font-size: .9rem; margin: .5rem 0 1.25rem; }
.price__amount {
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 700;
  line-height: 1; margin-bottom: 1rem;
}
.price__amount small { font-size: .9rem; font-weight: 500; color: var(--muted); margin-left: .25rem; }
.price__list { margin-top: 1.25rem; display: grid; gap: .15rem; }
.price__list li {
  display: flex; align-items: center; gap: .55rem; font-size: .92rem;
  padding: .55rem 0; border-bottom: 1px solid var(--border);
}
.price__list li::before {
  content: ""; width: 14px; height: 14px; border-radius: 50%;
  background: var(--green-bg);
  background-image: radial-gradient(circle, var(--green) 38%, var(--green-bg) 39%);
  flex-shrink: 0;
}
.price__list li:last-child { border-bottom: 0; }
.price__badge {
  position: absolute; top: -12px; right: 1.25rem;
  background: var(--accent); color: #fff;
  padding: .25rem .65rem; border-radius: 999px; font-size: .7rem; font-weight: 600;
  letter-spacing: .04em;
}

.price--featured {
  background: var(--ink); color: #fff; border-color: var(--ink);
}
.price--featured > p   { color: rgba(255,255,255,.75); }
.price--featured .price__name { color: rgba(255,255,255,.75); }
.price--featured .price__list li { color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.12); }
.price--featured .price__list li::before {
  background: rgba(255,255,255,.15);
  background-image: radial-gradient(circle, #fff 38%, rgba(255,255,255,.15) 39%);
}
@media (min-width: 920px) {
  .price--featured { transform: translateY(-12px); }
  .price--featured:hover { transform: translateY(-16px); }
}

/* ---------- FAQ ---------- */
.faq { display: grid; }
.faq__item { border-bottom: 1px solid var(--border); padding: 1rem 0; }
.faq__item summary {
  list-style: none; cursor: pointer; font-weight: 500;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: .25rem 0;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon {
  width: 22px; height: 22px; flex-shrink: 0; position: relative;
  transition: transform .25s;
}
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  background: var(--ink);
}
.faq__icon::before { width: 12px; height: 2px; }
.faq__icon::after  { width: 2px; height: 12px; transition: transform .25s; }
.faq__item[open] .faq__icon::after { transform: rotate(90deg); }
.faq__item p { color: var(--muted); margin-top: .75rem; font-size: .94rem; line-height: 1.65; }

/* ---------- Impact panel ---------- */
.impact {
  position: relative; overflow: hidden;
  background: var(--ink); color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4rem);
}
.impact__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 100% at 100% 0%, rgba(108,92,231,.45), transparent 60%),
    radial-gradient(60% 100% at 0% 100%, rgba(47,107,255,.30), transparent 60%);
}
.impact__grid {
  position: relative; display: grid; gap: 2rem;
  grid-template-columns: 1fr;
  align-items: end;
}
.impact__lead { color: rgba(255,255,255,.75); margin-top: .5rem; }
.impact__stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; text-align: center;
}
.impact__stats > div { display: flex; flex-direction: column; gap: .25rem; align-items: center; }
.impact__num { display: inline-flex; align-items: baseline; gap: .15rem; line-height: 1; }
.impact__num em {
  font-style: normal;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.6vw, 1.6rem);
  font-weight: 600;
  color: rgba(255,255,255,.85);
}
.impact__stats strong {
  font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700;
}
.impact__stats span { color: rgba(255,255,255,.7); font-size: .88rem; }
@media (min-width: 920px) { .impact__grid { grid-template-columns: 1fr 1fr; } .impact__stats { text-align: right; } .impact__stats > div { align-items: end; } }

/* ---------- Final CTA ---------- */
.cta { display: grid; gap: 2rem; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 920px) { .cta { grid-template-columns: 1.6fr 1fr; } }
.cta .h2 { margin-top: .75rem; }
.cta .muted { margin: 1rem 0 1.5rem; max-width: 520px; }

.cta__circle {
  width: 132px; height: 132px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: grid; place-items: center; margin-inline: auto;
  box-shadow: 0 24px 60px -10px rgba(47,107,255,.55);
  transition: transform .25s, box-shadow .25s;
}
.cta__circle:hover { transform: rotate(-8deg) scale(1.05); }
@media (min-width: 920px) { .cta__circle { margin: 0 0 0 auto; } }

/* ---------- Footer ---------- */
.footer { padding: 4rem 0 1.5rem; border-top: 1px solid var(--border); }
.footer__grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer__tag { margin-top: .9rem; max-width: 280px; }
.footer h6 { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: .9rem; }
.footer a { display: block; padding: .35rem 0; font-size: .92rem; color: var(--ink); }
.footer a:hover { color: var(--accent); }
.footer__bar {
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  font-size: .85rem;
}
.socials { display: flex; gap: .75rem; }
.socials a { color: var(--muted); padding: .25rem; }
.socials a:hover { color: var(--ink); }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 40;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: opacity .2s, transform .2s, background .2s;
  box-shadow: var(--shadow);
}
.to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { background: var(--accent); }

/* ---------- Reveal animations ---------- */
[data-reveal] {
  opacity: 0; transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].is-revealed { opacity: 1; transform: none; }

/* ---------- Selection ---------- */
::selection { background: rgba(47,107,255,.18); color: var(--ink); }

/* =========================================================
   ADDED: ported elements from OLDSITE (light-themed)
   ========================================================= */

/* ---------- Eyebrow pulse ---------- */
.eyebrow__pulse {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #16a34a;
  margin-right: .55rem;
  vertical-align: middle;
  box-shadow: 0 0 0 0 rgba(22,163,74,.55);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(22,163,74,.55); }
  70%  { box-shadow: 0 0 0 10px rgba(22,163,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
}

/* ---------- Hero proof checklist ---------- */
.hero__proof {
  list-style: none;
  margin: 1.4rem 0 1.6rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem 1.4rem;
  font-size: .95rem;
  color: var(--ink);
}
.hero__proof li {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.hero__proof-tick {
  display: inline-grid;
  place-items: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2f6bff, #6c5ce7);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

/* ---------- Email signup ---------- */
.signup { max-width: 460px; margin-top: 1rem; }
.signup__row {
  display: flex;
  gap: .5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px;
  box-shadow: 0 6px 20px rgba(13,18,48,.05);
}
.signup__row:focus-within {
  border-color: #2f6bff;
  box-shadow: 0 0 0 4px rgba(47,107,255,.12);
}
.signup__row input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 0 14px;
  font: inherit;
  color: var(--ink);
  outline: none;
  min-width: 0;
}
.signup__row input::placeholder { color: #9aa3b8; }
.signup__row .btn { white-space: nowrap; padding: .65rem 1rem; }
.signup__fine {
  margin: .6rem 0 0;
  font-size: .8rem;
  color: #9aa3b8;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* ---------- Feature proof strip ---------- */
.feat-proof {
  list-style: none;
  margin: 2rem auto 1rem;
  padding: 1.2rem 0;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.feat-proof li {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding: .25rem 1.1rem;
  border-right: 1px solid var(--border);
  text-align: left;
}
.feat-proof li:last-child { border-right: 0; }
.feat-proof__val {
  font-family: 'Plus Jakarta Sans', Inter, sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 2.8vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(135deg, #2f6bff, #6c5ce7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.feat-proof__val em { font-size: .65em; font-style: normal; opacity: .75; }
.feat-proof__lbl { font-size: .82rem; color: #6b7280; line-height: 1.4; }
@media (max-width: 720px) {
  .feat-proof { grid-template-columns: repeat(2, 1fr); }
  .feat-proof li { border-right: 0; border-bottom: 1px solid var(--border); padding-bottom: .85rem; }
  .feat-proof li:nth-child(3),
  .feat-proof li:nth-child(4) { border-bottom: 0; padding-bottom: .25rem; }
}

/* ---------- "Replaces the stack of" ---------- */
.feat-replaces {
  margin: 1.2rem auto 0;
  max-width: 900px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .85rem;
}
.feat-replaces__lbl {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #9aa3b8;
  margin-right: .25rem;
}
.feat-replaces__pill {
  padding: .35rem .75rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  color: #6b7280;
  text-decoration: line-through;
  text-decoration-color: rgba(13,18,48,.25);
}

/* ---------- Bento grid ---------- */
.bento {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 1rem;
}
.bento__tile {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
}
.bento__tile::before {
  content: "";
  position: absolute; left: 0; top: 0; right: 0; height: 3px;
  background: var(--c, #2f6bff);
  opacity: .85;
}
.bento__tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(13,18,48,.08);
  border-color: rgba(47,107,255,.25);
}
.bento__tile--hero { grid-column: span 2; grid-row: span 2; }
.bento__tile--wide { grid-column: span 2; }
.bento__tile--tall { grid-row: span 2; }
.bento__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: .25rem;
}
.bento__tag {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c, #2f6bff);
}
.bento__tile h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}
.bento__tile p {
  margin: 0;
  color: #6b7280;
  font-size: .92rem;
  line-height: 1.55;
}
.bento__viz { margin-top: auto; padding-top: .75rem; }
.bv-kpis { display: flex; gap: 1.25rem; flex-wrap: wrap; margin-bottom: .75rem; }
.bv-kpi { display: flex; flex-direction: column; gap: 2px; }
.bv-kpi__lbl { font-size: .7rem; color: #9aa3b8; text-transform: uppercase; letter-spacing: .08em; }
.bv-kpi__val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.bv-kpi__val.grad {
  background: linear-gradient(135deg, #2f6bff, #6c5ce7);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bv-kpi__d { font-size: .72rem; color: #16a34a; font-weight: 600; }
.bv-spark { width: 100%; height: 70px; }

.bv-pulse {
  position: relative;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding-top: .75rem;
  font-size: .9rem;
  color: var(--ink);
}
.bv-pulse b { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; }
.bv-ping {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #0aa39a;
  position: relative;
}
.bv-ping::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  background: #0aa39a;
  animation: ping 1.6s ease-out infinite;
}
.bv-pulse .bv-ping:nth-child(2)::after { animation-delay: .4s; }
.bv-pulse .bv-ping:nth-child(3)::after { animation-delay: .8s; }
@keyframes ping {
  0%   { transform: scale(1); opacity: .7; }
  80%, 100% { transform: scale(2.4); opacity: 0; }
}

.bento__stat {
  margin-top: auto;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  background: linear-gradient(135deg, #2f6bff, #6c5ce7);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bento__stat em {
  display: block;
  font-style: normal;
  font-size: .75rem;
  font-weight: 500;
  color: #9aa3b8;
  letter-spacing: .04em;
  -webkit-text-fill-color: initial;
  background: none;
  margin-top: .15rem;
}
.bento__pill {
  margin-top: auto;
  display: inline-block;
  align-self: flex-start;
  padding: .45rem .8rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
}
.bento__pill--warn { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }
.bento__pill--ok   { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }

.bento__chips { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: auto; padding-top: .75rem; }
.bc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  padding: .35rem .7rem;
  border-radius: 999px;
}
.bc--vip  { background: rgba(108,92,231,.10); color: #6c5ce7; }
.bc--risk { background: rgba(220,38,38,.08); color: #dc2626; }
.bc--new  { background: rgba(22,163,74,.10); color: #16a34a; }

.bv-funnel { margin-top: .5rem; display: flex; flex-direction: column; gap: .5rem; }
.bv-bar {
  position: relative;
  display: flex; justify-content: space-between; align-items: center;
  padding: .55rem .85rem;
  border-radius: 10px;
  background: var(--bg-soft);
  font-size: .85rem;
  overflow: hidden;
}
.bv-bar::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(47,107,255,.14), rgba(108,92,231,.06));
  width: var(--w, 100%);
}
.bv-bar span, .bv-bar b { position: relative; z-index: 1; }
.bv-bar b { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: var(--ink); }

.bento__actions { list-style: none; margin: .5rem 0 0; padding: 0; display: flex; flex-direction: column; gap: .5rem; }
.bento__actions li {
  display: flex; align-items: center; gap: .6rem;
  font-size: .9rem; color: var(--ink);
}
.ba-pri {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .65rem;
  letter-spacing: .1em;
  font-weight: 800;
  padding: .25rem .5rem;
  border-radius: 6px;
}
.ba-pri--high { background: rgba(220,38,38,.10); color: #dc2626; }
.ba-pri--med  { background: rgba(245,158,11,.12); color: #b45309; }
.ba-pri--low  { background: rgba(108,92,231,.10); color: #6c5ce7; }

@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__tile--hero { grid-column: span 2; grid-row: auto; }
  .bento__tile--wide { grid-column: span 2; }
  .bento__tile--tall { grid-row: auto; }
}
@media (max-width: 600px) {
  .bento { grid-template-columns: 1fr; }
  .bento__tile,
  .bento__tile--hero,
  .bento__tile--wide,
  .bento__tile--tall { grid-column: auto; grid-row: auto; }
}

/* ---------- Stats strip ---------- */
.stats-strip { padding: 2.5rem 0; }
.stats-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.6rem 1rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.stats-strip .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
}
.stats-strip .stat strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #2f6bff, #6c5ce7);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stats-strip .stat em {
  font-style: normal;
  font-size: 1rem;
  color: #6b7280;
  margin-left: .15rem;
}
.stats-strip .stat span {
  font-size: .82rem;
  color: #6b7280;
  letter-spacing: .02em;
}
@media (max-width: 720px) {
  .stats-strip__inner { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Digit AI chat ---------- */
.digit {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 24px 60px rgba(13,18,48,.06);
  position: relative;
}
.digit__head {
  display: flex; gap: .9rem; align-items: center; margin-bottom: .85rem;
}
.digit__avatar svg { display: block; border-radius: 12px; }
.digit__brand {
  font-size: .65rem;
  letter-spacing: .14em;
  font-weight: 700;
  color: #9aa3b8;
  display: block;
}
.digit__head h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  margin: 0;
  color: var(--ink);
}
.digit__status {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .75rem; color: #16a34a;
}
.digit__status i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 0 rgba(22,163,74,.6);
  animation: pulse 1.8s infinite;
}
.digit__desc { color: #6b7280; font-size: .92rem; margin: 0 0 1rem; }
.digit__chat {
  display: flex; flex-direction: column; gap: .75rem;
  max-height: 460px; overflow-y: auto;
  padding: .75rem;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.digit__chat::-webkit-scrollbar { width: 6px; }
.digit__chat::-webkit-scrollbar-thumb { background: rgba(13,18,48,.15); border-radius: 3px; }
.chat__msg {
  max-width: 88%;
  padding: .65rem .85rem;
  border-radius: 14px;
  font-size: .87rem;
  line-height: 1.5;
}
.chat__msg p { margin: 0 0 .35rem; }
.chat__msg p:last-child { margin-bottom: 0; }
.chat__msg--user {
  align-self: flex-end;
  background: linear-gradient(135deg, #2f6bff, #6c5ce7);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.chat__msg--bot {
  align-self: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
  color: var(--ink);
}
.chat__who {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  color: #6c5ce7;
  margin-bottom: .25rem;
  letter-spacing: .03em;
}
.chat__hint {
  font-size: .8rem;
  color: #6b7280;
  border-top: 1px dashed var(--border);
  padding-top: .35rem;
  margin-top: .35rem !important;
}
.chat__pill {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  padding: .15rem .5rem;
  border-radius: 999px;
  margin-right: .25rem;
}
.chat__pill--warn { background: #fef3c7; color: #92400e; }
.chat__pill--info { background: rgba(108,92,231,.10); color: #6c5ce7; }
.chat__cta { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .6rem; }
.chat__cta button {
  font: inherit; font-size: .78rem; font-weight: 600;
  padding: .35rem .7rem;
  border-radius: 8px;
  border: 1px solid rgba(108,92,231,.30);
  background: rgba(108,92,231,.08);
  color: #6c5ce7;
  cursor: pointer;
}
.chat__cta button:hover { background: rgba(108,92,231,.15); }
.digit__tags {
  display: flex; flex-wrap: wrap; gap: .4rem;
  margin-top: 1rem;
}
.digit__tag {
  font-size: .72rem;
  padding: .3rem .65rem;
  border-radius: 999px;
  background: var(--bg-soft);
  color: #6b7280;
  border: 1px solid var(--border);
}

/* ---------- Roadmap pills ---------- */
.roadmap {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  justify-content: center;
  margin-top: 2rem;
}
.roadmap__pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  font-size: .88rem;
  color: var(--ink);
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease;
}
.roadmap__pill:hover {
  border-color: rgba(47,107,255,.4);
  transform: translateY(-1px);
}
.roadmap__pill em {
  font-style: normal;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: .15rem .45rem;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(47,107,255,.12), rgba(108,92,231,.12));
  color: #6c5ce7;
}
.roadmap__pill--req {
  background: linear-gradient(135deg, #2f6bff, #6c5ce7);
  border-color: transparent;
  color: #fff;
  font-weight: 600;
}
.roadmap__pill--req:hover { color: #fff; }

/* =========================================================
   ADDED: Dashboard showcase (dark mockups on light bg)
   ========================================================= */

.pill-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .4rem .9rem;
  border-radius: 999px;
  background: rgba(0,206,201,.10);
  border: 1px solid rgba(0,206,201,.30);
  color: #0aa39a;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.pill-eyebrow__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #0aa39a;
  box-shadow: 0 0 0 0 rgba(10,163,154,.55);
  animation: pulse 1.8s infinite;
}

.screen {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
}
.screen--reverse .screen__meta { order: 2; }
.screen__tag {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--c, #6c5ce7) 12%, transparent);
  color: var(--c, #6c5ce7);
  border: 1px solid color-mix(in srgb, var(--c, #6c5ce7) 25%, transparent);
  margin-bottom: 1rem;
}
.screen__meta h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 .75rem;
  color: var(--ink);
}
.screen__meta p { margin: 0 0 1.25rem; line-height: 1.7; }
.screen__bullets { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .65rem; }
.screen__bullets li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--ink);
  font-size: .94rem;
  line-height: 1.55;
}
.screen__bullets li::before {
  content: "";
  position: absolute; left: 0; top: .35rem;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2f6bff, #6c5ce7);
  box-shadow: 0 4px 10px rgba(47,107,255,.25);
}
.screen__bullets li::after {
  content: "";
  position: absolute; left: 5px; top: .55rem;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
}

@media (max-width: 900px) {
  .screen { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 0; }
  .screen--reverse .screen__meta { order: 0; }
}

/* ----- Mockup chrome (dark) ----- */
.mockup {
  background: linear-gradient(180deg, #1a1840 0%, #0f0d2e 100%);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 30px 80px rgba(13,18,48,.25), 0 8px 24px rgba(13,18,48,.12);
  overflow: hidden;
  color: #fff;
}
.mockup__chrome {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px;
  background: rgba(0,0,0,.20);
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative;
}
.mockup__chrome span {
  width: 11px; height: 11px; border-radius: 50%;
  background: #ff6b6b;
}
.mockup__chrome span:nth-child(2) { background: #fdcb6e; }
.mockup__chrome span:nth-child(3) { background: #20bf6b; }
.mockup__chrome em {
  position: absolute;
  right: 16px; top: 50%; transform: translateY(-50%);
  font-style: normal;
  font-size: 11px;
  color: rgba(255,255,255,.55);
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: .04em;
}
.mockup__body { padding: 18px; display: flex; flex-direction: column; gap: 14px; }

/* ----- Overview screen ----- */
.mk-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.mk-kpi {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex; flex-direction: column; gap: 4px;
}
.mk-kpi__lbl {
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
}
.mk-kpi__val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: #fff;
}
.mk-kpi__trend { font-size: 10px; font-weight: 600; }
.mk-kpi__trend--up   { color: #20bf6b; }
.mk-kpi__trend--flat { color: rgba(255,255,255,.5); }

.mk-split {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 14px;
  align-items: center;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  padding: 12px;
}
.mk-ring svg { width: 100%; height: auto; max-width: 130px; }
.mk-chart svg { width: 100%; height: 110px; }

.mk-funnel { display: flex; flex-direction: column; gap: 6px; }
.mk-funnel__bar {
  position: relative;
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 12px;
  color: #fff;
  background: rgba(255,255,255,.04);
  overflow: hidden;
}
.mk-funnel__bar::before {
  content: "";
  position: absolute; inset: 0;
  width: var(--w, 100%);
  background: color-mix(in srgb, var(--c, #6c5ce7) 55%, transparent);
}
.mk-funnel__bar span,
.mk-funnel__bar b { position: relative; z-index: 1; }
.mk-funnel__bar b { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; }

/* ----- Strategy Room ----- */
.mk-rh-hero {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(108,92,231,.6), rgba(0,206,201,.4));
  border: 1px solid rgba(255,255,255,.08);
}
.mk-rh-hero__left { display: flex; align-items: baseline; gap: 10px; }
.mk-rh-hero__grade {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: #fff;
}
.mk-rh-hero__lbl { font-size: 13px; color: rgba(255,255,255,.85); }
.mk-rh-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.25);
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
}
.mk-rh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.mk-rh-tile {
  position: relative;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-top: 2px solid var(--c, #6c5ce7);
  display: flex; flex-direction: column; gap: 4px;
}
.mk-rh-tile__lbl {
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  font-weight: 600;
}
.mk-rh-tile__val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
}
.mk-rh-tile__chip {
  position: absolute;
  top: 8px; right: 8px;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}
.mk-rh-tile__chip--ok  { background: rgba(32,191,107,.18); color: #20bf6b; }
.mk-rh-tile__chip--mid { background: rgba(253,203,110,.18); color: #fdcb6e; }
.mk-rh-tile__chip--low { background: rgba(255,107,107,.18); color: #ff6b6b; }

.mk-autos { display: flex; flex-direction: column; gap: 6px; }
.mk-auto {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  font-size: 12.5px;
}
.mk-auto__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c, #6c5ce7);
  box-shadow: 0 0 8px color-mix(in srgb, var(--c, #6c5ce7) 50%, transparent);
}
.mk-auto__name { color: rgba(255,255,255,.85); }
.mk-auto__toggle {
  width: 30px; height: 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  position: relative;
  transition: background .25s ease;
}
.mk-auto__toggle::after {
  content: "";
  position: absolute;
  top: 2px; left: 2px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #fff;
  transition: left .25s ease;
}
.mk-auto__toggle--on {
  background: linear-gradient(135deg, #6c5ce7, #00cec9);
}
.mk-auto__toggle--on::after { left: 16px; }

/* ----- Profit Vault ----- */
.mk-pv-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.mk-pv-kpi {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex; flex-direction: column; gap: 4px;
}
.mk-pv-kpi__lbl {
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  font-weight: 600;
}
.mk-pv-kpi__val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
}
.mk-pv-kpi__val--pos { color: #20bf6b; }
.mk-pv-kpi__val--neg { color: #e17055; }

.mk-bars {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  padding: 14px;
}
.mk-bars svg { width: 100%; height: 120px; }
.mk-bars__legend {
  display: flex; gap: 18px;
  margin-top: 8px;
  font-size: 11px;
  color: rgba(255,255,255,.6);
}
.mk-bars__legend span { display: inline-flex; align-items: center; gap: 6px; }
.mk-bars__legend i {
  width: 10px; height: 10px;
  border-radius: 3px;
  display: inline-block;
}

.mk-fees { display: flex; flex-direction: column; gap: 8px; }
.mk-fee {
  display: grid;
  grid-template-columns: 80px 1fr 70px;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,.85);
}
.mk-fee__name { color: rgba(255,255,255,.65); }
.mk-fee__bar {
  height: 8px;
  background: rgba(255,255,255,.06);
  border-radius: 99px;
  overflow: hidden;
}
.mk-fee__bar i { display: block; height: 100%; border-radius: 99px; }
.mk-fee__val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  text-align: right;
  color: #fff;
}

@media (max-width: 600px) {
  .mockup__body { padding: 12px; gap: 10px; }
  .mk-kpi-row, .mk-pv-row { grid-template-columns: repeat(2, 1fr); }
  .mk-rh-grid { grid-template-columns: repeat(2, 1fr); }
  .mk-split { grid-template-columns: 100px 1fr; }
}

/* ============================================================
   Hero slider (3-slide carousel)
   ============================================================ */
.hslider{
  position:relative;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  box-shadow:0 24px 60px rgba(13,18,48,.08);
  overflow:hidden;
}
.hslider__tabs{
  display:flex;
  gap:4px;
  padding:10px 12px 0;
  border-bottom:1px solid var(--border);
  background:#fbfbfd;
  overflow-x:auto;
  scrollbar-width:none;
}
.hslider__tabs::-webkit-scrollbar{display:none}
.hslider__tab{
  appearance:none;
  background:transparent;
  border:0;
  border-bottom:2px solid transparent;
  color:#6b7280;
  font:600 12.5px/1 'Inter',system-ui,sans-serif;
  letter-spacing:.01em;
  padding:10px 12px 11px;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:7px;
  white-space:nowrap;
  transition:color .2s ease, border-color .2s ease;
}
.hslider__tab:hover{color:var(--ink)}
.hslider__tab.is-active{
  color:var(--ink);
  border-bottom-color:var(--accent);
}
.hslider__tab-dot{
  width:6px;height:6px;border-radius:50%;
  background:#cbd2e0;
  transition:background .2s ease;
}
.hslider__tab.is-active .hslider__tab-dot{
  background:linear-gradient(135deg,#2f6bff,#6c5ce7);
}
.hslider__slides{position:relative}
.hslide{
  display:none;
  animation:hslide-in .45s cubic-bezier(.22,1,.36,1);
}
.hslide.is-active{display:block}
.hslide[hidden]{display:none}
.hslide.is-active[hidden]{display:none}
@keyframes hslide-in{
  from{opacity:0;transform:translateY(8px)}
  to{opacity:1;transform:translateY(0)}
}
/* Slide 1 still uses .shot + .float — they're inside .hslide.is-active */
.hslide .shot{position:relative}

/* Inner card chrome for slides 2 & 3 */
.hcard{padding:14px}
.hcard__chrome{
  display:flex;align-items:center;gap:6px;
  padding:0 4px 12px;
  border-bottom:1px solid var(--border);
  margin-bottom:14px;
}
.hcard__chrome > span{
  width:10px;height:10px;border-radius:50%;
  background:#e6e9f2;
}
.hcard__chrome > span:nth-child(1){background:#ff6058}
.hcard__chrome > span:nth-child(2){background:#febc2e}
.hcard__chrome > span:nth-child(3){background:#28c941}
.hcard__chrome em{
  margin-left:auto;
  font-style:normal;
  font:500 11px/1 'Inter',monospace;
  color:#6b7280;
  letter-spacing:.04em;
}
.hcard__body{padding:4px}

/* Slide head */
.hp-slide__head{
  display:flex;align-items:center;justify-content:space-between;
  margin-bottom:14px;
}
.hp-slide__title{
  display:inline-flex;align-items:center;gap:8px;
  font:700 13px/1 'Inter',system-ui,sans-serif;
  color:var(--ink);
}
.hp-slide__title i{
  width:8px;height:8px;border-radius:50%;
  background:#16a34a;
  box-shadow:0 0 0 4px rgba(22,163,74,.15);
  animation:hp-pulse 1.8s ease-in-out infinite;
}
@keyframes hp-pulse{
  0%,100%{box-shadow:0 0 0 4px rgba(22,163,74,.15)}
  50%{box-shadow:0 0 0 7px rgba(22,163,74,.05)}
}
.hp-slide__meta{
  font:500 11px/1 'Inter',system-ui,sans-serif;
  color:#9aa3b8;
}

/* KPI block (slide 2) */
.hp-kpi{
  display:flex;align-items:baseline;gap:10px;
  margin-bottom:6px;
}
.hp-kpi__val{
  font:800 32px/1.05 'Plus Jakarta Sans','Inter',system-ui,sans-serif;
  background:linear-gradient(135deg,#2f6bff,#6c5ce7);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  letter-spacing:-.01em;
}
.hp-kpi__delta{
  display:inline-flex;align-items:center;
  font:700 11.5px/1 'Inter',system-ui,sans-serif;
  color:#16a34a;
  background:rgba(22,163,74,.1);
  padding:5px 9px;
  border-radius:99px;
}
.hp-kpi__sub{
  margin:6px 0 16px;
  font:500 12px/1.4 'Inter',system-ui,sans-serif;
  color:#6b7280;
}

/* Bars (slide 2) */
.hp-bars{display:flex;flex-direction:column;gap:11px}
.hp-bar__row{
  display:grid;
  grid-template-columns:90px 1fr 70px;
  align-items:center;
  gap:12px;
  font:500 12px/1 'Inter',system-ui,sans-serif;
}
.hp-bar__lbl{color:var(--ink)}
.hp-bar__track{
  height:8px;
  background:var(--bg-soft);
  border-radius:99px;
  overflow:hidden;
  position:relative;
}
.hp-bar__fill{
  display:block;height:100%;
  width:0;
  background:linear-gradient(90deg,#2f6bff,#6c5ce7);
  border-radius:99px;
  transition:width 1.4s cubic-bezier(.22,1,.36,1);
}
.hslide.is-active .hp-bar__fill{width:var(--w,0)}
.hp-bar__val{
  text-align:right;
  font-weight:700;
  color:var(--ink);
  font-variant-numeric:tabular-nums;
}

/* Funnel (slide 3) */
.hp-funnel{display:flex;flex-direction:column;gap:8px}
.hp-funnel__row{
  position:relative;
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  gap:14px;
  padding:12px 14px;
  border:1px solid var(--border);
  border-radius:12px;
  background:#fff;
  overflow:hidden;
}
.hp-funnel__row::before{
  content:"";
  position:absolute;
  inset:0;
  width:0;
  background:linear-gradient(90deg,rgba(47,107,255,.10),rgba(108,92,231,.10));
  transition:width 1.2s cubic-bezier(.22,1,.36,1);
  pointer-events:none;
  z-index:0;
}
.hslide.is-active .hp-funnel__row::before{width:var(--w,0)}
.hp-funnel__lbl,.hp-funnel__num{position:relative;z-index:1}
.hp-funnel__lbl{
  font:600 12.5px/1.3 'Inter',system-ui,sans-serif;
  color:var(--ink);
  display:flex;flex-direction:column;gap:3px;
}
.hp-funnel__lbl small{
  font:500 11px/1.3 'Inter',system-ui,sans-serif;
  color:#9aa3b8;
}
.hp-funnel__num{
  font:800 18px/1 'Plus Jakarta Sans','Inter',system-ui,sans-serif;
  color:var(--ink);
  font-variant-numeric:tabular-nums;
}
.hp-recovered{
  margin-top:14px;
  padding:11px 14px;
  border:1px solid rgba(22,163,74,.25);
  background:rgba(22,163,74,.06);
  border-radius:12px;
  font:500 12.5px/1.4 'Inter',system-ui,sans-serif;
  color:var(--ink);
  display:flex;align-items:center;gap:8px;
  flex-wrap:wrap;
}
.hp-recovered > span:first-child{
  color:#16a34a;font-weight:800;
}
.hp-recovered .muted{color:#6b7280}
.hp-recovered b{color:#16a34a}

/* Dots */
.hslider__dots{
  display:flex;justify-content:center;gap:6px;
  padding:6px 0 14px;
}
.hslider__dot{
  appearance:none;border:0;
  width:22px;height:3px;border-radius:99px;
  background:#d6dbe7;
  cursor:pointer;
  transition:width .25s ease, background .25s ease;
}
.hslider__dot:hover{background:#aab2c4}
.hslider__dot.is-active{
  width:36px;
  background:linear-gradient(90deg,#2f6bff,#6c5ce7);
}

@media (max-width:720px){
  .hp-kpi__val{font-size:26px}
  .hp-bar__row{grid-template-columns:78px 1fr 64px;gap:8px;font-size:11.5px}
  .hp-funnel__row{padding:10px 12px}
  .hp-funnel__num{font-size:16px}
  .hslider__tab{font-size:11.5px;padding:9px 10px 10px}
}

/* ============================================================
   Hero redesign — MonsterInsights-style centered icons + CTA
   ============================================================ */
.hero__title--xl{
  font-size:clamp(2.4rem,5.6vw,4.4rem);
  font-weight:900;
  letter-spacing:-.02em;
  line-height:1.05;
  max-width:980px;
  margin-left:auto;margin-right:auto;
}
.hero__lead--lg{
  font-size:clamp(1.05rem,1.5vw,1.2rem);
  max-width:780px;
  color:#4a5170;
}

/* Icon feature row */
.hero__feats{
  list-style:none;padding:0;
  margin:2.4rem auto 2.2rem;
  max-width:1040px;
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:1.25rem;
}
.hf{
  display:flex;flex-direction:column;align-items:center;gap:.4rem;
  text-align:center;
}
.hf__ic{
  width:78px;height:78px;border-radius:50%;
  display:grid;place-items:center;
  background:linear-gradient(160deg,#eef2ff,#e0e8ff);
  color:var(--accent);
  border:1px solid #dde4ff;
  box-shadow:0 6px 14px rgba(47,107,255,.08);
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.hf:hover .hf__ic{
  transform:translateY(-3px);
  background:linear-gradient(160deg,#e6ecff,#d6dfff);
  box-shadow:0 12px 24px rgba(47,107,255,.16);
}
.hf strong{
  margin-top:.5rem;
  font-size:.98rem;
  font-weight:800;
  color:var(--ink);
  letter-spacing:-.005em;
}
.hf span{
  font-size:.92rem;
  color:#5b6280;
}

/* Centered signup variant */
.signup--center{
  margin:0 auto;
  max-width:520px;
}
.signup--center .signup__row{
  justify-content:center;
}
.signup--center .signup__fine{
  text-align:center;
}

/* Slider lives below CTA — push it down a touch */
.hero .hero__shot{margin-top:3rem}

@media (max-width:980px){
  .hero__feats{grid-template-columns:repeat(3,1fr);gap:1.6rem 1rem;max-width:560px}
}
@media (max-width:520px){
  .hero__feats{grid-template-columns:repeat(2,1fr)}
  .hf__ic{width:66px;height:66px}
  .hf__ic svg{width:24px;height:24px}
}

/* ---------- Live "Know your customers" enhancements ---------- */
.team--live { min-height: 460px; }

/* Pulsing rings around the primary avatar */
.team__pulse {
  position: absolute; left: 25%; top: 30%;
  width: 220px; height: 220px;
  border-radius: 50%;
  pointer-events: none;
  border: 2px solid rgba(255,159,110,.55);
  transform: translate(-2%, -2%);
  animation: dsPulse 2.6s ease-out infinite;
}
.team__pulse--sm { animation-delay: 1.3s; border-color: rgba(91,140,255,.55); }
@keyframes dsPulse {
  0%   { transform: scale(1);   opacity: .6; }
  100% { transform: scale(1.35); opacity: 0;  }
}

/* "Viewing now" chip glued to primary avatar */
.team__viewing {
  position: absolute; left: 50%; top: -10px;
  transform: translateX(-50%);
  background: #0d1230; color: #fff;
  border-radius: 999px;
  padding: .28rem .7rem;
  font-size: .72rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: .4rem;
  white-space: nowrap;
  box-shadow: 0 6px 20px -8px rgba(13,18,48,.45);
  animation: dsBob 3.2s ease-in-out infinite;
}
.team__viewing .dot { width: 7px; height: 7px; border-radius: 50%; background: #ff9f6e; }
.team__viewing .dot--green { background: #2bd07a; box-shadow: 0 0 0 0 rgba(43,208,122,.7); animation: dsBlip 1.6s ease-out infinite; }
@keyframes dsBob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, -6px); } }
@keyframes dsBlip {
  0%   { box-shadow: 0 0 0 0 rgba(43,208,122,.6); }
  70%  { box-shadow: 0 0 0 10px rgba(43,208,122,0); }
  100% { box-shadow: 0 0 0 0 rgba(43,208,122,0); }
}

/* Live shopper counter — gentle pop */
.team__tag #liveShoppers { display: inline-block; transition: transform .25s ease, color .25s ease; }
.team__tag.is-bumped #liveShoppers { transform: translateY(-2px) scale(1.12); color: #ff7e3c; }

/* Floating notification cards */
.team__pop {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: .65rem .85rem;
  box-shadow: 0 18px 40px -14px rgba(13,18,48,.22);
  display: flex; align-items: center; gap: .65rem;
  min-width: 220px; max-width: 280px;
  opacity: 0;
  transform: translateY(10px) scale(.96);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
  z-index: 2;
}
.team__pop.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: dsFloat 4s ease-in-out infinite;
}
@keyframes dsFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50%     { transform: translateY(-5px) scale(1); }
}
.team__pop--buy   { top: 6%;  right: -2%; }
.team__pop--cart  { bottom: 28%; right: -6%; }
.team__pop--watch { top: 38%; left: -6%; }

.team__pop__ic {
  width: 32px; height: 32px; border-radius: 9px;
  display: grid; place-items: center; flex-shrink: 0;
}
.team__pop__ic--green  { background: #e6faef; color: #1ea15a; }
.team__pop__ic--purple { background: #efeaff; color: #6c5ce7; }
.team__pop__ic--blue   { background: #e7f0ff; color: #2f6bff; }

.team__pop__body { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.team__pop__body strong { font-size: .82rem; font-weight: 700; color: #0d1230; }
.team__pop__body small  { font-size: .72rem; color: var(--muted); margin-top: 1px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 200px; }
.team__pop__time { font-size: .68rem; color: var(--muted); margin-left: auto; flex-shrink: 0; }

/* Mobile: fewer pops & repositioned */
@media (max-width: 720px) {
  .team__pop          { min-width: 180px; max-width: 230px; padding: .55rem .65rem; }
  .team__pop--buy     { top: 0; right: 0; }
  .team__pop--cart    { bottom: 4%; right: 0; }
  .team__pop--watch   { top: auto; bottom: 4%; left: 0; }
  .team__pulse        { width: 160px; height: 160px; }
}

/* ---------- Globe scene (replaces team avatars) ---------- */
.globe-scene {
  position: relative;
  min-height: 460px;
  display: flex; align-items: center; justify-content: center;
}
.globe-scene__glow {
  position: absolute; left: 50%; top: 50%;
  width: 460px; height: 460px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #e7efff 0%, #f3f6ff 45%, transparent 70%);
  filter: blur(2px);
  pointer-events: none;
}
.globe {
  position: relative;
  width: 320px; height: 320px;
  filter: drop-shadow(0 30px 50px rgba(47,107,255,.25));
}
.globe__svg {
  width: 100%; height: 100%;
  animation: dsGlobeSpin 30s linear infinite;
  transform-origin: center;
}
@keyframes dsGlobeSpin {
  0%   { transform: rotate(-3deg); }
  50%  { transform: rotate(3deg); }
  100% { transform: rotate(-3deg); }
}

/* Orbit rings */
.globe__orbit {
  position: absolute; left: 50%; top: 50%;
  border-radius: 50%;
  border: 1.5px dashed rgba(47,107,255,.25);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.globe__orbit--1 { width: 360px; height: 360px; animation: dsOrbit 18s linear infinite; }
.globe__orbit--2 { width: 420px; height: 420px; animation: dsOrbit 26s linear infinite reverse; border-color: rgba(108,92,231,.18); }
.globe__orbit--3 { width: 500px; height: 500px; animation: dsOrbit 38s linear infinite; border-color: rgba(47,107,255,.12); }
@keyframes dsOrbit {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Center "Your Store" card */
.globe__store {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: #0d1230;
  color: #fff;
  border-radius: 16px;
  padding: .65rem .9rem;
  display: inline-flex; align-items: center; gap: .65rem;
  box-shadow: 0 18px 40px -10px rgba(13,18,48,.45), 0 0 0 6px rgba(255,255,255,.7);
  z-index: 2;
  white-space: nowrap;
}
.globe__store__ic {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2f6bff, #6c5ce7);
  display: grid; place-items: center;
}
.globe__store__txt { display: flex; flex-direction: column; line-height: 1.2; }
.globe__store__txt strong { font-size: .85rem; font-weight: 700; }
.globe__store__txt small  { font-size: .68rem; opacity: .85; display: inline-flex; align-items: center; gap: .35rem; }
.globe__store__txt .dot--green {
  width: 7px; height: 7px; border-radius: 50%; background: #2bd07a;
  box-shadow: 0 0 0 0 rgba(43,208,122,.7);
  animation: dsBlip 1.6s ease-out infinite;
}
@keyframes dsBlip {
  0%   { box-shadow: 0 0 0 0 rgba(43,208,122,.6); }
  70%  { box-shadow: 0 0 0 8px rgba(43,208,122,0); }
  100% { box-shadow: 0 0 0 0 rgba(43,208,122,0); }
}

/* Location pings on the globe */
.globe__pin {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #ff7e3c;
  box-shadow: 0 0 0 0 rgba(255,126,60,.6);
  animation: dsPing 2.4s ease-out infinite;
}
.globe__pin::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid #ff7e3c;
  opacity: .5;
}
.globe__pin--1 { top: 24%; left: 30%; animation-delay: 0s;   }
.globe__pin--2 { top: 38%; left: 64%; animation-delay: .6s; background: #2bd07a; box-shadow: 0 0 0 0 rgba(43,208,122,.6); }
.globe__pin--2::after { border-color: #2bd07a; }
.globe__pin--3 { top: 62%; left: 38%; animation-delay: 1.2s; background: #6c5ce7; box-shadow: 0 0 0 0 rgba(108,92,231,.6); }
.globe__pin--3::after { border-color: #6c5ce7; }
.globe__pin--4 { top: 70%; left: 60%; animation-delay: 1.8s; }
@keyframes dsPing {
  0%   { box-shadow: 0 0 0 0 rgba(255,126,60,.6); }
  70%  { box-shadow: 0 0 0 14px rgba(255,126,60,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,126,60,0); }
}

/* Reposition floating popups around the globe */
.globe-scene .team__pop--buy   { top: 6%;   right: -4%; }
.globe-scene .team__pop--cart  { bottom: 14%; right: -10%; }
.globe-scene .team__pop--watch { top: 38%;  left: -8%; }

/* Mobile */
@media (max-width: 720px) {
  .globe-scene { min-height: 380px; }
  .globe-scene__glow { width: 320px; height: 320px; }
  .globe { width: 240px; height: 240px; }
  .globe__orbit--1 { width: 270px; height: 270px; }
  .globe__orbit--2 { width: 310px; height: 310px; }
  .globe__orbit--3 { width: 360px; height: 360px; }
  .globe-scene .team__pop          { min-width: 180px; max-width: 220px; padding: .55rem .65rem; }
  .globe-scene .team__pop--buy     { top: 0;     right: 0; }
  .globe-scene .team__pop--cart    { bottom: 0;  right: 0; }
  .globe-scene .team__pop--watch   { top: auto;  bottom: 0; left: 0; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .globe__svg, .globe__orbit, .globe__pin, .globe__store__txt .dot--green,
  .team__pop.is-visible { animation: none !important; }
}

/* Live shopper counter inside globe scene */
.globe-scene .team__tag {
  position: absolute;
  top: -14px;
  bottom: auto;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: max-content;
  background: #fff;
  z-index: 3;
}
@media (max-width: 720px) {
  .globe-scene .team__tag { top: -8px; }
}

/* ---------- Billing-cycle toggle (Pricing) ---------- */
.billing-toggle {
  position: relative;
  display: inline-flex;
  margin: 1.25rem auto 0;
  background: #f0f3fa;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  isolation: isolate;
}
.billing-toggle__opt {
  position: relative;
  z-index: 2;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  font-size: .9rem;
  padding: .55rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: color .25s ease;
  white-space: nowrap;
}
.billing-toggle__opt.is-active { color: #0d1230; }
.billing-toggle__save {
  background: #2bd07a;
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 2px 7px;
  border-radius: 999px;
  text-transform: uppercase;
}
.billing-toggle__pill {
  position: absolute;
  top: 4px; bottom: 4px;
  left: 0;
  width: 0;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 6px 16px -6px rgba(13,18,48,.18);
  transition: transform .3s cubic-bezier(.4,.2,.2,1), width .3s cubic-bezier(.4,.2,.2,1);
  z-index: 1;
  will-change: transform, width;
}

/* Animate price changes */
.price__num {
  display: inline-block;
  transition: opacity .2s ease, transform .2s ease;
}
.price__num.is-flipping {
  opacity: 0;
  transform: translateY(-6px);
}
.price__note {
  display: block;
  margin-top: -.5rem;
  margin-bottom: .85rem;
  color: var(--muted);
  font-size: .78rem;
}

/* ---------- Hero rotating headline slider ---------- */
.hero-slider { display: block; }
.hero-slider__static { display: block; }
.hero-slider__rotator {
  position: relative;
  display: block;
  /* Reserve a single line of vertical space; slides are absolutely stacked. */
  min-height: 1.15em;
  margin-top: .15em;
}
.hero-slider__slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  transform: translateY(.4em);
  transition: opacity .55s ease, transform .55s ease;
  white-space: normal;
  pointer-events: none;
}
.hero-slider__slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.hero-slider__slide.is-leaving {
  opacity: 0;
  transform: translateY(-.4em);
}
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
@media (prefers-reduced-motion: reduce) {
  .hero-slider__slide { transition: none; }
}
