﻿/* ====================================================================
   TransIQ â€” Marketing CSS
   Drives the public site (home, pricing, login, signup, onboarding).
   No build step. Pure CSS variables. Mobile-first.
   Mercury Â· 2026-04-25
==================================================================== */

/* ----------------- Tokens ----------------- */
:root {
  /* Brand blues (centered on #1E6FF0) */
  --b-50:  #EFF5FF;
  --b-100: #DBE8FF;
  --b-200: #B7D2FF;
  --b-300: #82B0FF;
  --b-400: #5B98FF;
  --b-500: #2D7DF4;
  --b-600: #1E6FF0;  /* PRIMARY */
  --b-700: #1A5DCC;
  --b-800: #1849A4;
  --b-900: #143A82;
  --b-950: #0E2A65;

  /* Neutrals */
  --n-0:   #ffffff;
  --n-25:  #FBFCFE;
  --n-50:  #F7F9FC;
  --n-100: #EEF2F7;
  --n-200: #E1E7EF;
  --n-300: #C8D2DF;
  --n-400: #94A3B8;
  --n-500: #64748B;
  --n-600: #475569;
  --n-700: #334155;
  --n-800: #1E293B;
  --n-900: #0F172A;
  --n-950: #060A14;

  /* Status */
  --ok:    #10B981;
  --warn:  #F59E0B;
  --err:   #EF4444;

  /* Layout */
  --container: 1200px;
  --gutter:    24px;
  --nav-h:     72px;

  /* Type */
  --f-sans:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --f-display: 'Inter Tight', 'Inter', system-ui, sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, Menlo, monospace;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur:  220ms;

  /* Radii */
  --r-xs: 6px; --r-sm: 8px; --r: 12px; --r-md: 16px; --r-lg: 20px; --r-xl: 28px;
  --r-pill: 9999px;

  /* Shadows */
  --sh-sm:  0 1px 2px rgba(15, 23, 42, .06);
  --sh:     0 4px 16px rgba(15, 23, 42, .08);
  --sh-lg:  0 24px 56px rgba(15, 23, 42, .12);
  --sh-brand: 0 12px 32px rgba(30, 111, 240, .35);
}

/* ----------------- Legacy chrome reset -----------------
   When marketing.css is loaded, the page is a public marketing page.
   Hide the legacy public nav/footer from base.html so only mk-nav and
   mk-ft render. The .tq-public wrapper itself we let pass-through
   (it contains the content block).
-------------------------------------------------------- */
.tq-public__nav,
.tq-public__footer { display: none !important; }
.tq-public { display: block !important; min-height: auto !important; }
.tq-public > main { padding: 0 !important; max-width: none !important; flex: none !important; }

/* ----------------- Reset / Base ----------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.tq-marketing {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--n-900);
  background: var(--n-0);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.tq-marketing img, body.tq-marketing svg { display: block; max-width: 100%; height: auto; }
body.tq-marketing button { font: inherit; color: inherit; cursor: pointer; }
body.tq-marketing a { color: inherit; text-decoration: none; }
/* Headings: NO explicit color so they inherit from their parent.
   This lets dark sections (.mk-sec--dark, .mk-cta) cascade color:white naturally. */
body.tq-marketing h1, body.tq-marketing h2, body.tq-marketing h3, body.tq-marketing h4, body.tq-marketing h5 {
  font-family: var(--f-display);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0;
  color: inherit;
}

.mk-container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.mk-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--b-700);
  background: var(--b-50);
  padding: 6px 14px; border-radius: var(--r-pill);
}
.mk-muted { color: var(--n-500); }

