/**
 * Aceternity-inspired premium blocks - bento, shaders, illustrations, world map.
 * Uses --landing-* tokens; full light/dark via [data-mantine-color-scheme="light"].
 */

/* ----- Hero shader canvas ----- */
.landing-hero {
  --landing-shader-line: rgba(59, 130, 246, 0.14);
  --landing-shader-glow: rgba(139, 92, 246, 0.12);
}
[data-mantine-color-scheme="light"] .landing-hero {
  --landing-shader-line: rgba(37, 99, 235, 0.1);
  --landing-shader-glow: rgba(109, 40, 217, 0.08);
}
.landing-shader-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.65;
}
[data-mantine-color-scheme="light"] .landing-shader-canvas {
  opacity: 0.45;
}

/* ----- Stats strip ----- */
.landing-stats {
  padding: 0 0 clamp(2rem, 4vw, 3rem);
  margin-top: -1rem;
}
.landing-stats__container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 var(--mantine-spacing-md);
}
.landing-stats__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  border-radius: 20px;
  border: 1px solid var(--landing-border);
  background: linear-gradient(165deg, rgba(28, 28, 34, 0.75) 0%, rgba(14, 14, 18, 0.88) 100%);
  backdrop-filter: blur(12px);
  overflow: hidden;
}
@media (min-width: 48em) {
  .landing-stats__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
[data-mantine-color-scheme="light"] .landing-stats__grid {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.98) 100%);
  border-color: rgba(15, 23, 42, 0.09);
  box-shadow: 0 8px 32px -12px rgba(15, 23, 42, 0.08);
}
.landing-stats__item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.15rem 1.25rem;
  text-align: center;
  border-right: 1px solid var(--landing-border-soft);
  border-bottom: 1px solid var(--landing-border-soft);
}
@media (min-width: 48em) {
  .landing-stats__item {
    border-bottom: none;
  }
  .landing-stats__item:last-child {
    border-right: none;
  }
}
@media (max-width: 47.99em) {
  .landing-stats__item:nth-child(2n) {
    border-right: none;
  }
  .landing-stats__item:nth-last-child(-n+2) {
    border-bottom: none;
  }
}
.landing-stats__value {
  font-family: 'Outfit', 'DM Sans', system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #93c5fd 0%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
[data-mantine-color-scheme="light"] .landing-stats__value {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.landing-stats__label {
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--landing-text-muted);
}

/* ----- Bento grid ----- */
.landing-bento {
  position: relative;
  padding: calc(var(--mantine-spacing-xl) * 2) 0;
  overflow: hidden;
}
.landing-bento__shader {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.landing-bento__shader--spot {
  background:
    radial-gradient(ellipse 55% 45% at 20% 30%, rgba(59, 130, 246, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}
[data-mantine-color-scheme="light"] .landing-bento__shader--spot {
  background:
    radial-gradient(ellipse 55% 45% at 20% 30%, rgba(59, 130, 246, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 70%, rgba(139, 92, 246, 0.06) 0%, transparent 50%);
}
.landing-bento__container {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 var(--mantine-spacing-md);
}
.landing-bento__header {
  text-align: center;
  margin-bottom: calc(var(--mantine-spacing-xl) * 1.35);
}
.landing-bento__header-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: var(--mantine-spacing-md);
}
.landing-bento__header-row .landing-bento__badge {
  margin-bottom: 0;
}
.landing-bento__live-pulse {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.18);
}
.landing-bento__live-pulse span {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: #4ade80;
  animation: landing-bento-pulse 2s ease-out infinite;
}
@keyframes landing-bento-pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.45); }
  70% { box-shadow: 0 0 0 0.4rem rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}
.landing-bento__desc strong {
  font-weight: 600;
}
.landing-bento__badge {
  display: inline-flex;
  padding: 0.35rem 0.85rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.22);
  border-radius: 8px;
  margin-bottom: var(--mantine-spacing-md);
}
[data-mantine-color-scheme="light"] .landing-bento__badge {
  color: #2563eb;
}
.landing-bento__title {
  font-family: 'Outfit', 'DM Sans', system-ui, sans-serif;
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 var(--mantine-spacing-sm);
  color: var(--landing-text);
}
.landing-bento__desc {
  font-size: 0.9375rem;
  color: var(--landing-text-muted);
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.6;
}
.landing-bento__grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}
@media (min-width: 52em) {
  .landing-bento__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: auto;
    align-items: stretch;
  }
  .landing-bento__cell--hero { grid-column: span 2; grid-row: span 2; }
  .landing-bento__cell--market { grid-column: span 2; }
  .landing-bento__cell--wide { grid-column: 1 / -1; }
}
.landing-bento__cell {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.55rem;
  min-height: 0;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid var(--landing-border);
  background: linear-gradient(165deg, rgba(32, 32, 38, 0.92) 0%, rgba(16, 16, 20, 0.96) 100%);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
[data-mantine-color-scheme="light"] .landing-bento__cell {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
  border-color: rgba(15, 23, 42, 0.09);
  box-shadow: 0 4px 20px -10px rgba(15, 23, 42, 0.06);
}
.landing-bento__cell:hover {
  border-color: rgba(59, 130, 246, 0.28);
  transform: translateY(-3px);
  box-shadow: 0 20px 48px -16px rgba(0, 0, 0, 0.4);
}
[data-mantine-color-scheme="light"] .landing-bento__cell:hover {
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: 0 16px 40px -14px rgba(15, 23, 42, 0.1);
}
.landing-bento__cell-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 100% 0%, rgba(59, 130, 246, 0.12) 0%, transparent 55%);
  pointer-events: none;
}
.landing-bento__cell-body {
  position: relative;
  z-index: 1;
}
.landing-bento__cell-body--row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 40em) {
  .landing-bento__cell-body--row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.landing-bento__cell-title {
  font-family: 'Outfit', 'DM Sans', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--landing-text);
  margin: 0 0 0.3rem;
}
.landing-bento__cell-text {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--landing-text-muted);
  margin: 0;
  max-width: 28rem;
}
.landing-bento__link {
  display: inline-block;
  margin-top: 0.45rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #93c5fd;
  text-decoration: none;
}
.landing-bento__link:hover {
  color: #bfdbfe;
  text-decoration: underline;
}
[data-mantine-color-scheme="light"] .landing-bento__link {
  color: #2563eb;
}
.landing-bento__pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.landing-bento__pill {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  color: rgba(147, 197, 253, 0.95);
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  white-space: nowrap;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.landing-bento__pill.is-active {
  color: #fff;
  background: rgba(59, 130, 246, 0.35);
  border-color: rgba(96, 165, 250, 0.55);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px -6px rgba(59, 130, 246, 0.45);
}
[data-mantine-color-scheme="light"] .landing-bento__pill {
  color: #1d4ed8;
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(37, 99, 235, 0.18);
}
.landing-bento__illus {
  position: relative;
  z-index: 1;
  margin-top: 0.35rem;
  pointer-events: none;
  flex-shrink: 0;
}
.landing-bento__cell--hero .landing-bento__illus {
  margin-top: 0.5rem;
}
.landing-bento__cell--api .landing-bento__illus,
.landing-bento__cell--chat .landing-bento__illus {
  margin-top: 0.25rem;
}

/* Mini dashboard illustration */
.landing-mini-dash {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.35);
  padding: 0.6rem 0.65rem;
  max-width: 16rem;
  margin-left: auto;
  overflow: hidden;
}
[data-mantine-color-scheme="light"] .landing-mini-dash {
  background: rgba(241, 245, 249, 0.9);
  border-color: rgba(15, 23, 42, 0.08);
}
.landing-mini-dash__bar {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
}
.landing-mini-dash__bar span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
[data-mantine-color-scheme="light"] .landing-mini-dash__bar span {
  background: rgba(15, 23, 42, 0.15);
}
.landing-mini-dash__row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.6875rem;
  padding: 0.28rem 0;
  color: var(--landing-text-muted);
  min-width: 0;
}
.landing-mini-dash__row i {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 3px;
  background: rgba(148, 163, 184, 0.4);
  flex-shrink: 0;
}
.landing-mini-dash__row--active i {
  background: #3b82f6;
}
.landing-mini-dash__row em {
  flex: 1;
  min-width: 0;
  font-style: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.landing-mini-dash__row strong {
  flex-shrink: 0;
  max-width: 5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--landing-text);
  font-weight: 700;
  font-size: 0.6875rem;
}
.landing-bento .landing-mini-dash__row strong.landing-paths-bento__count {
  font-size: 0.75rem;
  letter-spacing: -0.02em;
  max-width: 4.5rem;
  background: linear-gradient(135deg, #e2e8f0 0%, #93c5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.landing-mini-dash__ok {
  color: #4ade80 !important;
}

[data-mantine-color-scheme="light"] .landing-bento .landing-mini-dash__row strong.landing-paths-bento__count {
  background: linear-gradient(135deg, #0f172a 0%, #2563eb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.landing-mini-dash__chart {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  height: 2rem;
  margin-top: 0.45rem;
  padding-top: 0.4rem;
  border-top: 1px solid var(--landing-border-soft);
}
.landing-mini-dash__chart span {
  flex: 1;
  height: var(--h, 50%);
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #3b82f6 0%, rgba(59, 130, 246, 0.3) 100%);
  animation: landing-bar-pulse 3s ease-in-out infinite;
  transition: height 0.65s ease;
}
.landing-bento-live__webhook.is-pulse {
  animation: landing-webhook-flash 0.7s ease;
}
@keyframes landing-webhook-flash {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; text-shadow: 0 0 8px rgba(74, 222, 128, 0.6); }
}
.landing-mini-dash__chart span:nth-child(2) { animation-delay: 0.2s; }
.landing-mini-dash__chart span:nth-child(3) { animation-delay: 0.4s; }
.landing-mini-dash__chart span:nth-child(4) { animation-delay: 0.6s; }
.landing-mini-dash__chart span:nth-child(5) { animation-delay: 0.8s; }
@keyframes landing-bar-pulse {
  0%, 100% { opacity: 0.75; }
  50% { opacity: 1; }
}

/* Terminal */
.landing-mini-term {
  margin: 0;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  font-size: 0.625rem;
  line-height: 1.55;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
[data-mantine-color-scheme="light"] .landing-mini-term {
  background: #0f172a;
  color: #e2e8f0;
}
.landing-mini-term__prompt { color: #fbbf24; }
.landing-mini-term__key { color: #93c5fd; }
.landing-mini-term__ok { color: #4ade80; }
.landing-mini-term__str { color: #c4b5fd; }
.landing-mini-term__err { color: #f87171; }
.landing-mini-term__warn { color: #fbbf24; }
.landing-bento-live__term code.is-updating {
  opacity: 0.45;
}
.landing-bento-live__status {
  display: inline-flex;
  margin-top: 0.35rem;
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.2);
}
.landing-bento-live__status.is-fail {
  color: #f87171;
  background: rgba(248, 113, 113, 0.1);
  border-color: rgba(248, 113, 113, 0.2);
}
.landing-bento-live__status.is-warn {
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.2);
}

/* Chat */
.landing-mini-chat {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.landing-mini-chat__msg {
  font-size: 0.625rem;
  padding: 0.4rem 0.55rem;
  border-radius: 10px;
  max-width: 92%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--landing-text-muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.landing-mini-chat__msg--you {
  align-self: flex-end;
  background: rgba(59, 130, 246, 0.2);
  color: #bfdbfe;
}
[data-mantine-color-scheme="light"] .landing-mini-chat__msg--you {
  color: #1e40af;
  background: rgba(59, 130, 246, 0.12);
}
.landing-mini-chat__av {
  font-size: 0.5rem;
  font-weight: 700;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: #5865f2;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.landing-mini-chat__msg.is-new {
  animation: landing-chat-in 0.45s ease;
}
@keyframes landing-chat-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Bento live - delivery, market, rebrand */
.landing-bento__illus--delivery,
.landing-bento__illus--market {
  margin-top: 0.35rem;
}
.landing-bento-live__delivery {
  list-style: none;
  margin: 0 0 0.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.landing-bento-live__delivery li {
  position: relative;
  padding: 0.32rem 0.45rem 0.32rem 1.35rem;
  border-radius: 8px;
  font-size: 0.625rem;
  color: var(--landing-text-muted);
  border: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.landing-bento-live__delivery li::before {
  content: '';
  position: absolute;
  left: 0.45rem;
  top: 50%;
  width: 0.35rem;
  height: 0.35rem;
  margin-top: -0.175rem;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.35);
}
.landing-bento-live__delivery li.is-active {
  color: var(--landing-text);
  border-color: rgba(96, 165, 250, 0.25);
  background: rgba(59, 130, 246, 0.08);
}
.landing-bento-live__delivery li.is-active::before {
  background: #60a5fa;
  box-shadow: 0 0 6px rgba(96, 165, 250, 0.5);
}
.landing-bento-live__delivery li.is-done {
  color: #4ade80;
}
.landing-bento-live__delivery li.is-done::before {
  background: #4ade80;
}
.landing-bento-live__delivery-key {
  margin: 0;
  font-size: 0.625rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color: var(--landing-text-muted);
  letter-spacing: 0.04em;
}
.landing-bento-live__delivery-key.is-revealed {
  color: #c4b5fd;
}
.landing-bento-live__market {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.landing-bento-live__market li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.38rem 0.5rem;
  border-radius: 8px;
  font-size: 0.625rem;
  border: 1px solid var(--landing-border-soft);
  background: rgba(255, 255, 255, 0.02);
}
.landing-bento-live__market li span {
  color: var(--landing-text-muted);
}
.landing-bento-live__market li strong {
  color: var(--landing-text);
  font-weight: 700;
}
.landing-bento-live__rebrand-stat {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  margin: 0.65rem 0 0;
  font-size: 0.625rem;
  color: var(--landing-text-muted);
}
.landing-bento-live__rebrand-stat strong {
  font-size: 0.8125rem;
  color: var(--landing-text);
}

/* Flow */
.landing-mini-flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
}
.landing-mini-flow li {
  padding: 0.35rem 0.55rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--landing-text-muted);
}
.landing-mini-flow__arrow {
  background: none !important;
  color: rgba(147, 197, 253, 0.6) !important;
  padding: 0 !important;
}
.landing-mini-flow__done {
  background: rgba(34, 197, 94, 0.15) !important;
  color: #86efac !important;
}
[data-mantine-color-scheme="light"] .landing-mini-flow__done {
  color: #15803d !important;
  background: rgba(34, 197, 94, 0.12) !important;
}

/* Cards stack */
.landing-mini-cards {
  position: relative;
  height: 4.5rem;
  max-width: 8rem;
  margin: 0 auto;
}
.landing-mini-cards__card {
  position: absolute;
  width: 5rem;
  height: 3.25rem;
  border-radius: 10px;
  border: 1px solid rgba(139, 92, 246, 0.35);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.25) 0%, rgba(59, 130, 246, 0.15) 100%);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: landing-card-float 4s ease-in-out infinite;
}
.landing-mini-cards__card--mid {
  transform: translate(-60%, -55%) rotate(-6deg);
  opacity: 0.75;
  animation-delay: 0.5s;
}
.landing-mini-cards__card--back {
  transform: translate(-40%, -45%) rotate(6deg);
  opacity: 0.5;
  animation-delay: 1s;
}
@keyframes landing-card-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -4px; }
}

/* Panel */
.landing-mini-panel {
  max-width: 7rem;
  margin: 0 auto;
  padding: 0.65rem;
  border-radius: 10px;
  border: 1px solid var(--landing-border);
  background: rgba(255, 255, 255, 0.04);
}
.landing-mini-panel__head {
  height: 0.35rem;
  width: 40%;
  border-radius: 4px;
  background: rgba(59, 130, 246, 0.5);
  margin-bottom: 0.5rem;
}
.landing-mini-panel__line {
  height: 0.25rem;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 0.35rem;
}
.landing-mini-panel__line--short { width: 65%; }
.landing-mini-panel__btn {
  margin-top: 0.5rem;
  font-size: 0.5625rem;
  font-weight: 700;
  text-align: center;
  padding: 0.3rem;
  border-radius: 6px;
  background: rgba(59, 130, 246, 0.25);
  color: #93c5fd;
}
[data-mantine-color-scheme="light"] .landing-mini-panel__line {
  background: rgba(15, 23, 42, 0.08);
}

/* Uptime */
.landing-mini-uptime {
  text-align: center;
}
.landing-mini-uptime__label {
  display: block;
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--landing-text-muted);
}
.landing-mini-uptime__val {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #4ade80;
  line-height: 1.2;
}
[data-mantine-color-scheme="light"] .landing-mini-uptime__val {
  color: #15803d;
}
.landing-mini-uptime__bars {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
  margin-top: 0.5rem;
}
.landing-mini-uptime__bars i {
  width: 0.35rem;
  height: 1rem;
  border-radius: 2px;
  background: rgba(34, 197, 94, 0.35);
}
.landing-mini-uptime__bars i.is-live {
  background: #22c55e;
  animation: landing-uptime-pulse 1.5s ease infinite;
}
@keyframes landing-uptime-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

/* ----- Showcase / illustrations ----- */
.landing-showcase {
  padding: calc(var(--mantine-spacing-xl) * 2) 0;
}
.landing-showcase__container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 var(--mantine-spacing-md);
}
.landing-showcase__header {
  text-align: center;
  margin-bottom: calc(var(--mantine-spacing-xl) * 1.25);
}
.landing-showcase__badge {
  display: inline-flex;
  padding: 0.35rem 0.85rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: 8px;
  margin-bottom: 0;
}
[data-mantine-color-scheme="light"] .landing-showcase__badge {
  color: #b45309;
}
.landing-showcase__title {
  font-family: 'Outfit', 'DM Sans', system-ui, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 var(--mantine-spacing-sm);
  color: var(--landing-text);
}
.landing-showcase__desc {
  font-size: 0.9375rem;
  color: var(--landing-text-muted);
  max-width: 38rem;
  margin: 0 auto;
  line-height: 1.6;
}
.landing-showcase__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 40em) {
  .landing-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.landing-showcase__card {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  border-radius: 18px;
  border: 1px solid var(--landing-border);
  background: linear-gradient(165deg, rgba(28, 28, 34, 0.9) 0%, rgba(16, 16, 20, 0.95) 100%);
  transition: transform 0.3s ease, border-color 0.25s ease;
}
[data-mantine-color-scheme="light"] .landing-showcase__card {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.09);
}
.landing-showcase__card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.25);
}
.landing-showcase__card--highlight {
  border-color: rgba(59, 130, 246, 0.22);
  background: linear-gradient(165deg, rgba(30, 40, 60, 0.95) 0%, rgba(16, 16, 22, 0.98) 100%);
}
[data-mantine-color-scheme="light"] .landing-showcase__card--highlight {
  background: linear-gradient(165deg, #eff6ff 0%, #fff 100%);
  border-color: rgba(37, 99, 235, 0.2);
}
.landing-showcase__illus {
  min-height: 8.5rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  border: 1px solid var(--landing-border-soft);
  background: rgba(0, 0, 0, 0.25);
  padding: 0.85rem;
  overflow: hidden;
}
[data-mantine-color-scheme="light"] .landing-showcase__illus {
  background: #f8fafc;
  border-color: rgba(15, 23, 42, 0.06);
}
.landing-showcase__card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--landing-text);
  margin: 0 0 0.4rem;
}
.landing-showcase__card-desc {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--landing-text-muted);
  margin: 0;
  flex: 1;
}
.landing-showcase__card-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #93c5fd;
  text-decoration: none;
}
[data-mantine-color-scheme="light"] .landing-showcase__card-link {
  color: #2563eb;
}

