@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');
@import url('ync-tokens.css');

/* Your Next Customers — marketing shell */

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

.mkt-page {
  --font-serif: var(--ync-font-display);
  --font-sans: var(--ync-font);
  --ink: var(--ync-navy);
  --muted: var(--ync-text-muted);
  --max: 1200px;
  --gap: 16px;
  --radius: 26px;

  --c-white: #ffffff;
  --c-lavender: #ebe4fc;
  --c-peach: #ffeadc;
  --c-pink: #fde8f3;
  --c-mint: #c8eddc;
  --c-yellow: #fff8d6;
  --c-sky: #d4ebfc;

  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: #eeeef2;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

.mkt-page * { box-sizing: border-box; }

/* Ambient background */
.mkt-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.mkt-bg-gradient {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 50% 40% at 15% 10%, rgba(167, 139, 250, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 45% 35% at 85% 15%, rgba(251, 191, 36, 0.28) 0%, transparent 50%),
    radial-gradient(ellipse 50% 45% at 70% 90%, rgba(52, 211, 153, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 40% 30% at 10% 80%, rgba(244, 114, 182, 0.2) 0%, transparent 50%);
}
.mkt-sparkles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 20% 30%, rgba(255,255,255,0.9) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 60% 15%, rgba(255,255,255,0.7) 50%, transparent 50%),
    radial-gradient(2px 2px at 80% 40%, rgba(255,255,255,0.8) 50%, transparent 50%),
    radial-gradient(1px 1px at 40% 70%, rgba(255,255,255,0.6) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 90% 75%, rgba(255,255,255,0.75) 50%, transparent 50%);
  opacity: 0.6;
}

.mkt-top, .mkt-shell, .mkt-cta-row, .mkt-footer {
  position: relative;
  z-index: 1;
}

/* Nav */
.mkt-top {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem clamp(1.25rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.mkt-top.is-scrolled {
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.mkt-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
}
.mkt-brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: linear-gradient(145deg, #1a1a1a 0%, #333 100%);
  color: #b8f000;
  font-size: 0.65rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
  flex-shrink: 0;
}
.mkt-brand:hover .mkt-brand-mark {
  transform: scale(1.06) rotate(-3deg);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}
.mkt-brand-name {
  white-space: nowrap;
}
.mkt-top-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.mkt-top-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding: 0.15rem 0;
  transition: color 0.2s ease;
}
.mkt-top-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.mkt-top-links a:hover {
  color: var(--ink);
}
.mkt-top-links a:hover::after {
  transform: scaleX(1);
}

.mkt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease;
}
.mkt-btn:active {
  transform: translateY(0) scale(0.98);
}
.mkt-btn-dark {
  background: var(--ync-gradient);
  color: #fff;
  box-shadow: 0 4px 16px rgba(143, 61, 255, 0.28);
}
.mkt-btn-dark:hover {
  filter: brightness(1.06);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(143, 61, 255, 0.35);
}
.mkt-btn-light {
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(0,0,0,0.1);
}
.mkt-btn-light:hover {
  background: #fafafa;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.mkt-btn-lg { padding: 0.8rem 1.6rem; font-size: 0.9375rem; }
.mkt-btn-ghost-sm {
  background: transparent;
  color: var(--muted);
  padding: 0.5rem 0;
  font-size: 0.875rem;
}
.mkt-btn-ghost-sm:hover { color: var(--ink); }

/* Bento grid */
.mkt-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.5rem 2.5rem;
}
.mkt-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(120px, auto);
  gap: var(--gap);
}

.bento-card {
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 8px 32px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s;
}
.bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255,255,255,0.5) 0%, transparent 45%);
  pointer-events: none;
}
.bento-card:hover {
  transform: translateY(-4px) scale(1.005);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.04),
    0 20px 48px rgba(0, 0, 0, 0.1);
}

.bento-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.42);
  margin: 0 0 0.6rem;
  position: relative;
  z-index: 1;
}
.bento-desc {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(0,0,0,0.52);
  margin: auto 0 0;
  max-width: 30ch;
  position: relative;
  z-index: 1;
}