/* ----------------- Top nav ----------------- */
.mk-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur), background var(--dur);
}
.mk-nav.is-stuck { border-color: var(--n-200); background: rgba(255, 255, 255, 0.96); }
.mk-nav__inner {
  height: var(--nav-h);
  display: flex; align-items: center; gap: 32px;
}
.mk-nav__brand { display: flex; align-items: center; gap: 10px; font-family: var(--f-display); font-weight: 800; font-size: 19px; color: var(--n-900); letter-spacing: -0.02em; }
.mk-nav__brand img, .mk-nav__brand svg { height: 32px; width: auto; }
.mk-nav__links { display: flex; gap: 28px; margin-left: 16px; }
.mk-nav__links a {
  font-size: 14px; font-weight: 500; color: var(--n-600);
  padding: 8px 0; transition: color var(--dur);
}
.mk-nav__links a:hover { color: var(--n-900); }
.mk-nav__cta { margin-left: auto; display: flex; gap: 10px; align-items: center; }
.mk-nav__lang { display: flex; gap: 2px; padding: 3px; border: 1px solid var(--n-200); border-radius: var(--r-sm); }
.mk-nav__lang a {
  padding: 4px 10px; border-radius: 5px; font-size: 12px; font-weight: 700;
  color: var(--n-500); transition: all var(--dur);
}
.mk-nav__lang a.is-active { background: var(--n-900); color: white; }
.mk-nav__toggle {
  display: none; background: transparent; border: 1px solid var(--n-200);
  border-radius: var(--r-sm); padding: 8px; color: var(--n-700);
}
@media (max-width: 880px) {
  .mk-nav__links { display: none; }
  .mk-nav__toggle { display: inline-flex; }
}

/* ----------------- Buttons ----------------- */
.mk-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px; border-radius: var(--r);
  font-weight: 600; font-size: 14px; line-height: 1;
  border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: transform var(--dur), background var(--dur), box-shadow var(--dur), border-color var(--dur), color var(--dur);
}
.mk-btn--primary { background: var(--b-600); color: white; box-shadow: var(--sh-brand); }
.mk-btn--primary:hover { background: var(--b-700); transform: translateY(-1px); box-shadow: 0 16px 36px rgba(30, 111, 240, .42); }
.mk-btn--secondary { background: var(--n-0); color: var(--n-900); border-color: var(--n-200); }
.mk-btn--secondary:hover { background: var(--n-50); border-color: var(--n-300); }
.mk-btn--ghost { background: transparent; color: var(--n-700); }
.mk-btn--ghost:hover { color: var(--n-900); background: var(--n-100); }
.mk-btn--lg { padding: 16px 26px; font-size: 15px; border-radius: var(--r-md); }
.mk-btn--sm { padding: 8px 14px; font-size: 13px; border-radius: var(--r-sm); }

/* ----------------- Hero ----------------- */
.mk-hero {
  position: relative; overflow: hidden;
  padding: 80px 0 100px;
  background: linear-gradient(180deg, var(--n-25) 0%, var(--n-0) 100%);
}
.mk-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(80% 60% at 50% -10%, var(--b-50) 0%, transparent 60%),
    radial-gradient(40% 30% at 100% 30%, rgba(30, 111, 240, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.mk-hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 72px; align-items: center;
}
@media (max-width: 1000px) { .mk-hero__inner { grid-template-columns: 1fr; gap: 56px; } }

.mk-hero h1 { font-size: clamp(40px, 5.4vw, 72px); letter-spacing: -0.035em; }
.mk-hero h1 .mk-grad {
  background: linear-gradient(135deg, var(--b-500) 0%, var(--b-700) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.mk-hero__sub { margin-top: 24px; font-size: clamp(17px, 1.5vw, 19px); color: var(--n-600); max-width: 540px; }
.mk-hero__ctas { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.mk-hero__meta {
  margin-top: 24px; display: flex; flex-wrap: wrap; gap: 16px;
  color: var(--n-500); font-size: 13px; align-items: center;
}
.mk-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 50%; background: var(--b-50); color: var(--b-700);
  margin-right: 4px; font-weight: 700;
}
.mk-sep { color: var(--n-300); }

.mk-hero__mockup-wrap { position: relative; filter: drop-shadow(0 32px 48px rgba(15, 23, 42, .12)); }
.mk-hero__mockup { width: 100%; height: auto; }
.mk-hero__chip {
  position: absolute; background: white;
  border: 1px solid var(--n-200);
  border-radius: var(--r); padding: 10px 14px;
  box-shadow: var(--sh-lg);
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600;
  animation: mk-floaty 4s ease-in-out infinite alternate;
}
.mk-hero__chip--top { top: 8%; right: -18px; }
.mk-hero__chip--mid { top: 48%; right: -32px; animation-delay: 0.7s; }
.mk-hero__chip--bot { bottom: 12%; left: -32px; animation-delay: 1.4s; }
.mk-hero__chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); animation: mk-pulse 1.4s ease-in-out infinite; }
.mk-hero__chip .num { font-family: var(--f-display); font-weight: 800; color: var(--n-900); }
.mk-hero__chip .lbl { color: var(--n-500); font-weight: 500; font-size: 11px; }
@keyframes mk-floaty { from { transform: translateY(-6px); } to { transform: translateY(6px); } }
@keyframes mk-pulse  { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(1.4); } }

