/* =====================================================================
   AB Group Shipping — Mobile overrides
   Shared across Homepage.html + services/*.html.
   Approach: hide heavy desktop hero + decorative glows; render a
   dedicated .mobile-only hero instead. Reshape grids/type conservatively.
   ===================================================================== */

/* ---------- Mobile/desktop visibility primitives ---------- */
.mobile-only { display: none !important; }
.desktop-only { display: block !important; }

@media (max-width: 768px) {
  .mobile-only { display: block !important; }
  .desktop-only { display: none !important; }
}

/* =====================================================================
   Mobile Hero — styled for all pages via components/MobileHero.jsx
   ===================================================================== */
.mb-hero {
  position: relative;
  width: 100%;
  background: #fff;
  overflow: hidden;
}
.mb-hero__media {
  position: relative;
  width: 100%;
  height: 58vw;
  min-height: 280px;
  max-height: 420px;
  overflow: hidden;
  background: #0B1220;
}
.mb-hero__pill,
.mb-hero__chip {
  position: absolute;
  z-index: 5;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  text-transform: uppercase;
}
.mb-hero__pill-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
  animation: mb-pulse 1.6s ease-in-out infinite;
}
@keyframes mb-pulse { 0%,100% { opacity: 1 } 50% { opacity: 0.4 } }