/* Main card */
.bento-main {
  grid-column: 1 / span 5;
  grid-row: 1 / span 5;
  background: var(--c-white);
  min-height: 520px;
  padding: 1.85rem;
}
.bento-main-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.bento-num {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
}
.bento-live {
  font-size: 0.7rem;
  font-weight: 600;
  color: #0f766e;
  background: #d1fae5;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
}
.bento-main h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 1rem;
  max-width: 13ch;
  position: relative;
  z-index: 1;
}
.bento-desc-top {
  margin: 0 0 1.25rem !important;
  font-size: 0.9rem;
  max-width: 32ch;
}
.bento-main-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.bento-main-visual {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: auto;
  position: relative;
  z-index: 1;
}
.bento-illus {
  width: 100%;
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.08));
}

/* Setup — lavender */
.bento-setup {
  grid-column: 6 / span 4;
  grid-row: 1 / span 2;
  background: linear-gradient(160deg, #f3eeff 0%, var(--c-lavender) 100%);
  min-height: 270px;
}
.bento-setup-ui {
  flex: 1;
  margin-top: 0.35rem;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 0.85rem;
  border: 1px solid rgba(255,255,255,0.9);
  position: relative;
  z-index: 1;
}
.bento-doc-preview {
  height: 80px;
  background: #fff;
  border-radius: 12px;
  padding: 0.75rem;
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
}
.bento-doc-lines {
  height: 100%;
  background: repeating-linear-gradient(
    180deg,
    #e8e4f4 0px,
    #e8e4f4 6px,
    transparent 6px,
    transparent 12px
  );
  border-radius: 4px;
  margin-bottom: 0.35rem;
}
.bento-doc-preview > span {
  position: absolute;
  bottom: 0.5rem;
  left: 0.75rem;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--muted);
}
.bento-toolbar {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin-top: 0.7rem;
}
.bento-toolbar span {
  font-size: 0.6rem;
  font-weight: 600;
  padding: 0.4rem 0.65rem;
  background: rgba(255,255,255,0.85);
  border-radius: 100px;
  color: var(--muted);
  border: 1px solid transparent;
  transition: all 0.15s;
}
.bento-toolbar span.active {
  background: #fff;
  color: var(--ink);
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Sources — peach */
.bento-sources {
  grid-column: 6 / span 4;
  grid-row: 3 / span 2;
  background: linear-gradient(160deg, #fff5ee 0%, var(--c-peach) 100%);
  min-height: 250px;
}
.bento-sources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
  flex: 1;
  align-content: flex-start;
  position: relative;
  z-index: 1;
}
.bento-source-chip {
  padding: 0.55rem 0.95rem;
  background: #fff;
  border-radius: 14px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ink);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.15s;
}
.bento-source-chip:hover { transform: scale(1.03); }
.bento-source-chip.accent {
  background: linear-gradient(135deg, #1a1a1a, #333);
  color: #fff;
}

/* Middle row — ICP + enrichment */
.bento-icp {
  grid-column: 6 / span 2;
  grid-row: 5 / span 2;
  background: linear-gradient(160deg, #f5f0ff 0%, #e8deff 100%);
  min-height: 200px;
}
.bento-icp-ui {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: 1;
  margin-top: 0.25rem;
  position: relative;
  z-index: 1;
}
.bento-score-ring {
  position: relative;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}
.bento-score-ring svg {
  width: 100%;
  height: 100%;
}
.bento-score-ring strong {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
}
.bento-score-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.bento-score-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.65rem;
  background: rgba(255,255,255,0.7);
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
}
.bento-score-list span { color: var(--muted); font-weight: 600; }
.bento-score-list em {
  font-style: normal;
  font-weight: 800;
  color: #6d28d9;
}

.bento-enrich {
  grid-column: 8 / span 2;
  grid-row: 5 / span 2;
  background: linear-gradient(160deg, #fff8f0 0%, #ffe4cc 100%);
  min-height: 200px;
}
.bento-enrich-rows {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.35rem;
  position: relative;
  z-index: 1;
}
.bento-enrich-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.8);
  padding: 0.45rem 0.6rem;
  border-radius: 10px;
  font-size: 0.65rem;
}
.bento-enrich-row span {
  color: var(--muted);
  font-weight: 600;
  flex-shrink: 0;
}
.bento-enrich-row strong {
  font-size: 0.68rem;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bento-ai {
  grid-column: 6 / span 4;
  grid-row: 7 / span 2;
  background: linear-gradient(160deg, #f0fdf9 0%, #ccfbf1 100%);
  min-height: 180px;
}
.bento-ai-bubble {
  background: #fff;
  border-radius: 16px 16px 16px 6px;
  padding: 0.85rem 1rem;
  margin-top: 0.35rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border: 1px solid rgba(255,255,255,0.9);
  position: relative;
  z-index: 1;
}
.bento-ai-bubble p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.55;
  color: rgba(0,0,0,0.65);
}
.bento-ai-tags {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.6rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.bento-ai-tags span {
  font-size: 0.58rem;
  font-weight: 700;
  padding: 0.3rem 0.55rem;
  background: rgba(255,255,255,0.75);
  border-radius: 100px;
  color: #0f766e;
}

.bento-workspace {
  grid-column: 6 / span 4;
  grid-row: 9 / span 2;
  background: linear-gradient(160deg, #f8fafc 0%, #e2e8f0 100%);
  min-height: 170px;
}
.bento-ws-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 0.35rem;
  position: relative;
  z-index: 1;
}
.bento-ws-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.65rem;
  background: rgba(255,255,255,0.75);
  border-radius: 12px;
  border: 1px solid transparent;
}
.bento-ws-item.active {
  background: #fff;
  border-color: rgba(0,0,0,0.06);
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}
.bento-ws-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}
.bento-ws-dot.muted { background: #cbd5e1; }
.bento-ws-item strong {
  display: block;
  font-size: 0.72rem;
}
.bento-ws-item span {
  font-size: 0.58rem;
  color: var(--muted);
}

/* Launch — pink */
.bento-launch {
  grid-column: 10 / span 3;
  grid-row: 1 / span 2;
  background: linear-gradient(165deg, #fff0f7 0%, var(--c-pink) 100%);
  min-height: 210px;
}
.bento-launch-ui {
  flex: 1;
  position: relative;
  margin-top: 0.35rem;
  min-height: 120px;
  z-index: 1;
}
.bento-card-mock {
  background: #fff;
  border-radius: 16px;
  padding: 0.75rem 0.85rem;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  max-width: calc(100% - 58px);
}
.bento-mock-header {
  display: flex;
  gap: 4px;
  margin-bottom: 0.5rem;
}
.bento-mock-header .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e5e5e5;
}
.bento-mock-header .dot:nth-child(1) { background: #fca5a5; }
.bento-mock-header .dot:nth-child(2) { background: #fde047; }
.bento-mock-header .dot:nth-child(3) { background: #86efac; }
.bento-mock-title {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink);
}
.bento-mock-meta {
  margin: 0.15rem 0 0.5rem;
  font-size: 0.6rem;
  color: #94a3b8;
  font-weight: 500;
}
.bento-progress {
  height: 5px;
  background: #f1f5f9;
  border-radius: 3px;
  overflow: hidden;
}
.bento-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #f472b6, #ec4899);
  border-radius: 3px;
}
.bento-picker {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: #fff;
  border-radius: 12px;
  padding: 0.4rem 0.5rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  font-size: 0.55rem;
  font-weight: 700;
  color: #94a3b8;
  text-align: center;
}
.bento-picker .sel {
  color: var(--ink);
  background: var(--c-pink);
  border-radius: 6px;
  padding: 0.15rem 0.25rem;
}

/* Pipeline — mint */
.bento-pipeline {
  grid-column: 10 / span 3;
  grid-row: 3 / span 2;
  background: linear-gradient(160deg, #e8faf2 0%, var(--c-mint) 100%);
  min-height: 145px;
}
.bento-pipeline-ui {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.25rem;
  flex: 1;
  position: relative;
  z-index: 1;
}
.bento-wallet-card {
  background: linear-gradient(145deg, #152a24 0%, #1e3d34 100%);
  color: #fff;
  border-radius: 14px;
  padding: 0.75rem 1rem;
  flex: 1;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.wallet-label {
  font-size: 0.6rem;
  opacity: 0.7;
  font-weight: 500;
}
.bento-wallet-card strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.1;
  margin: 0.15rem 0;
}
.wallet-delta {
  font-size: 0.6rem;
  color: #6ee7b7;
  font-weight: 600;
}
.bento-sparkline {
  width: 72px;
  height: 36px;
  opacity: 0.9;
}
.bento-sparkline svg { width: 100%; height: 100%; }

/* Outreach — yellow */
.bento-outreach {
  grid-column: 10 / span 3;
  grid-row: 5 / span 2;
  background: linear-gradient(160deg, #fffce8 0%, var(--c-yellow) 100%);
  min-height: 145px;
}
.bento-inbox-rows {
  margin-top: 0.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  position: relative;
  z-index: 1;
}
.bento-inbox-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255,255,255,0.75);
  padding: 0.5rem 0.6rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.9);
}
.bento-inbox-row .av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.bento-inbox-row div {
  min-width: 0;
}
.bento-inbox-row strong {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
}
.bento-inbox-row span {
  font-size: 0.58rem;
  color: var(--muted);
}

/* Follow — sky */
.bento-follow {
  grid-column: 10 / span 3;
  grid-row: 7 / span 2;
  background: linear-gradient(160deg, #eef6ff 0%, var(--c-sky) 100%);
  min-height: 165px;
}
.bento-notif {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-top: 0.4rem;
  background: #fff;
  border-radius: 14px;
  padding: 0.7rem 0.75rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  position: relative;
  z-index: 1;
}
.bento-notif.subtle {
  margin-top: 0.45rem;
  background: rgba(255,255,255,0.7);
}
.bento-notif-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #dcfce7;
  color: #166534;
  font-size: 0.75rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.bento-notif-icon.bell { background: #fef3c7; }
.bento-notif strong {
  display: block;
  font-size: 0.7rem;
  margin-bottom: 0.1rem;
}
.bento-notif > div > span {
  font-size: 0.6rem;
  color: var(--muted);
  line-height: 1.35;
  display: block;
}

/* Scroll animations — visible by default if JS fails */
.mkt-page.js-anim .mkt-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--i, 0) * 0.06s);
}
.mkt-page.js-anim .mkt-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .mkt-page.js-anim .mkt-animate {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* CTA */
.mkt-cta-row {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.5rem 3rem;
}
.mkt-cta-card {
  text-align: center;
  padding: 3rem 2rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.mkt-cta-card h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin: 0 0 0.65rem;
}
.mkt-cta-card p {
  color: var(--muted);
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
}
.mkt-cta-btns {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.mkt-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem clamp(1.25rem, 4vw, 2rem) 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.mkt-footer-brand { font-size: 0.9rem; }
.mkt-footer-links {
  display: flex;
  gap: 1.25rem;
}
.mkt-footer-links a {
  color: var(--muted);
  text-decoration: none;
}
.mkt-footer-links a:hover { color: var(--ink); }

.mkt-logo,
.mkt-brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: linear-gradient(145deg, #1a1a1a 0%, #333 100%);
  color: #b8f000;
  font-size: 0.7rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.mkt-logo {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  font-size: 0.65rem;
}

.hide-mobile {}
@media (max-width: 960px) {
  .mkt-bento { grid-template-columns: 1fr 1fr; }
  .bento-main,
  .bento-setup, .bento-sources, .bento-icp, .bento-enrich,
  .bento-ai, .bento-workspace, .bento-launch,
  .bento-pipeline, .bento-outreach, .bento-follow {
    grid-column: span 1;
    grid-row: auto;
    min-height: auto;
  }
  .bento-main { grid-column: span 2; }
  .bento-ai, .bento-workspace { grid-column: span 2; }
}
@media (max-width: 640px) {
  .hide-mobile { display: none !important; }
  .mkt-bento { grid-template-columns: 1fr; }
  .bento-main, .bento-setup, .bento-sources, .bento-icp, .bento-enrich,
  .bento-ai, .bento-workspace, .bento-launch,
  .bento-pipeline, .bento-outreach, .bento-follow {
    grid-column: span 1;
    grid-row: auto;
  }
}