/* ----------------- Logos strip ----------------- */
.mk-logos {
  padding: 48px 0 56px;
  border-bottom: 1px solid var(--n-100);
  background: var(--n-0);
}
.mk-logos__title { text-align: center; color: var(--n-500); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 28px; }
.mk-logos__grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 32px; align-items: center;
  opacity: .7;
}
.mk-logos__grid > div {
  height: 32px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 800; color: var(--n-400); font-size: 17px; letter-spacing: -0.02em;
  transition: opacity var(--dur), color var(--dur);
}
.mk-logos__grid > div:hover { color: var(--n-700); }
@media (max-width: 880px) { .mk-logos__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

/* ----------------- Section base ----------------- */
.mk-sec { padding: 96px 0; }
.mk-sec--alt { background: var(--n-50); }
.mk-sec--dark { background: var(--n-950); color: white; }
.mk-sec--dark h2, .mk-sec--dark h3 { color: white; }
.mk-sec__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.mk-sec__head h2 { font-size: clamp(32px, 4vw, 48px); letter-spacing: -0.03em; }
.mk-sec__head p { margin-top: 14px; font-size: 18px; color: var(--n-500); }
.mk-sec--dark .mk-sec__head p { color: var(--n-300); }

/* ----------------- Solutions tabs ----------------- */
.mk-sol {
  display: grid; grid-template-columns: 280px 1fr; gap: 32px;
  background: var(--n-950);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--n-800);
}
@media (max-width: 880px) { .mk-sol { grid-template-columns: 1fr; padding: 24px; } }
.mk-sol__tabs { display: flex; flex-direction: column; gap: 6px; }
.mk-sol__tab {
  padding: 14px 16px; border-radius: var(--r);
  background: transparent; border: 0; color: var(--n-300);
  text-align: left; font-weight: 600; font-size: 14px;
  display: flex; align-items: center; gap: 12px;
  transition: all var(--dur); width: 100%;
}
.mk-sol__tab:hover { background: rgba(255,255,255,.04); color: white; }
.mk-sol__tab.is-active { background: var(--b-600); color: white; box-shadow: var(--sh-brand); }
.mk-sol__tab svg { flex: none; opacity: 0.85; width: 18px; height: 18px; }
@media (max-width: 880px) {
  .mk-sol__tabs { flex-direction: row; overflow-x: auto; padding-bottom: 8px; gap: 8px; }
  .mk-sol__tab { white-space: nowrap; flex: none; }
}

.mk-sol__panels { position: relative; }
.mk-sol__panel {
  background: white; border-radius: var(--r-md);
  padding: 32px;
  display: none; flex-direction: column; gap: 18px;
  height: 100%;
  min-height: 420px;
}
.mk-sol__panel.is-active { display: flex; }
.mk-sol__panel h3 { font-size: 26px; }
.mk-sol__panel > p { color: var(--n-500); font-size: 15px; max-width: 540px; line-height: 1.6; }
.mk-sol__panel ul { padding: 0; margin: 0; list-style: none; display: grid; gap: 10px; }
.mk-sol__panel li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--n-700); line-height: 1.5; }
.mk-sol__panel li::before { content: "âœ“"; color: var(--b-600); font-weight: 800; flex: none; }
.mk-sol__panel a.more { margin-top: 4px; color: var(--b-600); font-weight: 600; font-size: 14px; align-self: flex-start; }
.mk-sol__panel a.more:hover { color: var(--b-700); }
.mk-sol__panel a.more::after { content: " â†’"; }
.mk-sol__demo {
  margin-top: auto; background: var(--n-50);
  border: 1px solid var(--n-200); border-radius: var(--r);
  padding: 16px; font-family: var(--f-mono); font-size: 12px; color: var(--n-600); line-height: 1.6;
}