/* Meet illustration */
.landing-illus-meet__banner {
  font-size: 0.6875rem;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  background: rgba(59, 130, 246, 0.15);
  color: var(--landing-text-muted);
  margin: 0 0 0.75rem;
}
.landing-illus-meet__people {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.landing-illus-meet__av {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  font-size: 0.5625rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.landing-illus-meet__av--a { background: #6366f1; }
.landing-illus-meet__av--b { background: #3b82f6; }
.landing-illus-meet__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.landing-illus-meet__btn {
  font-size: 0.5625rem;
  font-weight: 600;
  padding: 0.35rem 0.55rem;
  border-radius: 6px;
  border: 1px solid var(--landing-border);
  color: var(--landing-text-muted);
}
.landing-illus-meet__btn--primary {
  background: rgba(59, 130, 246, 0.25);
  border-color: rgba(59, 130, 246, 0.35);
  color: #93c5fd;
}

/* Cursors */
.landing-illus-cursors {
  position: relative;
  min-height: 7rem;
}
.landing-illus-cursor {
  position: absolute;
  left: var(--x);
  top: var(--y);
  font-size: 0.5625rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem 0.15rem 1.1rem;
  border-radius: 4px;
  color: #fff;
  animation: landing-cursor-drift 5s ease-in-out infinite;
}
.landing-illus-cursor::before {
  content: '';
  position: absolute;
  left: 0.2rem;
  top: 0.15rem;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-top-color: currentColor;
  transform: rotate(-30deg);
}
.landing-illus-cursor--1 { background: #f472b6; animation-delay: 0s; }
.landing-illus-cursor--2 { background: #60a5fa; animation-delay: 0.8s; }
.landing-illus-cursor--3 { background: #4ade80; animation-delay: 1.6s; }
@keyframes landing-cursor-drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(6px, -4px); }
}
.landing-illus-cursor__panel {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.625rem;
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--landing-text-muted);
  white-space: nowrap;
}

/* Tabs */
.landing-illus-tabs__tab {
  font-size: 0.5625rem;
  font-weight: 600;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  display: inline-block;
  margin: 0 0.25rem 0.5rem 0;
  color: var(--landing-text-muted);
  border: 1px solid transparent;
}
.landing-illus-tabs__tab--on {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.35);
  color: #93c5fd;
}
.landing-illus-tabs__panel {
  font-size: 0.6875rem;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  background: rgba(34, 197, 94, 0.12);
  color: #86efac;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
[data-mantine-color-scheme="light"] .landing-illus-tabs__panel {
  color: #15803d;
}
.landing-illus-tabs__dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #22c55e;
  animation: landing-uptime-pulse 1.2s ease infinite;
}

/* Keyboard */
.landing-illus-kbd__row {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.25rem;
  justify-content: center;
}
.landing-illus-kbd__row span {
  font-size: 0.5rem;
  font-weight: 600;
  min-width: 1.1rem;
  padding: 0.25rem 0.15rem;
  text-align: center;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--landing-text-muted);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
[data-mantine-color-scheme="light"] .landing-illus-kbd__row span {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.1);
  color: #475569;
}
.landing-illus-kbd__row--fn span {
  min-width: 2rem;
  font-size: 0.4375rem;
  color: #93c5fd;
}
.landing-illus-kbd__hint {
  font-size: 0.5625rem;
  text-align: center;
  color: var(--landing-text-muted);
  margin-top: 0.5rem;
}

/* ----- World map ----- */
.landing-globe {
  --landing-globe-line-a: #3b82f6;
  --landing-globe-line-b: #60a5fa;
  --landing-globe-dot: rgba(148, 163, 184, 0.45);
  --landing-world-map-line: #0ea5e9;
  position: relative;
  padding: calc(var(--mantine-spacing-xl) * 2.5) 0;
  overflow: hidden;
}
[data-mantine-color-scheme="light"] .landing-globe {
  --landing-globe-line-a: #2563eb;
  --landing-globe-line-b: #3b82f6;
  --landing-globe-dot: rgba(100, 116, 139, 0.35);
  --landing-world-map-line: #0284c7;
}
.landing-globe__shader--lines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, transparent 40%, rgba(59, 130, 246, 0.06) 50%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 55%);
  animation: landing-shader-shift 12s ease-in-out infinite;
}
[data-mantine-color-scheme="light"] .landing-globe__shader--lines {
  background:
    linear-gradient(105deg, transparent 40%, rgba(37, 99, 235, 0.04) 50%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(37, 99, 235, 0.05) 0%, transparent 55%);
}
@keyframes landing-shader-shift {
  0%, 100% { opacity: 0.85; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(2%); }
}
.landing-globe__container {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 var(--mantine-spacing-md);
}
.landing-globe__layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 56em) {
  .landing-globe__layout {
    grid-template-columns: 1fr 1.15fr;
  }
}
.landing-globe__badge {
  display: inline-flex;
  padding: 0.35rem 0.85rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #22d3ee;
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 8px;
  margin-bottom: var(--mantine-spacing-md);
}
[data-mantine-color-scheme="light"] .landing-globe__badge {
  color: #0e7490;
}
.landing-globe__title {
  font-family: 'Outfit', 'DM Sans', system-ui, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 var(--mantine-spacing-sm);
  color: var(--landing-text);
}
.landing-globe__desc {
  font-size: 0.9375rem;
  color: var(--landing-text-muted);
  line-height: 1.65;
  margin: 0 0 1.15rem;
}
.landing-globe__points {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}
.landing-globe__points li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--landing-text-muted);
}
.landing-globe__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #3b82f6;
}
.landing-globe__title-muted {
  color: var(--landing-text-muted);
}
.landing-globe__map-wrap {
  border-radius: 20px;
  border: 1px solid var(--landing-border);
  background: linear-gradient(165deg, rgba(20, 20, 26, 0.9) 0%, rgba(10, 10, 14, 0.95) 100%);
  padding: 0.75rem;
  overflow: hidden;
}
[data-mantine-color-scheme="light"] .landing-globe__map-wrap {
  background: linear-gradient(165deg, #f8fafc 0%, #fff 100%);
  border-color: rgba(15, 23, 42, 0.09);
}

/* Aceternity-style dotted world map overlay */
.landing-world-map {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}
[data-mantine-color-scheme="light"] .landing-world-map {
  background: #fff;
}
.landing-world-map__base {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  pointer-events: none;
  user-select: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #fff 10%, #fff 90%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #fff 10%, #fff 90%, transparent);
}
.landing-world-map__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  user-select: none;
}