.mb-hero__telemetry {
  position: absolute;
  z-index: 5;
  left: 16px; right: 16px; bottom: 16px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 12px 28px -14px rgba(11, 18, 32, 0.4);
  font-family: 'Inter', sans-serif;
}
.mb-hero__telemetry-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 6px;
}
.mb-hero__telemetry-live {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 700; color: #22c55e;
}
.mb-hero__telemetry-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e;
  animation: mb-pulse 1.4s ease-in-out infinite;
}
.mb-hero__telemetry-id {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 700; color: #64748b;
}
.mb-hero__telemetry-route {
  display: flex; align-items: center; gap: 10px;
  font-size: 18px; font-weight: 800; letter-spacing: -0.01em;
  color: #0B1220;
  margin-bottom: 4px;
}
.mb-hero__telemetry-dash {
  flex: 1; height: 2px;
  background: linear-gradient(90deg, #1E57D6 0%, #60A5FA 100%);
  border-radius: 2px;
}
.mb-hero__telemetry-meta {
  font-size: 11px; color: #64748b;
  font-family: 'JetBrains Mono', monospace;
}

.mb-hero__body {
  padding: 24px 20px 28px;
}
.mb-hero__rating {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 600;
  color: #475467;
  margin-bottom: 16px;
}
.mb-hero__rating svg { margin-right: 1px; }
.mb-hero__rating span { margin-left: 6px; color: #0B1220; }

.mb-hero__title {
  margin: 0 0 14px;
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-size: clamp(36px, 10vw, 52px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: #0B1220;
}
.mb-hero__title-grad {
  background: linear-gradient(90deg, #1E57D6 0%, #2563EB 40%, #60A5FA 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mb-hero__lead {
  margin: 0 0 22px;
  font-family: 'Inter', sans-serif;
  font-size: 15.5px; line-height: 1.5;
  color: #475467;
  letter-spacing: -0.005em;
}
.mb-hero__cta-row {
  display: flex; flex-direction: column; gap: 10px;
}
.mb-cta-primary, .mb-cta-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  height: 52px;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 600;
  text-decoration: none;
  transition: transform 160ms;
}
.mb-cta-primary:active, .mb-cta-ghost:active { transform: scale(0.98); }
.mb-cta-primary {
  background: linear-gradient(135deg, #1E57D6 0%, #1846B0 100%);
  color: #fff;
  box-shadow: 0 12px 26px -10px rgba(30, 87, 214, 0.5);
}
.mb-cta-ghost {
  background: #fff;
  color: #0B1220;
  border: 1px solid #e4e7ec;
}
.mb-hero__trust {
  display: flex; flex-wrap: wrap; gap: 14px 18px;
  margin-top: 22px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #475467;
}
.mb-hero__trust span {
  display: inline-flex; align-items: center; gap: 6px;
}
.mb-hero__trust .dot {
  width: 4px; height: 4px; border-radius: 50%; background: #12b76a;
}
.mb-hero__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 22px;
  padding: 14px 0;
  border-top: 1px solid #e4e7ec;
  border-bottom: 1px solid #e4e7ec;
  font-family: 'Inter', sans-serif;
  text-align: center;
}
.mb-hero__stats > div {
  display: flex; flex-direction: column; gap: 2px;
  border-right: 1px solid #e4e7ec;
}
.mb-hero__stats > div:last-child { border-right: 0; }
.mb-hero__stats strong {
  font-size: 22px; font-weight: 800; letter-spacing: -0.02em;
  color: #0B1220;
}
.mb-hero__stats span {
  font-size: 11px; color: #667085; letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* =====================================================================
   Global mobile shrink-and-stack
   ===================================================================== */
@media (max-width: 768px) {

  html, body {
    overflow-x: hidden !important;
    -webkit-text-size-adjust: 100%;
  }
  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px)) !important;
  }

  .cursor-glow { display: none !important; }
  .tweaks { display: none !important; }

  #site-nav, .site-nav-root, .desktop-nav-header { display: none !important; }

  /* Hide the entire desktop hero + its ambient glow wrapper on mobile */
  [data-desktop-hero] { display: none !important; }

  /* Section padding */
  section {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
  [style*="padding: 32px 64px"],
  [style*="padding: 40px 64px"],
  [style*="padding: 48px 64px"],
  [style*="padding: 56px 64px"],
  [style*="padding: 64px 64px"],
  [style*="padding: 80px 64px"],
  [style*="padding: 0 64px"],
  [style*="padding: 28px 64px"],
  [style*="padding: 16px 64px 80px"],
  [style*="padding: 32px 64px 32px"],
  [style*="padding: 0 64px 12px"] {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  /* Collapse multi-column grids */
  [style*="gridTemplateColumns"]:not([style*="1fr"][style*="repeat"]),
  [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  /* Allow explicit single-col, keep 3-col mobile stat rows etc */
  .mb-hero__stats,
  [data-mobile-keep-grid] {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  /* Kill huge decorative glow circles that overflow on phone */
  [style*="position: absolute"][style*="width: 820px"],
  [style*="position: absolute"][style*="width: 720px"],
  [style*="position: absolute"][style*="width: 700px"],
  [style*="position: absolute"][style*="width: 600px"],
  [style*="position: absolute"][style*="width: 500px"] {
    display: none !important;
  }

  /* Min-heights */
  [style*="minHeight: 560"],
  [style*="minHeight: 540"],
  [style*="min-height: 560"],
  [style*="min-height: 540"] { min-height: 0 !important; }

  /* Typography */
  h1, [style*="fontSize: 84"], [style*="font-size: 84"] {
    font-size: clamp(36px, 9.5vw, 52px) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.035em !important;
  }
  h2, [style*="fontSize: 64"], [style*="fontSize: 72"],
  [style*="font-size: 64"], [style*="font-size: 72"] {
    font-size: clamp(30px, 7.5vw, 42px) !important;
    line-height: 1.08 !important;
  }
  h3, [style*="fontSize: 48"], [style*="font-size: 48"] {
    font-size: clamp(24px, 6vw, 32px) !important;
  }
  [style*="fontSize: 40"], [style*="font-size: 40"] { font-size: 26px !important; }
  [style*="fontSize: 32"], [style*="font-size: 32"] { font-size: 22px !important; }
  [style*="fontSize: 24"], [style*="font-size: 24"] { font-size: 18px !important; }
  [style*="fontSize: 20"], [style*="font-size: 20"] { font-size: 16px !important; }
  [style*="fontSize: 19"], [style*="font-size: 19"] { font-size: 15.5px !important; }

  /* Unlock paragraph max-widths */
  p[style*="maxWidth"],
  [style*="maxWidth: 540"], [style*="maxWidth: 580"],
  [style*="max-width: 540"], [style*="max-width: 580"] {
    max-width: 100% !important;
  }

  /* Buttons */
  button { font-size: 15px !important; }

  /* Marquee */
  .marquee-track { gap: 36px !important; }

  /* Tables / wide content */
  table { font-size: 12px !important; }
  .mobile-scroll-x {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .mobile-scroll-x::-webkit-scrollbar { display: none; }

  /* Kickers */
  [style*="letterSpacing: '1.4px'"],
  [style*="letterSpacing: '1.6px'"] { letter-spacing: 0.8px !important; }

  /* PlatformShowcase + similar: header flex rows that need to stack */
  [style*="display: flex"][style*="alignItems: 'flex-end'"][style*="justifyContent: 'space-between'"],
  [style*="display: flex"][style*="alignItems: \"flex-end\""][style*="justifyContent: \"space-between\""],
  [style*="display:flex"][style*="align-items:flex-end"][style*="justify-content:space-between"] {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 18px !important;
  }

  /* Guard: any element that's visually wider than viewport clip itself */
  section, section > div, section > div > div {
    max-width: 100% !important;
  }

  /* PlatformShowcase inner grids inside RatePreview / TrackPreview /
     DocsPreview / TeamPreview — collapse their fixed column widths too */
  [style*="gridTemplateColumns: '120px"],
  [style*="gridTemplateColumns: '36px"],
  [style*="gridTemplateColumns: '16px"] {
    grid-template-columns: auto 1fr !important;
    row-gap: 4px !important;
  }

  /* Reveal — skip delays */
  .reveal { transition-duration: 400ms !important; }
  .reveal.delay-1, .reveal.delay-2,
  .reveal.delay-3, .reveal.delay-4 { transition-delay: 0ms !important; }
}

/* =====================================================================
   Services section — mobile layout fixes
   ===================================================================== */
@media (max-width: 768px) {

  .services-inner {
    padding: 56px 20px !important;
  }

  /* Header — center everything, kill the flex side-by-side */
  .services-header {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 18px !important;
    margin-bottom: 32px !important;
  }
  .services-header > div:first-child {
    max-width: 100% !important;
  }
  .services-header h2 {
    margin: 10px 0 14px !important;
    text-align: center !important;
  }
  .services-header p {
    margin: 0 auto !important;
    text-align: center !important;
    max-width: 100% !important;
  }
  .services-header > div:last-child {
    justify-content: center !important;
  }

  /* Tabs — full-width rows, each on its own line with number + count inline */
  .services-tabs {
    flex-direction: column !important;
    gap: 0 !important;
    margin-bottom: 28px !important;
  }
  .services-tabs button {
    display: grid !important;
    grid-template-columns: 28px 1fr auto !important;
    align-items: center !important;
    text-align: left !important;
    padding: 14px 0 !important;
    margin-right: 0 !important;
    gap: 12px !important;
    border-bottom: 1px solid #eaecf0 !important;
    font-size: 15px !important;
  }
  .services-tabs button:last-child { border-bottom: 0 !important; }
  /* Underline indicator — under whole row */
  .services-tabs button > span:last-of-type[aria-hidden] {
    right: 0 !important;
  }

  /* Footer CTA — stack, full-width buttons */
  .services-cta {
    flex-direction: column !important;
    align-items: stretch !important;
    text-align: left !important;
    padding: 24px 22px !important;
    margin-top: 32px !important;
  }
  .services-cta__copy { text-align: left !important; }
  .services-cta__actions {
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
  }
  .services-cta__actions button {
    width: 100% !important;
    justify-content: center !important;
    padding: 14px 20px !important;
  }

  /* Services grid — already collapses, but tighten borders */
  .services-inner [style*="gridTemplateColumns"][style*="repeat(4"] {
    border-radius: 12px !important;
  }
  .services-inner [style*="gridTemplateColumns"][style*="repeat(4"] > a {
    border-right: 0 !important;
    padding: 22px 20px !important;
  }
}

/* =====================================================================
   Services catalog (services/index.html) — mobile layout
   ===================================================================== */
@media (max-width: 768px) {

  /* Mobile hero — compact intro */
  .svc-mhero {
    padding: 28px 20px 24px !important;
    background: linear-gradient(180deg, #fff 0%, #F8FAFD 100%) !important;
    border-bottom: 1px solid #eef0f3 !important;
  }
  .svc-mhero__kicker {
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    color: var(--accent-dark, #1846B0) !important;
    margin-bottom: 12px !important;
  }
  .svc-mhero__title {
    margin: 0 0 14px !important;
    font-size: clamp(34px, 9vw, 44px) !important;
    font-weight: 700 !important;
    line-height: 1.04 !important;
    letter-spacing: -0.035em !important;
    color: #0B1220 !important;
  }
  .svc-mhero__title-grad {
    background: linear-gradient(90deg, #1E57D6 0%, #2563EB 50%, #60A5FA 100%);
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
  }
  .svc-mhero__lead {
    margin: 0 0 18px !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
    color: #475467 !important;
  }
  .svc-mhero__stats {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0 !important;
    border: 1px solid #eaecf0 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    background: #fff !important;
  }
  .svc-mhero__stat {
    padding: 14px 12px !important;
    border-left: 1px solid #eaecf0 !important;
    text-align: left !important;
  }
  .svc-mhero__stat:first-child { border-left: 0 !important; }
  .svc-mhero__stat strong {
    display: block !important;
    font-size: 26px !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
    color: #0B1220 !important;
    font-variant-numeric: tabular-nums !important;
    line-height: 1 !important;
  }
  .svc-mhero__stat span {
    display: block !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #475467 !important;
    margin-top: 4px !important;
    letter-spacing: -0.005em !important;
  }

  /* Sticky filter bar — becomes stacked, horizontal-scroll chips */
  .svc-filter-bar {
    top: 56px !important;           /* sits under MobileTopBar (56px tall) */
  }
  .svc-filter-inner {
    padding: 12px 16px !important;
    gap: 10px !important;
    flex-wrap: nowrap !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .svc-search {
    flex: 1 1 auto !important;
    width: 100% !important;
  }
  .svc-search input {
    width: 100% !important;
    font-size: 15px !important;    /* prevent iOS zoom */
    padding: 12px 14px 12px 40px !important;
  }
  .svc-chips {
    display: flex !important;
    gap: 8px !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    margin: 0 -16px !important;
    padding: 2px 16px !important;
  }
  .svc-chips::-webkit-scrollbar { display: none; }
  .svc-chips .svc-filter-chip {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
  }
  .svc-count {
    margin-left: 0 !important;
    font-size: 12px !important;
  }

  /* Catalog — tighter padding, 1-col grid */
  .svc-catalog-inner {
    padding: 32px 16px 48px !important;
  }
  .svc-div-block {
    margin-bottom: 40px !important;
  }
  .svc-div-header {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 6px !important;
    margin-bottom: 18px !important;
    padding-bottom: 12px !important;
  }
  .svc-div-header__left {
    flex-wrap: wrap !important;
    gap: 10px !important;
    align-items: baseline !important;
  }
  .svc-div-header__left h2 {
    font-size: 22px !important;
    letter-spacing: -0.02em !important;
    flex: 0 0 auto !important;
  }
  .svc-div-header__left > span:last-child {
    font-size: 13px !important;
    color: #667085 !important;
    flex: 1 1 100% !important;       /* tagline drops to its own line */
  }
  .svc-div-header > span:last-child {
    font-size: 12px !important;
    color: #98a2b3 !important;
  }
  .svc-card-grid {
    grid-template-columns: 1fr !important;
    border-radius: 14px !important;
  }
  .svc-card-grid > .svc-card {
    border-right: 0 !important;
    border-bottom: 1px solid #eaecf0 !important;
    min-height: 0 !important;
    padding: 18px 18px !important;
  }
  .svc-card-grid > .svc-card:last-of-type {
    border-bottom: 0 !important;
  }
  /* Hide empty pad cells on mobile — they looked like an extra row */
  .svc-card-grid > div {
    display: none !important;
  }
}

@media (max-width: 768px) {

  .platform-inner {
    padding: 56px 20px !important;
  }

  /* Header — stack title + ghost CTA vertically, remove 720px width clamp */
  .platform-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 18px !important;
    margin-bottom: 32px !important;
  }
  .platform-header > div:first-child {
    max-width: 100% !important;
    width: 100% !important;
  }
  .platform-header h2 {
    font-size: clamp(32px, 8.5vw, 44px) !important;
    line-height: 1.05 !important;
    margin: 10px 0 14px !important;
    max-width: 100% !important;
  }
  /* Force the <br/> to break as intended ("system" on line 2) — no more word-per-line */
  .platform-header h2 br { display: inline !important; }
  .platform-header p {
    font-size: 16px !important;
    max-width: 100% !important;
    line-height: 1.55 !important;
  }

  /* Grid — collapse to single column, feature list above preview */
  .platform-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .platform-features {
    gap: 6px !important;
  }
  .platform-features button {
    padding: 16px !important;
  }
  .platform-preview {
    padding: 14px !important;
    border-radius: 16px !important;
  }
  /* The app preview inner tables are too wide — allow horizontal scroll */
  .platform-preview > div > div:last-child {
    overflow-x: auto !important;
  }
}


/* =====================================================================
   MobileTabBar + MobileTopBar
   ===================================================================== */
.mobile-tab-bar, .mobile-top-bar { display: none; }

@media (max-width: 768px) {
  .mobile-top-bar {
    display: flex !important;
    position: sticky;
    top: 0;
    z-index: 60;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px) saturate(1.6);
    -webkit-backdrop-filter: blur(20px) saturate(1.6);
    border-bottom: 1px solid rgba(16, 24, 40, 0.06);
  }

  .mobile-top-brand {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 4px 4px;
    text-decoration: none;
    color: #0B1220;
  }
  .mobile-top-brand__halo {
    position: absolute;
    left: -8px; top: 50%;
    width: 64px; height: 64px;
    transform: translateY(-50%);
    background: radial-gradient(circle at 50% 50%,
      rgba(30, 87, 214, 0.18) 0%,
      rgba(30, 87, 214, 0.09) 38%,
      rgba(30, 87, 214, 0) 72%);
    filter: blur(2px);
    pointer-events: none;
    z-index: 0;
  }
  .mobile-top-brand > :not(.mobile-top-brand__halo) { position: relative; z-index: 1; }
  .mobile-top-brand__wordmark {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
    gap: 3px;
    padding-left: 10px;
    border-left: 1px solid rgba(16, 24, 40, 0.12);
  }
  .mobile-top-brand__primary {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #0B1220;
  }
  .mobile-top-brand__sub {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #667085;
  }

  .mobile-tab-bar {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1.4fr 1fr 1fr;
    align-items: end;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 90;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(22px) saturate(1.6);
    -webkit-backdrop-filter: blur(22px) saturate(1.6);
    border-top: 1px solid rgba(16, 24, 40, 0.06);
    box-shadow: 0 -8px 24px -8px rgba(16, 24, 40, 0.08);
  }

  .mobile-tab-item {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    padding: 6px 0 2px;
    font-family: 'Inter', sans-serif;
    font-size: 10px; font-weight: 600;
    letter-spacing: -0.005em;
    color: #98A2B3;
    text-decoration: none; background: transparent; border: 0; cursor: pointer;
    transition: color 180ms;
  }
  .mobile-tab-item:active { transform: scale(0.96); }
  .mobile-tab-item.active { color: #1E57D6; }
  .mobile-tab-item svg { width: 22px; height: 22px; }

  .mobile-tab-cta {
    position: relative;
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    height: 52px;
    margin: 0 8px -10px;
    padding: 0 18px;
    border-radius: 9999px;
    background: linear-gradient(135deg, #1E57D6 0%, #1846B0 100%);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 13px; font-weight: 700;
    letter-spacing: -0.005em;
    border: 0; cursor: pointer;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.3),
      0 10px 24px -6px rgba(30, 87, 214, 0.55),
      0 4px 10px -2px rgba(30, 87, 214, 0.3);
    transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
  }
  .mobile-tab-cta::before {
    content: "";
    position: absolute; inset: -2px;
    border-radius: 9999px;
    background: radial-gradient(circle at 50% 10%, rgba(96, 165, 250, 0.4), transparent 70%);
    z-index: -1; filter: blur(6px);
  }
  .mobile-tab-cta:active { transform: translateY(1px) scale(0.98); }
  .mobile-tab-cta .plus {
    width: 20px; height: 20px; border-radius: 9999px;
    background: rgba(255, 255, 255, 0.22);
    display: inline-grid; place-items: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  }
  .mobile-tab-cta .plus svg { width: 10px; height: 10px; }
}