/* ----------------- Industries ----------------- */
.mk-ind__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 880px) { .mk-ind__grid { grid-template-columns: 1fr; } }
.mk-ind__card {
  background: white; border: 1px solid var(--n-200);
  border-radius: var(--r-md); overflow: hidden;
  transition: transform var(--dur), box-shadow var(--dur), border-color var(--dur);
  display: flex; flex-direction: column;
}
.mk-ind__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: var(--b-300);
}
.mk-ind__visual {
  aspect-ratio: 16/10;
  position: relative; overflow: hidden;
  display: grid; place-items: center;
}
.mk-ind__visual::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--ind-c1, var(--b-300)), var(--ind-c2, var(--b-700)));
}
.mk-ind__visual::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(40% 60% at 30% 20%, rgba(255,255,255,0.18), transparent 60%),
    radial-gradient(40% 60% at 80% 80%, rgba(0,0,0,0.18), transparent 60%);
  pointer-events: none;
}
.mk-ind__visual > * { position: relative; z-index: 1; color: white; }
.mk-ind__visual svg { width: 56px; height: 56px; }
.mk-ind__body { padding: 20px 22px 24px; }
.mk-ind__body h3 { font-size: 18px; }
.mk-ind__body p { color: var(--n-500); font-size: 14px; margin-top: 6px; line-height: 1.6; }

.mk-ind--cafes  { --ind-c1: #FBA94D; --ind-c2: #C2410C; }
.mk-ind--qsr    { --ind-c1: #F87171; --ind-c2: #B91C1C; }
.mk-ind--truck  { --ind-c1: #34D399; --ind-c2: #047857; }
.mk-ind--cater  { --ind-c1: #5B98FF; --ind-c2: #1A5DCC; }
.mk-ind--cloud  { --ind-c1: #38BDF8; --ind-c2: #0369A1; }
.mk-ind--bars   { --ind-c1: #1E293B; --ind-c2: #060A14; }

/* ----------------- Why TransIQ pillars ----------------- */
.mk-why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 880px) { .mk-why__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .mk-why__grid { grid-template-columns: 1fr; } }
.mk-why__card {
  background: white; border: 1px solid var(--n-200);
  border-radius: var(--r-md); padding: 28px 24px;
  transition: transform var(--dur), box-shadow var(--dur);
}
.mk-why__card:hover { transform: translateY(-2px); box-shadow: var(--sh); }
.mk-why__num { font-family: var(--f-display); font-weight: 800; font-size: 14px; color: var(--b-600); margin-bottom: 16px; letter-spacing: 0.04em; }
.mk-why__card h3 { font-size: 18px; margin-bottom: 8px; }
.mk-why__card p { color: var(--n-500); font-size: 14px; line-height: 1.6; }

/* ----------------- Testimonials ----------------- */
.mk-tst__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 880px) { .mk-tst__grid { grid-template-columns: 1fr; } }
.mk-tst__card {
  background: white; border: 1px solid var(--n-200);
  border-radius: var(--r-md); padding: 28px 26px;
  display: flex; flex-direction: column; gap: 16px;
}
.mk-tst__quote {
  font-family: var(--f-display); font-weight: 600; font-size: 17px;
  line-height: 1.5; color: var(--n-800);
}
.mk-tst__quote::before { content: '"'; font-size: 56px; line-height: 0; vertical-align: -16px; color: var(--b-300); margin-right: 4px; }
.mk-tst__author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.mk-tst__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--b-300), var(--b-700));
  display: grid; place-items: center; color: white; font-weight: 700; font-size: 14px;
}
.mk-tst__author .name { font-weight: 700; font-size: 14px; }
.mk-tst__author .role { color: var(--n-500); font-size: 12px; }
.mk-tst__stars { color: var(--warn); font-size: 14px; letter-spacing: 2px; }

/* ----------------- Highlights mini grid ----------------- */
.mk-hl__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 880px) { .mk-hl__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .mk-hl__grid { grid-template-columns: 1fr; } }
.mk-hl__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  padding: 20px;
  display: flex; flex-direction: column; gap: 8px;
  color: white;
}
.mk-hl__card .ico {
  width: 38px; height: 38px; border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--b-500), var(--b-700));
  display: grid; place-items: center; color: white;
  margin-bottom: 4px;
}
.mk-hl__card h4 { font-size: 15px; font-weight: 700; }
.mk-hl__card p { color: var(--n-300); font-size: 13px; line-height: 1.5; }