/* ----- CTA band (shader) ----- */
.landing-cta-band {
  position: relative;
  padding: calc(var(--mantine-spacing-xl) * 2) 0;
  overflow: hidden;
}
.landing-cta-band__shader {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(59, 130, 246, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, transparent 0%, rgba(59, 130, 246, 0.04) 100%);
  animation: landing-cta-glow 8s ease-in-out infinite alternate;
}
[data-mantine-color-scheme="light"] .landing-cta-band__shader {
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(59, 130, 246, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 20%, rgba(139, 92, 246, 0.06) 0%, transparent 50%);
}
@keyframes landing-cta-glow {
  from { opacity: 0.7; }
  to { opacity: 1; }
}
.landing-cta-band__container {
  position: relative;
  z-index: 1;
  max-width: 52rem;
  margin: 0 auto;
  padding: 0 var(--mantine-spacing-md);
}
.landing-cta-band__inner {
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 4vw, 2.5rem);
  border-radius: 24px;
  border: 1px solid var(--landing-border);
  background: linear-gradient(165deg, rgba(30, 30, 38, 0.85) 0%, rgba(14, 14, 18, 0.92) 100%);
  backdrop-filter: blur(16px);
}
[data-mantine-color-scheme="light"] .landing-cta-band__inner {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.98) 100%);
  border-color: rgba(15, 23, 42, 0.1);
  box-shadow: 0 16px 48px -16px rgba(15, 23, 42, 0.1);
}
.landing-cta-band__title {
  font-family: 'Outfit', 'DM Sans', system-ui, sans-serif;
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.65rem;
  color: var(--landing-text);
}
.landing-cta-band__desc {
  font-size: 0.9375rem;
  color: var(--landing-text-muted);
  margin: 0 0 1.35rem;
  line-height: 1.6;
}
.landing-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

@media (prefers-reduced-motion: reduce) {
  .landing-shader-canvas,
  .landing-illus-cursor,
  .landing-mini-dash__chart span,
  .landing-mini-uptime__bars i.is-live,
  .landing-illus-tabs__dot,
  .landing-mini-cards__card,
  .landing-globe__shader--lines,
  .landing-cta-band__shader,
  .landing-bento__live-pulse span {
    animation: none !important;
  }
  .landing-bento__cell:hover,
  .landing-showcase__card:hover {
    transform: none;
  }
}