/* ----------------- FAQ ----------------- */
.mk-faq { max-width: 800px; margin: 0 auto; }
.mk-faq__item { border-top: 1px solid var(--n-200); padding: 24px 0; }
.mk-faq__item:last-child { border-bottom: 1px solid var(--n-200); }
.mk-faq__q {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; gap: 24px;
  font-family: var(--f-display); font-weight: 700; font-size: 17px; color: var(--n-900);
  list-style: none;
}
.mk-faq__q::-webkit-details-marker { display: none; }
.mk-faq__q .plus {
  flex: none; width: 24px; height: 24px;
  border-radius: 50%; background: var(--n-100); color: var(--n-700);
  display: grid; place-items: center;
  transition: all var(--dur); font-weight: 700;
}
.mk-faq__item[open] .mk-faq__q .plus { background: var(--b-600); color: white; transform: rotate(45deg); }
.mk-faq__a { margin-top: 12px; color: var(--n-600); font-size: 15px; line-height: 1.7; max-width: 680px; }

/* ----------------- Big CTA ----------------- */
.mk-cta {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--b-700) 0%, var(--b-900) 100%);
  padding: 64px 48px;
  color: white; text-align: center;
}
.mk-cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(50% 80% at 20% 0%, rgba(255,255,255,.12), transparent 60%),
    radial-gradient(40% 60% at 80% 100%, rgba(255,255,255,.10), transparent 60%);
  pointer-events: none;
}
.mk-cta > * { position: relative; z-index: 1; }
.mk-cta h2 { color: white; font-size: clamp(28px, 4vw, 42px); }
.mk-cta p { color: rgba(255, 255, 255, 0.86); margin-top: 14px; font-size: 17px; max-width: 580px; margin-inline: auto; }
.mk-cta__buttons { margin-top: 28px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.mk-cta .mk-btn--primary { background: white; color: var(--b-700); box-shadow: 0 12px 32px rgba(0,0,0,.2); }
.mk-cta .mk-btn--primary:hover { background: var(--n-50); color: var(--b-800); }
.mk-cta .mk-btn--ghost { color: white; border: 1px solid rgba(255,255,255,.32); }
.mk-cta .mk-btn--ghost:hover { background: rgba(255,255,255,.08); }

/* ----------------- Footer ----------------- */
.mk-ft { background: var(--n-950); color: var(--n-300); padding: 80px 0 32px; }
.mk-ft__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 56px; }
@media (max-width: 880px) { .mk-ft__grid { grid-template-columns: 1fr 1fr; } }
.mk-ft__brand-block { color: var(--n-300); font-size: 14px; line-height: 1.7; max-width: 320px; }
.mk-ft__brand-block .mk-ft__brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; color: white; font-family: var(--f-display); font-weight: 800; font-size: 19px; }
.mk-ft__brand-block .mk-ft__brand img, .mk-ft__brand-block .mk-ft__brand svg { height: 30px; }
.mk-ft__col h4 { color: white; font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 16px; }
.mk-ft__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.mk-ft__col a { color: var(--n-300); font-size: 14px; transition: color var(--dur); }
.mk-ft__col a:hover { color: white; }
.mk-ft__bot {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--n-400);
}
.mk-ft__bot a { color: var(--n-400); }
.mk-ft__bot a:hover { color: white; }
.mk-ft__socials { display: flex; gap: 14px; }
.mk-ft__socials a {
  width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.06);
  display: grid; place-items: center; color: var(--n-300); transition: all var(--dur);
}
.mk-ft__socials a:hover { background: var(--b-600); color: white; }

/* ----------------- Reveal on scroll ----------------- */
.mk-reveal { opacity: 0; transform: translateY(24px); transition: opacity 600ms var(--ease), transform 600ms var(--ease); }
.mk-reveal.is-in { opacity: 1; transform: translateY(0); }

/* ----------------- Responsive tweaks ----------------- */
@media (max-width: 540px) {
  .mk-sec { padding: 64px 0; }
  .mk-hero { padding: 56px 0 72px; }
  .mk-hero__chip--top, .mk-hero__chip--mid, .mk-hero__chip--bot { display: none; }
  .mk-cta { padding: 48px 24px; }
}
